[Zope-Checkins] CVS: Zope/lib/python/webdav - Resource.py:1.57

Lennart Regebro cvs-admin at zope.org
Thu Oct 23 10:16:20 EDT 2003


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

Modified Files:
	Resource.py 
Log Message:
Continuing on #572. manage_DAVget is now used from the WebDAV source port as well as the standard HTTP port.


=== Zope/lib/python/webdav/Resource.py 1.56 => 1.57 ===
--- Zope/lib/python/webdav/Resource.py:1.56	Tue Oct 21 10:49:48 2003
+++ Zope/lib/python/webdav/Resource.py	Thu Oct 23 10:16:13 2003
@@ -552,7 +552,9 @@
 
 
     def manage_DAVget(self):
-        return self.manage_FTPget(self)
+        """Gets the document source"""
+        # The default implementation calls manage_FTPget
+        return self.manage_FTPget()
 
     def listDAVObjects(self):
         return []




More information about the Zope-Checkins mailing list