]> granicus.if.org Git - apache/commitdiff
PR #43358 - Fix links to moved auth directives (Takashi Sato)
authorVincent Bray <noodl@apache.org>
Wed, 12 Sep 2007 10:32:57 +0000 (10:32 +0000)
committerVincent Bray <noodl@apache.org>
Wed, 12 Sep 2007 10:32:57 +0000 (10:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@574882 13f79535-47bb-0310-9956-ffa450edef68

13 files changed:
docs/manual/howto/auth.xml
docs/manual/howto/htaccess.xml
docs/manual/mod/core.xml
docs/manual/mod/mod_auth_digest.xml
docs/manual/mod/mod_authn_dbd.xml
docs/manual/mod/mod_authn_dbm.xml
docs/manual/mod/mod_authnz_ldap.xml
docs/manual/mod/mod_authz_dbd.xml
docs/manual/mod/mod_authz_dbm.xml
docs/manual/mod/mod_authz_groupfile.xml
docs/manual/mod/mod_authz_owner.xml
docs/manual/mod/mod_authz_user.xml
docs/manual/new_features_2_2.xml

index 8c4f347f80eee7cb62df5adab63b187d7f4e468a..a6b0cd2145d2080295977bbbe81fe78a0fba2948 100644 (file)
@@ -40,7 +40,7 @@ module from each group.</p>
 
 <ul>
   <li>Authentication type (see the 
-      <directive module="core">AuthType</directive> directive)
+      <directive module="mod_authn_core">AuthType</directive> directive)
     <ul>
       <li><module>mod_auth_basic</module></li>
       <li><module>mod_auth_digest</module></li>
@@ -60,7 +60,7 @@ module from each group.</p>
     </ul>
   </li>
   <li>Authorization (see the 
-      <directive module="core">Require</directive> directive)
+      <directive module="mod_authz_core">Require</directive> directive)
     <ul>
       <li><module>mod_authnz_ldap</module></li>
       <li><module>mod_authz_dbm</module></li>
@@ -209,7 +209,7 @@ module from each group.</p>
     </example>
 
     <p>Let's examine each of those directives individually. The <directive
-    module="core">AuthType</directive> directive selects
+    module="mod_authn_core">AuthType</directive> directive selects
     that method that is used to authenticate the user. The most
     common method is <code>Basic</code>, and this is the method
     implemented by <module>mod_auth_basic</module>. It is important to be aware,
@@ -221,7 +221,7 @@ module from each group.</p>
     >mod_auth_digest</module> and is much more secure. Most recent
     browsers support Digest authentication.</p>
 
-    <p>The <directive module="core">AuthName</directive> directive sets
+    <p>The <directive module="mod_authn_core">AuthName</directive> directive sets
     the <dfn>Realm</dfn> to be used in the authentication. The realm serves
     two major functions. First, the client often presents this information to
     the user as part of the password dialog box. Second, it is used by the
@@ -260,11 +260,11 @@ module from each group.</p>
     href="http://modules.apache.org/">Apache Modules
     Database</a>.</p>
 
-    <p>Finally, the <directive module="core">Require</directive>
+    <p>Finally, the <directive module="mod_authz_core">Require</directive>
     directive provides the authorization part of the process by
     setting the user that is allowed to access this region of the
     server. In the next section, we discuss various ways to use the
-    <directive module="core">Require</directive> directive.</p>
+    <directive module="mod_authz_core">Require</directive> directive.</p>
 </section>
 
 <section id="lettingmorethanonepersonin"><title>Letting more than one
index 7b497b94fcbf1b8e0aa162ac98b8cd4adb3c79ab..d71a36a074e09b7d88090cb1b8cb6a3364784748 100644 (file)
@@ -47,11 +47,11 @@ changes on a per-directory basis.</p>
             <directive module="core">Options</directive>
             <directive module="mod_mime">AddHandler</directive>
             <directive module="core">SetHandler</directive>
-            <directive module="core">AuthType</directive>
-            <directive module="core">AuthName</directive>
+            <directive module="mod_authn_core">AuthType</directive>
+            <directive module="mod_authn_core">AuthName</directive>
             <directive module="mod_authn_file">AuthUserFile</directive>
             <directive module="mod_authz_groupfile">AuthGroupFile</directive>
-            <directive module="core">Require</directive>
+            <directive module="mod_authz_core">Require</directive>
         </directivelist>
 
     </related>
index 19dbf3d2652c6b7df108337e2a23281a329aec72..fa7175aba60fb3eff565e9ee23f44a71ec0b2cc2 100644 (file)
@@ -378,10 +378,10 @@ be passed through</description>
       module="mod_authn_dbm">AuthDBMGroupFile</directive>,
       <directive module="mod_authn_dbm">AuthDBMUserFile</directive>,
       <directive module="mod_authz_groupfile">AuthGroupFile</directive>,
-      <directive module="core">AuthName</directive>,
-      <directive module="core">AuthType</directive>, <directive
+      <directive module="mod_authn_core">AuthName</directive>,
+      <directive module="mod_authn_core">AuthType</directive>, <directive
       module="mod_authn_file">AuthUserFile</directive>, <directive
-      module="core">Require</directive>, <em>etc.</em>).</dd>
+      module="mod_authz_core">Require</directive>, <em>etc.</em>).</dd>
 
       <dt>FileInfo</dt>
 
index 4bfb650bec83e56bb387ad064b1a2e318c221d8b..53b89703d9868d0601de3975c2af01674d55a23e 100644 (file)
@@ -35,9 +35,9 @@
     experimental.</p>
 </summary>
 
-<seealso><directive module="core">AuthName</directive></seealso>
-<seealso><directive module="core">AuthType</directive></seealso>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthName</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthType</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
 <seealso><a href="../howto/auth.html">Authentication howto</a></seealso>
 
 <section id="using"><title>Using Digest Authentication</title>
index 32adc56d0ff16b46901b2fe2a99e477f2a5f95d6..6f743994d2c88caa1e15a2cb4ef64b7198cc6dac 100644 (file)
@@ -46,8 +46,8 @@
     with the <code>dbd</code> value.</p>
 </summary>
 
-<seealso><directive module="core">AuthName</directive></seealso>
-<seealso><directive module="core">AuthType</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthName</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthType</directive></seealso>
 <seealso>
   <directive module="mod_auth_basic">AuthBasicProvider</directive>
 </seealso>
index 8d73ae07f11976e4781deca09541b64a2f81615a..8251b51f0b30c3aada45c6b51654ab6584e27eca 100644 (file)
@@ -43,8 +43,8 @@
     with the <code>dbm</code> value.</p>
 </summary>
 
-<seealso><directive module="core">AuthName</directive></seealso>
-<seealso><directive module="core">AuthType</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthName</directive></seealso>
+<seealso><directive module="mod_authn_core">AuthType</directive></seealso>
 <seealso>
   <directive module="mod_auth_basic">AuthBasicProvider</directive>
 </seealso>
index 7935baad10b1972734d528ea25b3831f1614fdf2..c86387bfe218533434f53d139aabe7da8cd74be5 100644 (file)
@@ -126,7 +126,7 @@ for HTTP Basic authentication.</description>
     authentication provider can be enabled through the 
     <directive module="mod_auth_basic">AuthBasicProvider</directive> directive 
     using the <code>ldap</code> value. The authz_ldap handler extends the 
-    <directive module="core">Require</directive> directive's authorization types
+    <directive module="mod_authz_core">Require</directive> directive's authorization types
     by adding <code>ldap-user</code>, <code>ldap-dn</code> and <code>ldap-group</code> 
     values.</p>
 
@@ -196,7 +196,7 @@ for HTTP Basic authentication.</description>
     <module>mod_authnz_ldap</module> to do a compare operation on the
     LDAP server. This is why this phase is often referred to as the
     compare phase. <module>mod_authnz_ldap</module> accepts the
-    following <directive module="core">Require</directive>
+    following <directive module="mod_authz_core">Require</directive>
     directives to determine if the credentials are acceptable:</p>
 
     <ul>
@@ -227,14 +227,14 @@ for HTTP Basic authentication.</description>
       <li>otherwise, deny or decline access</li>
     </ul>
 
-    <p>Other <directive module="core">Require</directive> values may also
+    <p>Other <directive module="mod_authz_core">Require</directive> values may also
     be used which may require loading additional authorization modules.
-    Note that if you use a <directive module="core">Require</directive>
+    Note that if you use a <directive module="mod_authz_core">Require</directive>
     value from another authorization module, you will need to ensure that
     <directive module="mod_authnz_ldap">AuthzLDAPAuthoritative</directive>
     is set to <code>off</code> to allow the authorization phase to fall
     back to the module providing the alternate
-    <directive module="core">Require</directive> value.</p>
+    <directive module="mod_authz_core">Require</directive> value.</p>
 
     <ul>
         <li>Grant access if there is a <a href="#requser"><code>Require
@@ -295,7 +295,7 @@ for HTTP Basic authentication.</description>
 
 <section id="requiredirectives"><title>The Require Directives</title>
 
-    <p>Apache's <directive module="core">Require</directive>
+    <p>Apache's <directive module="mod_authz_core">Require</directive>
     directives are used during the authorization phase to ensure that
     a user is allowed to access a resource.  mod_authnz_ldap extends the 
     authorization types with <code>ldap-user</code>, <code>ldap-dn</code>, 
index 71b2c5fb2d9557dc7ec148ef1f20b3208a3beb48..e6484279bbba278235502815425468cef676f599 100644 (file)
@@ -37,7 +37,7 @@
        <module>mod_authn_dbd</module>.</p>
 </summary>
 
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
 <seealso><directive module="mod_dbd">DBDriver</directive></seealso>
 <seealso><directive module="mod_dbd">DBDParams</directive></seealso>
 
@@ -49,7 +49,7 @@ Specifically, we can maintain a logged in/logged out status in
 the database, and control the status via designated URLs (subject
 of course to users supplying the necessary credentials).</p>
 <p>This works by defining two special
-<directive module="core">Require</directive> types:
+<directive module="mod_authz_core">Require</directive> types:
 <code>Require dbd-login</code> and <code>Require dbd-logout</code>.
 For usage details, see the configuration example below.</p>
 </section>
@@ -124,7 +124,7 @@ DBDExptime 300
 <usage>
     <p>The <directive>AuthzDBDQuery</directive> specifies an SQL
     query to run.  The purpose of the query depends on the
-    <directive module="core">Require</directive> directive in
+    <directive module="mod_authz_core">Require</directive> directive in
     effect.</p>
     <ul>
     <li>With <code>Require dbd-group</code>, it specifies a query
index 4ed2494a9cf1b4add9d3bce10e8e5781ca7f79c8..5c589bfeb374ea5fdb9d02f55b5c8ea22c59a996 100644 (file)
@@ -36,7 +36,7 @@
        provided by <module>mod_authz_groupfile</module>.</p>
 </summary>
 
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
 
 <directivesynopsis>
 <name>AuthDBMGroupFile</name>
index b6815befc80689ba6a914829b800a5c96a998747..1d5ed014381841084d33f4dddc29c14eacc4a4e7 100644 (file)
@@ -36,7 +36,7 @@
     provided by <module>mod_authz_dbm</module>.</p>
 </summary>
 
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
 
 <directivesynopsis>
 <name>AuthGroupFile</name>
index ab315ec63857043a0a655a75d7cff1599e6f5366..5b7abda039c85c2b5f218c0a986a5c1d78e4da56 100644 (file)
@@ -69,7 +69,7 @@
       "MultiViews"</a> resources.</p>
     </note>
 </summary>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
 
 <section id="examples"><title>Configuration Examples</title>
 
index 33e59a4761bca8a4e577941467bcfc048ee534b6..6fbdfe713b284d3db785028416fb048468e316e3 100644 (file)
@@ -37,6 +37,6 @@
     directive. Alternatively <code>require valid-user</code> can be used to
     grant access to all successfully authenticated users.</p>
 </summary>
-<seealso><directive module="core">Require</directive></seealso>
+<seealso><directive module="mod_authz_core">Require</directive></seealso>
 
 </modulesynopsis>
index 4a544ee95078087666a74492410f8d82eda3833f..3fcdd768987536edb128c169fca019c54593fc31 100644 (file)
           <code>mod_auth_ldap</code> module to the 2.2 <code>Authn/Authz</code> 
           framework.  New features include using LDAP attribute values and 
           complicated search filters in the 
-          <directive module="core">Require</directive> directive.</dd>
+          <directive module="mod_authz_core">Require</directive> directive.</dd>
 
       <dt><module>mod_info</module></dt>
       <dd>Added a new <code>?config</code> argument which will show