[svnbook commit] r1302 - trunk/src/en/book

cmpilato svnbook-dev at red-bean.com
Tue May 17 12:32:47 CDT 2005


Author: cmpilato
Date: Tue May 17 12:32:45 2005
New Revision: 1302

Modified:
   trunk/src/en/book/ch06.xml
Log:
Fix httpd.conf programlistings -- all programlisting and screen sections
should be left-aligned in the first column.

Modified: trunk/src/en/book/ch06.xml
==============================================================================
--- trunk/src/en/book/ch06.xml	(original)
+++ trunk/src/en/book/ch06.xml	Tue May 17 12:32:45 2005
@@ -1685,13 +1685,13 @@
         <example id="svn-ch-6-sect-4.4.2-ex-1">
           <title>A sample configuration for anonymous access.</title>
           <programlisting>
-            <Location /repos>
-              DAV svn
-              SVNParentPath /usr/local/svn
-
-              # our access control policy
-              AuthzSVNAccessFile /path/to/access/file                 
-            </Location>
+<Location /repos>
+  DAV svn
+  SVNParentPath /usr/local/svn
+
+  # our access control policy
+  AuthzSVNAccessFile /path/to/access/file                 
+</Location>
           </programlisting>
         </example>
 
@@ -1705,21 +1705,21 @@
         <example id="svn-ch-6-sect-4.4.2-ex-2">
           <title>A sample configuration for authenticated access.</title>
           <programlisting>
-            <Location /repos>
-              DAV svn
-              SVNParentPath /usr/local/svn
+<Location /repos>
+  DAV svn
+  SVNParentPath /usr/local/svn
             
-              # our access control policy
-              AuthzSVNAccessFile /path/to/access/file                 
+  # our access control policy
+  AuthzSVNAccessFile /path/to/access/file                 
             
-              # only authenticated users may access the repository
-              Require valid-user
+  # only authenticated users may access the repository
+  Require valid-user
             
-              # how to authenticate a user
-              AuthType Basic
-              AuthName "Subversion repository"
-              AuthUserFile /path/to/users/file                  
-            </Location>
+  # how to authenticate a user
+  AuthType Basic
+  AuthName "Subversion repository"
+  AuthUserFile /path/to/users/file                  
+</Location>
           </programlisting>
         </example>
 
@@ -1739,23 +1739,23 @@
           <title>A sample configuration for mixed
             authenticated/anonymous access.</title>
           <programlisting>
-            <Location /repos>
-              DAV svn
-              SVNParentPath /usr/local/svn
+<Location /repos>
+  DAV svn
+  SVNParentPath /usr/local/svn
             
-              # our access control policy
-              AuthzSVNAccessFile /path/to/access/file                 
+  # our access control policy
+  AuthzSVNAccessFile /path/to/access/file                 
             
-              # try anonymous access first, resort to real 
-              # authentication if necessary.
-              Satisfy Any
-              Require valid-user
+  # try anonymous access first, resort to real 
+  # authentication if necessary.
+  Satisfy Any
+  Require valid-user
             
-              # how to authenticate a user
-              AuthType Basic
-              AuthName "Subversion repository"
-              AuthUserFile /path/to/users/file                  
-            </Location>
+  # how to authenticate a user
+  AuthType Basic
+  AuthName "Subversion repository"
+  AuthUserFile /path/to/users/file                  
+</Location>
           </programlisting>
         </example>
         
@@ -1956,12 +1956,12 @@
         <example id="svn-ch-6-sect-4.4.3-ex-1">
           <title>Disabling path checks altogether</title>
           <programlisting>
-            <Location /repos>
-              DAV svn
-              SVNParentPath /usr/local/svn
+<Location /repos>
+  DAV svn
+  SVNParentPath /usr/local/svn
             
-              SVNPathAuthz off
-            </Location>            
+  SVNPathAuthz off
+</Location>            
           </programlisting>
         </example>
 



More information about the svnbook-dev mailing list