[Zope3-checkins] CVS: Zope3/src/zope/app/process - bootstrap.py:1.13
Anthony Baxter
anthony at interlink.com.au
Sat Feb 7 22:46:51 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/process
In directory cvs.zope.org:/tmp/cvs-serv21220/process
Modified Files:
bootstrap.py
Log Message:
bootstrap creates a utility service now.
=== Zope3/src/zope/app/process/bootstrap.py 1.12 => 1.13 ===
--- Zope3/src/zope/app/process/bootstrap.py:1.12 Sat Feb 7 02:21:26 2004
+++ Zope3/src/zope/app/process/bootstrap.py Sat Feb 7 22:46:20 2004
@@ -29,12 +29,13 @@
from zope.app.content.folder import rootFolder
from zope.app.services.servicenames import HubIds, PrincipalAnnotation
from zope.app.services.servicenames import EventPublication, EventSubscription
-from zope.app.services.servicenames import ErrorLogging, Interfaces
+from zope.app.services.servicenames import ErrorLogging, Interfaces, Utilities
from zope.app.services.service import ServiceManager
from zope.app.services.service import ServiceRegistration
from zope.app.services.hub import ObjectHub, Registration
from zope.app.services.event import EventService
from zope.app.services.error import RootErrorReportingService
+from zope.app.services.utility import LocalUtilityService
from zope.app.services.principalannotation import PrincipalAnnotationService
from zope.app.services.interface import LocalInterfaceService
from zope.proxy import removeAllProxies
@@ -163,6 +164,8 @@
self.ensureService(ErrorLogging,
RootErrorReportingService, copy_to_zlog=True)
self.ensureService(PrincipalAnnotation, PrincipalAnnotationService)
+
+ self.ensureService(Utilities, LocalUtilityService)
bootstrapInstance = BootstrapInstance()
More information about the Zope3-Checkins
mailing list