]> granicus.if.org Git - apache/commitdiff
- add <seealso> to mod_log_config
authorAndre Malo <nd@apache.org>
Mon, 18 Nov 2002 00:50:15 +0000 (00:50 +0000)
committerAndre Malo <nd@apache.org>
Mon, 18 Nov 2002 00:50:15 +0000 (00:50 +0000)
- use same log format table style as mod_log_config
-> update transformation

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97561 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_logio.html.en
docs/manual/mod/mod_logio.xml

index f565c0ced74e2d1561da20eccf8e19a85f95881a..bd9e1472d6e0451ea7240d0595f9aaabcac443f0 100644 (file)
 
     <p>This module requires <code class="module"><a href="../mod/mod_log_config.html">mod_log_config</a></code>.</p>
 
-</div><div id="quickview"><h3 class="directives">Directives</h3><p>This module provides no directives.</p><h3>Topics</h3><ul id="topics"><li><img alt="" src="../images/down.gif" /> <a href="#formats">Custom Log Formats</a></li></ul><h3>See also</h3><ul class="seealso"><li><a href="../logs.html">Apache Log Files</a></li></ul></div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="section"><h2><a name="formats" id="formats">Custom Log Formats</a></h2>
+</div><div id="quickview"><h3 class="directives">Directives</h3><p>This module provides no directives.</p><h3>Topics</h3><ul id="topics"><li><img alt="" src="../images/down.gif" /> <a href="#formats">Custom Log Formats</a></li></ul><h3>See also</h3><ul class="seealso"><li><code class="module"><a href="../mod/mod_log_config.html">mod_log_config</a></code></li><li><a href="../logs.html">Apache Log Files</a></li></ul></div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="section"><h2><a name="formats" id="formats">Custom Log Formats</a></h2>
 
 
     <p>This modules adds two new logging directives. The characteristics of the
-    request itself are logged by placing "%" directives in the format string,
-    which are replaced in the log file by the values as follows:</p>
-
-<table>
-
-<tr><td>%...I:</td>
-<td>Bytes received, including request and headers, cannot be zero.</td></tr>
-
-<tr><td>%...O:</td>
-<td>Bytes sent, including headers, cannot be zero.</td></tr>
-
+    request itself are logged by placing "<code>%</code>" directives in
+    the format string, which are replaced in the log file by the values as
+    follows:</p>
+
+    <table class="bordered"><tr class="header"><th>Format String</th>
+        <th>Description</th></tr>
+<tr><td><code>%...I</code></td>
+        <td>Bytes received, including request and headers, cannot be
+        zero.</td></tr>
+<tr class="odd"><td><code>%...O</code></td>
+        <td>Bytes sent, including headers, cannot be zero.</td></tr>
 </table>
 
     <p>Usually, the functionality is used like this:</p>
 
     <dl>
-
       <dt>Combined I/O log format:</dt>
-
       <dd><code>"%h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\"
       \"%{User-agent}i\" %I %O"</code></dd>
-
     </dl>
-
 </div></div><div id="footer"><p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p><p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div></body></html>
\ No newline at end of file
index 7d1d81708218cdb45f1df599f0cb4664a3ec3321..e7a7b70edcafc2e21b948c114f47b79c21df1ad5 100644 (file)
 
 </summary>
 
+<seealso><module>mod_log_config</module></seealso>
 <seealso><a href="../logs.html">Apache Log Files</a></seealso>
 
 <section id="formats">
 <title>Custom Log Formats</title>
 
     <p>This modules adds two new logging directives. The characteristics of the
-    request itself are logged by placing "%" directives in the format string,
-    which are replaced in the log file by the values as follows:</p>
+    request itself are logged by placing "<code>%</code>" directives in
+    the format string, which are replaced in the log file by the values as
+    follows:</p>
 
-<table>
+    <table border="1" style="zebra">
+    <tr><th>Format&nbsp;String</th>
+        <th>Description</th></tr>
 
-<tr><td>%...I:</td>
-<td>Bytes received, including request and headers, cannot be zero.</td></tr>
+    <tr><td><code>%...I</code></td>
+        <td>Bytes received, including request and headers, cannot be
+        zero.</td></tr>
 
-<tr><td>%...O:</td>
-<td>Bytes sent, including headers, cannot be zero.</td></tr>
-
-</table>
+    <tr><td><code>%...O</code></td>
+        <td>Bytes sent, including headers, cannot be zero.</td></tr>
+    </table>
 
     <p>Usually, the functionality is used like this:</p>
 
     <dl>
-
       <dt>Combined I/O log format:</dt>
-
       <dd><code>"%h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\"
       \"%{User-agent}i\" %I %O"</code></dd>
-
     </dl>
-
 </section>
 
 </modulesynopsis>