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 2010/05/10 16:50:09 UTC

svn commit: r942761 - in /httpd/httpd/trunk/docs/manual/howto: auth.html.en auth.xml

Author: rbowen
Date: Mon May 10 14:50:09 2010
New Revision: 942761

URL: http://svn.apache.org/viewvc?rev=942761&view=rev
Log:
Formatting of examples.

Modified:
    httpd/httpd/trunk/docs/manual/howto/auth.html.en
    httpd/httpd/trunk/docs/manual/howto/auth.xml

Modified: httpd/httpd/trunk/docs/manual/howto/auth.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/auth.html.en?rev=942761&r1=942760&r2=942761&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/auth.html.en (original)
+++ httpd/httpd/trunk/docs/manual/howto/auth.html.en Mon May 10 14:50:09 2010
@@ -373,11 +373,13 @@ person in</a></h2>
 
     <div class="example"><p><code>
     &lt;Directory /www/docs/private&gt;<br />
+    <span class="indent">
     AuthName "Private"<br />
     AuthType Basic<br />
     AuthBasicProvider dbm<br />
     AuthDBMUserFile /www/passwords/passwd.dbm<br />
     Require valid-user<br />
+    </span>
     &lt;/Directory&gt;
     </code></p></div>
 
@@ -396,12 +398,14 @@ person in</a></h2>
 
     <div class="example"><p><code>
     &lt;Directory /www/docs/private&gt;<br />
+    <span class="indent">
     AuthName "Private"<br />
     AuthType Basic<br />
     AuthBasicProvider file ldap<br />
     AuthUserFile /usr/local/apache/passwd/passwords<br />
     AuthLDAPURL ldap://ldaphost/o=yourorg<br />
     Require valid-user<br />
+    </span>
     &lt;/Directory&gt;
     </code></p></div>
 
@@ -420,6 +424,7 @@ person in</a></h2>
 
     <div class="example"><p><code>
     &lt;Directory /www/docs/private&gt;<br />
+    <span class="indent">
     AuthName "Private"<br />
     AuthType Basic<br />
     AuthBasicProvider file<br />
@@ -428,6 +433,7 @@ person in</a></h2>
     AuthGroupFile /usr/local/apache/passwd/groups<br />
     Require group GroupName<br />
     Require ldap-group cn=mygroup,o=yourorg<br />
+    </span>
     &lt;/Directory&gt;
     </code></p></div>
 

Modified: httpd/httpd/trunk/docs/manual/howto/auth.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/auth.xml?rev=942761&r1=942760&r2=942761&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/auth.xml (original)
+++ httpd/httpd/trunk/docs/manual/howto/auth.xml Mon May 10 14:50:09 2010
@@ -370,11 +370,13 @@ person in</title>
 
     <example>
     &lt;Directory /www/docs/private&gt;<br />
+    <indent>
     AuthName "Private"<br />
     AuthType Basic<br />
     AuthBasicProvider dbm<br />
     AuthDBMUserFile /www/passwords/passwd.dbm<br />
     Require valid-user<br />
+    </indent>
     &lt;/Directory&gt;
     </example>
 
@@ -393,12 +395,14 @@ person in</title>
 
     <example>
     &lt;Directory /www/docs/private&gt;<br />
+    <indent>
     AuthName "Private"<br />
     AuthType Basic<br />
     AuthBasicProvider file ldap<br />
     AuthUserFile /usr/local/apache/passwd/passwords<br />
     AuthLDAPURL ldap://ldaphost/o=yourorg<br />
     Require valid-user<br />
+    </indent>
     &lt;/Directory&gt;
     </example>
 
@@ -417,6 +421,7 @@ person in</title>
 
     <example>
     &lt;Directory /www/docs/private&gt;<br />
+    <indent>
     AuthName "Private"<br />
     AuthType Basic<br />
     AuthBasicProvider file<br />
@@ -425,6 +430,7 @@ person in</title>
     AuthGroupFile /usr/local/apache/passwd/groups<br />
     Require group GroupName<br />
     Require ldap-group cn=mygroup,o=yourorg<br />
+    </indent>
     &lt;/Directory&gt;
     </example>