diff options
Diffstat (limited to 'docs/manual/handler.html.en')
-rw-r--r-- | docs/manual/handler.html.en | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/docs/manual/handler.html.en b/docs/manual/handler.html.en index abd76d8d..e4e828f7 100644 --- a/docs/manual/handler.html.en +++ b/docs/manual/handler.html.en @@ -9,7 +9,7 @@ <link href="./style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" /> <link href="./style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" /> <link href="./style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="./style/css/prettify.css" /> -<script src="./style/scripts/prettify.js" type="text/javascript"> +<script src="./style/scripts/prettify.min.js" type="text/javascript"> </script> <link href="./images/favicon.ico" rel="shortcut icon" /></head> @@ -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 @@ -177,7 +171,7 @@ var comments_identifier = 'http://httpd.apache.org/docs/2.4/handler.html'; } })(window, document); //--><!]]></script></div><div id="footer"> -<p class="apache">Copyright 2013 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> +<p class="apache">Copyright 2014 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p> <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!-- if (typeof(prettyPrint) !== 'undefined') { prettyPrint(); |