[Zope3-checkins] CVS: Zope3/src/zope/app/publication - browser.py:1.9 publicationtraverse.py:1.9 zopepublication.py:1.31
Jim Fulton
jim@zope.com
Sun, 1 Jun 2003 12:00:05 -0400
Update of /cvs-repository/Zope3/src/zope/app/publication
In directory cvs.zope.org:/tmp/cvs-serv25908/src/zope/app/publication
Modified Files:
browser.py publicationtraverse.py zopepublication.py
Log Message:
Moved ContextWrapper, getItem, getAttr, queryItem, and queryAttr
from zope.context to zope.app.context.
=== Zope3/src/zope/app/publication/browser.py 1.8 => 1.9 ===
--- Zope3/src/zope/app/publication/browser.py:1.8 Wed May 28 11:46:09 2003
+++ Zope3/src/zope/app/publication/browser.py Sun Jun 1 11:59:34 2003
@@ -21,7 +21,7 @@
import PublicationTraverser as PublicationTraverser_
from zope.app.publication.zopepublication import ZopePublication
from zope.component import queryAdapter, queryView
-from zope.context import ContextWrapper
+from zope.app.context import ContextWrapper
from zope.proxy import removeAllProxies
from zope.publisher.interfaces.browser import IBrowserPublisher
from zope.security.checker import ProxyFactory
=== Zope3/src/zope/app/publication/publicationtraverse.py 1.8 => 1.9 ===
--- Zope3/src/zope/app/publication/publicationtraverse.py:1.8 Wed May 28 11:46:10 2003
+++ Zope3/src/zope/app/publication/publicationtraverse.py Sun Jun 1 11:59:34 2003
@@ -19,7 +19,7 @@
from zope.component import queryView
from zope.publisher.interfaces import NotFound
from types import StringTypes
-from zope.context import ContextWrapper
+from zope.app.context import ContextWrapper
from zope.security.checker import ProxyFactory
from zope.proxy import removeAllProxies
=== Zope3/src/zope/app/publication/zopepublication.py 1.30 => 1.31 ===
--- Zope3/src/zope/app/publication/zopepublication.py:1.30 Wed May 28 11:46:10 2003
+++ Zope3/src/zope/app/publication/zopepublication.py Sun Jun 1 11:59:34 2003
@@ -26,7 +26,7 @@
from zope.security.management import newSecurityManager
from zope.security.checker import ProxyFactory
-from zope.context import ContextWrapper
+from zope.app.context import ContextWrapper
from zope.proxy import removeAllProxies
@@ -44,7 +44,7 @@
from zope.app.publication.publicationtraverse import PublicationTraverse
-from zope.context import ContextWrapper
+from zope.app.context import ContextWrapper
# XXX Should this be imported here?
from transaction import get_transaction