Format "DURATION" field properly on ical export
Use days/hours/minutes/seconds instead of seconds in the DURATION field. It fixes interaction with other softwares like phpicalendar. Lukas: Remove use of dur-week. RFC 5545 states that you cannot use this in conjunction with dur-day. Also, fix formatting and use proper constants. Signed-off-by: Jerome Pinot <ngc891@gmail.com> Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
parent
5e4db62662
commit
9a85b790aa
6
src/io.c
6
src/io.c
@ -622,7 +622,11 @@ ical_export_apoints (FILE *stream)
|
||||
date_sec2date_fmt (apt->start, ICALDATETIMEFMT, ical_datetime);
|
||||
(void)fprintf (stream, "BEGIN:VEVENT\n");
|
||||
(void)fprintf (stream, "DTSTART:%s\n", ical_datetime);
|
||||
(void)fprintf (stream, "DURATION:PT0H0M%ldS\n", apt->dur);
|
||||
(void)fprintf (stream, "DURATION:P%ldDT%ldH%ldM%ldS\n",
|
||||
apt->dur / DAYINSEC,
|
||||
(apt->dur / HOURINSEC) % 24,
|
||||
(apt->dur / MININSEC) % 60,
|
||||
apt->dur % MININSEC);
|
||||
(void)fprintf (stream, "SUMMARY:%s\n", apt->mesg);
|
||||
if (apt->state & APOINT_NOTIFY)
|
||||
ical_export_valarm (stream);
|
||||
|
Loading…
x
Reference in New Issue
Block a user