[Zope-Checkins]
SVN: Zope/branches/philikon-local-components/lib/python/OFS/
New import locations of things due to MakeZopeAppSmaller
Philipp von Weitershausen
philikon at philikon.de
Wed Apr 19 09:50:58 EDT 2006
Log message for revision 67129:
New import locations of things due to MakeZopeAppSmaller
Changed:
U Zope/branches/philikon-local-components/lib/python/OFS/CopySupport.py
U Zope/branches/philikon-local-components/lib/python/OFS/event.py
U Zope/branches/philikon-local-components/lib/python/OFS/interfaces.py
U Zope/branches/philikon-local-components/lib/python/OFS/subscribers.py
-=-
Modified: Zope/branches/philikon-local-components/lib/python/OFS/CopySupport.py
===================================================================
--- Zope/branches/philikon-local-components/lib/python/OFS/CopySupport.py 2006-04-19 13:47:40 UTC (rev 67128)
+++ Zope/branches/philikon-local-components/lib/python/OFS/CopySupport.py 2006-04-19 13:50:58 UTC (rev 67129)
@@ -37,7 +37,7 @@
from ZODB.POSException import ConflictError
from zope.interface import implements
from zope.event import notify
-from zope.app.event.objectevent import ObjectCopiedEvent
+from zope.lifecycleevent import ObjectCopiedEvent
from zope.app.container.contained import ObjectMovedEvent
from zope.app.container.contained import notifyContainerModified
from OFS.event import ObjectWillBeMovedEvent
Modified: Zope/branches/philikon-local-components/lib/python/OFS/event.py
===================================================================
--- Zope/branches/philikon-local-components/lib/python/OFS/event.py 2006-04-19 13:47:40 UTC (rev 67128)
+++ Zope/branches/philikon-local-components/lib/python/OFS/event.py 2006-04-19 13:50:58 UTC (rev 67129)
@@ -18,7 +18,7 @@
"""
from zope.interface import implements
-from zope.app.event.objectevent import ObjectEvent
+from zope.component.interfaces import ObjectEvent
import OFS.interfaces
Modified: Zope/branches/philikon-local-components/lib/python/OFS/interfaces.py
===================================================================
--- Zope/branches/philikon-local-components/lib/python/OFS/interfaces.py 2006-04-19 13:47:40 UTC (rev 67128)
+++ Zope/branches/philikon-local-components/lib/python/OFS/interfaces.py 2006-04-19 13:50:58 UTC (rev 67129)
@@ -27,7 +27,7 @@
from webdav.interfaces import IDAVCollection
from webdav.interfaces import IDAVResource
-from zope.app.traversing.interfaces import IContainmentRoot
+from zope.traversing.interfaces import IContainmentRoot
from zope.app.component.interfaces import IPossibleSite
class IOrderedContainer(Interface):
@@ -903,7 +903,7 @@
##################################################
# Event interfaces
-from zope.app.event.interfaces import IObjectEvent
+from zope.component.interfaces import IObjectEvent
class IObjectWillBeMovedEvent(IObjectEvent):
"""An object will be moved."""
Modified: Zope/branches/philikon-local-components/lib/python/OFS/subscribers.py
===================================================================
--- Zope/branches/philikon-local-components/lib/python/OFS/subscribers.py 2006-04-19 13:47:40 UTC (rev 67128)
+++ Zope/branches/philikon-local-components/lib/python/OFS/subscribers.py 2006-04-19 13:50:58 UTC (rev 67129)
@@ -29,8 +29,8 @@
from zope.interface import implements
from zope.component import adapts
+from zope.location.interfaces import ISublocations
from zope.app.container.contained import dispatchToSublocations
-from zope.app.location.interfaces import ISublocations
deprecatedManageAddDeleteClasses = []
More information about the Zope-Checkins
mailing list