]> granicus.if.org Git - apache/commitdiff
rebuild various
authorDaniel Gruno <humbedooh@apache.org>
Sat, 12 May 2012 07:52:03 +0000 (07:52 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Sat, 12 May 2012 07:52:03 +0000 (07:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1337468 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.html.fr
docs/manual/mod/mod_authn_file.html.fr
docs/manual/mod/mod_authnz_ldap.html.fr
docs/manual/sections.html.en
docs/manual/sections.xml.fr
docs/manual/sections.xml.ja
docs/manual/sections.xml.ko
docs/manual/sections.xml.tr

index 01f1217c0fc1041ca69c33aa913870a320d44941..7b919820c29a694901c4742f485e53b7161f5473 100644 (file)
@@ -31,6 +31,8 @@
 <a href="../ja/mod/core.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../tr/mod/core.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>Fonctionnalités de base du serveur HTTP Apache toujours
 disponibles</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Core</td></tr></table>
index 4a4e720df4affaeb8c368cae2a8ac3932c881f2c..8c6fb9f5a4da8c25f328c954ed8b3e9bd84659a3 100644 (file)
@@ -29,6 +29,8 @@
 <a href="../ja/mod/mod_authn_file.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/mod/mod_authn_file.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&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>Authentification utilisateur à l'aide de fichiers
 texte</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Base</td></tr>
index ed722021386bc8a12f2f17b4ee1119df5a868cc0..fe221ec88dbd4057356a8e875edc59c788deda8e 100644 (file)
@@ -27,6 +27,8 @@
 <p><span>Langues Disponibles: </span><a href="../en/mod/mod_authnz_ldap.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/mod/mod_authnz_ldap.html" title="Français">&nbsp;fr&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'utiliser un annuaire LDAP pour l'authentification
 HTTP de base.</td></tr>
 <tr><th><a href="module-dict.html#Status">Statut:</a></th><td>Extension</td></tr>
index fe4730abf703470dad1e146c1c199c0b260cf939..cdaa6f3393f71c9b44b769fc4e9a204df855f0a2 100644 (file)
@@ -97,9 +97,9 @@ module is designed for the use in test suites and large networks which have to
 deal with different httpd versions and different configurations.</p>
 
 <pre class="prettyprint lang-config">
-&lt;IfVersion &gt;= 2.1&gt;
+&lt;IfVersion &gt;= 2.4&gt;
     # this happens only in versions greater or
-    # equal 2.1.0.
+    # equal 2.4.0.
 &lt;/IfVersion&gt;
 </pre>
 
@@ -160,8 +160,7 @@ of where it is found.</p>
 
 <pre class="prettyprint lang-config">
 &lt;Files private.html&gt;
-    Order allow,deny
-    Deny from all
+    Require all denied
 &lt;/Files&gt;
 </pre>
 
@@ -179,8 +178,7 @@ directory.</p>
 <pre class="prettyprint lang-config">
 &lt;Directory /var/web/dir1&gt;
     &lt;Files private.html&gt;
-        Order allow,deny
-        Deny from all
+        Require all denied
     &lt;/Files&gt;
 &lt;/Directory&gt;
 </pre>
@@ -202,8 +200,7 @@ as any other requests starting with the <code>/private</code> string.</p>
 
 <pre class="prettyprint lang-config">
 &lt;LocationMatch ^/private&gt;
-    Order Allow,Deny
-    Deny from all
+    Require all denied
 &lt;/Location&gt;
 </pre>
 
@@ -284,8 +281,7 @@ all user directories could look as follows:</p>
 at once:</p>
 <pre class="prettyprint lang-config">
 &lt;FilesMatch \.(?i:gif|jpe?g|png)$&gt;
-    Order allow,deny
-    Deny from all
+    Require all denied
 &lt;/FilesMatch&gt;
 </pre>
 
@@ -323,8 +319,7 @@ For example, consider the following configuration:</p>
 
 <pre class="prettyprint lang-config">
 &lt;Location /dir/&gt;
-    Order allow,deny
-    Deny from all
+    Require all denied
 &lt;/Location&gt;
 </pre>
 
@@ -389,8 +384,7 @@ will prevent the proxy server from being used to access the
 
 <pre class="prettyprint lang-config">
 &lt;Proxy http://www.example.com/*&gt;
-    Order allow,deny
-    Deny from all
+    Require all granted
 &lt;/Proxy&gt;
 </pre>
 
@@ -534,15 +528,15 @@ other words, order of merging is important, so be careful!</p>
 
 <pre class="prettyprint lang-config">
 &lt;Location /&gt;
-    Order deny,allow
-    Allow from all
+    Require all granted
 &lt;/Location&gt;
 
 # Woops!  This &lt;Directory&gt; section will have no effect
 &lt;Directory /&gt;
-    Order allow,deny
-    Allow from all
-    Deny from badguy.example.com
+    &lt;RequireAll&gt;
+        Require all granted
+        Require not host badguy.example.com
+    &lt;/RequireAll&gt;
 &lt;/Directory&gt;
 </pre>
 
index 3afc1da471393ab7c6cd571b59b75c63f2519333..e976a553ea830eda6599a22ef971be7e1234e112 100644 (file)
@@ -3,7 +3,7 @@
 <?xml-stylesheet type="text/xsl" href="./style/manual.fr.xsl"?>
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
-<!-- English Revision: 1300910:1334905 (outdated) -->
+<!-- English Revision: 1300910:1337465 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 02c8a021d2d535517ef71dc218c55a10f3df54f4..b5758b4eb8cc0eba85927b47cf87dd110a6c3230 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:1334905 (outdated) -->
+<!-- English Revision: 420990:1337465 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 6694b5831acdc43d361a12728f3bb0c853816c36..35fcf230a03d3e502bafaf521c8c9cf4a1042994 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:1334905 (outdated) -->
+<!-- English Revision: 105989:1337465 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 79f0fcea9571a5579101ade83c67309aea9fe6f7..c9ac4563b059eb7b92f5b6274c90e715531674d4 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: 1300910:1334905 (outdated) -->
+<!-- English Revision: 1300910:1337465 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>