[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZopePublication/tests - testZopePublication.py:1.8
Jim Fulton
jim@zope.com
Sat, 13 Jul 2002 10:18:38 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/ZopePublication/tests
In directory cvs.zope.org:/tmp/cvs-serv1111/lib/python/Zope/App/ZopePublication/tests
Modified Files:
testZopePublication.py
Log Message:
Fixed bug in context management when uri segments that produce only
side effects (e.g. ++skin++ZopeTop) are used.
Fixed up absolute url bread crumbs to not show side-effect steps in
bread crumbs, while retaining them in the breadcrumb urls.
Refactored side-effect handling slightly (changed context data names)
in absolute url and physical path code.
Added tests for side effect handling for absolute url, physical path,
and namespace handling code.
=== Zope3/lib/python/Zope/App/ZopePublication/tests/testZopePublication.py 1.7 => 1.8 ===
from Zope.App.Traversing.Namespaces import provideNamespaceHandler
from Zope.App.Traversing.PresentationNamespaces import view, resource
+ from Zope.App.Traversing.EtcNamespace import etc
provideNamespaceHandler('view', view)
provideNamespaceHandler('resource', resource)
+ provideNamespaceHandler('etc', etc)