[Zope3-checkins] CVS: Zope3/src/zope/app/services - configure.zcml:1.26
Stephan Richter
srichter@cbu.edu
Tue, 25 Mar 2003 13:31:50 -0500
Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv24405/src/zope/app/services
Modified Files:
configure.zcml
Log Message:
Jim helped Trevor and I figuring out that not every IWriteContainer wants
to support IAdding (the example being the LocalTranslationService). So we
removed the general declaration from IWriteContainer and made them explicit
on implementing objects.
Trevor and Stephan
=== Zope3/src/zope/app/services/configure.zcml 1.25 => 1.26 ===
--- Zope3/src/zope/app/services/configure.zcml:1.25 Mon Mar 24 09:58:31 2003
+++ Zope3/src/zope/app/services/configure.zcml Tue Mar 25 13:31:50 2003
@@ -464,7 +464,11 @@
interface='zope.app.interfaces.services.event.ISubscriptionService'
/>
-<!-- Utility Service --> <include file="utility.zcml" />
+<!-- Translation Service -->
+<include package=".translation" />
+
+<!-- Utility Service -->
+<include file="utility.zcml" />
</zopeConfigure>