aboutsummaryrefslogtreecommitdiff
path: root/module/output/html.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/output/html.scm')
-rw-r--r--module/output/html.scm12
1 files changed, 0 insertions, 12 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index f15776cb..d095493a 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -100,18 +100,6 @@
(values (datetime->string s fmt-str)
(datetime->string e fmt-str))))]))
-;; date, date, [sorted-stream events] → [list events]
-(define (events-between start-date end-date events)
- (define (overlaps e)
- (timespan-overlaps? start-date (date+ end-date (date day: 1))
- (attr e 'DTSTART) (attr e 'DTEND)))
-
- (stream-filter overlaps
- (get-stream-interval
- overlaps
- (lambda (e) (not (date< end-date (as-date (attr e 'DTSTART)))))
- events)))
-