You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2003/01/23 14:32:20 UTC

cvs commit: httpd-2.0/docs/manual/mod mod_auth_ldap.html.en quickreference.html.de quickreference.html.en

nd          2003/01/23 05:32:20

  Modified:    docs/manual glossary.html.en
               docs/manual/mod mod_auth_ldap.html.en quickreference.html.de
                        quickreference.html.en
  Log:
  update transformations of recent changes.
  
  Revision  Changes    Path
  1.8       +1 -1      httpd-2.0/docs/manual/glossary.html.en
  
  Index: glossary.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/glossary.html.en,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- glossary.html.en	11 Dec 2002 21:33:36 -0000	1.7
  +++ glossary.html.en	23 Jan 2003 13:32:19 -0000	1.8
  @@ -205,7 +205,7 @@
   <dt><a name="module">Module</a></dt> <dd>An independent part of a
   program.  Much of Apache's functionality is contained in modules that
   you can choose to include or exclude.  Modules that are compiled into
  -the the Apache httpd binary are called <em>static modules</em>, while
  +the Apache httpd binary are called <em>static modules</em>, while
   modules that are stored seperately and can be optionally loaded at
   run-time are called <em>dynamic modules</em> or <a href="#dso">DSOs</a>.  Modules that are included by default are called
   <em>base modules</em>.  Many modules are available for Apache that are
  
  
  
  1.18      +14 -14    httpd-2.0/docs/manual/mod/mod_auth_ldap.html.en
  
  Index: mod_auth_ldap.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_auth_ldap.html.en,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- mod_auth_ldap.html.en	19 Jan 2003 03:35:01 -0000	1.17
  +++ mod_auth_ldap.html.en	23 Jan 2003 13:32:20 -0000	1.18
  @@ -281,16 +281,16 @@
       is part of the just-fetched LDAP entry.  Multiple users can be
       granted access by putting multiple usernames on the line,
       separated with spaces. If a username has a space in it, then it
  -    must be the only user on the line. In this case, multiple users
  -    can be granted access by using multiple <code>require user</code>
  +    must be surrounded with double quotes. Multiple users can also be
  +    granted access by using multiple <code>require user</code>
       directives, with one user per line. For example, with a <code class="directive"><a href="#authldapurl">AuthLDAPURL</a></code> of
       <code>ldap://ldap/o=Airius?cn</code> (i.e., <code>cn</code> is
       used for searches), the following require directives could be used
       to restrict access:</p>
   <div class="example"><p><code>
  -require user Barbara Jenson<br />
  -require user Fred User<br />
  -require user Joe Manager<br />
  +require user "Barbara Jenson"<br />
  +require user "Fred User"<br />
  +require user "Joe Manager"<br />
   </code></p></div>
   
       <p>Because of the way that <code class="module"><a href="../mod/mod_auth_ldap.html">mod_auth_ldap</a></code> handles this
  @@ -321,7 +321,7 @@
   
       <p>The following directive would grant access to both Fred and
       Barbara:</p>
  -<div class="example"><p><code>require group cn=Administrators, o=Airius</code></p></div>
  +<div class="example"><p><code>require group "cn=Administrators, o=Airius"</code></p></div>
   
       <p>Behavior of this directive is modified by the <code class="directive"><a href="#authldapgroupattribute">AuthLDAPGroupAttribute</a></code> and
       <code class="directive"><a href="#authldapgroupattributeisdn">AuthLDAPGroupAttributeIsDN</a></code>
  @@ -339,7 +339,7 @@
   
       <p>The following directive would grant access to a specific
       DN:</p>
  -<div class="example"><p><code>require dn cn=Barbara Jenson, o=Airius</code></p></div>
  +<div class="example"><p><code>require dn "cn=Barbara Jenson, o=Airius"</code></p></div>
   
       <p>Behavior of this directive is modified by the <code class="directive"><a href="#authldapcomparednonserver">AuthLDAPCompareDNOnServer</a></code>
       directive.</p>
  @@ -353,7 +353,7 @@
           Grant access to anyone who exists in the LDAP directory,
           using their UID for searches. 
   <div class="example"><p><code>
  -AuthLDAPURL ldap://ldap1.airius.com:389/ou=People, o=Airius?uid?sub?(objectClass=*)<br />
  +AuthLDAPURL "ldap://ldap1.airius.com:389/ou=People, o=Airius?uid?sub?(objectClass=*)"<br />
   require valid-user
   </code></p></div>
         </li>
  @@ -362,7 +362,7 @@
           The next example is the same as above; but with the fields
           that have useful defaults omitted. Also, note the use of a
           redundant LDAP server. 
  -<div class="example"><p><code>AuthLDAPURL ldap://ldap1.airius.com ldap2.airius.com/ou=People, o=Airius<br />
  +<div class="example"><p><code>AuthLDAPURL "ldap://ldap1.airius.com ldap2.airius.com/ou=People, o=Airius"<br />
   require valid-user
   </code></p></div>
         </li>
  @@ -377,7 +377,7 @@
           choose an attribute that is guaranteed unique in your
           directory, such as <code>uid</code>. 
   <div class="example"><p><code>
  -AuthLDAPURL ldap://ldap.airius.com/ou=People, o=Airius?cn<br />
  +AuthLDAPURL "ldap://ldap.airius.com/ou=People, o=Airius?cn"<br />
   require valid-user
   </code></p></div>
         </li>
  @@ -386,7 +386,7 @@
           Grant access to anybody in the Administrators group. The
           users must authenticate using their UID. 
   <div class="example"><p><code>
  -AuthLDAPURL ldap://ldap.airius.com/o=Airius?uid<br />
  +AuthLDAPURL "ldap://ldap.airius.com/o=Airius?uid"<br />
   require group cn=Administrators, o=Airius
   </code></p></div>
         </li>
  @@ -398,7 +398,7 @@
           only to people (authenticated via their UID) who have
           alphanumeric pagers: 
   <div class="example"><p><code>
  -AuthLDAPURL ldap://ldap.airius.com/o=Airius?uid??(qpagePagerID=*)<br />
  +AuthLDAPURL "ldap://ldap.airius.com/o=Airius?uid??(qpagePagerID=*)"<br />
   require valid-user
   </code></p></div>
         </li>
  @@ -414,7 +414,7 @@
           have a pager, but does need to access the same
           resource:</p>
   <div class="example"><p><code>
  -AuthLDAPURL ldap://ldap.airius.com/o=Airius?uid??(|(qpagePagerID=*)(uid=jmanager))<br />
  +AuthLDAPURL "ldap://ldap.airius.com/o=Airius?uid??(|(qpagePagerID=*)(uid=jmanager))"<br />
   require valid-user
   </code></p></div>
   
  @@ -484,7 +484,7 @@
       directives to <em>every</em> <code>.htaccess</code> file
       that gets created in the web</p>
   <div class="example"><pre>
  -AuthLDAPURL            the url
  +AuthLDAPURL            "the url"
   AuthLDAPAuthoritative  off
   AuthLDAPFrontPageHack  on
   </pre></div>
  
  
  
  1.12      +1 -1      httpd-2.0/docs/manual/mod/quickreference.html.de
  
  Index: quickreference.html.de
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/quickreference.html.de,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- quickreference.html.de	19 Jan 2003 17:29:44 -0000	1.11
  +++ quickreference.html.de	23 Jan 2003 13:32:20 -0000	1.12
  @@ -470,7 +470,7 @@
   <tr class="odd"><td><a href="mod_proxy.html#proxyerroroverride">ProxyErrorOverride On|Off</a></td><td> Off </td><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Override error pages for proxied content</td></tr>
   <tr><td><a href="mod_proxy.html#proxyiobuffersize">ProxyIOBufferSize <em>bytes</em></a></td><td /><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">IO buffer size for outgoing HTTP and FTP 
   connections</td></tr>
  -<tr class="odd"><td><a href="mod_proxy.html#proxymatch">&lt;Proxy <em>regex</em>&gt; ...&lt;/Proxy&gt;</a></td><td /><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Container for directives applied to regular-expression-matched 
  +<tr class="odd"><td><a href="mod_proxy.html#proxymatch">&lt;ProxyMatch <em>regex</em>&gt; ...&lt;/ProxyMatch&gt;</a></td><td /><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Container for directives applied to regular-expression-matched 
   proxied resources</td></tr>
   <tr><td><a href="mod_proxy.html#proxymaxforwards">ProxyMaxForwards <em>number</em></a></td><td> 10 </td><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">Maximium number of proxies that a request can be forwarded
   through</td></tr>
  
  
  
  1.70      +1 -1      httpd-2.0/docs/manual/mod/quickreference.html.en
  
  Index: quickreference.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/quickreference.html.en,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- quickreference.html.en	19 Jan 2003 03:35:01 -0000	1.69
  +++ quickreference.html.en	23 Jan 2003 13:32:20 -0000	1.70
  @@ -464,7 +464,7 @@
   <tr class="odd"><td><a href="mod_proxy.html#proxyerroroverride">ProxyErrorOverride On|Off</a></td><td> Off </td><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Override error pages for proxied content</td></tr>
   <tr><td><a href="mod_proxy.html#proxyiobuffersize">ProxyIOBufferSize <em>bytes</em></a></td><td /><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">IO buffer size for outgoing HTTP and FTP 
   connections</td></tr>
  -<tr class="odd"><td><a href="mod_proxy.html#proxymatch">&lt;Proxy <em>regex</em>&gt; ...&lt;/Proxy&gt;</a></td><td /><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Container for directives applied to regular-expression-matched 
  +<tr class="odd"><td><a href="mod_proxy.html#proxymatch">&lt;ProxyMatch <em>regex</em>&gt; ...&lt;/ProxyMatch&gt;</a></td><td /><td>sv</td><td>E</td></tr><tr class="odd"><td class="descr" colspan="4">Container for directives applied to regular-expression-matched 
   proxied resources</td></tr>
   <tr><td><a href="mod_proxy.html#proxymaxforwards">ProxyMaxForwards <em>number</em></a></td><td> 10 </td><td>sv</td><td>E</td></tr><tr><td class="descr" colspan="4">Maximium number of proxies that a request can be forwarded
   through</td></tr>