We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to to something like this: curl -u user -X MKCOL 'http://localhost:5232/user/calendar' --data \ '<?xml version="1.0" encoding="UTF-8" ?> <create xmlns="DAV:" xmlns:C="urn:ietf:params:xml:ns:caldav" xmlns:I="http://apple.com/ns/ical/"> <set> <prop> <resourcetype> <collection /> <C:calendar /> </resourcetype> <C:supported-calendar-component-set> <C:comp name="VEVENT" /> <C:comp name="VJOURNAL" /> <C:comp name="VTODO" /> </C:supported-calendar-component-set> <displayname>Calendar</displayname> <C:calendar-description>Example calendar</C:calendar-description> <I:calendar-color>#ff0000ff</I:calendar-color> </prop> </set> </create>'
curl -u user -X MKCOL 'http://localhost:5232/user/calendar' --data \ '<?xml version="1.0" encoding="UTF-8" ?> <create xmlns="DAV:" xmlns:C="urn:ietf:params:xml:ns:caldav" xmlns:I="http://apple.com/ns/ical/"> <set> <prop> <resourcetype> <collection /> <C:calendar /> </resourcetype> <C:supported-calendar-component-set> <C:comp name="VEVENT" /> <C:comp name="VJOURNAL" /> <C:comp name="VTODO" /> </C:supported-calendar-component-set> <displayname>Calendar</displayname> <C:calendar-description>Example calendar</C:calendar-description> <I:calendar-color>#ff0000ff</I:calendar-color> </prop> </set> </create>'
Who can I do this with the WebDavClient?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to to something like this:
curl -u user -X MKCOL 'http://localhost:5232/user/calendar' --data \ '<?xml version="1.0" encoding="UTF-8" ?> <create xmlns="DAV:" xmlns:C="urn:ietf:params:xml:ns:caldav" xmlns:I="http://apple.com/ns/ical/"> <set> <prop> <resourcetype> <collection /> <C:calendar /> </resourcetype> <C:supported-calendar-component-set> <C:comp name="VEVENT" /> <C:comp name="VJOURNAL" /> <C:comp name="VTODO" /> </C:supported-calendar-component-set> <displayname>Calendar</displayname> <C:calendar-description>Example calendar</C:calendar-description> <I:calendar-color>#ff0000ff</I:calendar-color> </prop> </set> </create>'
Who can I do this with the WebDavClient?
The text was updated successfully, but these errors were encountered: