mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-21 01:54:23 +00:00
Some vague changes in the hope that it might work better with
iCal. I really need to spend some time with a Mac to make this work, I think...
This commit is contained in:
parent
c2794db775
commit
1083970df8
@ -2,8 +2,8 @@
|
||||
/**
|
||||
* CalDAV Server - handle PROPFIND method
|
||||
*
|
||||
* @package rscds
|
||||
* @subpackage caldav
|
||||
* @package davical
|
||||
* @subpackage propfind
|
||||
* @author Andrew McMillan <andrew@catalyst.net.nz>
|
||||
* @copyright Catalyst .Net Ltd
|
||||
* @license http://gnu.org/copyleft/gpl.html GNU GPL v2
|
||||
@ -41,6 +41,8 @@ foreach( $request->xml_tags AS $k => $v ) {
|
||||
case 'URN:IETF:PARAMS:XML:NS:CALDAV:MAX-INSTANCES':
|
||||
case 'URN:IETF:PARAMS:XML:NS:CALDAV:MAX-ATTENDEES-PER-INSTANCE':
|
||||
case 'HTTP://APACHE.ORG/DAV/PROPS/:EXECUTABLE':
|
||||
case 'HTTP://CALENDARSERVER.ORG/NS/:DROPBOX-HOME-URL':
|
||||
case 'HTTP://CALENDARSERVER.ORG/NS/:NOTIFICATIONS-URL':
|
||||
case 'DAV::CHECKED-OUT':
|
||||
case 'DAV::CHECKED-IN':
|
||||
case 'DAV::SOURCE':
|
||||
@ -84,6 +86,9 @@ foreach( $request->xml_tags AS $k => $v ) {
|
||||
/**
|
||||
* Add the ones that are specifically unsupported here.
|
||||
*/
|
||||
case 'URN:IETF:PARAMS:XML:NS:CALDAV:CALENDAR-USER-ADDRESS-SET': /** calendar-schedule is not supported */
|
||||
case 'URN:IETF:PARAMS:XML:NS:CALDAV:SCHEDULE-INBOX-URL': /** calendar-schedule is not supported */
|
||||
case 'URN:IETF:PARAMS:XML:NS:CALDAV:SCHEDULE-OUTBOX-URL': /** calendar-schedule is not supported */
|
||||
case 'UNSUPPORTED':
|
||||
if ( preg_match('/^(.*):([^:]+)$/', $tag, $matches) ) {
|
||||
$unsupported[$matches[2]] = $matches[1];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user