apple / ccs-calendarserver

The Calendar and Contacts Server.
https://www.calendarserver.org
Apache License 2.0
486 stars 136 forks source link

server should advertise support for extended-mkcol in the Dav header #199

Closed macosforgebot closed 13 years ago

macosforgebot commented 13 years ago

rob@… originally submitted this as ticket:459


It's supported and clients that support it will fall back to the MKCALENDAR method if it's missing. the spec is in the doc directory.

macosforgebot commented 13 years ago

rob@… originally submitted this as comment:1:⁠ticket:459


tested with http://boxacle.net/jqcaldav/ commit d52221e6bd49efa9e13cbeca92cf48d7e484cab3 make the if statement on line 1093 of jquery-dav.js return true to test

macosforgebot commented 13 years ago

mail@… originally submitted this as comment:2:⁠ticket:459


I just had a look at the header my CalendarServer produces:

DAV    1, access-control, calendar-access, calendar-schedule, calendar-auto-schedule, calendar-availability,
inbox-availability, calendar-proxy, calendarserver-private-events, calendarserver-private-comments, 
calendarserver-sharing, calendarserver-sharing-no-scheduling, calendar-query-extended, 
calendarserver-principal-property-search

the jqcaldav code checks for the following:

                       if ( /extended-mkcol/.test ( $.fn.caldav.serverSupports ) )
macosforgebot commented 13 years ago

@cyrusdaboo originally submitted this as comment:3:⁠ticket:459


Fixed in r7817