aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO3
-rw-r--r--module/entry-points/server.scm13
2 files changed, 8 insertions, 8 deletions
diff --git a/TODO b/TODO
index 954cf822..dcf39143 100644
--- a/TODO
+++ b/TODO
@@ -41,9 +41,6 @@ Handle systems with bad `cal' programs
HTML
====
-Exportera som ICS-knapp!
-------------------------
-
Icke-linjär tidsskala
---------------------
diff --git a/module/entry-points/server.scm b/module/entry-points/server.scm
index 46277339..408b00b3 100644
--- a/module/entry-points/server.scm
+++ b/module/entry-points/server.scm
@@ -92,11 +92,14 @@
;; TODO export all events in interval
(GET "/calendar" (start end)
- (ical-main calendar
- regular
- repeating
- (parse-iso-date start)
- (parse-iso-date end)))
+ (return '((content-type text/calendar))
+ (with-output-to-string
+ (lambda ()
+ (ical-main calendar
+ regular
+ repeating
+ (parse-iso-date start)
+ (parse-iso-date end))))))
;; TODO this returns "invalid" events, since the surrounding VCALENDAR is missing.
(GET "/calendar/:uid.ics" (uid)