[Zope3-checkins] CVS: Zope3/src/zope/app/process -
bootstrap.py:1.10.8.1
Fred L. Drake, Jr.
fred at zope.com
Thu Jan 15 15:50:52 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/process
In directory cvs.zope.org:/tmp/cvs-serv1563/src/zope/app/process
Modified Files:
Tag: zope3-fdrake-globalized-modules-branch
bootstrap.py
Log Message:
Checkpointing the current state of the module globalization work on a branch
so it does not get lost. See http://dev.zope.org/Zope3/ModulesAreGlobal.
=== Zope3/src/zope/app/process/bootstrap.py 1.10 => 1.10.8.1 ===
--- Zope3/src/zope/app/process/bootstrap.py:1.10 Mon Oct 20 14:41:15 2003
+++ Zope3/src/zope/app/process/bootstrap.py Thu Jan 15 15:50:21 2004
@@ -29,7 +29,7 @@
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, Modules
from zope.app.services.service import ServiceManager
from zope.app.services.service import ServiceRegistration
from zope.app.services.hub import ObjectHub, Registration
@@ -37,6 +37,7 @@
from zope.app.services.error import RootErrorReportingService
from zope.app.services.principalannotation import PrincipalAnnotationService
from zope.app.services.interface import LocalInterfaceService
+from zope.app.services.globalmodule import ModuleService
from zope.proxy import removeAllProxies
from zope.app.event import function
from zope.component.exceptions import ComponentLookupError
@@ -156,6 +157,7 @@
self.ensureService(ErrorLogging,
RootErrorReportingService, copy_to_zlog=True)
self.ensureService(PrincipalAnnotation, PrincipalAnnotationService)
+ self.ensureService(Modules, ModuleService)
bootstrapInstance = BootstrapInstance()
More information about the Zope3-Checkins
mailing list