[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/CachingService - CacheConfiguration.py:1.3 CachingService.py:1.9
Gary Poster
gary@zope.com
Sat, 21 Dec 2002 10:33:25 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/CachingService
In directory cvs.zope.org:/tmp/cvs-serv30423/lib/python/Zope/App/OFS/Services/CachingService
Modified Files:
CacheConfiguration.py CachingService.py
Log Message:
Moves ObjectEvent, GlobalEventService, and Logger from the Zope.Event package to the Zope.App.Event package.
Does *not* redesign/refactor LocalEventService to accept paths and hubids and reject non-wrapped objects. Maybe later.
This checkin may require you to hose your Data.fs.
For quadruple checking, I'll send a note to zope3-dev when I've confirmed that a fresh checkout works.
=== Zope3/lib/python/Zope/App/OFS/Services/CachingService/CacheConfiguration.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/App/OFS/Services/CachingService/CacheConfiguration.py:1.2 Wed Dec 18 12:35:04 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/CachingService/CacheConfiguration.py Sat Dec 21 10:32:54 2002
@@ -20,7 +20,7 @@
from Zope.App.OFS.Services.Configuration import NamedComponentConfiguration
from Zope.App.OFS.Services.Configuration import ConfigurationStatusProperty
from Zope.ComponentArchitecture import getService
-from Zope.Event.IObjectEvent import IObjectModifiedEvent
+from Zope.App.Event.IObjectEvent import IObjectModifiedEvent
from Zope.ContextWrapper import ContextMethod
class CacheConfiguration(NamedComponentConfiguration):
=== Zope3/lib/python/Zope/App/OFS/Services/CachingService/CachingService.py 1.8 => 1.9 ===
--- Zope3/lib/python/Zope/App/OFS/Services/CachingService/CachingService.py:1.8 Wed Dec 18 15:23:04 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/CachingService/CachingService.py Sat Dec 21 10:32:54 2002
@@ -27,7 +27,7 @@
import ProtoServiceEventChannel
from Zope.ContextWrapper import ContextMethod
from Zope.Event.IEventChannel import IEventChannel
-from Zope.Event.IObjectEvent import IObjectModifiedEvent
+from Zope.App.Event.IObjectEvent import IObjectModifiedEvent
class ILocalCachingService(ICachingService, IEventChannel,