Open macosforgebot opened 12 years ago
douglm@… originally submitted this as ticket:540
Resource/CalDAV/sharing/notification-sync/2.xml has the content
<?xml version="1.0" encoding="utf-8" ?> <D:sync-collection xmlns:D="DAV:"> <D:sync-token/> </D:sync-collection>
which is invalid according to the spec
<!ELEMENT sync-collection (sync-token, sync-level, limit?, prop)>
Should be more like
<?xml version="1.0" encoding="utf-8" ?> <D:sync-collection xmlns:D="DAV:"> <D:sync-token/> <D:sync-level>1</D:sync-level> <D:prop> <D:getetag/> </D:prop> </D:sync-collection>
Similarly 4.xml, 9.xml
@wsanchez originally submitted this as comment:4:ticket:540
@wsanchez originally submitted this as comment:5:ticket:540
douglm@… originally submitted this as ticket:540
Resource/CalDAV/sharing/notification-sync/2.xml has the content
which is invalid according to the spec
Should be more like
Similarly 4.xml, 9.xml