[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Container - ZopeContainerAdapter.py:1.6 configure.zcml:1.8
Gary Poster
gary@zope.com
Sat, 21 Dec 2002 10:33:18 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Container
In directory cvs.zope.org:/tmp/cvs-serv30423/lib/python/Zope/App/OFS/Container
Modified Files:
ZopeContainerAdapter.py configure.zcml
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/Container/ZopeContainerAdapter.py 1.5 => 1.6 ===
--- Zope3/lib/python/Zope/App/OFS/Container/ZopeContainerAdapter.py:1.5 Thu Dec 5 08:51:14 2002
+++ Zope3/lib/python/Zope/App/OFS/Container/ZopeContainerAdapter.py Sat Dec 21 10:32:47 2002
@@ -23,7 +23,7 @@
from Zope.ComponentArchitecture import queryAdapter
from Zope.Proxy.ContextWrapper import ContextWrapper
from Zope.Event import publish
-from Zope.Event.ObjectEvent \
+from Zope.App.Event.ObjectEvent \
import ObjectRemovedEvent, ObjectModifiedEvent, ObjectAddedEvent
from Zope.App.OFS.Container.IAddNotifiable import IAddNotifiable
from Zope.App.OFS.Container.IDeleteNotifiable import IDeleteNotifiable
=== Zope3/lib/python/Zope/App/OFS/Container/configure.zcml 1.7 => 1.8 ===
--- Zope3/lib/python/Zope/App/OFS/Container/configure.zcml:1.7 Fri Dec 20 04:25:36 2002
+++ Zope3/lib/python/Zope/App/OFS/Container/configure.zcml Sat Dec 21 10:32:47 2002
@@ -37,7 +37,7 @@
<event:subscribe
subscriber = ".DependencyChecker.CheckDependency"
- event_types = "Zope.Event.IObjectEvent.IObjectRemovedEvent"
+ event_types = "Zope.App.Event.IObjectEvent.IObjectRemovedEvent"
/>