[Zope3-checkins] CVS: Zope3/src/zope/app/index/tests - test_objectretrievingprocessor.py:1.7
Guido van Rossum
guido@python.org
Mon, 3 Mar 2003 18:16:40 -0500
Update of /cvs-repository/Zope3/src/zope/app/index/tests
In directory cvs.zope.org:/tmp/cvs-serv7820/src/zope/app/index/tests
Modified Files:
test_objectretrievingprocessor.py
Log Message:
Merge from use-config-branch. (A joint production by Jim, Tim and Guido.)
- Refactor the service creation and configuration code, making the UI
for creating and configuring services much more pleasant.
- Add a new marker interface, IUseConfigurable, which is used to say
that an object records dependencies between it and its
configurations. (This applies to other configurable objects besides
services.) Another marker interface, IAttributeUseConfigurable,
says that these dependencies are stored as annotations. And finally
IUseConfiguration defines the actual interface for discussing these
dependencies; implementing IUseConfigurable is a promise that such
an adapter exists (and implementing IAttributeUseConfigurable is one
way of making this promise come true :-).
- Add a new view tab for services, called "Configurations", which
displays links to its configurations with summary information. (Try
it for the Events service, which has two configurations by default.)
- Add a new interface, ILocalService, which all local services must
implement. Also add ISimpleService, which extends ILocalService
with IAttributeUseConfigurable. All existing local service
implementations implement this.
- Some miscellaneous cleanup (e.g. made the browser namespace the
default namespace in zope/app/browser/services/configure.zcml).
=== Zope3/src/zope/app/index/tests/test_objectretrievingprocessor.py 1.6 => 1.7 ===
--- Zope3/src/zope/app/index/tests/test_objectretrievingprocessor.py:1.6 Tue Feb 11 21:17:23 2003
+++ Zope3/src/zope/app/index/tests/test_objectretrievingprocessor.py Mon Mar 3 18:16:09 2003
@@ -30,6 +30,7 @@
from zope.app.interfaces.index.interfaces import IRankedHubIdList, \
IRankedObjectIterator, IRankedObjectRecord
+from zope.app.interfaces.services.interfaces import ISimpleService
from zope.app.index.processors import ObjectRetrievingProcessor
from zope.app.index.processors import RankedObjectRecord, RankedObjectIterator
from zope.app.index.queries import BatchedRankedResult
@@ -39,7 +40,7 @@
# This fake hub doesn't implement everything, but enough
# to satisfy our tests
- __implements__ = IObjectHub
+ __implements__ = IObjectHub, ISimpleService
def __init__(self):
self.data = {}