1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
|
;; Copyright 2007-2010, Matthew Welland.
;;
;; This program is made available under the GNU GPL version 2.0 or
;; greater. See the accompanying file COPYING for details.
;;
;; This program is distributed WITHOUT ANY WARRANTY; without even the
;; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
;; implied warranty of MERCHANTABILITY or FITNlmESS FOR A PARTICULAR
;; PURPOSE.
;;;; margs.setup
;; compile the code into a dynamically loadable shared object
;; (will generate margs.so)
;; (compile -s margs.scm)
;; Install as extension library
;; handle cookies
(standard-extension 'cookie "0.5")
(standard-extension 'misc-stml "0.5") ;; moved to stmlcommon.scm
(standard-extension 'html-filter "0.5")
(standard-extension 'formdat "0.5")
(standard-extension 'session "0.5")
(standard-extension 'setup "0.5")
(standard-extension 'sqltbl "0.5")
(standard-extension 'keystore "0.5")
(standard-extension 'stmlcommon "0.5")
(standard-extension 'stml2 "0.5")
;; (standard-extension 'stmlcommon "0.5")
(standard-extension 'stml2 "0.5")
;; (standard-extension 'session "0.5")
;; (standard-extension 'misc-stml "0.5") ;; moved to stmlcommon.scm
;; (standard-extension 'html-filter "0.5") ;; moved to stmlcommon.scm
;; (standard-extension 'formdat "0.5") ;; moved into stmlcommon.scm
;; (standard-extension 'setup "0.5") ;; moved into stmlcommon.scm
;; (standard-extension 'keystore "0.5") ;; moved into stmlcommon.scm
;; (standard-extension 'sqltbl "0.5") ;; eliminated
;; (install-extension 'stml "stml.so")
|