]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Update transformations.
authorGraham Leggett <minfrin@apache.org>
Sat, 13 Feb 2010 19:54:45 +0000 (19:54 +0000)
committerGraham Leggett <minfrin@apache.org>
Sat, 13 Feb 2010 19:54:45 +0000 (19:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@909881 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/configuring.xml.de
docs/manual/configuring.xml.ja
docs/manual/configuring.xml.ko
docs/manual/configuring.xml.tr
docs/manual/mod/core.html.en
docs/manual/mod/core.xml.de
docs/manual/mod/core.xml.ja
docs/manual/mod/core.xml.tr
docs/manual/mod/mod_proxy.xml.ja
docs/manual/mod/mod_proxy_connect.xml.ja

index 8f12daaf72aec9e98842e59f2da1d354fc6e9524..cdc675bc8892686f22389e704b41ce4a7d1d38d9 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='UTF-8' ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.de.xsl"?>
-<!-- English Revision: 420990:892280 (outdated) -->
+<!-- English Revision: 420990:906779 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 596744257ce07e85a1d7cb1c6383d7a0bf26b84f..19ad841e6f149bdde204ea73fb74c63265834df1 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.ja.xsl"?>
-<!-- English Revision: 420990:892280 (outdated) -->
+<!-- English Revision: 420990:906779 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 3a606ed4a61eae16564c19f79e7e4ece88ce385e..f824becccee06b46b7e0a561dd780db97b216b5a 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: 420990:892280 (outdated) -->
+<!-- English Revision: 420990:906779 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index bf1e8ea00cdcdca355f43b010b38361cd4f3d39a..ad78eee673000c68adbe37cdba9cbc59bc662c6f 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='UTF-8' ?>
 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="./style/manual.tr.xsl"?>
-<!-- English Revision: 830237:892280 (outdated) -->
+<!-- English Revision: 830237:906779 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 429720579ffbaf3b8c1a83530d53a5e724cc1575..c4ba255278403c36cbb181a62b99c905ea383664 100644 (file)
@@ -1159,6 +1159,16 @@ request</td></tr>
     the server.  Also note that this setting cannot be changed
     during a graceful restart.</p>
 
+    <div class="note">
+    <p>Note that loading <code class="module"><a href="../mod/mod_status.html">mod_status</a></code> will change 
+    the default behavior to ExtendedStatus On, while other
+    third party modules may do the same.  Such modules rely on
+    collecting detailed information about the state of all workers.
+    The default is changed by <code class="module"><a href="../mod/mod_status.html">mod_status</a></code> beginning
+    with version 2.3.6; the previous default was always Off.</p>
+    </div>
+
+
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="FileETag" id="FileETag">FileETag</a> <a name="fileetag" id="fileetag">Directive</a></h2>
@@ -1567,22 +1577,32 @@ the server configuration files</td></tr>
 <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory</td></tr>
 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>core</td></tr>
-<tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Wildcard matching available in 2.0.41 and later</td></tr>
+<tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Wildcard matching available in 2.0.41 and later, directory
+wildcard matching available in 2.3.6 and later</td></tr>
 </table>
     <p>This directive allows inclusion of other configuration files
     from within the server configuration files.</p>
 
     <p>Shell-style (<code>fnmatch()</code>) wildcard characters can be used
-    in the filename part of the path (not the directory part) to
-    include several files at once, in alphabetical order. In
-    addition, if <code class="directive">Include</code> points to a directory,
-    rather than a file, Apache will read all files in that directory
-    and any subdirectory.  However, including entire directories is not
-    recommended, because it is easy to accidentally leave temporary
-    files in a directory that can cause <code class="program"><a href="../programs/httpd.html">httpd</a></code> to
-    fail. Instead, we encourage you to use the wildcard syntax shown
-    below, to include files that match a particular pattern, such as
-    *.conf, for example.</p>
+    in the filename or directory parts of the path to include several files
+    at once, in alphabetical order. In addition, if
+    <code class="directive">Include</code> points to a directory, rather than a file,
+    Apache will read all files in that directory and any subdirectory.
+    However, including entire directories is not recommended, because it is
+    easy to accidentally leave temporary files in a directory that can cause
+    <code class="program"><a href="../programs/httpd.html">httpd</a></code> to fail. Instead, we encourage you to use the
+    wildcard syntax shown below, to include files that match a particular
+    pattern, such as *.conf, for example.</p>
+
+    <p>When a wildcard is specified for a file or directory component of the
+    path, and no file or directory matches the wildcard, the
+    <code class="directive"><a href="#include">Include</a></code> directive will be
+    silently ignored. When a directory or file component of the path is
+    specified exactly, and that directory or file does not exist,
+    <code class="directive"><a href="#include">Include</a></code> directive will fail with an
+    error saying the file or directory cannot be found. This removes the need
+    for placeholder files to exist so that at least one file or directory is
+    found by the wildcard.</p>
 
     <p>The file path specified may be an absolute path, or may be relative 
     to the <code class="directive"><a href="#serverroot">ServerRoot</a></code> directory.</p>
@@ -1601,6 +1621,15 @@ the server configuration files</td></tr>
       Include conf/vhosts/*.conf
     </code></p></div>
 
+    <p>Wildcards may be included in the directory or file portion of the
+    path:</p>
+  
+    <div class="example"><p><code>
+      Include conf/vhosts/*/vhost.conf
+      Include conf/vhosts/*/*.conf
+    </code></p></div>
+
+
 <h3>See also</h3>
 <ul>
 <li><code class="program"><a href="../programs/apachectl.html">apachectl</a></code></li>
index ff7a3dc2c43b7843d53e0c96adaad63e6cfb1e6c..202c622584a28a3464aa0d966b5d62351f6faeb4 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:904853 (outdated) -->
+<!-- English Revision: 167959:909878 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 75b9e7449371dcb0515290fa8cc1fcddc6b692b5..458d016f2442dff184c7dcf04e857bad3ed07b26 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:904853 (outdated) -->
+<!-- English Revision: 669847:909878 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 45e2289d2540ff4f00e1f5748ca47de9f1df92a5..7d1c35039a33e3998e21dd0707d114ba460c11c1 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:904853 (outdated) -->
+<!-- English Revision: 813376:909878 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index a376d503b82ad893b16edd58f78c8b8e3d696156..79b1e8220ff486285858c07da3d545a8f5ffb0aa 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: 344971:894526 (outdated) -->
+<!-- English Revision: 344971:909323 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 4e3539c6275696643f6da693f15c8283f6ea7c7c..1794f08bf98a2fe05a3da48549144e166e90cd73 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: 669473:894522 (outdated) -->
+<!-- English Revision: 669473:909323 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more