calcurse-edge/test/data/ical-007.ical
Lukas Fleischer 1ea97795be Add support for UTC times in iCal imports
According to the iCal standard (4.3.12 Time):

    UTC time, or absolute time, is identified by a LATIN CAPITAL LETTER
    Z suffix character (US-ASCII decimal 90), the UTC designator,
    appended to the time value.

Parse such time values properly when importing iCal files.

Fixes GitHub issue #3.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
2015-02-23 10:46:16 +01:00

14 lines
198 B
Plaintext

BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
SUMMARY:Local time
DTSTART:20150223T110000
DURATION:PT1H
END:VEVENT
BEGIN:VEVENT
SUMMARY:UTC
DTSTART:20150223T110000Z
DURATION:PT1H
END:VEVENT
END:VCALENDAR