Removed imports. master
authorplugd <plugd@thelambdalab.xyz>
Mon, 19 Jul 2021 12:17:17 +0000 (14:17 +0200)
committerplugd <plugd@thelambdalab.xyz>
Mon, 19 Jul 2021 12:17:17 +0000 (14:17 +0200)
delete-confirm.scm
delete.scm
directory.gmi
garden.scm
help.scm
plant-new.scm
register.scm
view.scm
water.scm

index 8652d6b..aa08d61 100755 (executable)
@@ -1,7 +1,6 @@
 ;; Account deletion confirmation
 
 (lambda (uri)
-  (import (chicken io))
   (let ((query (uri-query uri)))
     (if (null? query)
         (print "No account specified.")
index 53050d1..ca52708 100755 (executable)
@@ -1,7 +1,6 @@
 ;; Delete account
 
 (lambda (uri)
-  (import (chicken io))
   (let ((query (uri-query uri)))
     (serve-document-header (ext->mime "gmi"))
     (if (null? query)
index 77c87cc..fb6a77c 100755 (executable)
@@ -2,12 +2,6 @@
 
 ```
 ,(eval (begin
-         (import (chicken io)
-                 (chicken file)
-                 (chicken string)
-                 (chicken pathname)
-                 (chicken time posix)
-                 srfi-1 srfi-13)
          (for-each eval (with-input-from-file "garden.scm" read-list))
          (define (pad-string o max-len)
            (let* ((s (->string o))
index 3664612..bf6cc48 100644 (file)
@@ -1,14 +1,3 @@
-(import (chicken random)
-        (chicken time)
-        (chicken time posix)
-        (chicken pathname)
-        (chicken io)
-        (chicken string)
-        (chicken format)
-        (chicken file)
-        (chicken condition)
-        srfi-1 uri-common simple-sha1)
-
 (define rand-double pseudo-random-real)
 
 (define (rand-weighted weights)
index 9388421..1a109e5 100755 (executable)
--- a/help.scm
+++ b/help.scm
@@ -1,5 +1,4 @@
 (lambda (uri)
-  (import (chicken io))
   (let ((query (uri-query uri)))
     (if (null? query)
         (print "No account specified.")
index a0808d7..53fd285 100755 (executable)
@@ -2,7 +2,6 @@
 ;;
 
 (lambda (uri)
-  (import (chicken io))
   (for-each eval (with-input-from-file "garden.scm" read-list))
   (let ((query (uri-query uri)))
     (if (null? query)
index 5aa2e91..e6b46f2 100755 (executable)
@@ -2,7 +2,6 @@
 ;;
 
 (lambda (uri)
-  (import (chicken io))
   (for-each eval (with-input-from-file "garden.scm" read-list))
   (let ((query (uri-query uri)))
     (if (null? query)
index 155b71f..61926b3 100755 (executable)
--- a/view.scm
+++ b/view.scm
@@ -2,7 +2,6 @@
 ;;
 
 (lambda (uri)
-  (import (chicken io))
   (for-each eval (with-input-from-file "garden.scm" read-list))
   (serve-document-header (ext->mime "gmi"))
   (let ((query (uri-query uri)))
index e2d83ff..cfefd10 100755 (executable)
--- a/water.scm
+++ b/water.scm
@@ -2,7 +2,6 @@
 ;;
 
 (lambda (uri)
-  (import (chicken io))
   (for-each eval (with-input-from-file "garden.scm" read-list))
   (let ((query (uri-query uri)))
     (if (null? query)