-
-
Notifications
You must be signed in to change notification settings - Fork 73
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 #44 from shaohme/time-parsing
Extended time parsing
- Loading branch information
Showing
4 changed files
with
223 additions
and
17 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,53 @@ | ||
BEGIN:VCALENDAR | ||
VERSION:2.0 | ||
PRODID:DAVx5/4.0-gplay ical4j/3.1.0 | ||
BEGIN:VTIMEZONE | ||
TZID:Europe/Copenhagen | ||
LAST-MODIFIED:20201010T011803Z | ||
BEGIN:STANDARD | ||
DTSTART:19961027T030000 | ||
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU | ||
TZNAME:CET | ||
TZOFFSETFROM:+0200 | ||
TZOFFSETTO:+0100 | ||
END:STANDARD | ||
BEGIN:DAYLIGHT | ||
DTSTART:19810329T020000 | ||
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU | ||
TZNAME:CEST | ||
TZOFFSETFROM:+0100 | ||
TZOFFSETTO:+0200 | ||
END:DAYLIGHT | ||
END:VTIMEZONE | ||
BEGIN:VEVENT | ||
UID:269cf715-4e14-4a10-8753-f2feeb9d060e | ||
DTSTART;TZID=Europe/Copenhagen:20211207T140000 | ||
DTEND;TZID=Europe/Copenhagen:20211207T150000 | ||
SUMMARY:Form 3 | ||
END:VEVENT | ||
BEGIN:VEVENT | ||
UID:53634aed-1b7d-4d85-aa38-ede76a2e4fe3 | ||
DTSTART:20220122T170000Z | ||
DTEND:20220122T200000Z | ||
SUMMARY:Form #2 | ||
END:VEVENT | ||
BEGIN:VEVENT | ||
UID:be7c9690-d42a-40ef-b82f-1634dc5033b4 | ||
DTSTART:19980118T230000 | ||
DTEND:19980119T230000 | ||
DTSTAMP:20210624T080748Z | ||
SUMMARY:Form #1 | ||
END:VEVENT | ||
BEGIN:VEVENT | ||
UID:fb54680e-7f69-46d3-9632-00aed2469f7b | ||
DTSTART;VALUE=DATE:20210627 | ||
DTEND;VALUE=DATE:20210628 | ||
SUMMARY:Unknown local date, with 'VALUE' | ||
END:VEVENT | ||
BEGIN:VEVENT | ||
UID:62475ad0-a76c-4fab-8e68-f99209afcca6 | ||
DTSTART:20210527Z | ||
DTEND:20210528Z | ||
SUMMARY:Unknown UTC date | ||
END:VEVENT | ||
END:VCALENDAR |