[Zope3-checkins] CVS: Zope3/src/zope/app/services/translation - translationservice.py:1.4
Guido van Rossum
guido@python.org
Mon, 3 Mar 2003 18:16:45 -0500
Update of /cvs-repository/Zope3/src/zope/app/services/translation
In directory cvs.zope.org:/tmp/cvs-serv7820/src/zope/app/services/translation
Modified Files:
translationservice.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/services/translation/translationservice.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/services/translation/translationservice.py:1.3 Mon Dec 30 21:52:05 2002
+++ Zope3/src/zope/app/services/translation/translationservice.py Mon Mar 3 18:16:14 2003
@@ -27,6 +27,8 @@
from zope.app.container.btree import BTreeContainer
from zope.app.interfaces.container import IContainer
+from zope.app.interfaces.services.interfaces import ISimpleService
+
from zope.i18n.negotiator import negotiator
from zope.i18n.domain import Domain
from zope.i18n.interfaces import IMessageCatalog
@@ -40,7 +42,7 @@
class TranslationService(BTreeContainer, SimpleTranslationService):
- __implements__ = ILocalTranslationService
+ __implements__ = ILocalTranslationService, ISimpleService
def __init__(self, default_domain='global'):
super(TranslationService, self).__init__()