-
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 in Python WebDAV Library
-
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 in Python WebDAV Library
-
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 in Python WebDAV Library