aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-12-24 01:06:43 +0100
committerHugo Hörnquist <hugo@hornquist.se>2019-12-24 01:06:43 +0100
commit54bc4d547361a065f283720e6c0aee5fcb9268a8 (patch)
tree2f0cd3b1814bc036301a63880d0740b447af4143 /module/vcomponent.scm
parentFix ical outuput for with recurrence-id:s. (diff)
downloadcalp-54bc4d547361a065f283720e6c0aee5fcb9268a8.tar.gz
calp-54bc4d547361a065f283720e6c0aee5fcb9268a8.tar.xz
ICAL handling of events different from display handling.
Previously repeating events where always instantiated to a stream of all events to come (possibly infinite), and then zipped with the list of regular events to create a stream of all events in the world. This commit allows access to the raw lists of parsed regular and repeating events before they are extrapolated and merged.
Diffstat (limited to 'module/vcomponent.scm')
-rw-r--r--module/vcomponent.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/vcomponent.scm b/module/vcomponent.scm
index f40756e2..32406f0a 100644
--- a/module/vcomponent.scm
+++ b/module/vcomponent.scm
@@ -3,7 +3,8 @@
:use-module (vcomponent parse)
:use-module (vcomponent load)
:use-module (util)
- :re-export (make-vcomponent parse-cal-path
- parse-calendar load-calendars))
+ :re-export (make-vcomponent
+ parse-cal-path parse-calendar
+ load-calendars load-calendars*))
(re-export-modules (vcomponent base))