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}
|
||||
%
|
||||
\begin{description}
|
||||
\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[Used files:] httpd/core.scm, httpd/handlers.scm, httpd/options.scm,
|
||||
\item[Name of the packages:] httpd-core, httpd-basic-handler, httpd-make-options
|
||||
\end{description}
|
||||
There are also some other files and packages that are used internally.
|
||||
%
|
||||
|
||||
\subsection{Introduction}
|
||||
|
|
10
modules.scm
10
modules.scm
|
@ -599,7 +599,7 @@
|
|||
string-lib ; STRING-JOIN
|
||||
i/o ; make-null-output-port
|
||||
scheme)
|
||||
(files (httpd httpd-core)))
|
||||
(files (httpd core)))
|
||||
|
||||
|
||||
;;; httpd-make-options
|
||||
|
@ -631,7 +631,7 @@
|
|||
(httpd-read-options httpd-read-options-interface))
|
||||
(open scheme
|
||||
define-record-types)
|
||||
(files (httpd httpd-options)))
|
||||
(files (httpd options)))
|
||||
|
||||
|
||||
;;; httpd-access-control
|
||||
|
@ -649,7 +649,7 @@
|
|||
string-lib ; STRING-MAP
|
||||
scsh
|
||||
scheme)
|
||||
(files (httpd httpd-access-control)))
|
||||
(files (httpd access-control)))
|
||||
|
||||
|
||||
;;; httpd-error
|
||||
|
@ -662,7 +662,7 @@
|
|||
|
||||
(define-structure httpd-error httpd-error-interface
|
||||
(open conditions signals handle scheme)
|
||||
(files (httpd httpd-error)))
|
||||
(files (httpd error)))
|
||||
|
||||
;;; httpd-fatal-error
|
||||
|
||||
|
@ -707,7 +707,7 @@
|
|||
handle-fatal-error ; WITH-FATAL-ERROR-HANDLER
|
||||
string-lib ; STRING-JOIN
|
||||
scheme)
|
||||
(files (httpd httpd-handlers)))
|
||||
(files (httpd handlers)))
|
||||
|
||||
|
||||
;;; seval-handler
|
||||
|
|
Loading…
Reference in New Issue