You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Rodent of Unusual Size <co...@hyperreal.com> on 1997/06/02 22:20:02 UTC

cvs commit: apache/htdocs/manual/mod directives.html mod_auth_anon.html mod_dir.html mod_mime.html

coar        97/06/02 13:20:00

  Modified:    htdocs/manual/mod  directives.html mod_auth_anon.html
                        mod_dir.html mod_mime.html
  Log:
  	Correcting various manual documentation errors and omissions.
  
  Submitted by:	Martin Kraemer
  
  Revision  Changes    Path
  1.19      +6 -2      apache/htdocs/manual/mod/directives.html
  
  Index: directives.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/directives.html,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -C3 -r1.18 -r1.19
  *** directives.html	1997/04/16 12:21:09	1.18
  --- directives.html	1997/06/02 20:19:56	1.19
  ***************
  *** 12,17 ****
  --- 12,20 ----
    <li><A HREF="core.html#accessconfig">AccessConfig</A>
    <li><A HREF="core.html#accessfilename">AccessFileName</A>
    <li><A HREF="mod_actions.html#action">Action</A>
  + <li><A HREF="mod_dir.html#addalt">AddAlt</A>
  + <li><A HREF="mod_dir.html#addaltbyencoding">AddAltByEncoding</A>
  + <li><A HREF="mod_dir.html#addaltbytype">AddAltByType</A>
    <li><A HREF="mod_dir.html#adddescription">AddDescription</A>
    <li><A HREF="mod_mime.html#addencoding">AddEncoding</A>
    <li><A HREF="mod_mime.html#addhandler">AddHandler</A>
  ***************
  *** 26,35 ****
    <li><A HREF="mod_access.html#allow">allow</A>
    <li><A HREF="core.html#allowoverride">AllowOverride</A>
    <li><A HREF="mod_auth_anon.html#anonymous">Anonymous</A>
    <li><A HREF="mod_auth_anon.html#LogEmail">Anonymous_LogEmail</A>
    <li><A HREF="mod_auth_anon.html#VerifyEmail">Anonymous_VerifyEmail</A>
  - <li><A HREF="mod_auth_anon.html#NoUser">Anonymous_NoUser</A>
  - <li><A HREF="mod_auth_anon.html#Authoritative">Anonymous_Authoritative</A>
    <li><A HREF="mod_auth.html#authauthoritative">AuthAuthoritative</A>
    <li><A HREF="mod_auth_db.html#authdbauthoritative">AuthDBAuthoritative</A>
    <li><A HREF="mod_auth_db.html#authdbgroupfile">AuthDBGroupFile</A>
  --- 29,39 ----
    <li><A HREF="mod_access.html#allow">allow</A>
    <li><A HREF="core.html#allowoverride">AllowOverride</A>
    <li><A HREF="mod_auth_anon.html#anonymous">Anonymous</A>
  + <li><A HREF="mod_auth_anon.html#Authoritative">Anonymous_Authoritative</A>
    <li><A HREF="mod_auth_anon.html#LogEmail">Anonymous_LogEmail</A>
  + <li><A HREF="mod_auth_anon.html#MustGiveEmail">Anonymous_MustGiveEmail</A>
  + <li><A HREF="mod_auth_anon.html#NoUserID">Anonymous_NoUserID</A>
    <li><A HREF="mod_auth_anon.html#VerifyEmail">Anonymous_VerifyEmail</A>
    <li><A HREF="mod_auth.html#authauthoritative">AuthAuthoritative</A>
    <li><A HREF="mod_auth_db.html#authdbauthoritative">AuthDBAuthoritative</A>
    <li><A HREF="mod_auth_db.html#authdbgroupfile">AuthDBGroupFile</A>
  
  
  
  1.7       +39 -24    apache/htdocs/manual/mod/mod_auth_anon.html
  
  Index: mod_auth_anon.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_auth_anon.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -C3 -r1.6 -r1.7
  *** mod_auth_anon.html	1997/05/01 05:59:54	1.6
  --- mod_auth_anon.html	1997/06/02 20:19:57	1.7
  ***************
  *** 36,45 ****
    <h2><a name="Directives">Directives</a></h2>
    <ul>
    <li><A HREF="#anonymous">Anonymous</A>
    <li><A HREF="#LogEmail">Anonymous_LogEmail</A>
    <li><A HREF="#VerifyEmail">Anonymous_VerifyEmail</A>
  - <li><A HREF="#NoUser">Anonymous_NoUser</A>
  - <li><A HREF="#Authoritative">Anonymous_Authoritative</A>
    </ul>
    
    <hr>
  --- 36,46 ----
    <h2><a name="Directives">Directives</a></h2>
    <ul>
    <li><A HREF="#anonymous">Anonymous</A>
  + <li><A HREF="#Authoritative">Anonymous_Authoritative</A>
    <li><A HREF="#LogEmail">Anonymous_LogEmail</A>
  + <li><A HREF="#MustGiveEmail">Anonymous_MustGiveEmail</A>
  + <li><A HREF="#NoUserID">Anonymous_NoUserID</A>
    <li><A HREF="#VerifyEmail">Anonymous_VerifyEmail</A>
    </ul>
    
    <hr>
  ***************
  *** 70,75 ****
  --- 71,95 ----
    	This would allow the user to enter without password verification
    	by using the userId's 'anonymous', 'AnonyMous','Not Registered' and
    	'I Don't Know'.
  + <HR>
  + 
  + <A name="Authoritative"><h2>Anonymous_Authoritative</h2></A>
  + <strong>Syntax:</strong> Anonymous_Authoritative <em>on | off</em><br>
  + <strong>Default:</strong> <code>Anonymous_Authoritative off</code><br>
  + <strong>Context:</strong> directory, .htaccess<br>
  + <strong>Override:</strong> AuthConfig<br>
  + <strong>Status:</strong> Extension<br>
  + <strong>Module:</strong> mod_auth_anon<p>
  + 
  +         When set 'on', there is no
  +         fall-through to other authorization methods. So if a
  +         userID does not match the values specified in the
  + 	<code>Anonymous</code> directive, access is denied.
  + 	<p>
  + 	Be sure you know what you are doing when you decide to switch 
  + 	it on. And remember that it is the linking order of the modules
  + 	(in the Configuration / Make file) which details the order
  + 	in which the Authorization modules are queried.
    <hr>
    
    <A name="LogEmail"><h2>Anonymous_LogEmail</h2></A>
  ***************
  *** 84,106 ****
    	contains a sensible email address) is logged in the httpd-log file.
    <hr>
    
  ! <A name="VerifyEmail"><h2>Anonymous_VerifyEmail</h2></A>
  ! <strong>Syntax:</strong> Anonymous <em>on | off</em><br>
  ! <strong>Default:</strong> <code>Anonymous_VerifyEmail off</code><br>
    <strong>Context:</strong> directory, .htaccess<br>
    <strong>Override:</strong> AuthConfig<br>
    <strong>Status:</strong> Extension<br>
    <strong>Module:</strong> mod_auth_anon<p>
    
  ! 	When set 'on' the 'password' entered is
  ! 	checked for at least one '@' and a '.' to encourage users to enter
  ! 	valid email addresses (see the above <code>Auth_LogEmail</code>).
  ! 
    <HR>
    
  ! <A name="NoUser"><h2>Anonymous_NoUser</h2></A>
  ! <strong>Syntax:</strong> Anonymous_NoUser <em>on | off</em><br>
  ! <strong>Default:</strong> <code>Anonymous_NoUser off</code><br>
    <strong>Context:</strong> directory, .htaccess<br>
    <strong>Override:</strong> AuthConfig<br>
    <strong>Status:</strong> Extension<br>
  --- 104,125 ----
    	contains a sensible email address) is logged in the httpd-log file.
    <hr>
    
  ! <A name="MustGiveEmail"><h2>Anonymous_MustGiveEmail</h2></a>
  ! <!--%plaintext &lt;?INDEX {\tt Anonymous_MustGiveEmail} directive&gt; -->
  ! <strong>Syntax:</strong> Anonymous_MustGiveEmail <em>on</em> | <em>off</em><br>
  ! <strong>Default:</strong> off<br>
    <strong>Context:</strong> directory, .htaccess<br>
    <strong>Override:</strong> AuthConfig<br>
    <strong>Status:</strong> Extension<br>
    <strong>Module:</strong> mod_auth_anon<p>
    
  ! 	Specifies whether the user must specify an email
  ! 	address as the password.  This prohibits blank passwords.
    <HR>
    
  ! <A name="NoUserID"><h2>Anonymous_NoUserID</h2></A>
  ! <strong>Syntax:</strong> Anonymous_NoUserID <em>on | off</em><br>
  ! <strong>Default:</strong> <code>Anonymous_NoUserID off</code><br>
    <strong>Context:</strong> directory, .htaccess<br>
    <strong>Override:</strong> AuthConfig<br>
    <strong>Status:</strong> Extension<br>
  ***************
  *** 112,134 ****
    	just hit return or click directly on the OK button; which
    	seems a natural reaction.
    
  ! <A name="Authoritative"><h2>Anonymous_Authoritative</h2></A>
  ! <strong>Syntax:</strong> Anonymous_Authoritative <em>on | off</em><br>
  ! <strong>Default:</strong> <code>Anonymous_Authoritative off</code><br>
    <strong>Context:</strong> directory, .htaccess<br>
    <strong>Override:</strong> AuthConfig<br>
    <strong>Status:</strong> Extension<br>
    <strong>Module:</strong> mod_auth_anon<p>
    
  !         When set 'on', there is no
  !         fall-through to other authorization methods. So if a
  !         userID does not match the values specified in the
  ! 	<code>Anonymous</code> directive, access is denied.
  ! 	<p>
  ! 	Be sure you know what you are doing when you decide to switch 
  ! 	it on. And remember that it is the linking order of the modules
  ! 	(in the Configuration / Make file) which details the order
  ! 	in which the Authorization modules are queried.
    
    <hr><a name="Example"><h2>Example</h2></a>
    
  --- 131,149 ----
    	just hit return or click directly on the OK button; which
    	seems a natural reaction.
    
  ! <hr>
  ! 
  ! <A name="VerifyEmail"><h2>Anonymous_VerifyEmail</h2></A>
  ! <strong>Syntax:</strong> Anonymous <em>on | off</em><br>
  ! <strong>Default:</strong> <code>Anonymous_VerifyEmail off</code><br>
    <strong>Context:</strong> directory, .htaccess<br>
    <strong>Override:</strong> AuthConfig<br>
    <strong>Status:</strong> Extension<br>
    <strong>Module:</strong> mod_auth_anon<p>
    
  ! 	When set 'on' the 'password' entered is
  ! 	checked for at least one '@' and a '.' to encourage users to enter
  ! 	valid email addresses (see the above <code>Auth_LogEmail</code>).
    
    <hr><a name="Example"><h2>Example</h2></a>
    
  
  
  
  1.5       +52 -0     apache/htdocs/manual/mod/mod_dir.html
  
  Index: mod_dir.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_dir.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -C3 -r1.4 -r1.5
  *** mod_dir.html	1997/04/16 12:40:31	1.4
  --- mod_dir.html	1997/06/02 20:19:57	1.5
  ***************
  *** 30,35 ****
  --- 30,38 ----
    <h2>Directives</h2>
    
    <menu>
  + <li><A HREF="#addalt">AddAlt</A>
  + <li><A HREF="#addaltbyencoding">AddAltByEncoding</A>
  + <li><A HREF="#addaltbytype">AddAltByType</A>
    <li><A HREF="#adddescription">AddDescription</A>
    <li><A HREF="#addicon">AddIcon</A>
    <li><A HREF="#addiconbyencoding">AddIconByEncoding</A>
  ***************
  *** 44,49 ****
  --- 47,101 ----
    </menu>
    <hr>
    
  + <A name="addalt"><h2>AddAlt</h2></A>
  + <!--%plaintext &lt;?INDEX {\tt AddAlt} directive&gt; -->
  + <strong>Syntax:</strong> AddAlt <em>string file file...</em><br>
  + <Strong>Context:</strong> server config, virtual host, directory, .htaccess<br>
  + <Strong>Override:</strong> Indexes<br>
  + <strong>Status:</strong> Base<br>
  + <strong>Module:</strong> mod_dir<p>
  + 
  + This sets the alternate text to display for a file, instead of an icon, for
  + <A HREF="#fancyindexing">FancyIndexing</A>. <em>File</em> is a file
  + extension, partial filename, wild-card expression or full filename for files
  + to describe. <em>String</em> is enclosed in double quotes
  + (<code>&quot;</code>).  This alternate text is displayed if the client is
  + image-incapable or has image loading disabled.
  + 
  + <HR>
  + <A name="addaltbyencoding"><h2>AddAltByEncoding</h2></A>
  + <!--%plaintext &lt;?INDEX {\tt AddAltByEncoding} directive&gt; -->
  + <strong>Syntax:</strong> AddAltByEncoding <em>string MIME-encoding
  +     MIME-encoding...</em><br>
  + <Strong>Context:</strong> server config, virtual host, directory, .htaccess<br>
  + <Strong>Override:</strong> Indexes<br>
  + <strong>Status:</strong> Base<br>
  + <strong>Module:</strong> mod_dir<p>
  + 
  + This sets the alternate text to display for a file, instead of an icon, for
  + <A HREF="#fancyindexing">FancyIndexing</A>. <em>MIME-encoding</em> is a
  + valid content-encoding, such as <SAMP>x-compress</SAMP>.
  + <em>String</em> is enclosed in double quotes
  + (<code>&quot;</code>).  This alternate text is displayed if the client is
  + image-incapable or has image loading disabled.
  + 
  + <HR>
  + <A name="addaltbytype"><h2>AddAltByType</h2></A>
  + <!--%plaintext &lt;?INDEX {\tt AddAltByType} directive&gt; -->
  + <strong>Syntax:</strong> AddAltByType <em>string MIME-type MIME-type...</em><br>
  + <Strong>Context:</strong> server config, virtual host, directory, .htaccess<br>
  + <Strong>Override:</strong> Indexes<br>
  + <strong>Status:</strong> Base<br>
  + <strong>Module:</strong> mod_dir<p>
  + 
  + This sets the alternate text to display for a file, instead of an icon, for
  + <A HREF="#fancyindexing">FancyIndexing</A>. <em>MIME-type</em> is a
  + valid content-type, such as <SAMP>text/html</SAMP>.
  + <em>String</em> is enclosed in double quotes
  + (<code>&quot;</code>).  This alternate text is displayed if the client is
  + image-incapable or has image loading disabled.
  + 
  + <HR>
    
    <A name="adddescription"><h2>AddDescription</h2></A>
    <!--%plaintext &lt;?INDEX {\tt AddDescription} directive&gt; -->
  
  
  
  1.9       +2 -2      apache/htdocs/manual/mod/mod_mime.html
  
  Index: mod_mime.html
  ===================================================================
  RCS file: /export/home/cvs/apache/htdocs/manual/mod/mod_mime.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -C3 -r1.8 -r1.9
  *** mod_mime.html	1997/05/01 05:59:56	1.8
  --- mod_mime.html	1997/06/02 20:19:57	1.9
  ***************
  *** 83,89 ****
    <p>Once that has been put into your srm.conf or httpd.conf file, any
    file ending with "<code>.cgi</code>" will be treated as a CGI
    program.</p>
  ! 
    
    <h2><A name="addlanguage">AddLanguage</A></h2>
    <!--%plaintext &lt;?INDEX {\tt AddLanguage} directive&gt; -->
  --- 83,89 ----
    <p>Once that has been put into your srm.conf or httpd.conf file, any
    file ending with "<code>.cgi</code>" will be treated as a CGI
    program.</p>
  ! <HR>
    
    <h2><A name="addlanguage">AddLanguage</A></h2>
    <!--%plaintext &lt;?INDEX {\tt AddLanguage} directive&gt; -->
  ***************
  *** 179,185 ****
        SetHandler server-status
        &lt;/Location&gt;
    </pre>
  ! 
    
    <h2><A name="typesconfig">TypesConfig</A></h2>
    <!--%plaintext &lt;?INDEX {\tt TypesConfig} directive&gt; -->
  --- 179,185 ----
        SetHandler server-status
        &lt;/Location&gt;
    </pre>
  ! <HR>
    
    <h2><A name="typesconfig">TypesConfig</A></h2>
    <!--%plaintext &lt;?INDEX {\tt TypesConfig} directive&gt; -->