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

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


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

Modified Files:
      Tag: regebro-webdavfixes-branch
	Resource.py 
Log Message:
Now the WebDAV source port uses manage_DAVget too.


=== Zope/lib/python/webdav/Resource.py 1.55.26.1 => 1.55.26.2 ===
--- Zope/lib/python/webdav/Resource.py:1.55.26.1	Tue Oct 21 09:51:51 2003
+++ Zope/lib/python/webdav/Resource.py	Thu Oct 23 10:08:53 2003
@@ -552,10 +552,12 @@
 
 
     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 []
 
         
-Globals.default__class_init__(Resource)
+Globals.default__class_init__(Resource)
\ No newline at end of file




More information about the Zope-Checkins mailing list