diff options
Diffstat (limited to 'docs/manual/handler.html.en')
-rw-r--r-- | docs/manual/handler.html.en | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/docs/manual/handler.html.en b/docs/manual/handler.html.en index e832c17661..6667be8186 100644 --- a/docs/manual/handler.html.en +++ b/docs/manual/handler.html.en @@ -97,10 +97,8 @@ the <code>html</code> extension to trigger the launch of the <code>footer.pl</code> CGI script.</p> - <pre class="prettyprint lang-config"> -Action add-footer /cgi-bin/footer.pl -AddHandler add-footer .html - </pre> + <pre class="prettyprint lang-config">Action add-footer /cgi-bin/footer.pl +AddHandler add-footer .html</pre> <p>Then the CGI script is responsible for sending the @@ -119,11 +117,9 @@ AddHandler add-footer .html the <code>send-as-is</code> handler, regardless of their filename extensions.</p> - <pre class="prettyprint lang-config"> -<Directory /web/htdocs/asis> + <pre class="prettyprint lang-config"><Directory /web/htdocs/asis> SetHandler send-as-is -</Directory> - </pre> +</Directory></pre> @@ -137,9 +133,7 @@ AddHandler add-footer .html you may wish to make use of. Specifically, a new record has been added to the <code>request_rec</code> structure:</p> - <pre class="prettyprint lang-c"> - char *handler - </pre> + <pre class="prettyprint lang-c"> char *handler</pre> <p>If you wish to have your module engage a handler, you need |