diff options
author | David Shane Holden <dpejesh@apache.org> | 2002-09-09 01:01:12 +0200 |
---|---|---|
committer | David Shane Holden <dpejesh@apache.org> | 2002-09-09 01:01:12 +0200 |
commit | 7f7cda6af8e677bad7d4e2e34b19110da7c0cb9d (patch) | |
tree | bd186518554a02c2a5cc590327fe05438ff1462c /docs/manual | |
parent | New XML. (diff) | |
download | apache2-7f7cda6af8e677bad7d4e2e34b19110da7c0cb9d.tar.xz apache2-7f7cda6af8e677bad7d4e2e34b19110da7c0cb9d.zip |
Update transformation.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96718 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/handler.html.en | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/docs/manual/handler.html.en b/docs/manual/handler.html.en index e6771dd2de..9c85416b8b 100644 --- a/docs/manual/handler.html.en +++ b/docs/manual/handler.html.en @@ -63,10 +63,10 @@ the <code>html</code> extension to trigger the launch of the <code>footer.pl</code> CGI script.</p> - <div class="example"><p><code><code> + <div class="example"><p><code> Action add-footer /cgi-bin/footer.pl<br /> AddHandler add-footer .html - </code></code></p></div> + </code></p></div> <p>Then the CGI script is responsible for sending the originally requested document (pointed to by the @@ -84,11 +84,11 @@ the <code>send-as-is</code> handler, regardless of their filename extensions.</p> - <div class="example"><p><code><code> + <div class="example"><p><code> <Directory /web/htdocs/asis><br /> SetHandler send-as-is<br /> </Directory> - </code></code></p></div> + </code></p></div> </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div><div class="section"><h2><a name="programmer" id="programmer">Programmer's Note</a></h2> @@ -98,9 +98,10 @@ been made to the <a href="developer/API.html">Apache API</a> that you may wish to make use of. Specifically, a new record has been added to the <code>request_rec</code> structure:</p> -<pre> - char *handler -</pre> + + <div class="example"><p><code> + char *handler + </code></p></div> <p>If you wish to have your module engage a handler, you need only to set <code>r->handler</code> to the name of the |