aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-03-04 01:58:11 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-03-06 11:37:32 +0100
commitaef7d93cb4d31db6f23477b71e26c0b08e25749c (patch)
tree074a1f40c5063ad36f25923f43064bb4f1639ff6 /module/calp/html
parentAllow explicit GUILE environment, document it. (diff)
downloadcalp-aef7d93cb4d31db6f23477b71e26c0b08e25749c.tar.gz
calp-aef7d93cb4d31db6f23477b71e26c0b08e25749c.tar.xz
Add missing (ice-9 format) imports.
Diffstat (limited to 'module/calp/html')
-rw-r--r--module/calp/html/vcomponent.scm1
-rw-r--r--module/calp/html/view/calendar.scm2
-rw-r--r--module/calp/html/view/calendar/shared.scm1
-rw-r--r--module/calp/html/view/calendar/week.scm1
4 files changed, 5 insertions, 0 deletions
diff --git a/module/calp/html/vcomponent.scm b/module/calp/html/vcomponent.scm
index 16f418c5..28024af2 100644
--- a/module/calp/html/vcomponent.scm
+++ b/module/calp/html/vcomponent.scm
@@ -24,6 +24,7 @@
))
:use-module ((calp util config) :select (get-config))
:use-module ((base64) :select (base64encode))
+ :use-module (ice-9 format)
)
;; used by search view
diff --git a/module/calp/html/view/calendar.scm b/module/calp/html/view/calendar.scm
index ecdce291..76cdf736 100644
--- a/module/calp/html/view/calendar.scm
+++ b/module/calp/html/view/calendar.scm
@@ -27,6 +27,8 @@
:use-module ((vcomponent util group)
:select (group-stream get-groups-between))
:use-module ((base64) :select (base64encode))
+
+ :use-module (ice-9 format)
)
diff --git a/module/calp/html/view/calendar/shared.scm b/module/calp/html/view/calendar/shared.scm
index 11f1a70c..b00888a9 100644
--- a/module/calp/html/view/calendar/shared.scm
+++ b/module/calp/html/view/calendar/shared.scm
@@ -16,6 +16,7 @@
:select (btn tabset))
:use-module ((calp html vcomponent)
:select (make-block) )
+ :use-module (ice-9 format)
)
diff --git a/module/calp/html/view/calendar/week.scm b/module/calp/html/view/calendar/week.scm
index 5b12a351..38e7501b 100644
--- a/module/calp/html/view/calendar/week.scm
+++ b/module/calp/html/view/calendar/week.scm
@@ -19,6 +19,7 @@
;; :select ())
:use-module ((vcomponent util group)
:select (group-stream get-groups-between))
+ :use-module (ice-9 format)
)