You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2012/11/17 03:41:44 UTC

svn commit: r1410678 - in /httpd/httpd/branches/2.4.x/docs/manual/howto: auth.html.en auth.html.fr auth.xml.fr auth.xml.ja auth.xml.ko auth.xml.meta auth.xml.tr

Author: rbowen
Date: Sat Nov 17 02:41:42 2012
New Revision: 1410678

URL: http://svn.apache.org/viewvc?rev=1410678&view=rev
Log:
Rebuild

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.en
    httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.fr
    httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.fr
    httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ja
    httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ko
    httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.meta
    httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.tr

Modified: httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.en?rev=1410678&r1=1410677&r2=1410678&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.en (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.en Sat Nov 17 02:41:42 2012
@@ -310,8 +310,9 @@ person in</a></h2>
     (It's the <code>-c</code> that makes it create a new password
     file).</p>
 
-    <p>Now, you need to modify your <code>.htaccess</code> file to
-    look like the following:</p>
+    <p>Now, you need to modify your <code>.htaccess</code> file or
+    <code class="directive"><a href="../mod/core.html#directory">&lt;Directory&gt;</a></code> block
+    to look like the following:</p>
 
     <pre class="prettyprint lang-config">
 AuthType Basic
@@ -337,13 +338,7 @@ Require group GroupName
 
     <p>Using that rather than the <code>Require user rbowen</code>
     line will allow anyone in that is listed in the password file,
-    and who correctly enters their password. You can even emulate
-    the group behavior here, by just keeping a separate password
-    file for each group. The advantage of this approach is that
-    Apache only has to check one file, rather than two. The
-    disadvantage is that you have to maintain a bunch of password
-    files, and remember to reference the right one in the
-    <code class="directive"><a href="../mod/mod_authn_file.html#authuserfile">AuthUserFile</a></code> directive.</p>
+    and who correctly enters their password.</p>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="possibleproblems" id="possibleproblems">Possible problems</a></h2>
@@ -381,11 +376,13 @@ Require group GroupName
 
     <pre class="prettyprint lang-config">
 &lt;Directory /www/docs/private&gt;
+<span class="indent">
     AuthName "Private"
     AuthType Basic
     AuthBasicProvider dbm
     AuthDBMUserFile /www/passwords/passwd.dbm
     Require valid-user
+</span>
 &lt;/Directory&gt;
     </pre>
 
@@ -405,12 +402,14 @@ Require group GroupName
 
     <pre class="prettyprint lang-config">
 &lt;Directory /www/docs/private&gt;
+<span class="indent">
     AuthName "Private"
     AuthType Basic
     AuthBasicProvider file ldap
     AuthUserFile /usr/local/apache/passwd/passwords
     AuthLDAPURL ldap://ldaphost/o=yourorg
     Require valid-user
+</span>
 &lt;/Directory&gt;
     </pre>
 
@@ -430,6 +429,7 @@ Require group GroupName
 
     <pre class="prettyprint lang-config">
 &lt;Directory /www/docs/private&gt;
+<span class="indent">
     AuthName "Private"
     AuthType Basic
     AuthBasicProvider file
@@ -438,6 +438,7 @@ Require group GroupName
     AuthGroupFile /usr/local/apache/passwd/groups
     Require group GroupName
     Require ldap-group cn=mygroup,o=yourorg
+</span>
 &lt;/Directory&gt;
     </pre>
 

Modified: httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.fr?rev=1410678&r1=1410677&r2=1410678&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.fr (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/howto/auth.html.fr Sat Nov 17 02:41:42 2012
@@ -27,6 +27,8 @@
 <a href="../ko/howto/auth.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/howto/auth.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>
 
     <p>L'authentification est un processus qui vous permet de vérifier
     qu'une personne est bien celle qu'elle prétend être. L'autorisation

Modified: httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.fr?rev=1410678&r1=1410677&r2=1410678&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.fr (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.fr Sat Nov 17 02:41:42 2012
@@ -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 : 1363816 -->
+<!-- English Revision: 1363816:1410676 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviwed by : Vincent Deffontaines -->
 

Modified: httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ja
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ja?rev=1410678&r1=1410677&r2=1410678&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ja [utf-8] (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ja [utf-8] Sat Nov 17 02:41:42 2012
@@ -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: 479777:1363816 (outdated) -->
+<!-- English Revision: 479777:1410676 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ko
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ko?rev=1410678&r1=1410677&r2=1410678&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ko [euc-kr] (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.ko [euc-kr] Sat Nov 17 02:41:42 2012
@@ -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:1363816 (outdated) -->
+<!-- English Revision: 105989:1410676 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.meta?rev=1410678&r1=1410677&r2=1410678&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.meta (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.meta Sat Nov 17 02:41:42 2012
@@ -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>

Modified: httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.tr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.tr?rev=1410678&r1=1410677&r2=1410678&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.tr [utf-8] (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/howto/auth.xml.tr [utf-8] Sat Nov 17 02:41:42 2012
@@ -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: 1070891:1363816 (outdated) -->
+<!-- English Revision: 1070891:1410676 (outdated) -->
 <!-- =====================================================
  Translated by: Umut Samuk <umut belgeler.org>
    Reviewed by: Nilgün Belma Bugüner <nilgun belgeler.org>