]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Rebuild HTML transformations.
authorRich Bowen <rbowen@apache.org>
Tue, 20 Sep 2011 11:31:09 +0000 (11:31 +0000)
committerRich Bowen <rbowen@apache.org>
Tue, 20 Sep 2011 11:31:09 +0000 (11:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1173087 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.html.en
docs/manual/mod/core.xml
docs/manual/mod/core.xml.de
docs/manual/mod/core.xml.ja
docs/manual/mod/core.xml.tr
docs/manual/mod/quickreference.html.en
docs/manual/mod/quickreference.html.ko.euc-kr
docs/manual/mod/quickreference.html.zh-cn

index 620072afd75353ea098057cf9801f83c7c16c8ee..83ecc5e2d6563dd1d0ff2ba15945a9c2c84b64f2 100644 (file)
@@ -1364,7 +1364,7 @@ in case of an error</td></tr>
     <p>Specifying <code>connection</code> or <code>request</code> as first
     parameter allows to specify additional formats, causing additional
     information to be logged when the first message is logged for a specific
-    connection or request, respectivly. This additional information is only
+    connection or request, respectively. This additional information is only
     logged once per connection/request. If a connection or request is processed
     without causing any log message, the additional information is not logged
     either.</p>
@@ -1373,7 +1373,7 @@ in case of an error</td></tr>
     example, the Referer header is only present if the log message is
     associated to a request and the log message happens at a time when the
     Referer header has already been read from the client.  If no output is
-    produced, the default behaviour is to delete everything from the preceeding
+    produced, the default behavior is to delete everything from the preceeding
     space character to the next space character.  This means the log line is
     implicitly divided into fields on non-whitespace to whitespace transitions.
     If a format string item does not produce output, the whole field is
@@ -1384,7 +1384,7 @@ in case of an error</td></tr>
     (percent space) is a zero-witdh field delimiter that does not produce any
     output.</p>
 
-    <p>The above behaviour can be changed by adding modifiers to the format
+    <p>The above behavior can be changed by adding modifiers to the format
     string item. A <code>-</code> (minus) modifier causes a minus to be logged if the
     respective item does not produce any output. In once-per-connection/request
     formats, it is also possible to use the <code>+</code> (plus) modifier. If an
@@ -1396,57 +1396,73 @@ in case of an error</td></tr>
     message is not higher than the specified log severity level. The number can
     range from 1 (alert) over 4 (warn) and 7 (debug) to 15 (trace8).</p>
 
+    <table class="bordered"><tr class="header"><th>Modified Token</th><th>Meaning</th></tr>
+<tr>
+    <td><code>%-{Referer}i</code></td>
+    <td>Logs a <code>-</code> if <code>Referer</code> is not set.</td>
+    </tr>
+<tr class="odd">
+    <td><code>%+{Referer}i</code></td>
+    <td>Omits the entire line if <code>Referer</code> is not set.</td>
+    </tr>
+<tr>
+    <td><code>%4{Referer}i</code></td>
+    <td>Logs the <code>Referer</code> only if the log message severity
+    is higher than 4.</td>
+    </tr>
+</table>
+
     <p>Some format string items accept additional parameters in braces.</p>
 
     <table class="bordered"><tr class="header"><th>Format&nbsp;String</th> <th>Description</th></tr>
 <tr><td><code>%%</code></td>
         <td>The percent sign</td></tr>
-<tr class="odd"><td><code>%...a</code></td>
+<tr class="odd"><td><code>%a</code></td>
         <td>Remote IP-address and port</td></tr>
-<tr><td><code>%...A</code></td>
+<tr><td><code>%A</code></td>
         <td>Local IP-address and port</td></tr>
-<tr class="odd"><td><code>%...{<em>name</em>}e</code></td>
+<tr class="odd"><td><code>%{<em>name</em>}e</code></td>
         <td>Request environment variable <em>name</em></td></tr>
-<tr><td><code>%...E</code></td>
+<tr><td><code>%E</code></td>
         <td>APR/OS error status code and string</td></tr>
-<tr class="odd"><td><code>%...F</code></td>
+<tr class="odd"><td><code>%F</code></td>
         <td>Source file name and line number of the log call</td></tr>
-<tr><td><code>%...{<em>name</em>}i</code></td>
+<tr><td><code>%{<em>name</em>}i</code></td>
         <td>Request header <em>name</em></td></tr>
-<tr class="odd"><td><code>%...k</code></td>
+<tr class="odd"><td><code>%k</code></td>
         <td>Number of keep-alive requests on this connection</td></tr>
-<tr><td><code>%...l</code></td>
+<tr><td><code>%l</code></td>
         <td>Loglevel of the message</td></tr>
-<tr class="odd"><td><code>%...L</code></td>
+<tr class="odd"><td><code>%L</code></td>
         <td>Log ID of the request</td></tr>
-<tr><td><code>%...{c}L</code></td>
+<tr><td><code>%{c}L</code></td>
         <td>Log ID of the connection</td></tr>
-<tr class="odd"><td><code>%...{C}L</code></td>
+<tr class="odd"><td><code>%{C}L</code></td>
         <td>Log ID of the connection if used in connection scope, empty otherwise</td></tr>
-<tr><td><code>%...m</code></td>
+<tr><td><code>%m</code></td>
         <td>Name of the module logging the message</td></tr>
 <tr class="odd"><td><code>%M</code></td>
         <td>The actual log message</td></tr>
-<tr><td><code>%...{<em>name</em>}n</code></td>
+<tr><td><code>%{<em>name</em>}n</code></td>
         <td>Request note <em>name</em></td></tr>
-<tr class="odd"><td><code>%...P</code></td>
+<tr class="odd"><td><code>%P</code></td>
         <td>Process ID of current process</td></tr>
-<tr><td><code>%...T</code></td>
+<tr><td><code>%T</code></td>
         <td>Thread ID of current thread</td></tr>
-<tr class="odd"><td><code>%...{g}T</code></td>
+<tr class="odd"><td><code>%{g}T</code></td>
         <td>System unique thread ID of current thread (the same ID as
             displayed by e.g. <code>top</code>; currently Linux only)</td></tr>
-<tr><td><code>%...t</code></td>
+<tr><td><code>%t</code></td>
         <td>The current time</td></tr>
-<tr class="odd"><td><code>%...{u}t</code></td>
+<tr class="odd"><td><code>%{u}t</code></td>
         <td>The current time including micro-seconds</td></tr>
-<tr><td><code>%...{cu}t</code></td>
+<tr><td><code>%{cu}t</code></td>
         <td>The current time in compact ISO 8601 format, including
             micro-seconds</td></tr>
-<tr class="odd"><td><code>%...v</code></td>
+<tr class="odd"><td><code>%v</code></td>
         <td>The canonical <code class="directive"><a href="#servername">ServerName</a></code>
             of the current server.</td></tr>
-<tr><td><code>%...V</code></td>
+<tr><td><code>%V</code></td>
         <td>The server name of the server serving the request according to the
             <code class="directive"><a href="#usecanonicalname">UseCanonicalName</a></code>
             setting.</td></tr>
@@ -2007,7 +2023,7 @@ wildcard matching available in 2.3.6 and later</td></tr>
     <strong>fail with an error</strong> saying the directory cannot be found.
     </p>
 
-    <p>For further control over the behaviour of the server when no files or
+    <p>For further control over the behavior of the server when no files or
     directories match, prefix the path with the modifiers <var>optional</var>
     or <var>strict</var>. If <var>optional</var> is specified, any wildcard
     file or directory that does not match will be silently ignored. If
@@ -3995,7 +4011,7 @@ handler</td></tr>
 
     <div class="note"><h3>Note</h3>
     <p>Because <code class="directive">SetHandler</code> overrides default handlers,
-    normal behaviour such as handling of URLs ending in a slash (/) as
+    normal behavior such as handling of URLs ending in a slash (/) as
     directories or index files is suppressed.</p></div>
 
 <h3>See also</h3>
@@ -4108,7 +4124,7 @@ certain events before failing a request</td></tr>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="TraceEnable" id="TraceEnable">TraceEnable</a> <a name="traceenable" id="traceenable">Directive</a></h2>
 <table class="directive">
-<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Determines the behaviour on <code>TRACE</code> requests</td></tr>
+<tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Determines the behavior on <code>TRACE</code> requests</td></tr>
 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>TraceEnable <var>[on|off|extended]</var></code></td></tr>
 <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>TraceEnable on</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host</td></tr>
index 4de06cb85a7deb97012695c0993fe652d79d10eb..2abdae08906e6b1383e032337bc25565f097d7f4 100644 (file)
@@ -4104,7 +4104,7 @@ certain events before failing a request</description>
 <description>Determines the behavior on <code>TRACE</code> requests</description>
 <syntax>TraceEnable <var>[on|off|extended]</var></syntax>
 <default>TraceEnable on</default>
-contextlist><context>server config</context><context>virtual host</context></contextlist>
+<contextlist><context>server config</context><context>virtual host</context></contextlist>
 <compatibility>Available in Apache HTTP Server 1.3.34, 2.0.55 and later</compatibility>
 
 <usage>
index 25e563c91508f16f6975ca92042a02a5a5fdbdb7..76c8e53a36a7d3bb43f8c59e95f3047a585af4f0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.de.xsl"?>
-<!-- English Revision: 344972:1172208 (outdated) -->
+<!-- English Revision: 344972:1173086 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index b70755e86086c73146f0087c788297c30980f320..694b3c0e09b341b7535984332b5e49cf3e3f2e0e 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 669847:1172208 (outdated) -->
+<!-- English Revision: 669847:1173086 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 97620ed01430a6621c47f3650d67af976db1a3b9..0688c3e4c73888f75e30ab376c798b555192d49c 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?>
-<!-- English Revision: 813376:1172208 (outdated) -->
+<!-- English Revision: 813376:1173086 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index 9f19fc77499b96cb059f3355bf66eaeba0b2d692..4bf5ffe9422592c7d26a785d14b4a036eabfe741 100644 (file)
@@ -922,7 +922,7 @@ per child process</td></tr>
 client connections</td></tr>
 <tr><td><a href="core.html#timeout">TimeOut <var>seconds</var></a></td><td> 300 </td><td>sv</td><td>C</td></tr><tr><td class="descr" colspan="4">Amount of time the server will wait for
 certain events before failing a request</td></tr>
-<tr class="odd"><td><a href="core.html#traceenable">TraceEnable <var>[on|off|extended]</var></a></td><td> on </td><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Determines the behaviour on <code>TRACE</code> requests</td></tr>
+<tr class="odd"><td><a href="core.html#traceenable">TraceEnable <var>[on|off|extended]</var></a></td><td> on </td><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Determines the behavior on <code>TRACE</code> requests</td></tr>
 <tr><td><a href="mod_log_config.html#transferlog">TransferLog <var>file</var>|<var>pipe</var></a></td><td></td><td>sv</td><td>B</td></tr><tr><td class="descr" colspan="4">Specify location of a log file</td></tr>
 <tr class="odd"><td><a href="mod_mime.html#typesconfig">TypesConfig <var>file-path</var></a></td><td> conf/mime.types </td><td>s</td><td>B</td></tr><tr class="odd"><td class="descr" colspan="4">The location of the <code>mime.types</code> file</td></tr>
 <tr><td><a href="core.html#undefine" id="U" name="U">UnDefine <var>parameter-name</var></a></td><td></td><td>s</td><td>C</td></tr><tr><td class="descr" colspan="4">Undefine the existence of a variable</td></tr>
index d27311e25ebdd4c6ed6e529353bb3448049b4cfc..4bbe1ae9a3441bef28c69ffe8dabc117e60aceb8 100644 (file)
@@ -885,7 +885,7 @@ per child process</td></tr>
 client connections</td></tr>
 <tr><td><a href="core.html#timeout">TimeOut <var>seconds</var></a></td><td> 300 </td><td>sv</td><td>C</td></tr><tr><td class="descr" colspan="4">Amount of time the server will wait for
 certain events before failing a request</td></tr>
-<tr class="odd"><td><a href="core.html#traceenable">TraceEnable <var>[on|off|extended]</var></a></td><td> on </td><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Determines the behaviour on <code>TRACE</code> requests</td></tr>
+<tr class="odd"><td><a href="core.html#traceenable">TraceEnable <var>[on|off|extended]</var></a></td><td> on </td><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Determines the behavior on <code>TRACE</code> requests</td></tr>
 <tr><td><a href="mod_log_config.html#transferlog">TransferLog <var>file</var>|<var>pipe</var></a></td><td></td><td>sv</td><td>B</td></tr><tr><td class="descr" colspan="4">·Î±×ÆÄÀÏ À§Ä¡¸¦ ¼³Á¤ÇÑ´Ù</td></tr>
 <tr class="odd"><td><a href="mod_mime.html#typesconfig">TypesConfig <var>file-path</var></a></td><td> conf/mime.types </td><td>s</td><td>B</td></tr><tr class="odd"><td class="descr" colspan="4">The location of the <code>mime.types</code> file</td></tr>
 <tr><td><a href="core.html#undefine" id="U" name="U">UnDefine <var>parameter-name</var></a></td><td></td><td>s</td><td>C</td></tr><tr><td class="descr" colspan="4">Undefine the existence of a variable</td></tr>
index 3ad2883f0cfccb3ed74d2b1d5032093476e35ff5..ed6d3dae0b31cfd01040df236b099e06f6073c70 100644 (file)
@@ -916,7 +916,7 @@ per child process</td></tr>
 client connections</td></tr>
 <tr><td><a href="core.html#timeout">TimeOut <var>seconds</var></a></td><td> 300 </td><td>sv</td><td>C</td></tr><tr><td class="descr" colspan="4">Amount of time the server will wait for
 certain events before failing a request</td></tr>
-<tr class="odd"><td><a href="core.html#traceenable">TraceEnable <var>[on|off|extended]</var></a></td><td> on </td><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Determines the behaviour on <code>TRACE</code> requests</td></tr>
+<tr class="odd"><td><a href="core.html#traceenable">TraceEnable <var>[on|off|extended]</var></a></td><td> on </td><td>sv</td><td>C</td></tr><tr class="odd"><td class="descr" colspan="4">Determines the behavior on <code>TRACE</code> requests</td></tr>
 <tr><td><a href="mod_log_config.html#transferlog">TransferLog <var>file</var>|<var>pipe</var></a></td><td></td><td>sv</td><td>B</td></tr><tr><td class="descr" colspan="4">Specify location of a log file</td></tr>
 <tr class="odd"><td><a href="mod_mime.html#typesconfig">TypesConfig <var>file-path</var></a></td><td> conf/mime.types </td><td>s</td><td>B</td></tr><tr class="odd"><td class="descr" colspan="4">The location of the <code>mime.types</code> file</td></tr>
 <tr><td><a href="core.html#undefine" id="U" name="U">UnDefine <var>parameter-name</var></a></td><td></td><td>s</td><td>C</td></tr><tr><td class="descr" colspan="4">Undefine the existence of a variable</td></tr>