webdav-handler-rs
webdav-handler-rs copied to clipboard
webdav handler library for hyper, warp, actix-web or anything that can interface using the 'http' crate.
See "Changes to formatting methods" in the 1.0 release notes:
See also https://github.com/messense/dav-server-rs/pull/18 and https://github.com/messense/dav-server-rs/pull/19.
**Problem Description** Code hangs when calling "write_bytes" function inside "handle_put". https://github.com/miquels/webdav-handler-rs/blob/167c564147a01b6029e5c3db37344bd433bb8a06/src/handle_put.rs#L229 I suspect it has something to do with this future. https://github.com/miquels/webdav-handler-rs/blob/167c564147a01b6029e5c3db37344bd433bb8a06/src/handle_put.rs#L214 **Steps to Reproduce** 1. Build project from master...
This PR adds `path` parameter to `DavFileSystem` trait's `get_quota` interface. There are many cases when we use a folder like `/media` to export as webdav file root, but subfolders in...