renamed httpd-\(*\).scm files to \1.scm
updated modules.scm and docu accordingly
This commit is contained in:
parent
c11f26f0e2
commit
3e16721158
|
@ -1,9 +1,10 @@
|
||||||
\section{HTTP server}\label{sec:httpd}
|
\section{HTTP server}\label{sec:httpd}
|
||||||
%
|
%
|
||||||
\begin{description}
|
\begin{description}
|
||||||
\item[Used files:] httpd-core.scm, httpd-handlers.scm, httpd-options.scm
|
\item[Used files:] httpd/core.scm, httpd/handlers.scm, httpd/options.scm,
|
||||||
\item[Name of the package:] httpd-core, httpd-basic-handler, httpd-make-options
|
\item[Name of the packages:] httpd-core, httpd-basic-handler, httpd-make-options
|
||||||
\end{description}
|
\end{description}
|
||||||
|
There are also some other files and packages that are used internally.
|
||||||
%
|
%
|
||||||
|
|
||||||
\subsection{Introduction}
|
\subsection{Introduction}
|
||||||
|
|
10
modules.scm
10
modules.scm
|
@ -599,7 +599,7 @@
|
||||||
string-lib ; STRING-JOIN
|
string-lib ; STRING-JOIN
|
||||||
i/o ; make-null-output-port
|
i/o ; make-null-output-port
|
||||||
scheme)
|
scheme)
|
||||||
(files (httpd httpd-core)))
|
(files (httpd core)))
|
||||||
|
|
||||||
|
|
||||||
;;; httpd-make-options
|
;;; httpd-make-options
|
||||||
|
@ -631,7 +631,7 @@
|
||||||
(httpd-read-options httpd-read-options-interface))
|
(httpd-read-options httpd-read-options-interface))
|
||||||
(open scheme
|
(open scheme
|
||||||
define-record-types)
|
define-record-types)
|
||||||
(files (httpd httpd-options)))
|
(files (httpd options)))
|
||||||
|
|
||||||
|
|
||||||
;;; httpd-access-control
|
;;; httpd-access-control
|
||||||
|
@ -649,7 +649,7 @@
|
||||||
string-lib ; STRING-MAP
|
string-lib ; STRING-MAP
|
||||||
scsh
|
scsh
|
||||||
scheme)
|
scheme)
|
||||||
(files (httpd httpd-access-control)))
|
(files (httpd access-control)))
|
||||||
|
|
||||||
|
|
||||||
;;; httpd-error
|
;;; httpd-error
|
||||||
|
@ -662,7 +662,7 @@
|
||||||
|
|
||||||
(define-structure httpd-error httpd-error-interface
|
(define-structure httpd-error httpd-error-interface
|
||||||
(open conditions signals handle scheme)
|
(open conditions signals handle scheme)
|
||||||
(files (httpd httpd-error)))
|
(files (httpd error)))
|
||||||
|
|
||||||
;;; httpd-fatal-error
|
;;; httpd-fatal-error
|
||||||
|
|
||||||
|
@ -707,7 +707,7 @@
|
||||||
handle-fatal-error ; WITH-FATAL-ERROR-HANDLER
|
handle-fatal-error ; WITH-FATAL-ERROR-HANDLER
|
||||||
string-lib ; STRING-JOIN
|
string-lib ; STRING-JOIN
|
||||||
scheme)
|
scheme)
|
||||||
(files (httpd httpd-handlers)))
|
(files (httpd handlers)))
|
||||||
|
|
||||||
|
|
||||||
;;; seval-handler
|
;;; seval-handler
|
||||||
|
|
Loading…
Reference in New Issue