You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2010/12/19 23:48:57 UTC

svn commit: r1050960 - in /httpd/httpd/trunk/docs/manual: expr.html.en expr.xml index.html.en index.xml

Author: sf
Date: Sun Dec 19 22:48:57 2010
New Revision: 1050960

URL: http://svn.apache.org/viewvc?rev=1050960&view=rev
Log:
add some links

Modified:
    httpd/httpd/trunk/docs/manual/expr.html.en
    httpd/httpd/trunk/docs/manual/expr.xml
    httpd/httpd/trunk/docs/manual/index.html.en
    httpd/httpd/trunk/docs/manual/index.xml

Modified: httpd/httpd/trunk/docs/manual/expr.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/expr.html.en?rev=1050960&r1=1050959&r2=1050960&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/expr.html.en (original)
+++ httpd/httpd/trunk/docs/manual/expr.html.en Sun Dec 19 22:48:57 2010
@@ -133,7 +133,8 @@ listfunction ::= listfuncname "<strong>(
 
     <table class="bordered"><tr class="header"><th>Name</th><th>Description</th></tr>
 <tr><td><code>REQUEST_METHOD</code></td>
-        <td>The HTTP method of the incoming request</td></tr>
+        <td>The HTTP method of the incoming request (e.g.
+            <code>GET</code></td></tr>
 <tr class="odd"><td><code>REQUEST_SCHEME</code></td>
         <td>The scheme part of the request's URI</td></tr>
 <tr><td><code>REQUEST_URI</code></td>
@@ -161,22 +162,27 @@ listfunction ::= listfuncname "<strong>(
 <tr><td><code>REMOTE_IDENT</code></td>
         <td>The user name set by <code class="module"><a href="./mod/mod_ident.html">mod_ident</a></code></td></tr>
 <tr class="odd"><td><code>SERVER_NAME</code></td>
-        <td>The server name of the current vhost</td></tr>
+        <td>The <code class="directive"><a href="./mod/core.html#servername">ServerName</a></code> of
+            the current vhost</td></tr>
 <tr><td><code>SERVER_PORT</code></td>
-        <td>The server port of the current vhost</td></tr>
-<tr class="odd"><td><code>SERVER_PROTOCOL</code></td>
+        <td>The server port of the current vhost, see
+            <code class="directive"><a href="./mod/core.html#servername">ServerName</a></code></td></tr>
+<tr class="odd"><td><code>SERVER_ADMIN</code></td>
+        <td>The <code class="directive"><a href="./mod/core.html#serveradmin">ServerAdmin</a></code> of
+            the current vhost</td></tr>
+<tr><td><code>SERVER_PROTOCOL</code></td>
         <td>The protocol used by the request</td></tr>
-<tr><td><code>SERVER_ADMIN</code></td>
-        <td>The server admin of the current vhost</td></tr>
 <tr class="odd"><td><code>DOCUMENT_ROOT</code></td>
         <td>The <code class="directive"><a href="./mod/core.html#documentroot">DocumentRoot</a></code> of
             the current vhost</td></tr>
 <tr><td><code>AUTH_TYPE</code></td>
-        <td>The configured auth type (e.g. "<code>basic</code>")</td></tr>
+        <td>The configured <code class="directive"><a href="./mod/mod_authn_core.html#authtype">AuthType</a></code>
+            (e.g. "<code>basic</code>")</td></tr>
 <tr class="odd"><td><code>CONTENT_TYPE</code></td>
         <td>The content type of the response</td></tr>
 <tr><td><code>HANDLER</code></td>
-        <td>The name of the handler creating the response</td></tr>
+        <td>The name of the <a href="handler.htmll">handler</a> creating
+            the response</td></tr>
 <tr class="odd"><td><code>HTTPS</code></td>
         <td>"<code>on</code>" if the request uses https,
             "<code>off</code>" otherwise</td></tr>

Modified: httpd/httpd/trunk/docs/manual/expr.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/expr.xml?rev=1050960&r1=1050959&r2=1050960&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/expr.xml (original)
+++ httpd/httpd/trunk/docs/manual/expr.xml Sun Dec 19 22:48:57 2010
@@ -136,7 +136,8 @@ listfunction ::= listfuncname "<strong>(
 
     <tr><th>Name</th><th>Description</th></tr>
     <tr><td><code>REQUEST_METHOD</code></td>
-        <td>The HTTP method of the incoming request</td></tr>
+        <td>The HTTP method of the incoming request (e.g.
+            <code>GET</code></td></tr>
     <tr><td><code>REQUEST_SCHEME</code></td>
         <td>The scheme part of the request's URI</td></tr>
     <tr><td><code>REQUEST_URI</code></td>
@@ -164,22 +165,27 @@ listfunction ::= listfuncname "<strong>(
     <tr><td><code>REMOTE_IDENT</code></td>
         <td>The user name set by <module>mod_ident</module></td></tr>
     <tr><td><code>SERVER_NAME</code></td>
-        <td>The server name of the current vhost</td></tr>
+        <td>The <directive module="core">ServerName</directive> of
+            the current vhost</td></tr>
     <tr><td><code>SERVER_PORT</code></td>
-        <td>The server port of the current vhost</td></tr>
+        <td>The server port of the current vhost, see
+            <directive module="core">ServerName</directive></td></tr>
+    <tr><td><code>SERVER_ADMIN</code></td>
+        <td>The <directive module="core">ServerAdmin</directive> of
+            the current vhost</td></tr>
     <tr><td><code>SERVER_PROTOCOL</code></td>
         <td>The protocol used by the request</td></tr>
-    <tr><td><code>SERVER_ADMIN</code></td>
-        <td>The server admin of the current vhost</td></tr>
     <tr><td><code>DOCUMENT_ROOT</code></td>
         <td>The <directive module="core">DocumentRoot</directive> of
             the current vhost</td></tr>
     <tr><td><code>AUTH_TYPE</code></td>
-        <td>The configured auth type (e.g. "<code>basic</code>")</td></tr>
+        <td>The configured <directive module="mod_authn_core">AuthType</directive>
+            (e.g. "<code>basic</code>")</td></tr>
     <tr><td><code>CONTENT_TYPE</code></td>
         <td>The content type of the response</td></tr>
     <tr><td><code>HANDLER</code></td>
-        <td>The name of the handler creating the response</td></tr>
+        <td>The name of the <a href="handler.htmll">handler</a> creating
+            the response</td></tr>
     <tr><td><code>HTTPS</code></td>
         <td>"<code>on</code>" if the request uses https,
             "<code>off</code>" otherwise</td></tr>

Modified: httpd/httpd/trunk/docs/manual/index.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/index.html.en?rev=1050960&r1=1050959&r2=1050960&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/index.html.en (original)
+++ httpd/httpd/trunk/docs/manual/index.html.en Sun Dec 19 22:48:57 2010
@@ -50,6 +50,7 @@ Documentation</h1>
 <li><a href="mpm.html">Multi-Processing Modules (MPMs)</a></li>
 <li><a href="filter.html">Filters</a></li>
 <li><a href="handler.html">Handlers</a></li>
+<li><a href="expr.html">Expression parser</a></li>
 <li><a href="programs/">Server and Supporting Programs</a></li>
 <li><a href="glossary.html">Glossary</a></li>
 </ul>

Modified: httpd/httpd/trunk/docs/manual/index.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/index.xml?rev=1050960&r1=1050959&r2=1050960&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/index.xml (original)
+++ httpd/httpd/trunk/docs/manual/index.xml Sun Dec 19 22:48:57 2010
@@ -44,6 +44,7 @@ Documentation</title>
     <page href="mpm.html">Multi-Processing Modules (MPMs)</page>
     <page href="filter.html">Filters</page>
     <page href="handler.html">Handlers</page>
+    <page href="expr.html">Expression parser</page>
     <page href="programs/">Server and Supporting Programs</page>
     <page href="glossary.html">Glossary</page>
 </category>