]> granicus.if.org Git - apache/commitdiff
Updates.
authorLucien Gentis <lgentis@apache.org>
Thu, 21 Jun 2012 16:07:42 +0000 (16:07 +0000)
committerLucien Gentis <lgentis@apache.org>
Thu, 21 Jun 2012 16:07:42 +0000 (16:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1352589 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.xml.fr
docs/manual/mod/mod_authn_core.xml.fr
docs/manual/mod/mod_lua.xml.fr

index fc36fe092915f34e4463dc175678572ff11ca426..3e2a419d69703bfa3ed0ffcbace5395892dfbae2 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: 1344675:1351967 (outdated) -->
+<!-- English Revision : 1351967 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 74747a4d7ac1a2ea41dc8a9d2239418ef0e9b2b0..dcf94834a979f6df659581c49032e4180442d22e 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 : 1336426 -->
+<!-- English Revision : 1352084 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -114,6 +114,10 @@ Alias /secure /webpages/secure
     AuthType Basic
     AuthName LDAP_Protected Place
     Require valid-user
+    # Notez que Require ldap-* ne fonctionnerait pas ici, car
+    # AuthnProviderAlias ne fournit pas de configuration pour les
+    # fournisseurs d'autorisation implémentés dans le même module que le
+    # fournisseur d'authentification.
 &lt;/Directory&gt;
           </highlight>
         </example>
index a30f590b615fbaf257ea11904a2580cb3c071364..51e7c3bab1c5d1e9e8556613c4d1c7d493bc35d3 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: 1351020:1352048 (outdated) -->
+<!-- English Revision : 1352048 -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
@@ -112,13 +112,11 @@ function handle(r)
     if r.method == 'GET' then
         for k, v in pairs( r:parseargs() ) do
             r:puts( string.format("%s: %s\n", k, v) )
-        end<!--
-/* Not supported yet */
+        end
     elseif r.method == 'POST' then
         for k, v in pairs( r:parsebody() ) do
             r:puts( string.format("%s: %s\n", k, v) )
         end
--->    
     else
         r:puts("Unsupported HTTP method " .. r.method)
     end