[Zope3-checkins] CVS: Zope3/src/zope/app/process - bootstrap.py:1.12.6.1

Stuart Bishop zen at shangri-la.dropbear.id.au
Sun Feb 8 22:09:28 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/process
In directory cvs.zope.org:/tmp/cvs-serv27663/src/zope/app/process

Modified Files:
      Tag: ozzope-session-branch
	bootstrap.py 
Log Message:
Work in progress - API solidifying


=== Zope3/src/zope/app/process/bootstrap.py 1.12 => 1.12.6.1 ===
--- Zope3/src/zope/app/process/bootstrap.py:1.12	Sat Feb  7 02:21:26 2004
+++ Zope3/src/zope/app/process/bootstrap.py	Sun Feb  8 22:08:57 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