From b5310f8f553e6f02a0a218660a1b470e05a3deb3 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Sat, 12 May 2012 07:52:03 +0000 Subject: [PATCH] rebuild various git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1337468 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.html.fr | 2 ++ docs/manual/mod/mod_authn_file.html.fr | 2 ++ docs/manual/mod/mod_authnz_ldap.html.fr | 2 ++ docs/manual/sections.html.en | 32 ++++++++++--------------- docs/manual/sections.xml.fr | 2 +- docs/manual/sections.xml.ja | 2 +- docs/manual/sections.xml.ko | 2 +- docs/manual/sections.xml.tr | 2 +- 8 files changed, 23 insertions(+), 23 deletions(-) diff --git a/docs/manual/mod/core.html.fr b/docs/manual/mod/core.html.fr index 01f1217c0f..7b919820c2 100644 --- a/docs/manual/mod/core.html.fr +++ b/docs/manual/mod/core.html.fr @@ -31,6 +31,8 @@  ja  |  tr 

+
Cette traduction peut être périmée. Vérifiez la version + anglaise pour les changements récents.
Description:Fonctionnalités de base du serveur HTTP Apache toujours disponibles
Statut:Core
diff --git a/docs/manual/mod/mod_authn_file.html.fr b/docs/manual/mod/mod_authn_file.html.fr index 4a4e720df4..8c6fb9f5a4 100644 --- a/docs/manual/mod/mod_authn_file.html.fr +++ b/docs/manual/mod/mod_authn_file.html.fr @@ -29,6 +29,8 @@  ja  |  ko 

+
Cette traduction peut être périmée. Vérifiez la version + anglaise pour les changements récents.
diff --git a/docs/manual/mod/mod_authnz_ldap.html.fr b/docs/manual/mod/mod_authnz_ldap.html.fr index ed72202138..fe221ec88d 100644 --- a/docs/manual/mod/mod_authnz_ldap.html.fr +++ b/docs/manual/mod/mod_authnz_ldap.html.fr @@ -27,6 +27,8 @@

Langues Disponibles:  en  |  fr 

+
Cette traduction peut être périmée. Vérifiez la version + anglaise pour les changements récents.
Description:Authentification utilisateur à l'aide de fichiers texte
Statut:Base
diff --git a/docs/manual/sections.html.en b/docs/manual/sections.html.en index fe4730abf7..cdaa6f3393 100644 --- a/docs/manual/sections.html.en +++ b/docs/manual/sections.html.en @@ -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.

-<IfVersion >= 2.1>
+<IfVersion >= 2.4>
     # this happens only in versions greater or
-    # equal 2.1.0.
+    # equal 2.4.0.
 </IfVersion>
 
@@ -160,8 +160,7 @@ of where it is found.

 <Files private.html>
-    Order allow,deny
-    Deny from all
+    Require all denied
 </Files>
 
@@ -179,8 +178,7 @@ directory.

 <Directory /var/web/dir1>
     <Files private.html>
-        Order allow,deny
-        Deny from all
+        Require all denied
     </Files>
 </Directory>
 
@@ -202,8 +200,7 @@ as any other requests starting with the /private string.

 <LocationMatch ^/private>
-    Order Allow,Deny
-    Deny from all
+    Require all denied
 </Location>
 
@@ -284,8 +281,7 @@ all user directories could look as follows:

at once:

 <FilesMatch \.(?i:gif|jpe?g|png)$>
-    Order allow,deny
-    Deny from all
+    Require all denied
 </FilesMatch>
 
@@ -323,8 +319,7 @@ For example, consider the following configuration:

 <Location /dir/>
-    Order allow,deny
-    Deny from all
+    Require all denied
 </Location>
 
@@ -389,8 +384,7 @@ will prevent the proxy server from being used to access the
 <Proxy http://www.example.com/*>
-    Order allow,deny
-    Deny from all
+    Require all granted
 </Proxy>
 
@@ -534,15 +528,15 @@ other words, order of merging is important, so be careful!

 <Location />
-    Order deny,allow
-    Allow from all
+    Require all granted
 </Location>
 
 # Woops!  This <Directory> section will have no effect
 <Directory />
-    Order allow,deny
-    Allow from all
-    Deny from badguy.example.com
+    <RequireAll>
+        Require all granted
+        Require not host badguy.example.com
+    </RequireAll>
 </Directory>
 
diff --git a/docs/manual/sections.xml.fr b/docs/manual/sections.xml.fr index 3afc1da471..e976a553ea 100644 --- a/docs/manual/sections.xml.fr +++ b/docs/manual/sections.xml.fr @@ -3,7 +3,7 @@ - + + + +
Description:Permet d'utiliser un annuaire LDAP pour l'authentification HTTP de base.
Statut:Extension