aboutsummaryrefslogtreecommitdiff
path: root/module/web
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-31 20:24:18 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-01-31 20:24:18 +0100
commit807409d41f8b1a4435ee1cf7ddc3d1a1b9116799 (patch)
tree41ce7d861f9048863f930b8a9227ca580da17911 /module/web
parentMove use2dot into scripts subdir. (diff)
downloadcalp-807409d41f8b1a4435ee1cf7ddc3d1a1b9116799.tar.gz
calp-807409d41f8b1a4435ee1cf7ddc3d1a1b9116799.tar.xz
Move stuff from calp/util to hnh/util.
This is the first (major) step in splitting the generally useful items into its own library.
Diffstat (limited to 'module/web')
-rw-r--r--module/web/http/make-routes.scm2
-rw-r--r--module/web/query.scm2
-rw-r--r--module/web/uri-query.scm2
3 files changed, 3 insertions, 3 deletions
diff --git a/module/web/http/make-routes.scm b/module/web/http/make-routes.scm
index 4fb5397a..7254fcb5 100644
--- a/module/web/http/make-routes.scm
+++ b/module/web/http/make-routes.scm
@@ -1,6 +1,6 @@
(define-module (web http make-routes)
:export (make-routes)
- :use-module (calp util)
+ :use-module (hnh util)
:use-module (ice-9 regex)
:use-module (srfi srfi-1)
:use-module (web response)
diff --git a/module/web/query.scm b/module/web/query.scm
index 55b3f564..e5057a24 100644
--- a/module/web/query.scm
+++ b/module/web/query.scm
@@ -1,5 +1,5 @@
(define-module (web query)
- :use-module (calp util)
+ :use-module (hnh util)
:use-module (srfi srfi-1)
:use-module (web uri))
diff --git a/module/web/uri-query.scm b/module/web/uri-query.scm
index 9eff203f..40d89b11 100644
--- a/module/web/uri-query.scm
+++ b/module/web/uri-query.scm
@@ -1,5 +1,5 @@
(define-module (web uri-query)
- :use-module ((calp util) :select (->quoted-string))
+ :use-module ((hnh util) :select (->quoted-string))
:use-module ((web uri) :select (uri-encode))
)