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 2011/02/15 15:05:08 UTC

svn commit: r1070907 - in /httpd/httpd/trunk/docs/manual/howto: access.html.en access.xml

Author: rbowen
Date: Tue Feb 15 14:05:08 2011
New Revision: 1070907

URL: http://svn.apache.org/viewvc?rev=1070907&view=rev
Log:
Fix XML error. Rebuild access howto.

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

Modified: httpd/httpd/trunk/docs/manual/howto/access.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/access.html.en?rev=1070907&r1=1070906&r2=1070907&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/access.html.en (original)
+++ httpd/httpd/trunk/docs/manual/howto/access.html.en Tue Feb 15 14:05:08 2011
@@ -48,13 +48,20 @@ is access control using <code class="mod
     <code class="module"><a href="../mod/mod_authz_host.html">mod_authz_host</a></code>.
     </p>
 
-    <p>The <code class="directive"><a href="../mod/mod_authz_host.html#allow">Allow</a></code> and
-    <code class="directive"><a href="../mod/mod_authz_host.html#deny">Deny</a></code> directives let
-    you allow and deny access based on the host name, or host
-    address, of the machine requesting a document. The
-    <code class="directive"><a href="../mod/mod_authz_host.html#order">Order</a></code> directive goes
-    hand-in-hand with these two, and tells Apache in which order to
-    apply the filters.</p>
+    <p>The <code class="directive"><a href="../mod/mod_authz_core.html#require">Require</a></code>
+    provides a variety of different ways to allow or deny access to
+    resources. In conjunction with the <code class="directive"><a href="../mod/mod_authz_core.html#requireall">RequireAll</a></code>, <code class="directive"><a href="../mod/mod_authz_core.html#requireany">RequireAny</a></code>, and <code class="directive"><a href="../mod/mod_authz_core.html#requirenone">RequireNone</a></code> directives, these
+    requirements may be combined in arbitrarily complex ways, to enforce
+    whatever your access policy happens to be.</p>
+
+    <div class="warning"><p>
+    The <code class="directive"><a href="../mod/mod_access_compat.html#allow">Allow</a></code>,
+    <code class="directive"><a href="../mod/mod_access_compat.html#deny">Deny</a></code>, and 
+    <code class="directive"><a href="../mod/mod_access_compat.html#order">Order</a></code> directives,
+    provided by <code class="module"><a href="../mod/mod_access_compat.html">mod_access_compat</a></code>, are deprecated and
+    will go away in a future version. You should avoid using them, and
+    avoid outdated tutorials recommending their use.
+    </p></div>
 
     <p>The usage of these directives is:</p>
 

Modified: httpd/httpd/trunk/docs/manual/howto/access.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/access.xml?rev=1070907&r1=1070906&r2=1070907&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/access.xml (original)
+++ httpd/httpd/trunk/docs/manual/howto/access.xml Tue Feb 15 14:05:08 2011
@@ -57,7 +57,7 @@ is access control using <module>mod_rewr
     whatever your access policy happens to be.</p>
 
     <note type="warning"><p>
-    <p>The <directive module="mod_access_compat">Allow</directive>,
+    The <directive module="mod_access_compat">Allow</directive>,
     <directive module="mod_access_compat">Deny</directive>, and 
     <directive module="mod_access_compat">Order</directive> directives,
     provided by <module>mod_access_compat</module>, are deprecated and