[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/ServiceManager - IServiceManager.py:1.1.2.7

Gary Poster garyposter@earthlink.net
Tue, 21 May 2002 09:44:39 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/ServiceManager
In directory cvs.zope.org:/tmp/cvs-serv25923/lib/python/Zope/App/OFS/ServiceManager

Modified Files:
      Tag: Zope-3x-branch
	IServiceManager.py 
Log Message:
A few more bug fixes and tweaks to various event service and service manager files; a very rudimentary view for the event service (it doesn't show much information because not much information is available from the interfaces!).  The event service prototype should be ready for folks to play with a bit now.


=== Zope3/lib/python/Zope/App/OFS/ServiceManager/IServiceManager.py 1.1.2.6 => 1.1.2.7 ===
 from Interface import Interface
 from Zope.ComponentArchitecture.IServiceManager import IServiceManager as \
-  IGlobalServiceManager # fix once this package is changed to LocalServiceManager
+  IGlobalServiceManager
+  # XXX fix once this package is changed to LocalServiceManager
 from Zope.App.OFS.Container.IContainer import IContainer
 
 class IServiceManager(IGlobalServiceManager, IContainer):