-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix timezone issues when using rrule (#329)
* note: test cases on windows with rrule.between are skipped since rrule seems to be somewhat broken (cf. jkbrzt/rrule#608) Co-authored-by: Jens Maus <[email protected]>
- Loading branch information
1 parent
41eeb5a
commit a09d97c
Showing
5 changed files
with
155 additions
and
5 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,21 @@ | ||
BEGIN:VCALENDAR | ||
BEGIN:VEVENT | ||
TRANSP:OPAQUE | ||
X-MICROSOFT-CDO-INTENDEDSTATUS:BUSY | ||
CREATED:20221004T073016Z | ||
LAST-MODIFIED:20221011T063437Z | ||
DTSTAMP:20221011T063437Z | ||
DTSTART;TZID="(GMT +01:00)":20221004T140000 | ||
DTEND;TZID="(GMT +01:00)":20221004T150000 | ||
SUMMARY:Music School | ||
CLASS:PUBLIC | ||
UID:0000021 | ||
X-MOZ-SNOOZE-TIME:20221004T113000Z | ||
X-MICROSOFT-CDO-OWNER-CRITICAL-CHANGE:20221014T203413Z | ||
X-MICROSOFT-CDO-ATTENDEE-CRITICAL-CHANGE:20221014T203413Z | ||
X-MICROSOFT-CDO-APPT-SEQUENCE:0 | ||
X-MICROSOFT-CDO-OWNERAPPTID:-1 | ||
X-MICROSOFT-CDO-ALLDAYEVENT:FALSE | ||
RRULE:FREQ=WEEKLY;UNTIL=20221201T020000;BYDAY=TU | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
BEGIN:VCALENDAR | ||
VERSION:2.0 | ||
PRODID:Fictitious Recurrence Test Calendar | ||
BEGIN:VEVENT | ||
CREATED:20221018T221500Z | ||
DTSTAMP:20221019T171200Z | ||
UID:000021a | ||
SUMMARY:Party | ||
RRULE:FREQ=YEARLY | ||
DTSTART;TZID=Europe/Berlin:20220714T140000 | ||
DTEND;TZID=Europe/Berlin:20220714T210000 | ||
TRANSP:OPAQUE | ||
SEQUENCE:5 | ||
END:VEVENT | ||
BEGIN:VEVENT | ||
CREATED:20221019T181700Z | ||
DTSTAMP:20221019T191200Z | ||
UID:000021b | ||
SUMMARY:Party next day | ||
RRULE:FREQ=YEARLY | ||
DTSTART;TZID=Etc/GMT-2:20220715T140000 | ||
DTEND;TZID=Etc/GMT-2:20220715T210000 | ||
TRANSP:OPAQUE | ||
SEQUENCE:5 | ||
END:VEVENT | ||
END:VCALENDAR |