[Zope3-checkins] CVS: Zope3/src/zope/app/publication - browser.py:1.3
Jeremy Hylton
jeremy@zope.com
Mon, 30 Dec 2002 16:44:45 -0500
Update of /cvs-repository/Zope3/src/zope/app/publication
In directory cvs.zope.org:/tmp/cvs-serv22185/zope/app/publication
Modified Files:
browser.py
Log Message:
Clean merged module
=== Zope3/src/zope/app/publication/browser.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/publication/browser.py:1.2 Wed Dec 25 09:13:08 2002
+++ Zope3/src/zope/app/publication/browser.py Mon Dec 30 16:44:45 2002
@@ -13,16 +13,17 @@
##############################################################################
"""XXX short summary goes here.
-XXX longer description goes here.
-
$Id$
"""
__metaclass__ = type
from zope.app.publication.publicationtraverse \
import PublicationTraverser as PublicationTraverser_
+from zope.app.publication.http import ZopeHTTPPublication
+from zope.component import queryAdapter, queryView
+from zope.proxy.context import ContextWrapper
+from zope.proxy.introspection import removeAllProxies
from zope.publisher.interfaces.browser import IBrowserPublisher
-from zope.component import queryAdapter
class PublicationTraverser(PublicationTraverser_):
@@ -39,19 +40,6 @@
return ob
ob = self.traversePath(request, ob, path)
-
-
-"""
-
-Revision information:
-$Id$
-"""
-
-from zope.app.publication.http import ZopeHTTPPublication
-from zope.publisher.interfaces.browser import IBrowserPublisher
-from zope.component import queryView
-from zope.proxy.context import ContextWrapper
-from zope.proxy.introspection import removeAllProxies
class BrowserPublication(ZopeHTTPPublication):
"""Web browser publication handling."""