[Zope3-checkins] CVS: Zope3/src/zope/app/container - copypastemove.py:1.6 find.py:1.3 zopecontainer.py:1.16

Jim Fulton jim@zope.com
Tue, 27 May 2003 10:18:44 -0400


Update of /cvs-repository/Zope3/src/zope/app/container
In directory cvs.zope.org:/tmp/cvs-serv19792/src/zope/app/container

Modified Files:
	copypastemove.py find.py zopecontainer.py 
Log Message:
moved zope.proxy.context to zope.context

=== Zope3/src/zope/app/container/copypastemove.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/container/copypastemove.py:1.5	Mon Mar 31 09:48:40 2003
+++ Zope3/src/zope/app/container/copypastemove.py	Tue May 27 10:18:13 2003
@@ -27,7 +27,7 @@
 from zope.component import getAdapter
 from zope.proxy.introspection import removeAllProxies
 from zope.app.event.objectevent import ObjectModifiedEvent
-from zope.proxy.context import ContextWrapper
+from zope.context import ContextWrapper
 from zope.app.event import publish
 from zope.proxy.introspection import removeAllProxies
 from types import StringTypes


=== Zope3/src/zope/app/container/find.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/container/find.py:1.2	Wed Dec 25 09:12:46 2002
+++ Zope3/src/zope/app/container/find.py	Tue May 27 10:18:13 2003
@@ -20,7 +20,7 @@
 from zope.app.interfaces.container.find import IFind, IIdFindFilter
 from zope.app.interfaces.container import IReadContainer
 # XXX need to do this manually to wrap objects
-from zope.proxy.context import ContextWrapper
+from zope.context import ContextWrapper
 
 class FindAdapter(object):
 


=== Zope3/src/zope/app/container/zopecontainer.py 1.15 => 1.16 ===
--- Zope3/src/zope/app/container/zopecontainer.py:1.15	Thu May  8 06:57:55 2003
+++ Zope3/src/zope/app/container/zopecontainer.py	Tue May 27 10:18:13 2003
@@ -21,7 +21,7 @@
 from zope.app.interfaces.container import IOptionalNamesContainer
 from zope.app.interfaces.container import IContainerNamesContainer
 from zope.component import queryAdapter, getAdapter
-from zope.proxy.context import ContextWrapper
+from zope.context import ContextWrapper
 from zope.app.event import publish
 from zope.app.interfaces.container import IAddNotifiable
 from zope.app.interfaces.container import IDeleteNotifiable