]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r668620 and r668628 from trunk:
authorTakashi Sato <takashi@apache.org>
Tue, 17 Jun 2008 16:28:48 +0000 (16:28 +0000)
committerTakashi Sato <takashi@apache.org>
Tue, 17 Jun 2008 16:28:48 +0000 (16:28 +0000)
* clean the compatibility note of SeeRequestTail
* use <code>
* Add a example of  SeeRequestTail

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@668729 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_status.xml

index 99c6841278169af2e9c041ff3e15c4ea38f4ad6a..8b27fb7afbb929e2f6060be8c1a1d4d5abf6cefe 100644 (file)
@@ -149,17 +149,34 @@ of a request or the last 63, assuming the request itself is greater than
 <syntax>SeeRequestTail On|Off</syntax>
 <default>SeeRequestTail Off</default>
 <contextlist><context>server config</context></contextlist>
-<compatibility>SeeRequestTail is only available in Apache 2.2.7 and 
-later.</compatibility>
+<compatibility>Available in Apache 2.2.7 and later.</compatibility>
 
 <usage>
-    <p>mod_status with ExtendedStatus On displays the actual request being
-    handled. For historical purposes, only 63 characters of the request
+    <p>mod_status with <code>ExtendedStatus On</code>
+    displays the actual request being handled. 
+    For historical purposes, only 63 characters of the request
     are actually stored for display purposes. This directive
     controls whether the 1st 63 characters are stored (the previous
     behavior and the default) or if the last 63 characters are. This
     is only applicable, of course, if the length of the request is
     64 characters or greater.</p>
+
+    <p>If Apache is handling <code
+    >GET&nbsp;/disk1/storage/apache/htdocs/images/imagestore1/food/apples.jpg&nbsp;HTTP/1.1</code
+    > mod_status displays as follows:
+    </p>
+
+    <table border="1">
+      <tr>
+        <th>Off (default)</th>
+        <td>GET&nbsp;/disk1/storage/apache/htdocs/images/imagestore1/food/fruits</td>
+      </tr>
+      <tr>
+        <th>On</th>
+        <td>orage/apache/htdocs/images/imagestore1/food/apples.jpg&nbsp;HTTP/1.1</td>
+      </tr>
+    </table>
+
 </usage>
 
 </directivesynopsis>