-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: ignore attributes and strip tag prefixes during xml parse * fix: getAllEvents() for iCloud calendars * test: add fixtures for iCloud calendar style responses * docs: add 401 error hint to README.md
- Loading branch information
Showing
7 changed files
with
438 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<multistatus xmlns="DAV:"> | ||
<response xmlns="DAV:"> | ||
<href>/123456789/calendars/DEADB715-BEEF-47E1-A2B6-E1BA415C93AC/</href> | ||
<propstat> | ||
<prop> | ||
<displayname xmlns="DAV:">My Calendar</displayname> | ||
<getctag xmlns="http://calendarserver.org/ns/">FT=-@RU=1a5c7464-1234-1234-ba09-bb58b7adbac7@S=2012</getctag> | ||
</prop> | ||
<status>HTTP/1.1 200 OK</status> | ||
</propstat> | ||
</response> | ||
</multistatus> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0"?> | ||
<multistatus xmlns="DAV:"> | ||
<response> | ||
<href>/123456789/calendars/D1234567-B5E0-4444-B09E-9999FF89C4AF/</href> | ||
<propstat> | ||
<prop> | ||
<getetag xmlns="DAV:">"C=2325@U=c0e471b8-9d6a-4e13-80e3-2e89dab8f4c4"</getetag> | ||
</prop> | ||
<status>HTTP/1.1 200 OK</status> | ||
</propstat> | ||
</response> | ||
<response> | ||
<href>/123456789/calendars/D1234567-B5E0-4444-B09E-9999FF89C4AF/A47C9E63-DC03-42B5-9DF4-2F4AA324EFEF.ics</href> | ||
<propstat> | ||
<prop> | ||
<getetag xmlns="DAV:">"C=2329@U=c0e471b8-9d6a-4e13-80e3-2e89dab8f4c4"</getetag> | ||
</prop> | ||
<status>HTTP/1.1 200 OK</status> | ||
</propstat> | ||
</response> | ||
<response> | ||
<href>/123456789/calendars/D1234567-B5E0-4444-B09E-9999FF89C4AF/C047F711-544B-4752-BDFF-BF1230E2DD39.ics</href> | ||
<propstat> | ||
<prop> | ||
<getetag xmlns="DAV:">"C=2328@U=c0e471b8-9d6a-4e13-80e3-2e89dab8f4c4"</getetag> | ||
</prop> | ||
<status>HTTP/1.1 200 OK</status> | ||
</propstat> | ||
</response> | ||
</multistatus> |
Oops, something went wrong.