Skip to content

Commit

Permalink
I have finally been asked one too many times whether the 'foobar' in
Browse files Browse the repository at this point in the history
these documents represents the literal string 'foobar'. I think that
this might prove a little clearer, and require just that one little bit
less explanation.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@723557 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Richard Bowen committed Dec 5, 2008
1 parent c92cdb4 commit eb4334d
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
8 changes: 4 additions & 4 deletions docs/manual/mod/mod_headers.html.en
Original file line number Diff line number Diff line change
Expand Up @@ -294,12 +294,12 @@ headers</td></tr>
<td>The time from when the request was received to the time the
headers are sent on the wire. This is a measure of the duration
of the request. The value is preceded by <code>D=</code>.</td></tr>
<tr class="odd"><td><code>%{FOOBAR}e</code></td>
<tr class="odd"><td><code>%{VARNAME}e</code></td>
<td>The contents of the <a href="../env.html">environment
variable</a> <code>FOOBAR</code>.</td></tr>
<tr><td><code>%{FOOBAR}s</code></td>
variable</a> <code>VARNAME</code>.</td></tr>
<tr><td><code>%{VARNAME}s</code></td>
<td>The contents of the <a href="mod_ssl.html#envvars">SSL environment
variable</a> <code>FOOBAR</code>, if <code class="module"><a href="../mod/mod_ssl.html">mod_ssl</a></code> is enabled.</td></tr>
variable</a> <code>VARNAME</code>, if <code class="module"><a href="../mod/mod_ssl.html">mod_ssl</a></code> is enabled.</td></tr>
</table>

<div class="note"><h3>Note</h3>
Expand Down
8 changes: 4 additions & 4 deletions docs/manual/mod/mod_headers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -379,13 +379,13 @@ headers</description>
headers are sent on the wire. This is a measure of the duration
of the request. The value is preceded by <code>D=</code>.</td></tr>

<tr><td><code>%{FOOBAR}e</code></td>
<tr><td><code>%{VARNAME}e</code></td>
<td>The contents of the <a href="../env.html">environment
variable</a> <code>FOOBAR</code>.</td></tr>
variable</a> <code>VARNAME</code>.</td></tr>

<tr><td><code>%{FOOBAR}s</code></td>
<tr><td><code>%{VARNAME}s</code></td>
<td>The contents of the <a href="mod_ssl.html#envvars">SSL environment
variable</a> <code>FOOBAR</code>, if <module>mod_ssl</module> is enabled.</td></tr>
variable</a> <code>VARNAME</code>, if <module>mod_ssl</module> is enabled.</td></tr>

</table>

Expand Down
20 changes: 10 additions & 10 deletions docs/manual/mod/mod_log_config.html.en
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,22 @@
<tr><td><code>%b</code></td>
<td>Size of response in bytes, excluding HTTP headers. In CLF format, <em>i.e.</em>
a '<code>-</code>' rather than a 0 when no bytes are sent.</td></tr>
<tr class="odd"><td><code>%{<var>Foobar</var>}C</code></td>
<td>The contents of cookie <var>Foobar</var> in the request sent
<tr class="odd"><td><code>%{<var>VARNAME</var>}C</code></td>
<td>The contents of cookie <var>VARNAME</var> in the request sent
to the server.</td></tr>
<tr><td><code>%D</code></td>
<td>The time taken to serve the request, in microseconds.</td></tr>
<tr class="odd"><td><code>%{<var>FOOBAR</var>}e</code></td>
<tr class="odd"><td><code>%{<var>VARNAME</var>}e</code></td>
<td>The contents of the environment variable
<var>FOOBAR</var></td></tr>
<var>VARNAME</var></td></tr>
<tr><td><code>%f</code></td>
<td>Filename</td></tr>
<tr class="odd"><td><code>%h</code></td>
<td>Remote host</td></tr>
<tr><td><code>%H</code></td>
<td>The request protocol</td></tr>
<tr class="odd"><td><code>%{<var>Foobar</var>}i</code></td>
<td>The contents of <code><var>Foobar</var>:</code> header line(s)
<tr class="odd"><td><code>%{<var>VARNAME</var>}i</code></td>
<td>The contents of <code><var>VARNAME</var>:</code> header line(s)
in the request sent to the server. Changes made by other
modules (e.g. <code class="module"><a href="../mod/mod_headers.html">mod_headers</a></code>) affect this.
</td></tr>
Expand All @@ -121,11 +121,11 @@
<code>On</code>.</td></tr>
<tr><td><code>%m</code></td>
<td>The request method</td></tr>
<tr class="odd"><td><code>%{<var>Foobar</var>}n</code></td>
<td>The contents of note <var>Foobar</var> from another
<tr class="odd"><td><code>%{<var>VARNAME</var>}n</code></td>
<td>The contents of note <var>VARNAME</var> from another
module.</td></tr>
<tr><td><code>%{<var>Foobar</var>}o</code></td>
<td>The contents of <code><var>Foobar</var>:</code> header line(s)
<tr><td><code>%{<var>VARNAME</var>}o</code></td>
<td>The contents of <code><var>VARNAME</var>:</code> header line(s)
in the reply.</td></tr>
<tr class="odd"><td><code>%p</code></td>
<td>The canonical port of the server serving the request</td></tr>
Expand Down
20 changes: 10 additions & 10 deletions docs/manual/mod/mod_log_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,16 @@
<td>Size of response in bytes, excluding HTTP headers. In CLF format, <em>i.e.</em>
a '<code>-</code>' rather than a 0 when no bytes are sent.</td></tr>

<tr><td><code>%{<var>Foobar</var>}C</code></td>
<td>The contents of cookie <var>Foobar</var> in the request sent
<tr><td><code>%{<var>VARNAME</var>}C</code></td>
<td>The contents of cookie <var>VARNAME</var> in the request sent
to the server.</td></tr>

<tr><td><code>%D</code></td>
<td>The time taken to serve the request, in microseconds.</td></tr>

<tr><td><code>%{<var>FOOBAR</var>}e</code></td>
<tr><td><code>%{<var>VARNAME</var>}e</code></td>
<td>The contents of the environment variable
<var>FOOBAR</var></td></tr>
<var>VARNAME</var></td></tr>

<tr><td><code>%f</code></td>
<td>Filename</td></tr>
Expand All @@ -103,8 +103,8 @@
<tr><td><code>%H</code></td>
<td>The request protocol</td></tr>

<tr><td><code>%{<var>Foobar</var>}i</code></td>
<td>The contents of <code><var>Foobar</var>:</code> header line(s)
<tr><td><code>%{<var>VARNAME</var>}i</code></td>
<td>The contents of <code><var>VARNAME</var>:</code> header line(s)
in the request sent to the server. Changes made by other
modules (e.g. <module>mod_headers</module>) affect this.
</td></tr>
Expand All @@ -125,12 +125,12 @@
<tr><td><code>%m</code></td>
<td>The request method</td></tr>

<tr><td><code>%{<var>Foobar</var>}n</code></td>
<td>The contents of note <var>Foobar</var> from another
<tr><td><code>%{<var>VARNAME</var>}n</code></td>
<td>The contents of note <var>VARNAME</var> from another
module.</td></tr>

<tr><td><code>%{<var>Foobar</var>}o</code></td>
<td>The contents of <code><var>Foobar</var>:</code> header line(s)
<tr><td><code>%{<var>VARNAME</var>}o</code></td>
<td>The contents of <code><var>VARNAME</var>:</code> header line(s)
in the reply.</td></tr>

<tr><td><code>%p</code></td>
Expand Down

0 comments on commit eb4334d

Please sign in to comment.