You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current library design makes it very difficult to properly support WebDAV extensions such as CardDAV and CalDAV. It's also completely missing a client implementation.
After reviewing prior art, in the last few days I've began rewriting the library from the ground up in the next branch. I have a minimal CardDAV client and WebDAV server working.
My plan is to release v0.1 with the current code so that existing users don't break, then release 0.2 with the rewrite. I'll start closing old issues once 0.1 is released.
WebDAV filesystem
Server
OPTIONS
GET, HEAD
PROPFIND
PUT
DELETE
PROPPATCH
MKCOL
COPY
MOVE
Client
PROPFIND
GET
PUT
DELETE
PROPPATCH
MKCOL
COPY
MOVE
CardDAV
Server
OPTIONS
GET, HEAD
PROPFIND
REPORT
PUT
DELETE
PROPPATCH
MKCOL
COPY
MOVE
Client
REPORT
PROPFIND
PUT
DELETE
PROPPATCH
MKCOL
COPY
MOVE
The text was updated successfully, but these errors were encountered:
The current library design makes it very difficult to properly support WebDAV extensions such as CardDAV and CalDAV. It's also completely missing a client implementation.
After reviewing prior art, in the last few days I've began rewriting the library from the ground up in the
next
branch. I have a minimal CardDAV client and WebDAV server working.My plan is to release v0.1 with the current code so that existing users don't break, then release 0.2 with the rewrite. I'll start closing old issues once 0.1 is released.
PROPPATCHPROPPATCHPROPPATCHMKCOLThe text was updated successfully, but these errors were encountered: