[Zope-Checkins] CVS: Zope/lib/python/ZServer - HTTPServer.py:1.46.18.1

Lennart Regebro regebro at nuxeo.com
Tue Oct 21 09:52:21 EDT 2003


Update of /cvs-repository/Zope/lib/python/ZServer
In directory cvs.zope.org:/tmp/cvs-serv31491/lib/python/ZServer

Modified Files:
      Tag: regebro-webdavfixes-branch
	HTTPServer.py 
Log Message:
Two bugs fixed: 
#572, getting something via WebDAV requires 'FPT Access' permission.

Separated the listing of resources in a collection in WebDAV from the objectValues() method to the listDAVObjects() method.




=== Zope/lib/python/ZServer/HTTPServer.py 1.46 => 1.46.18.1 ===
--- Zope/lib/python/ZServer/HTTPServer.py:1.46	Wed Apr  9 16:26:23 2003
+++ Zope/lib/python/ZServer/HTTPServer.py	Tue Oct 21 09:51:51 2003
@@ -244,7 +244,7 @@
         if self._wdav_client_reg(agent):
             env['WEBDAV_SOURCE_PORT'] = 1
             path_info = env['PATH_INFO']
-            path_info = posixpath.join(path_info, 'manage_FTPget')
+            path_info = posixpath.join(path_info, 'manage_DAVget')
             path_info = posixpath.normpath(path_info)
             env['PATH_INFO'] = path_info
 




More information about the Zope-Checkins mailing list