-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into ci/devcontainers
- Loading branch information
Showing
6 changed files
with
141 additions
and
9 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "icalevents" | ||
version = "0.1.27" | ||
version = "0.1.28" | ||
description = "Simple Python 3 library to download, parse and query iCal sources." | ||
authors = ["Martin Eigenmann <[email protected]>", "Thomas Irgang <[email protected]>", | ||
"Alexander Hultnér <[email protected]>"] | ||
|
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,91 @@ | ||
BEGIN:VCALENDAR | ||
METHOD:PUBLISH | ||
PRODID:Microsoft Exchange Server 2010 | ||
VERSION:2.0 | ||
X-WR-CALNAME:Calendar | ||
BEGIN:VTIMEZONE | ||
TZID:Pacific Standard Time | ||
BEGIN:STANDARD | ||
DTSTART:16010101T020000 | ||
TZOFFSETFROM:-0700 | ||
TZOFFSETTO:-0800 | ||
RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 | ||
END:STANDARD | ||
BEGIN:DAYLIGHT | ||
DTSTART:16010101T020000 | ||
TZOFFSETFROM:-0800 | ||
TZOFFSETTO:-0700 | ||
RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 | ||
END:DAYLIGHT | ||
END:VTIMEZONE | ||
BEGIN:VTIMEZONE | ||
TZID:UTC | ||
BEGIN:STANDARD | ||
DTSTART:16010101T000000 | ||
TZOFFSETFROM:+0000 | ||
TZOFFSETTO:+0000 | ||
END:STANDARD | ||
BEGIN:DAYLIGHT | ||
DTSTART:16010101T000000 | ||
TZOFFSETFROM:+0000 | ||
TZOFFSETTO:+0000 | ||
END:DAYLIGHT | ||
END:VTIMEZONE | ||
BEGIN:VTIMEZONE | ||
TZID:Central Standard Time | ||
BEGIN:STANDARD | ||
DTSTART:16010101T020000 | ||
TZOFFSETFROM:-0500 | ||
TZOFFSETTO:-0600 | ||
RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 | ||
END:STANDARD | ||
BEGIN:DAYLIGHT | ||
DTSTART:16010101T020000 | ||
TZOFFSETFROM:-0600 | ||
TZOFFSETTO:-0500 | ||
RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 | ||
END:DAYLIGHT | ||
END:VTIMEZONE | ||
BEGIN:VTIMEZONE | ||
TZID:Eastern Standard Time | ||
BEGIN:STANDARD | ||
DTSTART:16010101T020000 | ||
TZOFFSETFROM:-0400 | ||
TZOFFSETTO:-0500 | ||
RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 | ||
END:STANDARD | ||
BEGIN:DAYLIGHT | ||
DTSTART:16010101T020000 | ||
TZOFFSETFROM:-0500 | ||
TZOFFSETTO:-0400 | ||
RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 | ||
END:DAYLIGHT | ||
END:VTIMEZONE | ||
BEGIN:VTIMEZONE | ||
TZID:India Standard Time | ||
BEGIN:STANDARD | ||
DTSTART:16010101T000000 | ||
TZOFFSETFROM:+0530 | ||
TZOFFSETTO:+0530 | ||
END:STANDARD | ||
BEGIN:DAYLIGHT | ||
DTSTART:16010101T000000 | ||
TZOFFSETFROM:+0530 | ||
TZOFFSETTO:+0530 | ||
END:DAYLIGHT | ||
END:VTIMEZONE | ||
BEGIN:VEVENT | ||
UID:0400AAAA8200E00074C5B7101A82E0080000000085E5DC3409AAAA01000000000000000 | ||
010000000AAAADE08C53CAA4283D0AAA1A2AAA97 | ||
SUMMARY:TEST Summary | ||
DTSTART;TZID=Pacific Standard Time:20230509T090000 | ||
DTEND;TZID=Pacific Standard Time:20230509T100000 | ||
CLASS:PUBLIC | ||
PRIORITY:5 | ||
DTSTAMP:20230509T014745Z | ||
TRANSP:OPAQUE | ||
STATUS:CONFIRMED | ||
SEQUENCE:0 | ||
LOCATION: | ||
END:VEVENT | ||
END:VCALENDAR |
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