]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
xforms
authorJim Jagielski <jim@apache.org>
Thu, 11 Jun 2015 12:54:20 +0000 (12:54 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 11 Jun 2015 12:54:20 +0000 (12:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1684871 13f79535-47bb-0310-9956-ffa450edef68

15 files changed:
docs/manual/mod/mod_alias.html.en
docs/manual/mod/mod_alias.html.fr
docs/manual/mod/mod_alias.xml.fr
docs/manual/mod/mod_alias.xml.ja
docs/manual/mod/mod_alias.xml.ko
docs/manual/mod/mod_alias.xml.meta
docs/manual/mod/mod_alias.xml.tr
docs/manual/mod/mod_authnz_ldap.html.en
docs/manual/mod/mod_logio.html.en
docs/manual/mod/mod_logio.html.fr
docs/manual/mod/mod_logio.xml.fr
docs/manual/mod/mod_logio.xml.ja
docs/manual/mod/mod_logio.xml.ko
docs/manual/mod/mod_logio.xml.meta
docs/manual/mod/mod_logio.xml.tr

index cf9fb0512e078d44cbfd85363c57516615a62464..9092479e24befc8cce613675a3b2aaabbe5efa5b 100644 (file)
@@ -60,7 +60,7 @@
     or <code class="directive"><a href="../mod/core.html#locationmatch">&lt;LocationMatch&gt;</a></code>
     section, <a href="../expr.html">expression syntax</a> can be used
     to manipulate the destination path or URL.
-       </p>
+    </p>
 
     <p><code class="module"><a href="../mod/mod_alias.html">mod_alias</a></code> is designed to handle simple URL
     manipulation tasks.  For more complicated tasks such as
@@ -193,7 +193,8 @@ Alias "/foo" "/gaq"</pre>
     <code class="directive"><a href="../mod/core.html#location">&lt;Location&gt;</a></code>
     or <code class="directive"><a href="../mod/core.html#locationmatch">&lt;LocationMatch&gt;</a></code>
     section the URL-path is omitted, and the file-path is interpreted
-    using <a href="../expr.html">expression syntax</a>.</p>
+    using <a href="../expr.html">expression syntax</a>.<br />
+    This syntax is available in Apache 2.4.13 and later.</p>
 
     <pre class="prettyprint lang-config">&lt;Location "/image"&gt;
     Alias "/ftp/pub/image"
@@ -278,8 +279,8 @@ expressions</td></tr>
     you do more complicated things.  For example, you could
     serve different kinds of files from different directories:</p>
 
-    <pre class="prettyprint lang-config">      AliasMatch "^/image/(.*)\.jpg$" "/files/jpg.images/$1.jpg"<br />
-      AliasMatch "^/image/(.*)\.gif$" "/files/gif.images/$1.gif"</pre>
+    <pre class="prettyprint lang-config">AliasMatch "^/image/(.*)\.jpg$" "/files/jpg.images/$1.jpg"
+AliasMatch "^/image/(.*)\.gif$" "/files/gif.images/$1.gif"</pre>
 
 
     <p>Multiple leading slashes in the requested URL are discarded
@@ -327,12 +328,12 @@ Redirect "/one" "/two"</pre>
     <p>If the client requests <code>http://example.com/service/foo.txt</code>,
     it will be told to access
     <code>http://foo2.example.com/service/foo.txt</code>
-       instead. This includes requests with <code>GET</code> parameters, such as
+    instead. This includes requests with <code>GET</code> parameters, such as
     <code>http://example.com/service/foo.pl?q=23&amp;a=42</code>,
     it will be redirected to
     <code>http://foo2.example.com/service/foo.pl?q=23&amp;a=42</code>.
-       Note that <code>POST</code>s will be discarded.<br />
-       Only complete path segments are matched, so the above
+    Note that <code>POST</code>s will be discarded.<br />
+    Only complete path segments are matched, so the above
     example would not match a request for
     <code>http://example.com/servicefoo.txt</code>. For more complex matching
     using the <a href="../expr.html">expression syntax</a>, omit the URL-path
@@ -390,18 +391,18 @@ Redirect 303 "/three" "http://example.com/other"</pre>
     <code class="directive"><a href="../mod/core.html#location">&lt;Location&gt;</a></code>
     or <code class="directive"><a href="../mod/core.html#locationmatch">&lt;LocationMatch&gt;</a></code>
     section with the URL-path omitted, then the URL parameter will be
-    interpreted using <a href="../expr.html">expression syntax</a>.</p>
+    interpreted using <a href="../expr.html">expression syntax</a>.<br />
+    This syntax is available in Apache 2.4.13 and later.</p>
 
     <pre class="prettyprint lang-config">&lt;Location "/one"&gt;
     Redirect permanent "http://example.com/two"
-&lt;/Location&gt;<br />
+&lt;/Location&gt;
 &lt;Location "/three"&gt;
     Redirect 303 "http://example.com/other"
-&lt;/Location&gt;<br />
+&lt;/Location&gt;
 &lt;LocationMatch "/error/(?&lt;NUMBER&gt;[0-9]+)"&gt;
     Redirect permanent "http://example.com/errors/%{env:MATCH_NUMBER}.html"
-&lt;/LocationMatch&gt;<br />
-    </pre>
+&lt;/LocationMatch&gt;</pre>
 
 
 
@@ -506,10 +507,10 @@ target as a CGI script</td></tr>
 &lt;/Location&gt;</pre>
 
 
-       <p><code class="directive">ScriptAlias</code> can also be used in conjunction with
-       a script or handler you have. For example:</p>
+    <p><code class="directive">ScriptAlias</code> can also be used in conjunction with
+    a script or handler you have. For example:</p>
 
-       <pre class="prettyprint lang-config">ScriptAlias "/cgi-bin/" "/web/cgi-handler.pl"</pre>
+    <pre class="prettyprint lang-config">ScriptAlias "/cgi-bin/" "/web/cgi-handler.pl"</pre>
 
 
     <p>In this scenario all files requested in <code>/cgi-bin/</code> will be
@@ -541,15 +542,15 @@ target as a CGI script</td></tr>
     a <code class="directive"><a href="../mod/core.html#location">&lt;Location&gt;</a></code>
     or <code class="directive"><a href="../mod/core.html#locationmatch">&lt;LocationMatch&gt;</a></code>
     section with the URL-path omitted, then the URL parameter will be
-    interpreted using <a href="../expr.html">expression syntax</a>.</p>
+    interpreted using <a href="../expr.html">expression syntax</a>.<br />
+    This syntax is available in Apache 2.4.13 and later.</p>
 
     <pre class="prettyprint lang-config">&lt;Location "/cgi-bin"&gt;
     ScriptAlias "/web/cgi-bin/"
 &lt;/Location&gt;
 &lt;LocationMatch "/cgi-bin/errors/(?&lt;NUMBER&gt;[0-9]+)"&gt;
     ScriptAlias "/web/cgi-bin/errors/%{env:MATCH_NUMBER}.cgi"
-&lt;/LocationMatch&gt;<br />
-    </pre>
+&lt;/LocationMatch&gt;</pre>
 
 
 
index 5ac07c898116c50cef0e58659a52e44d07335859..3d2857e7a232e539893d42bb96f4ed79b34d27a0 100644 (file)
@@ -32,6 +32,8 @@
 <a href="../ko/mod/mod_alias.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/mod/mod_alias.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Permet d'atteindre différentes parties du système de
 fichiers depuis l'arborescence des documents du site web, ainsi que la
 redirection d'URL</td></tr>
index cf715ee438785089cacd6bd78a37479e4178780a..a89147920d3243651054a5b31687281309609c69 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1673563 -->
+<!-- English Revision: 1673563:1684314 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 4d93e90c9e7315f3a29631f320171b9ece753d61..2ee2ad4c4e39086e6070f10fb78a3faeeb3176fe 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: 151408:1673563 (outdated) -->
+<!-- English Revision: 151408:1684314 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 73cfcf92d9d68c54b72479203834a71198d74fbf..273c52febe4ed047118221520c48a3b5adfdaa4b 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:1673563 (outdated) -->
+<!-- English Revision: 151408:1684314 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 547a2db7730dd46f16c2efb9093f87bd098e5028..d83657f9fafbe81d751ed120da80c0c98357d5ef 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
index 4c34d37c10c58720e022137db3825a7b81077a90..17ca6e79b656b535cfc42aa1ff903f1ee610818f 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: 1663259:1673563 (outdated) -->
+<!-- English Revision: 1663259:1684314 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.gen.tr>
    Reviewed by: Orhan Berent <berent belgeler.gen.tr>
index 0911bed3801b33fee51302defc7a3958d0b15082..2fe884fc5850a16159a9371d7799ba891ff565d1 100644 (file)
@@ -1082,7 +1082,7 @@ to perform a DN lookup</td></tr>
 </table>
     <p>If <code class="directive"><a href="#authldapinitialbindasuser">AuthLDAPInitialBindAsUser</a></code> is set to
        <em>ON</em>, the basic authentication username will be transformed according to the
-       regular expression and substituion arguments.</p>
+       regular expression and substitution arguments.</p>
 
     <p> The regular expression argument is compared against the current basic authentication username.
         The substitution argument may contain backreferences, but has no other variable interpolation.</p>
index d3e77c97b4a99582b7e3d4b0a8479dc9950300da..15681e5c73afc59465af11b1940f82d79588b477 100644 (file)
@@ -90,8 +90,8 @@
 <tr class="odd"><td><code>%^FB</code></td>
         <td>Delay in microseconds between when the request arrived and the
         first byte of the response headers are written.  Only available if 
-        <code class="directive">LogIOTrackTTFB</code> is set to ON.
-        </td></tr>
+        <code class="directive">LogIOTrackTTFB</code> is set to ON.<br />
+        Available in Apache 2.4.13 and later</td></tr>
 </table>
 
     <p>Usually, the functionality is used like this:</p>
index d1e645277d2ac76161f76f5eca15d734422317e1..7733ed1d8110978b259ecd28b9919531181b2f3d 100644 (file)
@@ -32,6 +32,8 @@
 <a href="../ko/mod/mod_logio.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/mod/mod_logio.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
+<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version
+            anglaise pour les changements récents.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Journalisation des octets en entrée et en sortie pour
 chaque requête</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index 70b8fa3f2e32659aeeb06160064d60f75cea1d78..efbc54ffbaccdcd261d52bed19f0ae73a9d243d0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision : 1674532 -->
+<!-- English Revision: 1674532:1684312 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 7d9293527d9eed832fd105f6eb82b9cac9589841..250b4e7eef2114a9f9e94c775259d5aa5f1e2dbc 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: 420990:1674532 (outdated) -->
+<!-- English Revision: 420990:1684312 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index b81f893b748292c5ebdef5b7eb2ccb92e84cd7a6..a3272f55d19e6033e5f4a78c52b69e2355194cd0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding='EUC-KR' ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 420990:1674532 (outdated) -->
+<!-- English Revision: 420990:1684312 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index a9e351e684ae3fdbd0f86aabd046dce90e6d952a..8ad0562e0ef41b4bb8a810c9d371fb57d52e1626 100644 (file)
@@ -8,7 +8,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant>fr</variant>
+    <variant outdated="yes">fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
index e20d4465035ef77c8749c5ea591e6b294a42c823..33609e9fb169d9be0e0ecf047d0c191e6c7b699a 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: 1588345:1674532 (outdated) -->
+<!-- English Revision: 1588345:1684312 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.gen.tr>
    Reviewed by: Orhan Berent <berent belgeler.gen.tr>