You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2010/03/23 13:26:03 UTC

svn commit: r926536 - in /httpd/httpd/trunk/docs/manual/mod: mod_asis.html.en mod_asis.xml

Author: rbowen
Date: Tue Mar 23 12:26:03 2010
New Revision: 926536

URL: http://svn.apache.org/viewvc?rev=926536&view=rev
Log:
'Apache' -> 'Apache HTTP Server'
Don't use abc.com in examples.

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_asis.html.en
    httpd/httpd/trunk/docs/manual/mod/mod_asis.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_asis.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_asis.html.en?rev=926536&r1=926535&r2=926536&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_asis.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_asis.html.en Tue Mar 23 12:26:03 2010
@@ -34,7 +34,7 @@ HTTP headers</td></tr>
 <h3>Summary</h3>
 
     <p>This module provides the handler <code>send-as-is</code>
-    which causes Apache to send the document without adding most of
+    which causes Apache HTTP Server 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,
@@ -54,7 +54,7 @@ HTTP headers</td></tr>
 <ul class="seealso">
 <li><code class="module"><a href="../mod/mod_headers.html">mod_headers</a></code></li>
 <li><code class="module"><a href="../mod/mod_cern_meta.html">mod_cern_meta</a></code></li>
-<li><a href="../handler.html">Apache's Handler Use</a></li>
+<li><a href="../handler.html">Apache httpd's Handler Use</a></li>
 </ul></div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
@@ -66,7 +66,7 @@ HTTP headers</td></tr>
     <div class="example"><p><code>AddHandler send-as-is asis</code></p></div>
 
     <p>The contents of any file with a <code>.asis</code> extension
-    will then be sent by Apache to the client with almost no
+    will then be sent by Apache httpd to the client with almost no
     changes. In particular, HTTP headers are derived from the file
     itself according to <code class="module"><a href="../mod/mod_cgi.html">mod_cgi</a></code> rules, so an asis
     file must include valid headers, and may also use the CGI
@@ -79,7 +79,7 @@ HTTP headers</td></tr>
 
     <div class="example"><p><code>
       Status: 301 Now where did I leave that URL<br />
-      Location: http://xyz.abc.com/foo/bar.html<br />
+      Location: http://xyz.example.com/foo/bar.html<br />
       Content-type: text/html<br />
       <br />
       &lt;html&gt;<br />
@@ -88,7 +88,7 @@ HTTP headers</td></tr>
       &lt;/head&gt;<br />
       &lt;body&gt;<br />
       &lt;h1&gt;Fred's exceptionally wonderful page has moved to<br />
-      &lt;a href="http://xyz.abc.com/foo/bar.html"&gt;Joe's&lt;/a&gt;
+      &lt;a href="http://xyz.example.com/foo/bar.html"&gt;Joe's&lt;/a&gt;
       site.<br />
       &lt;/h1&gt;<br />
       &lt;/body&gt;<br />

Modified: httpd/httpd/trunk/docs/manual/mod/mod_asis.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_asis.xml?rev=926536&r1=926535&r2=926536&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_asis.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_asis.xml Tue Mar 23 12:26:03 2010
@@ -31,7 +31,7 @@ HTTP headers</description>
 
 <summary>
     <p>This module provides the handler <code>send-as-is</code>
-    which causes Apache to send the document without adding most of
+    which causes Apache HTTP Server 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,
@@ -44,7 +44,7 @@ HTTP headers</description>
 
 <seealso><module>mod_headers</module></seealso>
 <seealso><module>mod_cern_meta</module></seealso>
-<seealso><a href="../handler.html">Apache's Handler Use</a></seealso>
+<seealso><a href="../handler.html">Apache httpd's Handler Use</a></seealso>
 
 <section id="usage"><title>Usage</title>
 
@@ -54,7 +54,7 @@ HTTP headers</description>
     <example>AddHandler send-as-is asis</example>
 
     <p>The contents of any file with a <code>.asis</code> extension
-    will then be sent by Apache to the client with almost no
+    will then be sent by Apache httpd to the client with almost no
     changes. In particular, HTTP headers are derived from the file
     itself according to <module>mod_cgi</module> rules, so an asis
     file must include valid headers, and may also use the CGI
@@ -67,7 +67,7 @@ HTTP headers</description>
 
     <example>
       Status: 301 Now where did I leave that URL<br />
-      Location: http://xyz.abc.com/foo/bar.html<br />
+      Location: http://xyz.example.com/foo/bar.html<br />
       Content-type: text/html<br />
       <br />
       &lt;html&gt;<br />
@@ -76,7 +76,7 @@ HTTP headers</description>
       &lt;/head&gt;<br />
       &lt;body&gt;<br />
       &lt;h1&gt;Fred's exceptionally wonderful page has moved to<br />
-      &lt;a href="http://xyz.abc.com/foo/bar.html"&gt;Joe's&lt;/a&gt;
+      &lt;a href="http://xyz.example.com/foo/bar.html"&gt;Joe's&lt;/a&gt;
       site.<br />
       &lt;/h1&gt;<br />
       &lt;/body&gt;<br />