-
I can say your patch works perfectly with python 2.6 also. Thanks for you effort, really helped!
2009-09-10 18:21:02 UTC by nobody
-
+1 for the patch.
2009-09-10 07:42:15 UTC by mikkopa
-
When uploading files to box.net, I always get a 411 error during
child= c.addResource("some-remote-file")
I've added a Content-length header in the put function of the DAV class.
This patch seems to solve the issue for me.
2009-08-26 15:40:54 UTC by nobody
-
Apparently the lock method was redefined. See http://sourceforge.net/tracker/?func=detail&aid=2813463&group_id=220863&atid=1051766.
2009-06-30 12:53:15 UTC by radekdvorak
-
Connection class inherits lock method from davlib.DAV. Conection class redeclares connection.lock with threading.RLock therefore it was impossible to lock webdav resources. This patch renames connection.lock to connection.RLock to solve the name clash.
2009-06-28 09:00:06 UTC by radekdvorak
-
Http digest authentication
This implementation is limited:
* Does work only with qop="auth".
* Does not check cnonce.
* Hash is hardcoded to md5.
* Does not implement opaque
Tested only on Apache 2.2.11.
It has not been tested with python
2009-06-25 08:45:39 UTC by radekdvorak
-
tobiasschlauch committed revision 44 to the Python WebDAV Library SVN repository, changing 1 files.
2009-04-03 17:19:43 UTC by tobiasschlauch
-
Hello everyone.
Trying to upload a new file to the web.de servers using this code...
###
import os
import webdav.WebdavClient
c = webdav.WebdavClient.ResourceStorer("https://webdav.smartdrive.web.de/test7.txt")
c.connection.addBasicAuthorization("username", "password", "")
f = open("davtest.py", "r")
c.uploadFile(f...
2008-12-19 13:34:26 UTC by blackweli
-
tobiasschlauch committed revision 43 to the Python WebDAV Library SVN repository, changing 1 files.
2008-11-19 12:49:17 UTC by tobiasschlauch
-
tobiasschlauch committed revision 42 to the Python WebDAV Library SVN repository, changing 1 files.
2008-11-19 12:48:05 UTC by tobiasschlauch