Add parameter for masking privilege output to only applicable set.

This commit is contained in:
Andrew McMillan 2010-06-28 09:31:35 +12:00
parent adb1f949ac
commit f2ebbda855
254 changed files with 529 additions and 1581 deletions

View File

@ -413,6 +413,7 @@ function DateToISODate( $indate ) {
* @return integer A bit mask of the privileges. * @return integer A bit mask of the privileges.
*/ */
define("DAVICAL_MAXPRIV", "65535"); define("DAVICAL_MAXPRIV", "65535");
define("DAVICAL_ADDRESSBOOK_MAXPRIV", "1023");
function privilege_to_bits( $raw_privs ) { function privilege_to_bits( $raw_privs ) {
$out_priv = 0; $out_priv = 0;
@ -452,7 +453,7 @@ function privilege_to_bits( $raw_privs ) {
} }
// 'all' will include future privileges // 'all' will include future privileges
if ( $out_priv >= DAVICAL_MAXPRIV ) $out_priv = pow(2,24) - 1; if ( ($out_priv & DAVICAL_MAXPRIV) >= DAVICAL_MAXPRIV ) $out_priv = pow(2,24) - 1;
return $out_priv; return $out_priv;
} }
@ -463,7 +464,7 @@ function privilege_to_bits( $raw_privs ) {
* @param integer $raw_bits A bit mask of the privileges. * @param integer $raw_bits A bit mask of the privileges.
* @return mixed The string (or array of strings) of privilege names * @return mixed The string (or array of strings) of privilege names
*/ */
function bits_to_privilege( $raw_bits ) { function bits_to_privilege( $raw_bits, $resourcetype = 'calendar' ) {
$out_priv = array(); $out_priv = array();
if ( is_string($raw_bits) ) { if ( is_string($raw_bits) ) {
@ -477,7 +478,7 @@ function bits_to_privilege( $raw_bits ) {
if ( ($raw_bits & 16) != 0 ) $out_priv[] = 'DAV::read-acl'; if ( ($raw_bits & 16) != 0 ) $out_priv[] = 'DAV::read-acl';
if ( ($raw_bits & 32) != 0 ) $out_priv[] = 'DAV::read-current-user-privilege-set'; if ( ($raw_bits & 32) != 0 ) $out_priv[] = 'DAV::read-current-user-privilege-set';
if ( ($raw_bits & 256) != 0 ) $out_priv[] = 'DAV::write-acl'; if ( ($raw_bits & 256) != 0 ) $out_priv[] = 'DAV::write-acl';
if ( ($raw_bits & 512) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:read-free-busy'; if ( ($resourcetype == 'calendar' || $resourcetype == 'proxy') && ($raw_bits & 512) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:read-free-busy';
if ( ($raw_bits & 198) != 0 ) { if ( ($raw_bits & 198) != 0 ) {
if ( ($raw_bits & 198) == 198 ) $out_priv[] = 'DAV::write'; if ( ($raw_bits & 198) == 198 ) $out_priv[] = 'DAV::write';
@ -487,14 +488,14 @@ function bits_to_privilege( $raw_bits ) {
if ( ($raw_bits & 128) != 0 ) $out_priv[] = 'DAV::unbind'; if ( ($raw_bits & 128) != 0 ) $out_priv[] = 'DAV::unbind';
} }
if ( ($raw_bits & 7168) != 0 ) { if ( $resourcetype == 'schedule-inbox' && ($raw_bits & 7168) != 0 ) {
if ( ($raw_bits & 7168) == 7168 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver'; if ( ($raw_bits & 7168) == 7168 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver';
if ( ($raw_bits & 1024) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver-invite'; if ( ($raw_bits & 1024) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver-invite';
if ( ($raw_bits & 2048) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver-reply'; if ( ($raw_bits & 2048) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver-reply';
if ( ($raw_bits & 4096) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-query-freebusy'; if ( ($raw_bits & 4096) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-query-freebusy';
} }
if ( ($raw_bits & 57344) != 0 ) { if ( $resourcetype == 'schedule-outbox' && ($raw_bits & 57344) != 0 ) {
if ( ($raw_bits & 57344) == 57344 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send'; if ( ($raw_bits & 57344) == 57344 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send';
if ( ($raw_bits & 8192) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send-invite'; if ( ($raw_bits & 8192) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send-invite';
if ( ($raw_bits & 16384) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send-reply'; if ( ($raw_bits & 16384) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send-reply';

View File

@ -665,7 +665,7 @@ EOQRY;
function BuildPrivileges( $privilege_names=null, &$xmldoc=null ) { function BuildPrivileges( $privilege_names=null, &$xmldoc=null ) {
if ( $privilege_names == null ) { if ( $privilege_names == null ) {
if ( !isset($this->privileges) ) $this->FetchPrivileges(); if ( !isset($this->privileges) ) $this->FetchPrivileges();
$privilege_names = bits_to_privilege($this->privileges); $privilege_names = bits_to_privilege($this->privileges, ($this->_is_collection ? $this->collection->type : 'resource') );
} }
return privileges_to_XML( $privilege_names, $xmldoc); return privileges_to_XML( $privilege_names, $xmldoc);
} }
@ -1131,7 +1131,7 @@ EOQRY;
* BuildACE - construct an XMLElement subtree for a DAV::ace * BuildACE - construct an XMLElement subtree for a DAV::ace
*/ */
function BuildACE( &$xmldoc, $privs, $principal ) { function BuildACE( &$xmldoc, $privs, $principal ) {
$privilege_names = bits_to_privilege($privs); $privilege_names = bits_to_privilege($privs, ($this->_is_collection ? $this->collection->type : 'resource'));
$privileges = array(); $privileges = array();
foreach( $privilege_names AS $k ) { foreach( $privilege_names AS $k ) {
$privilege = new XMLElement('privilege'); $privilege = new XMLElement('privilege');

View File

@ -413,6 +413,7 @@ function DateToISODate( $indate ) {
* @return integer A bit mask of the privileges. * @return integer A bit mask of the privileges.
*/ */
define("DAVICAL_MAXPRIV", "65535"); define("DAVICAL_MAXPRIV", "65535");
define("DAVICAL_ADDRESSBOOK_MAXPRIV", "1023");
function privilege_to_bits( $raw_privs ) { function privilege_to_bits( $raw_privs ) {
$out_priv = 0; $out_priv = 0;
@ -452,7 +453,7 @@ function privilege_to_bits( $raw_privs ) {
} }
// 'all' will include future privileges // 'all' will include future privileges
if ( $out_priv >= DAVICAL_MAXPRIV ) $out_priv = pow(2,24) - 1; if ( ($out_priv & DAVICAL_MAXPRIV) >= DAVICAL_MAXPRIV ) $out_priv = pow(2,24) - 1;
return $out_priv; return $out_priv;
} }
@ -463,7 +464,7 @@ function privilege_to_bits( $raw_privs ) {
* @param integer $raw_bits A bit mask of the privileges. * @param integer $raw_bits A bit mask of the privileges.
* @return mixed The string (or array of strings) of privilege names * @return mixed The string (or array of strings) of privilege names
*/ */
function bits_to_privilege( $raw_bits ) { function bits_to_privilege( $raw_bits, $resourcetype = 'calendar' ) {
$out_priv = array(); $out_priv = array();
if ( is_string($raw_bits) ) { if ( is_string($raw_bits) ) {
@ -477,7 +478,7 @@ function bits_to_privilege( $raw_bits ) {
if ( ($raw_bits & 16) != 0 ) $out_priv[] = 'DAV::read-acl'; if ( ($raw_bits & 16) != 0 ) $out_priv[] = 'DAV::read-acl';
if ( ($raw_bits & 32) != 0 ) $out_priv[] = 'DAV::read-current-user-privilege-set'; if ( ($raw_bits & 32) != 0 ) $out_priv[] = 'DAV::read-current-user-privilege-set';
if ( ($raw_bits & 256) != 0 ) $out_priv[] = 'DAV::write-acl'; if ( ($raw_bits & 256) != 0 ) $out_priv[] = 'DAV::write-acl';
if ( ($raw_bits & 512) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:read-free-busy'; if ( ($resourcetype == 'calendar' || $resourcetype == 'proxy') && ($raw_bits & 512) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:read-free-busy';
if ( ($raw_bits & 198) != 0 ) { if ( ($raw_bits & 198) != 0 ) {
if ( ($raw_bits & 198) == 198 ) $out_priv[] = 'DAV::write'; if ( ($raw_bits & 198) == 198 ) $out_priv[] = 'DAV::write';
@ -487,14 +488,14 @@ function bits_to_privilege( $raw_bits ) {
if ( ($raw_bits & 128) != 0 ) $out_priv[] = 'DAV::unbind'; if ( ($raw_bits & 128) != 0 ) $out_priv[] = 'DAV::unbind';
} }
if ( ($raw_bits & 7168) != 0 ) { if ( $resourcetype == 'schedule-inbox' && ($raw_bits & 7168) != 0 ) {
if ( ($raw_bits & 7168) == 7168 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver'; if ( ($raw_bits & 7168) == 7168 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver';
if ( ($raw_bits & 1024) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver-invite'; if ( ($raw_bits & 1024) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver-invite';
if ( ($raw_bits & 2048) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver-reply'; if ( ($raw_bits & 2048) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-deliver-reply';
if ( ($raw_bits & 4096) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-query-freebusy'; if ( ($raw_bits & 4096) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-query-freebusy';
} }
if ( ($raw_bits & 57344) != 0 ) { if ( $resourcetype == 'schedule-outbox' && ($raw_bits & 57344) != 0 ) {
if ( ($raw_bits & 57344) == 57344 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send'; if ( ($raw_bits & 57344) == 57344 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send';
if ( ($raw_bits & 8192) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send-invite'; if ( ($raw_bits & 8192) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send-invite';
if ( ($raw_bits & 16384) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send-reply'; if ( ($raw_bits & 16384) != 0 ) $out_priv[] = 'urn:ietf:params:xml:ns:caldav:schedule-send-reply';

View File

@ -2,7 +2,8 @@ HTTP/1.1 100 Continue
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -2,7 +2,8 @@ HTTP/1.1 100 Continue
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -2,7 +2,8 @@ HTTP/1.1 100 Continue
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -2,7 +2,8 @@ HTTP/1.1 100 Continue
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Allow: OPTIONS, PROPFIND, REPORT Allow: OPTIONS, PROPFIND, REPORT
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "6d1a022aa3449d59d60899df5ad10c7d" ETag: "6d1a022aa3449d59d60899df5ad10c7d"
Content-Length: 2426 Content-Length: 2426
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "f7655907e64525c7ecaa409f800e8f8b" ETag: "f7655907e64525c7ecaa409f800e8f8b"
Content-Length: 1805 Content-Length: 1805
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Cache-Control: no-cache Cache-Control: no-cache
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "297a698b8d8c51217f0de910462dc6d8" ETag: "297a698b8d8c51217f0de910462dc6d8"
Content-Length: 2206 Content-Length: 2206
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "11e359b5ecf3fe8b807545812243c418" ETag: "11e359b5ecf3fe8b807545812243c418"
Content-Length: 535 Content-Length: 535
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 405 Method Not Allowed HTTP/1.1 405 Method Not Allowed
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 45 Content-Length: 45
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "b000d7defa19ccb7cd21e546b54155ee" ETag: "b000d7defa19ccb7cd21e546b54155ee"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 204 No Content HTTP/1.1 204 No Content
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "557e551fae1b5c7f2131bde1ba0ba01e" ETag: "557e551fae1b5c7f2131bde1ba0ba01e"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "22158fc45876987b2b00749a3a1684d8" ETag: "22158fc45876987b2b00749a3a1684d8"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "0e8180a5a3677b7b3e2156a8053882fe" ETag: "0e8180a5a3677b7b3e2156a8053882fe"
Content-Length: 1124 Content-Length: 1124
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 204 No Content HTTP/1.1 204 No Content
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "2c32a2f8aba853654eb17fe037a4db4d" ETag: "2c32a2f8aba853654eb17fe037a4db4d"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "5fec6bf01e8802ec9facdb7adc7ab93f" ETag: "5fec6bf01e8802ec9facdb7adc7ab93f"
Content-Length: 1124 Content-Length: 1124
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Cache-Control: no-cache Cache-Control: no-cache
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 403 Forbidden HTTP/1.1 403 Forbidden
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 219 Content-Length: 219
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "75a75e1c7c4546074aab7645b5323738" ETag: "75a75e1c7c4546074aab7645b5323738"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 400 Bad Request HTTP/1.1 400 Bad Request
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 46 Content-Length: 46
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 412 Precondition Failed HTTP/1.1 412 Precondition Failed
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 44 Content-Length: 44
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 204 No Content HTTP/1.1 204 No Content
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "81979ab45975368d619171a4c3e1e5e2" ETag: "81979ab45975368d619171a4c3e1e5e2"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 204 No Content HTTP/1.1 204 No Content
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "d668266633188d6d2690a2eb491bba0c" ETag: "d668266633188d6d2690a2eb491bba0c"
Content-Length: 404 Content-Length: 404
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Allow: OPTIONS, PROPFIND, REPORT, DELETE, LOCK, UNLOCK, MOVE, GET, PUT, HEAD, MKTICKET, DELTICKET Allow: OPTIONS, PROPFIND, REPORT, DELETE, LOCK, UNLOCK, MOVE, GET, PUT, HEAD, MKTICKET, DELTICKET
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "5d903e7367fc5fd8975cd2a2f12c94ef" ETag: "5d903e7367fc5fd8975cd2a2f12c94ef"
Content-Length: 326 Content-Length: 326
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Etag: "2c32a2f8aba853654eb17fe037a4db4d" Etag: "2c32a2f8aba853654eb17fe037a4db4d"
Content-Length: 747 Content-Length: 747
Content-Type: text/calendar; charset="utf-8" Content-Type: text/calendar; charset="utf-8"

View File

@ -2,7 +2,8 @@ HTTP/1.1 100 Continue
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "c3658901fd4689d4a1e1d6f08601ef4f" ETag: "c3658901fd4689d4a1e1d6f08601ef4f"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "ca51ab493acbf1f9847c2cd95ef33026" ETag: "ca51ab493acbf1f9847c2cd95ef33026"
Content-Length: 552 Content-Length: 552
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Etag: "c3658901fd4689d4a1e1d6f08601ef4f" Etag: "c3658901fd4689d4a1e1d6f08601ef4f"
Content-Length: 1059 Content-Length: 1059
Content-Type: text/calendar; charset="utf-8" Content-Type: text/calendar; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "060f992b9ee715662940929074dc1f57" ETag: "060f992b9ee715662940929074dc1f57"
Content-Length: 530 Content-Length: 530
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "e68750266884dbc4ee9f96f85a8dc39c" ETag: "e68750266884dbc4ee9f96f85a8dc39c"
Content-Length: 568 Content-Length: 568
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
Allow: OPTIONS, PROPFIND, REPORT, DELETE, LOCK, UNLOCK, MOVE, GET, PUT, HEAD, MKTICKET, DELTICKET Allow: OPTIONS, PROPFIND, REPORT, DELETE, LOCK, UNLOCK, MOVE, GET, PUT, HEAD, MKTICKET, DELTICKET
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "29e2f219a0c62c391b207758292e7aef" ETag: "29e2f219a0c62c391b207758292e7aef"
Content-Length: 2362 Content-Length: 2362
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "8499ce6e92d129b549025ba6ceabe941" ETag: "8499ce6e92d129b549025ba6ceabe941"
Content-Length: 1101 Content-Length: 1101
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "334c8abc0ac73261cdbf963fc7269d76" ETag: "334c8abc0ac73261cdbf963fc7269d76"
Content-Length: 347 Content-Length: 347
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "a1c6404d61190f9574e2bfd69383f144" ETag: "a1c6404d61190f9574e2bfd69383f144"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "cb43f2c3842d4c779d06f3790a43a067" ETag: "cb43f2c3842d4c779d06f3790a43a067"
Content-Length: 1349 Content-Length: 1349
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "cb43f2c3842d4c779d06f3790a43a067" ETag: "cb43f2c3842d4c779d06f3790a43a067"
Content-Length: 1349 Content-Length: 1349
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "08a435c2abaf38f4a50a997343c098a7" ETag: "08a435c2abaf38f4a50a997343c098a7"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "5def8ae2b20893a1c7f4dbaeb008f2f1" ETag: "5def8ae2b20893a1c7f4dbaeb008f2f1"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "ac90acd649c25070b1a2a17fb31a105a" ETag: "ac90acd649c25070b1a2a17fb31a105a"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
Content-Location: /caldav.php/user1/home/ Content-Location: /caldav.php/user1/home/
ETag: "334c8abc0ac73261cdbf963fc7269d76" ETag: "334c8abc0ac73261cdbf963fc7269d76"
Content-Length: 347 Content-Length: 347

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
Cache-Control: no-cache Cache-Control: no-cache
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "509b0f0d8a3363379f9f5727f5dd74a0" ETag: "509b0f0d8a3363379f9f5727f5dd74a0"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "cb3d9dc3e8c157f53eba3ea0e1e0f146" ETag: "cb3d9dc3e8c157f53eba3ea0e1e0f146"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "00ad5eb1eb5507884710b0b66aa5d5c4" ETag: "00ad5eb1eb5507884710b0b66aa5d5c4"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "a2990674708634a311bb98a59865ca50" ETag: "a2990674708634a311bb98a59865ca50"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "452f45250e12e66d9f6db823b4615a48" ETag: "452f45250e12e66d9f6db823b4615a48"
Content-Length: 3503 Content-Length: 3503
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "452f45250e12e66d9f6db823b4615a48" ETag: "452f45250e12e66d9f6db823b4615a48"
Content-Length: 3503 Content-Length: 3503
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 406 Not Acceptable HTTP/1.1 406 Not Acceptable
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
Content-Length: 33 Content-Length: 33
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "Looks like a good ETAG to me :-)" ETag: "Looks like a good ETAG to me :-)"
Content-Length: 514 Content-Length: 514
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "8bfa1d55385dd1c0d877ba64358b56d4" ETag: "8bfa1d55385dd1c0d877ba64358b56d4"
Content-Length: 1574 Content-Length: 1574
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "ed088ba2e3b2a1de74167f7a96c8c07c" ETag: "ed088ba2e3b2a1de74167f7a96c8c07c"
Content-Length: 4124 Content-Length: 4124
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "334c8abc0ac73261cdbf963fc7269d76" ETag: "334c8abc0ac73261cdbf963fc7269d76"
Content-Length: 347 Content-Length: 347
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -2,7 +2,8 @@ HTTP/1.1 100 Continue
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "e8060931f30c1798ac58ffbe4ec0bffc" ETag: "e8060931f30c1798ac58ffbe4ec0bffc"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "8f581a053df6d833254756dfd7553d37" ETag: "8f581a053df6d833254756dfd7553d37"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "7c1cd3dd9aa20bfd2ce309046cdff993" ETag: "7c1cd3dd9aa20bfd2ce309046cdff993"
Content-Length: 1527 Content-Length: 1527
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "882eeadb4b2e998ed4358acda515e963" ETag: "882eeadb4b2e998ed4358acda515e963"
Content-Length: 1421 Content-Length: 1421
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "0df5049284c13eae94d8f8ddc52d521b" ETag: "0df5049284c13eae94d8f8ddc52d521b"
Content-Length: 739 Content-Length: 739
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "9b84304066ad932fa860037c4905711a" ETag: "9b84304066ad932fa860037c4905711a"
Content-Length: 699 Content-Length: 699
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "07474790757c5e1b526ce4901889d6d3" ETag: "07474790757c5e1b526ce4901889d6d3"
Content-Length: 68 Content-Length: 68
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "07474790757c5e1b526ce4901889d6d3" ETag: "07474790757c5e1b526ce4901889d6d3"
Content-Length: 68 Content-Length: 68
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "some valid etag" ETag: "some valid etag"
Content-Length: 967 Content-Length: 967
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook
ETag: "1ae0716c07a40eb2663762d423506624" ETag: "1ae0716c07a40eb2663762d423506624"
Content-Length: 335 Content-Length: 335
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Allow: OPTIONS, PROPFIND, REPORT, DELETE, LOCK, UNLOCK, MOVE, GET, PUT, HEAD, MKTICKET, DELTICKET Allow: OPTIONS, PROPFIND, REPORT, DELETE, LOCK, UNLOCK, MOVE, GET, PUT, HEAD, MKTICKET, DELTICKET
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "61420f7d691185526594a0de01390d2f" ETag: "61420f7d691185526594a0de01390d2f"
Content-Length: 495 Content-Length: 495
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,8 +1,9 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
ETag: "7db106b1d8af7d7dbc29599051f440b6" DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 1757 ETag: "53e2a5d2cabcd630996fc1f50f0bf094"
Content-Length: 1223
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
@ -48,30 +49,6 @@ Content-Type: text/xml; charset="utf-8"
<privilege> <privilege>
<unbind/> <unbind/>
</privilege> </privilege>
<privilege>
<C:schedule-deliver/>
</privilege>
<privilege>
<C:schedule-deliver-invite/>
</privilege>
<privilege>
<C:schedule-deliver-reply/>
</privilege>
<privilege>
<C:schedule-query-freebusy/>
</privilege>
<privilege>
<C:schedule-send/>
</privilege>
<privilege>
<C:schedule-send-invite/>
</privilege>
<privilege>
<C:schedule-send-reply/>
</privilege>
<privilege>
<C:schedule-send-freebusy/>
</privilege>
</current-user-privilege-set> </current-user-privilege-set>
<resourcetype> <resourcetype>
<collection/> <collection/>

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Cache-Control: no-cache Cache-Control: no-cache
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 204 No Content HTTP/1.1 204 No Content
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 404 Not Found HTTP/1.1 404 Not Found
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 37 Content-Length: 37
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 404 Not Found HTTP/1.1 404 Not Found
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 44 Content-Length: 44
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "2e9da41da3450d7ccfe49fb10bb32c62" ETag: "2e9da41da3450d7ccfe49fb10bb32c62"
Content-Length: 4287 Content-Length: 4287
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "0d7a68984bf525342d22b8924a57e8e2" ETag: "0d7a68984bf525342d22b8924a57e8e2"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "421abf7e4848d2fecbf64217ed205d4b" ETag: "421abf7e4848d2fecbf64217ed205d4b"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Allow: OPTIONS, PROPFIND, REPORT, DELETE, LOCK, UNLOCK, MOVE, GET, PUT, HEAD, MKTICKET, DELTICKET Allow: OPTIONS, PROPFIND, REPORT, DELETE, LOCK, UNLOCK, MOVE, GET, PUT, HEAD, MKTICKET, DELTICKET
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "566f3d4049b468c63b21a2c381ab500b" ETag: "566f3d4049b468c63b21a2c381ab500b"
Content-Length: 989 Content-Length: 989
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "3d57f5e85f8e7d0fe3398eeace49ce1a" ETag: "3d57f5e85f8e7d0fe3398eeace49ce1a"
Content-Length: 3181 Content-Length: 3181
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "aa53c32e9f6870f0528351d6f73b283a" ETag: "aa53c32e9f6870f0528351d6f73b283a"
Content-Length: 675 Content-Length: 675
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "51a84c6ced23238efecbe36e6716ba9c" ETag: "51a84c6ced23238efecbe36e6716ba9c"
Content-Length: 4155 Content-Length: 4155
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "b3e66a461ef178bd4791b2b6509bbb9d" ETag: "b3e66a461ef178bd4791b2b6509bbb9d"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 204 No Content HTTP/1.1 204 No Content
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "5f050eca5480bbebbe9428222570913d" ETag: "5f050eca5480bbebbe9428222570913d"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Cache-Control: no-cache Cache-Control: no-cache
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "72e80e517b5e1c056e229b6985200b27" ETag: "72e80e517b5e1c056e229b6985200b27"
Content-Length: 1389 Content-Length: 1389
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 200 OK HTTP/1.1 200 OK
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Length: 256 Content-Length: 256
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "acfaf4c13829d0f908c2bd54a2180454" ETag: "acfaf4c13829d0f908c2bd54a2180454"
Content-Length: 998 Content-Length: 998
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "58ac2b1da600dda0e7b2e256a8dac271" ETag: "58ac2b1da600dda0e7b2e256a8dac271"
Content-Length: 987 Content-Length: 987
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "b7cfb403232dc83f936c15a179901d50" ETag: "b7cfb403232dc83f936c15a179901d50"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 204 No Content HTTP/1.1 204 No Content
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "087d1ea4915719b8a904ca18a9abbbe1" ETag: "087d1ea4915719b8a904ca18a9abbbe1"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "18134bbb51c8e25919c92a0d6265f789" ETag: "18134bbb51c8e25919c92a0d6265f789"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -2,7 +2,8 @@ HTTP/1.1 100 Continue
HTTP/1.1 201 Created HTTP/1.1 201 Created
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "c057c3eb789b944e76f4d77fccf36ea1" ETag: "c057c3eb789b944e76f4d77fccf36ea1"
Content-Length: 0 Content-Length: 0
Content-Type: text/plain; charset="utf-8" Content-Type: text/plain; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "c50498a15bb7fd50041aa0de8279f721" ETag: "c50498a15bb7fd50041aa0de8279f721"
Content-Length: 1354 Content-Length: 1354
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "ccb220eb6558890eb17d5e1da8b45269" ETag: "ccb220eb6558890eb17d5e1da8b45269"
Content-Length: 785 Content-Length: 785
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
ETag: "3fc727f4d41e43e47c6a189b1e0258e4" ETag: "3fc727f4d41e43e47c6a189b1e0258e4"
Content-Length: 3932 Content-Length: 3932
Content-Type: text/xml; charset="utf-8" Content-Type: text/xml; charset="utf-8"

View File

@ -1,6 +1,7 @@
HTTP/1.1 207 Multi-Status HTTP/1.1 207 Multi-Status
Date: Dow, 01 Jan 2000 00:00:00 GMT Date: Dow, 01 Jan 2000 00:00:00 GMT
DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule, extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
DAV: extended-mkcol, calendar-proxy, bind, addressbook, calendar-auto-schedule
Content-Location: /caldav.php/user2/ Content-Location: /caldav.php/user2/
ETag: "cb2395b4d4b229e5ea994113535bf173" ETag: "cb2395b4d4b229e5ea994113535bf173"
Content-Length: 989 Content-Length: 989

Some files were not shown because too many files have changed in this diff Show More