]> granicus.if.org Git - apache/commitdiff
Transformations.
authorErik Abele <erikabele@apache.org>
Fri, 19 Oct 2007 13:30:31 +0000 (13:30 +0000)
committerErik Abele <erikabele@apache.org>
Fri, 19 Oct 2007 13:30:31 +0000 (13:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@586436 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/logs.html.en
docs/manual/logs.xml.ja
docs/manual/logs.xml.ko
docs/manual/mod/core.html.en
docs/manual/mod/core.xml.de
docs/manual/mod/core.xml.ja
docs/manual/mod/mod_proxy_http.html.en

index 8fe1aa07c681b5dcdcf8634ef7c76df4318c37d4..08663187378e47f6c3423fc62abe95814c2042bc 100644 (file)
         code for the request (see below) is 401, then this value
         should not be trusted because the user is not yet
         authenticated. If the document is not password protected,
-        this entry will be "<code>-</code>" just like the previous
+        this part will be "<code>-</code>" just like the previous
         one.</dd>
 
         <dt><code>[10/Oct/2000:13:55:36 -0700]</code>
 
         <dt><code>2326</code> (<code>%b</code>)</dt>
 
-        <dd>The last entry indicates the size of the object returned
+        <dd>The last part indicates the size of the object returned
         to the client, not including the response headers. If no
         content was returned to the client, this value will be
         "<code>-</code>". To log "<code>0</code>" for no content, use
 
     <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td><ul><li><code class="module"><a href="./mod/mod_logio.html">mod_logio</a></code></li><li><code class="module"><a href="./mod/mod_log_forensic.html">mod_log_forensic</a></code></li><li><code class="module"><a href="./mod/mod_cgi.html">mod_cgi</a></code></li><li><code class="module"><a href="./mod/mod_rewrite.html">mod_rewrite</a></code></li></ul></td><td><ul><li><code class="directive"><a href="./mod/mod_log_config.html#logformat">LogFormat</a></code></li><li><code class="directive"><a href="./mod/mod_log_forensic.html#forensiclog">ForensicLog</a></code></li><li><code class="directive"><a href="./mod/mpm_common.html#pidfile">PidFile</a></code></li><li><code class="directive"><a href="./mod/mod_rewrite.html#rewritelog">RewriteLog</a></code></li><li><code class="directive"><a href="./mod/mod_rewrite.html#rewriteloglevel">RewriteLogLevel</a></code></li><li><code class="directive"><a href="./mod/mod_cgi.html#scriptlog">ScriptLog</a></code></li><li><code class="directive"><a href="./mod/mod_cgi.html#scriptlogbuffer">ScriptLogBuffer</a></code></li><li><code class="directive"><a href="./mod/mod_cgi.html#scriptloglength">ScriptLogLength</a></code></li></ul></td></tr></table>
 
-    <h3>Logging actual bytes sent and recieved</h3>
+    <h3>Logging actual bytes sent and received</h3>
       
 
       <p><code class="module"><a href="./mod/mod_logio.html">mod_logio</a></code> adds in two additional
index e9ecfb6f3778b4599f944499345a6b72b991836f..e31b1133784ff2232f987fab6849b6cfeee8a674 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-2022-jp"?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?>
-<!-- English Revision: 165671:420990 (outdated) -->
+<!-- English Revision: 165671:583991 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 89ad933b2995d990990f97560c93a6f04301c867..54d2498b108f310dd8540feedf34ba449d759f0e 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.ko.xsl"?>
-<!-- English Revision: 105989:420990 (outdated) -->
+<!-- English Revision: 105989:583991 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index c76b39ab6f6b52c108aec0380156e424aeb74cde..1b84c01219f6411692c2d6db3ba5d31f821ee5c0 100644 (file)
@@ -579,8 +579,9 @@ server cannot determine a type in any other way</td></tr>
     <p>There will be times when the server is asked to provide a
     document whose type cannot be determined by its <a class="glossarylink" href="../glossary.html#mime-type" title="see glossary">MIME types</a> mappings.</p>
 
-    <p>The server must inform the client of the content-type of the
-    document, so in the event of an unknown type it uses the
+    <p>The server SHOULD inform the client of the content-type of the
+    document.  If the server is unable to determine this by normal
+    means, it will set it to the configured
     <code>DefaultType</code>. For example:</p>
 
     <div class="example"><p><code>
@@ -590,17 +591,15 @@ server cannot determine a type in any other way</td></tr>
     <p>would be appropriate for a directory which contained many GIF
     images with filenames missing the <code>.gif</code> extension.</p>
 
-    <p>Sometimes it may be better to omit the MIME type altogether if it
-    cannot be determined by the server.  This can be accomplished using</p>
+    <p>In cases where it can neither be determined by the server nor
+    the administrator (e.g. a proxy), it is preferable to omit the MIME
+    type altogether rather than provide information that may be false.
+    This can be accomplished using</p>
     <div class="example"><p><code>
       DefaultType None
     </code></p></div>
     <p>DefaultType None is only available in httpd-2.2.7 and later.</p>
 
-    <p>This can be suppressed by setting <code>DefaultType None</code>.
-    With this setting, Apache will omit <em>any</em> Content-Type
-    header if it not able to determine the correct MIME type.</p>
-
     <p>Note that unlike <code class="directive"><a href="#forcetype">ForceType</a></code>, this directive only
     provides the default mime-type. All other mime-type definitions,
     including filename extensions, that might identify the media type
index b8f463cc40ad13c270a42b31f61097b1956cccba..32d3e8f7e783102b9f7974792241e33ae557f1c6 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: 167959:583289 (outdated) -->
+<!-- English Revision: 167959:584842 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 6e413456199a7c11fd5c69065e1501a9981c1d30..1fa15b2ea01a98fec593167bc069a3c14f75defd 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-2022-jp"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 190982:583289 (outdated) -->
+<!-- English Revision: 190982:584842 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index eb0364914603730575027de3d273197dcde9a5bd..cc094ba48b321422b05e6b2b95c86e7811456d86 100644 (file)
@@ -68,7 +68,7 @@
     <dl>
         <dt>proxy-sendextracrlf</dt>
         <dd>Causes proxy to send an extra CR-LF newline on the end of a
-        request.  This is a workaround for a bug in some servers.</dd>
+        request.  This is a workaround for a bug in some browsers.</dd>
         <dt>force-proxy-request-1.0</dt>
         <dd>Forces the proxy to send requests to the backend as HTTP/1.0
         and disables HTTP/1.1 features.</dd>