[Zope-Checkins] CVS: Zope/lib/python/webdav - Resource.py:1.55.10.2
Lennart Regebro
cvs-admin at zope.org
Thu Oct 23 10:23:00 EDT 2003
Update of /cvs-repository/Zope/lib/python/webdav
In directory cvs.zope.org:/tmp/cvs-serv29215/lib/python/webdav
Modified Files:
Tag: Zope-2_7-branch
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.55.10.1 => 1.55.10.2 ===
--- Zope/lib/python/webdav/Resource.py:1.55.10.1 Tue Oct 21 11:27:56 2003
+++ Zope/lib/python/webdav/Resource.py Thu Oct 23 10:22:59 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