[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/ZopePublication/VFS - Publication.py:1.3
Stephan Richter
srichter@cbu.edu
Sat, 29 Jun 2002 11:42:14 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/ZopePublication/VFS
In directory cvs.zope.org:/tmp/cvs-serv22238/lib/python/Zope/App/ZopePublication/VFS
Modified Files:
Publication.py
Log Message:
Okay, I fixed the the VFS implementation again. There is quiet some work left
though. We have to get rid of the _traverse view for folders, then I can do
some more. Also, I still have to do some general cleanup in the Publisher
and Traverser.
=== Zope3/lib/python/Zope/App/ZopePublication/VFS/Publication.py 1.2 => 1.3 ===
from Zope.App.ZopePublication.ZopePublication import ZopePublication
-from Zope.ComponentArchitecture import getView
+from Zope.ComponentArchitecture import queryView
from Zope.Publisher.Exceptions import NotFound
from Zope.Publisher.mapply import mapply
@@ -29,7 +29,7 @@
def callObject(self, request, ob):
- view = getView(ob, 'vfs', request, self)
+ view = queryView(ob, 'vfs', request, self)
if view is not self:
method = getattr(view, request.method)