-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from Pyronix/32-handle-rdate-as-specified-in-r…
…fc-5545 [#32] Handle RDATE as specified in RFC 5545
- Loading branch information
Showing
3 changed files
with
67 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
BEGIN:VCALENDAR | ||
PRODID:-//Google Inc//Google Calendar 70.9054//EN | ||
VERSION:2.0 | ||
CALSCALE:GREGORIAN | ||
METHOD:PUBLISH | ||
X-WR-CALNAME:Minimal example | ||
X-WR-TIMEZONE:Europe/Berlin | ||
X-WR-CALDESC:Example for #221 | ||
BEGIN:VTIMEZONE | ||
TZID:Europe/Berlin | ||
X-LIC-LOCATION:Europe/Berlin | ||
BEGIN:DAYLIGHT | ||
TZOFFSETFROM:+0100 | ||
TZOFFSETTO:+0200 | ||
TZNAME:CEST | ||
DTSTART:19700329T020000 | ||
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU | ||
END:DAYLIGHT | ||
BEGIN:STANDARD | ||
TZOFFSETFROM:+0200 | ||
TZOFFSETTO:+0100 | ||
TZNAME:CET | ||
DTSTART:19701025T030000 | ||
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU | ||
END:STANDARD | ||
END:VTIMEZONE | ||
BEGIN:VEVENT | ||
DTSTART;TZID=Europe/Berlin:20191016T100000 | ||
DTEND;TZID=Europe/Berlin:20191016T120000 | ||
RRULE:FREQ=WEEKLY;WKST=MO;UNTIL=20200129T225959Z;BYDAY=WE | ||
RDATE;TZID=Europe/Berlin:20200201T200000 | ||
DTSTAMP:20191121T083508Z | ||
UID:01234567890123456789@google.com | ||
CREATED:20191001T090000Z | ||
DESCRIPTION:This repeating event should additionally occur on the specified RDATESs | ||
LAST-MODIFIED:20191001T090000Z | ||
LOCATION:Room 1 | ||
SEQUENCE:1 | ||
STATUS:CONFIRMED | ||
SUMMARY:A repeating event | ||
TRANSP:OPAQUE | ||
END:VEVENT | ||
END:VCALENDAR |