Rename HTTPD-ERROR -> HTTPD-ERRORS.
This commit is contained in:
parent
1ac2cc0819
commit
c58f265b5b
|
@ -111,7 +111,7 @@
|
||||||
(surflet-handler/admin surflet-handler/admin-interface))
|
(surflet-handler/admin surflet-handler/admin-interface))
|
||||||
(open httpd-responses
|
(open httpd-responses
|
||||||
httpd-requests
|
httpd-requests
|
||||||
httpd-error
|
httpd-errors
|
||||||
uri ;URI-PATH-LIST->PATH
|
uri ;URI-PATH-LIST->PATH
|
||||||
tables ;HASH-TABLES
|
tables ;HASH-TABLES
|
||||||
define-record-types ;DEFINE-RECORD-TYPE
|
define-record-types ;DEFINE-RECORD-TYPE
|
||||||
|
|
|
@ -246,7 +246,7 @@
|
||||||
access-controller
|
access-controller
|
||||||
access-controlled-handler))
|
access-controlled-handler))
|
||||||
|
|
||||||
(define-interface httpd-error-interface
|
(define-interface httpd-errors-interface
|
||||||
(export http-error?
|
(export http-error?
|
||||||
http-error
|
http-error
|
||||||
fatal-syntax-error?
|
fatal-syntax-error?
|
||||||
|
@ -407,7 +407,7 @@
|
||||||
receiving
|
receiving
|
||||||
(subset srfi-13 (string-index))
|
(subset srfi-13 (string-index))
|
||||||
uri
|
uri
|
||||||
httpd-error)
|
httpd-errors)
|
||||||
(files (lib url)))
|
(files (lib url)))
|
||||||
|
|
||||||
(define-structure ftp-library ftp-library-interface
|
(define-structure ftp-library ftp-library-interface
|
||||||
|
@ -575,7 +575,7 @@
|
||||||
|
|
||||||
handle-fatal-error
|
handle-fatal-error
|
||||||
httpd-read-options
|
httpd-read-options
|
||||||
httpd-error
|
httpd-errors
|
||||||
httpd-logging
|
httpd-logging
|
||||||
httpd-requests
|
httpd-requests
|
||||||
httpd-responses
|
httpd-responses
|
||||||
|
@ -600,12 +600,12 @@
|
||||||
(subset srfi-1 (any every))
|
(subset srfi-1 (any every))
|
||||||
httpd-responses
|
httpd-responses
|
||||||
httpd-requests
|
httpd-requests
|
||||||
httpd-error
|
httpd-errors
|
||||||
(subset srfi-13 (string-map))
|
(subset srfi-13 (string-map))
|
||||||
)
|
)
|
||||||
(files (httpd access-control)))
|
(files (httpd access-control)))
|
||||||
|
|
||||||
(define-structure httpd-error httpd-error-interface
|
(define-structure httpd-errors httpd-errors-interface
|
||||||
(open conditions signals handle scheme)
|
(open conditions signals handle scheme)
|
||||||
(files (httpd error)))
|
(files (httpd error)))
|
||||||
|
|
||||||
|
@ -656,7 +656,7 @@
|
||||||
(subset srfi-1 (fold-right))
|
(subset srfi-1 (fold-right))
|
||||||
(subset srfi-13 (string-trim))
|
(subset srfi-13 (string-trim))
|
||||||
httpd-responses
|
httpd-responses
|
||||||
httpd-error
|
httpd-errors
|
||||||
)
|
)
|
||||||
(files (httpd handlers)))
|
(files (httpd handlers)))
|
||||||
|
|
||||||
|
@ -665,7 +665,7 @@
|
||||||
httpd-core
|
httpd-core
|
||||||
httpd-requests
|
httpd-requests
|
||||||
httpd-responses
|
httpd-responses
|
||||||
httpd-error
|
httpd-errors
|
||||||
httpd-basic-handlers
|
httpd-basic-handlers
|
||||||
httpd-read-options
|
httpd-read-options
|
||||||
url
|
url
|
||||||
|
@ -680,7 +680,7 @@
|
||||||
|
|
||||||
(define-structure httpd-seval-handlers httpd-seval-handlers-interface
|
(define-structure httpd-seval-handlers httpd-seval-handlers-interface
|
||||||
(open scheme-with-scsh ; syscalls & INDEX
|
(open scheme-with-scsh ; syscalls & INDEX
|
||||||
httpd-error
|
httpd-errors
|
||||||
httpd-requests ; v0.9-request
|
httpd-requests ; v0.9-request
|
||||||
httpd-responses
|
httpd-responses
|
||||||
httpd-logging ; http-log
|
httpd-logging ; http-log
|
||||||
|
@ -704,7 +704,7 @@
|
||||||
htmlout
|
htmlout
|
||||||
httpd-requests
|
httpd-requests
|
||||||
httpd-responses
|
httpd-responses
|
||||||
httpd-error
|
httpd-errors
|
||||||
url
|
url
|
||||||
uri
|
uri
|
||||||
handle-fatal-error)
|
handle-fatal-error)
|
||||||
|
@ -714,7 +714,7 @@
|
||||||
(open scheme-with-scsh
|
(open scheme-with-scsh
|
||||||
httpd-responses
|
httpd-responses
|
||||||
httpd-requests
|
httpd-requests
|
||||||
httpd-error
|
httpd-errors
|
||||||
conditions
|
conditions
|
||||||
url
|
url
|
||||||
uri
|
uri
|
||||||
|
@ -739,7 +739,7 @@
|
||||||
httpd-requests
|
httpd-requests
|
||||||
httpd-responses
|
httpd-responses
|
||||||
httpd-basic-handlers ; HTTP-HOMEDIR, SERVE-ROOTED-FILE-PATH
|
httpd-basic-handlers ; HTTP-HOMEDIR, SERVE-ROOTED-FILE-PATH
|
||||||
httpd-error ; HTTP-ERROR
|
httpd-errors ; HTTP-ERROR
|
||||||
httpd-file-directory-handlers ; dot-dot-check, copy-inport->outport
|
httpd-file-directory-handlers ; dot-dot-check, copy-inport->outport
|
||||||
sunet-version
|
sunet-version
|
||||||
formats
|
formats
|
||||||
|
|
Loading…
Reference in New Issue