diff options
author | Joshua Slive <slive@apache.org> | 2002-05-23 14:21:19 +0000 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2002-05-23 14:21:19 +0000 |
commit | 8ec75c12fa304b02449d12d3e6a834b836086fd7 (patch) | |
tree | c8061830a61085b02ebd2dacbbca18bd8780c836 /docs/manual/mod/mod_asis.html | |
parent | 0547e6e6e9328238ba6f66775f028268640ea48f (diff) | |
download | httpd-8ec75c12fa304b02449d12d3e6a834b836086fd7.tar.gz |
Thanks to Yoshiki, we seem to have an (at least temporary) solution to our
doc transformation problem.
As the first step, I'm removing all the .html files. They will be replaced
by language-specific files.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95238 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_asis.html')
-rw-r--r-- | docs/manual/mod/mod_asis.html | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/docs/manual/mod/mod_asis.html b/docs/manual/mod/mod_asis.html deleted file mode 100644 index 0b06c37021..0000000000 --- a/docs/manual/mod/mod_asis.html +++ /dev/null @@ -1,59 +0,0 @@ -<html xmlns="http://www.w3.org/TR/xhtml1/strict"><head><!-- - XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - This file is generated from xml source: DO NOT EDIT - XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX - --><title>mod_asis- Apache HTTP Server</title><link href="../style/manual.css" type="text/css" rel="stylesheet"/></head><body><blockquote><div align="center"><img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]"/><h3>Apache HTTP Server Version 2.0</h3></div><h1 align="center">Apache Module mod_asis</h1><table cellspacing="1" cellpadding="0" bgcolor="#cccccc"><tr><td><table bgcolor="#ffffff"><tr><td valign="top"><span class="help">Description:</span></td><td>Sends files that contain their own -HTTP headers</td></tr><tr><td><a href="module-dict.html#Status" class="help">Status:</a></td><td>Base</td></tr><tr><td><a href="module-dict.html#ModuleIdentifier" class="help">Module Identifier:</a></td><td>asis_module</td></tr></table></td></tr></table><h2>Summary</h2> - <p>This module provides the handler <code>send-as-is</code> - which causes Apache to send the document without adding most of - the usual HTTP headers.</p> - - <p>This can be used to send any kind of data from the server, - including redirects and other special HTTP responses, without - requiring a cgi-script or an nph script.</p> - - <p>For historical reasons, this module will also process any - file with the mime type <code>httpd/send-as-is</code>.</p> -<h2>Directives</h2><p/><h2>Usage</h2> - - <p>In the server configuration file, associate files with the - <code>send-as-is</code> handler <em>e.g.</em></p> - -<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>AddHandler send-as-is asis</code></td></tr></table></blockquote> - - <p>The contents of any file with a <code>.asis</code> extension - will then be sent by Apache to the client with almost no - changes. Clients will need HTTP headers to be attached, so do - not forget them. A Status: header is also required; the data - should be the 3-digit HTTP response code, followed by a textual - message.</p> - - <p>Here's an example of a file whose contents are sent <em>as - is</em> so as to tell the client that a file has - redirected.</p> - - -<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>Status: 301 Now where did I leave that URL<br> - Location: http://xyz.abc.com/foo/bar.html<br> - Content-type: text/html<br> - <br> - <HTML><br> - <HEAD><br> - <TITLE>Lame excuses'R'us</TITLE><br> - </HEAD><br> - <BODY><br> - <H1>Fred's exceptionally wonderful page has moved - to<br> - <A - HREF="http://xyz.abc.com/foo/bar.html">Joe's</A> - site.<br> - </H1><br> - </BODY><br> - </HTML> -</code></td></tr></table></blockquote> - - <p>Notes: the server always adds a Date: and Server: header to - the data returned to the client, so these should not be - included in the file. The server does <em>not</em> add a - Last-Modified header; it probably should. </p> -<hr/></blockquote><h3 align="center">Apache HTTP Server Version 2.0</h3><a href="./"><img src="../images/index.gif" alt="Index"/></a><a href="../"><img src="../images/home.gif" alt="Home"/></a></body></html>
\ No newline at end of file |