diff options
author | James Lal <james@lightsofapollo.com> | 2012-06-19 23:31:10 -0700 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2012-06-19 23:31:10 -0700 |
commit | 578e4e03749bba86c702f86a80e1aad5778ab722 (patch) | |
tree | 074518d77103fec2d5023454a255e1cc616bacaf /samples | |
parent | d89e5a43dadff8d1b2c42e9bf5ea3bc129706d90 (diff) | |
download | jsCalDAV-578e4e03749bba86c702f86a80e1aad5778ab722.tar.gz |
update xml samples
Diffstat (limited to 'samples')
-rw-r--r-- | samples/xml/propget.xml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/samples/xml/propget.xml b/samples/xml/propget.xml new file mode 100644 index 0000000..c8487b2 --- /dev/null +++ b/samples/xml/propget.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<D:multistatus xmlns:D="DAV:"> + + <D:response> + + <D:href>/calendar/user/</D:href> + + <D:propstat> + <D:status>HTTP/1.1 200 OK</D:status> + <D:prop> + + <D:principal-URL> + <D:href>/calendar/pinc/</D:href> + </D:principal-URL> + + <D:resourcetype> + <D:principal /> + <D:collection /> + </D:resourcetype> + + </D:prop> + </D:propstat> + + <D:propstat> + <D:status>HTTP/1.1 404 Not Found</D:status> + <D:prop> + <A:current-user-principal xmlns:A="DAV:" /> + </D:prop> + </D:propstat> + + </D:response> + + <D:response> + <D:href>/calendar/other</D:href> + <D:propstat> + <D:status>HTTP/1.1 200 OK</D:status> + <D:prop> + <D:missing /> + </D:prop> + </D:propstat> + </D:response> + + +</D:multistatus> |