]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Pet peeve: fix capitalisation of 'Require' directive
authorVincent Bray <noodl@apache.org>
Sun, 9 Mar 2008 02:31:41 +0000 (02:31 +0000)
committerVincent Bray <noodl@apache.org>
Sun, 9 Mar 2008 02:31:41 +0000 (02:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@635137 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_authn_core.xml
docs/manual/mod/mod_authz_core.xml
docs/manual/mod/mod_authz_host.xml
docs/manual/mod/mod_authz_user.xml
docs/manual/mod/mod_dav.xml
docs/manual/ssl/ssl_howto.xml

index 3d3f419d42df09269d4ce8b0067ffb7ebd5e2d3f..ec43cd98fe8acfd38b2bbfd5f6c88b0e47b956bd 100644 (file)
@@ -80,7 +80,7 @@
         
              AuthType Basic<br />
              AuthName LDAP_Protected_Place<br />
-             require valid-user<br />
+             Require valid-user<br />
           </indent>
           &lt;/Directory&gt;<br />
         </example>
index c32a416e4703a731c54ddaa3c408ccea21111dcd..23a6447eb655822dfbda50af0345eed2e2428abb 100644 (file)
@@ -87,8 +87,8 @@
              AuthName LDAP_Protected_Place<br /><br />
 
              #implied OR operation<br /> 
-             require alias1-ldap-group<br /> 
-             require alias2-ldap-group<br />
+             Require alias1-ldap-group<br /> 
+             Require alias2-ldap-group<br />
           </indent> &lt;/Directory&gt;<br />
         </example>
     </section>
index d4863be215817c3986f8c46c474b1669716fbacd..ecd06989c8b26dfa043917680f779092018a5239 100644 (file)
@@ -57,7 +57,7 @@ address)</description>
 <seealso><directive module="mod_authz_core">Require</directive></seealso>
 <seealso><directive module="mod_authz_core">Reject</directive></seealso>
 
-<section id="requiredirectives"><title>The require Directives</title>
+<section id="requiredirectives"><title>The Require Directives</title>
 
     <p>Apache's <directive module="mod_authz_core">Require</directive> and 
     <directive module="mod_authz_core">Reject</directive> directives are 
@@ -73,7 +73,7 @@ address)</description>
     characteristics of the client request captured in environment
     variables.</p>
 
-<section id="reqenv"><title>require env</title>
+<section id="reqenv"><title>Require env</title>
 
     <p>The <code>env</code> provider allows access to the server
     to be controlled based on the existence of an <a
index 6fbdfe713b284d3db785028416fb048468e316e3..cad7e9bb5d3c98eade627b1588147bdeaaceaec7 100644 (file)
@@ -34,7 +34,7 @@
     authenticated users can be allowed or denied access to portions
     of the web site. <module>mod_authz_user</module> grants
     access if the authenticated user is listed in a <code>Require user</code>
-    directive. Alternatively <code>require valid-user</code> can be used to
+    directive. Alternatively <code>Require valid-user</code> can be used to
     grant access to all successfully authenticated users.</p>
 </summary>
 <seealso><directive module="mod_authz_core">Require</directive></seealso>
index e387c40b6a07da150924b6edd3e203bef1f418ed..4e377f22dc9e30ddb85b1c1f2ec71157c5efc08e 100644 (file)
@@ -91,7 +91,7 @@
          <br />
          &lt;LimitExcept GET POST OPTIONS&gt;<br />
          <indent>
-           require user admin<br />
+           Require user admin<br />
          </indent>
          &lt;/LimitExcept&gt;<br />
        </indent>
index 4f9e10a25f49003932bdeb795f72cc04b2ab1143..87c9a0235a591e8891e370ee2b0c96b5a13b8e6e 100644 (file)
@@ -205,7 +205,7 @@ AuthName             "Snake Oil Authentication"
 AuthType             Basic
 AuthBasicProvider    file
 AuthUserFile         /usr/local/apache2/conf/httpd.passwd
-require              valid-user
+Require              valid-user
 &lt;/Directory&gt;</pre>
     </example>