aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/config.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/calp/html/config.scm')
-rw-r--r--module/calp/html/config.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/module/calp/html/config.scm b/module/calp/html/config.scm
new file mode 100644
index 00000000..6f156c98
--- /dev/null
+++ b/module/calp/html/config.scm
@@ -0,0 +1,18 @@
+(define-module (calp html config)
+ :use-module (util)
+ :use-module (util config)
+ )
+
+(define-public debug (make-parameter #f))
+(define-config debug #f
+ description: "Places the generated thingy in debug mode"
+ post: debug)
+
+
+;;; NOTE edit mode should preferably depend on login-status of the user
+;;; but this works for the time being.
+(define-public edit-mode (make-parameter #t))
+(define-config edit-mode #t
+ description: "Makes the document editable"
+ post: edit-mode)
+