From 45edc9cd1be13899b9d65372480bbcd84511d314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sat, 9 May 2020 13:17:31 +0200 Subject: Start work on making DTEND optional. --- module/output/html.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'module/output/html.scm') diff --git a/module/output/html.scm b/module/output/html.scm index 3b17d81b..b7e369a7 100644 --- a/module/output/html.scm +++ b/module/output/html.scm @@ -94,12 +94,14 @@ ;; no end value, just return start [else (date->string s)]))] [else ; guaranteed datetime - (let ((s (attr ev 'DTSTART)) - (e (attr ev 'DTEND))) - (let ((fmt-str (if (date= (get-date s) (get-date e)) - "~H:~M" "~Y-~m-~d ~H:~M"))) - (values (datetime->string s fmt-str) - (datetime->string e fmt-str))))])) + (let ((s (attr ev 'DTSTART))) + (cond [(attr ev 'DTEND) + => (lambda (e) + (let ((fmt-str (if (date= (get-date s) (get-date e)) + "~H:~M" "~Y-~m-~d ~H:~M"))) + (values (datetime->string s fmt-str) + (datetime->string e fmt-str))))] + [else (datetime->string s "~Y-~m-~d ~H:~M")]))])) -- cgit v1.2.3