From 92b2f429a06ed9b052baff5e27f012397b338f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 23 Dec 2019 23:40:14 +0100 Subject: Rework program initialization. Old init setup had the fancy idea to parse all files before anything could be done with them. This however led to problems when a part of the program which didn't care for the calendar files (such as text formatting). It also made testing performance almost impossible since to much code was run before I had a chance to init statprof. --- module/entry-points/html.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 module/entry-points/html.scm (limited to 'module/entry-points/html.scm') diff --git a/module/entry-points/html.scm b/module/entry-points/html.scm new file mode 100644 index 00000000..699eebdb --- /dev/null +++ b/module/entry-points/html.scm @@ -0,0 +1,35 @@ +(define-module (entry-points html) + :export (main) + :use-module (output html) + :use-module (util) + :use-module (vcomponent) + :use-module (srfi srfi-19) + :use-module (srfi srfi-19 util) + :use-module (ice-9 getopt-long) + + :use-module (parameters) + ;; :use-module (config) + ) + + +(define opt-spec + '((from (value #t) (single-char #\F)) + (to (value #t) (single-char #\T)) + (file (value #t) (single-char #\f)) + (chunked))) + +(define (main args) + (define opts (getopt-long args opt-spec)) + (define start (cond [(option-ref opts 'from #f) => parse-freeform-date] + [else (start-of-month (current-date))])) + (define end (cond [(option-ref opts 'to #f) => parse-freeform-date] + [else (normalize-date* (set (date-month start) = (+ 1)))])) + + (define-values (calendars events) + (load-calendars + calendar-files: (cond [(option-ref opts 'file #f) => list] + [else (calendar-files)]) )) + + (if (option-ref opts 'chunked #f) + (html-chunked-main calendars events start) + (html-generate calendars events start end))) -- cgit v1.2.3