]> granicus.if.org Git - apache/commitdiff
Updates.
authorLucien Gentis <lgentis@apache.org>
Sat, 26 May 2012 16:08:58 +0000 (16:08 +0000)
committerLucien Gentis <lgentis@apache.org>
Sat, 26 May 2012 16:08:58 +0000 (16:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1342920 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/howto/cgi.xml.fr
docs/manual/mod/core.xml.fr
docs/manual/mod/mod_authn_core.xml.fr
docs/manual/mod/mod_authn_file.xml.fr
docs/manual/mod/mod_authnz_ldap.xml.fr

index ba775a9dd97cc0092bca50bce32a12897dde8ea7..ab2253ba8dacefb10c1bae8f0c75fcb35148e6c9 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1331576:1336196 (outdated) -->
+<!-- English Revision : 1336196 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -527,8 +527,11 @@ print "Hello, World.";
 
       <highlight language="perl">
 #!/usr/bin/perl
+use strict;
+use warnings;
+
 print "Content-type: text/html\n\n";
-foreach $key (keys %ENV) {
+foreach my $key (keys %ENV) {
     print "$key --&gt; $ENV{$key}&lt;br&gt;";
 }
       </highlight>
index 4f2b28f1b5d000271a99515808a14cbd9153e647..ecfa8fbac9fa0edddf52050657b7f1a10d5c032f 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: 1332627:1336979 (outdated) -->
+<!-- English Revision : 1336979-->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -4361,6 +4361,16 @@ host</context>
 &lt;/Location&gt;
     </highlight>
 
+    <p>Vous pouvez aussi utiliser cette directive pour associer un
+    gestionnaire &agrave; des fichiers poss&egrave;dant une extension de nom de
+    fichier particuli&egrave;re. Par exemple :</p>
+
+    <highlight language="config">
+&lt;FilesMatch \.php$&gt;
+    SetHandler application/x-httpd-php
+&lt;/FilesMatch&gt;
+    </highlight>
+
     <p>Vous pouvez &eacute;craser la d&eacute;finition ant&eacute;rieure d'une directive
     <directive>SetHandler</directive> en utilisant la valeur
     <code>None</code>.</p>
index 84af6597dfbd06d9f29b2a7499e70c33c4cdd17a..74747a4d7ac1a2ea41dc8a9d2239418ef0e9b2b0 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: 1330911:1336426 (outdated) -->
+<!-- English Revision : 1336426 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -112,7 +112,7 @@ Alias /secure /webpages/secure
     AuthBasicProvider ldap-other-alias  ldap-alias1
     
     AuthType Basic
-    AuthName LDAP_Protected_Place
+    AuthName LDAP_Protected Place
     Require valid-user
 &lt;/Directory&gt;
           </highlight>
index c998349a2be61042d09af90f878b844e7018f8fe..96e0271a9a5eb03da8ea61f87c2e8f77d6e621a1 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: 1174747:1336869 (outdated) -->
+<!-- English Revision : 1336869 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -84,12 +84,12 @@ passe</description>
 
      <p>Le format du mot de passe chiffr&eacute; d&eacute;pend du frontal
      d'authentification utilis&eacute; (par exemple
-     <module>mod_authn_basic</module> ou
-     <module>mod_authn_digest</module>). Voir la documentation sur les
+     <module>mod_auth_basic</module> ou
+     <module>mod_auth_digest</module>). Voir la documentation sur les
      <a href="../misc/password_encryptions.html">Formats de mots de
      passe</a> pour plus de d&eacute;tails.</p>
 
-    <p>Pour <module>mod_authn_basic</module>, utilisez le programme
+    <p>Pour <module>mod_auth_basic</module>, utilisez le programme
     <program>htpasswd</program> fourni avec la distribution binaire,
     mais que vous trouverez aussi dans le r&eacute;pertoire
     <code>src/support</code> de l'arborescence des sources. Voir sa <a
@@ -116,7 +116,7 @@ passe</description>
     avec la directive <directive
     module="mod_authn_dbm">AuthDBMUserFile</directive>.</p>
 
-    <p>Pour <module>mod_authn_digest</module>, vous devez utiliser
+    <p>Pour <module>mod_auth_digest</module>, vous devez utiliser
     le programme <program>htdigest</program>.
     Notez que vous ne pouvez pas m&eacute;langer des donn&eacute;es utilisateur pour
     l'Authentification HTTP &agrave; base de condens&eacute; et des donn&eacute;es pour
index cfd9c3b0c28363248c98fff86762ca2486b8b9ce..c5d0699d22a870c209bdaf7b70d70c1d12e8b8f2 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: 1330921:1337035 (outdated) -->
+<!-- English Revision : 1337035 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -460,7 +460,7 @@ uniqueMember: cn=Elliot Rhodes, o=Example
     :</p>
 <highlight language="config">
 Require ldap-group cn=Employees, o-Example
-AuthLDAPSubGroupDepth 1
+AuthLDAPMaxSubGroupDepth 1
 </highlight>
 
     <p>Le comportement de cette directive est modifié par les directives
@@ -768,9 +768,9 @@ AuthLDAPURL ldap://10.0.0.1:3268/?userPrincipalName?sub
     à <em>chaque</em> fichier <code>.htaccess</code> qui sera créé dans
     le site web :</p>
 <highlight language="config">
-AuthLDAPURL            "l'url"
-AuthGroupFile <em>mon-fichier-de-groupes</em>
-Require group <em>mon-fichier-de-groupes</em>
+AuthLDAPURL       "the url"
+AuthGroupFile     mygroupfile
+Require group     mygroupfile
 </highlight>
 
 <section id="howitworks"><title>Comment ça marche</title>