[Zope3-checkins] CVS: Zope3/src/zope/app/startup - bootstrap.py:1.10
R. Sean Bowman
sean.bowman@acm.org
Sat, 8 Mar 2003 16:46:13 -0500
Update of /cvs-repository/Zope3/src/zope/app/startup
In directory cvs.zope.org:/tmp/cvs-serv32568/zope/app/startup
Modified Files:
bootstrap.py
Log Message:
changed EventDispatch to EventPublication, modified some zcml to be more
consistent with the new service names
=== Zope3/src/zope/app/startup/bootstrap.py 1.9 => 1.10 ===
--- Zope3/src/zope/app/startup/bootstrap.py:1.9 Fri Mar 7 19:51:49 2003
+++ Zope3/src/zope/app/startup/bootstrap.py Sat Mar 8 16:46:10 2003
@@ -24,7 +24,7 @@
from zope.app.traversing import traverse, traverseName
from zope.app.publication.zopepublication import ZopePublication
from zope.app.content.folder import RootFolder
-from zope.app.services.servicenames import EventDispatch, HubIds, EventSubscription
+from zope.app.services.servicenames import EventPublication, HubIds, EventSubscription
from zope.app.services.servicenames import ErrorLogging
from zope.app.services.service import ServiceManager
from zope.app.services.service import ServiceConfiguration
@@ -72,7 +72,7 @@
configureService(root_folder, HubIds, name)
# The EventService class implements two services
- name = addConfigureService(root_folder, EventDispatch, EventService)
+ name = addConfigureService(root_folder, EventPublication, EventService)
configureService(root_folder, EventSubscription, name)
# Sundry other services