From: Ken Coar Date: Mon, 2 Jun 1997 20:19:57 +0000 (+0000) Subject: Correcting various manual documentation errors and omissions. X-Git-Tag: 1.2.1~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=494fe559b25fe7191b671591a6a7eeb9309e324f;p=thirdparty%2Fapache%2Fhttpd.git Correcting various manual documentation errors and omissions. Submitted by: Martin Kraemer git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78210 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/directives.html b/docs/manual/mod/directives.html index 1fd9718f5ec..e828ece5e8f 100644 --- a/docs/manual/mod/directives.html +++ b/docs/manual/mod/directives.html @@ -12,6 +12,9 @@
  • AccessConfig
  • AccessFileName
  • Action +
  • AddAlt +
  • AddAltByEncoding +
  • AddAltByType
  • AddDescription
  • AddEncoding
  • AddHandler @@ -26,10 +29,11 @@
  • allow
  • AllowOverride
  • Anonymous +
  • Anonymous_Authoritative
  • Anonymous_LogEmail +
  • Anonymous_MustGiveEmail +
  • Anonymous_NoUserID
  • Anonymous_VerifyEmail -
  • Anonymous_NoUser -
  • Anonymous_Authoritative
  • AuthAuthoritative
  • AuthDBAuthoritative
  • AuthDBGroupFile diff --git a/docs/manual/mod/mod_auth_anon.html b/docs/manual/mod/mod_auth_anon.html index f1fa0c273e2..9c69ab01410 100644 --- a/docs/manual/mod/mod_auth_anon.html +++ b/docs/manual/mod/mod_auth_anon.html @@ -36,10 +36,11 @@ allows users to share URLs.

    Directives


    @@ -70,6 +71,25 @@ allows users to share URLs. This would allow the user to enter without password verification by using the userId's 'anonymous', 'AnonyMous','Not Registered' and 'I Don't Know'. +
    + +

    Anonymous_Authoritative

    +Syntax: Anonymous_Authoritative on | off
    +Default: Anonymous_Authoritative off
    +Context: directory, .htaccess
    +Override: AuthConfig
    +Status: Extension
    +Module: mod_auth_anon

    + + When set 'on', there is no + fall-through to other authorization methods. So if a + userID does not match the values specified in the + Anonymous directive, access is denied. +

    + 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.


    Anonymous_LogEmail

    @@ -84,23 +104,22 @@ allows users to share URLs. contains a sensible email address) is logged in the httpd-log file.
    -

    Anonymous_VerifyEmail

    -Syntax: Anonymous on | off
    -Default: Anonymous_VerifyEmail off
    +

    Anonymous_MustGiveEmail

    + +Syntax: Anonymous_MustGiveEmail on | off
    +Default: off
    Context: directory, .htaccess
    Override: AuthConfig
    Status: Extension
    Module: mod_auth_anon

    - 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 Auth_LogEmail). - + Specifies whether the user must specify an email + address as the password. This prohibits blank passwords.


    -

    Anonymous_NoUser

    -Syntax: Anonymous_NoUser on | off
    -Default: Anonymous_NoUser off
    +

    Anonymous_NoUserID

    +Syntax: Anonymous_NoUserID on | off
    +Default: Anonymous_NoUserID off
    Context: directory, .htaccess
    Override: AuthConfig
    Status: Extension
    @@ -112,23 +131,19 @@ allows users to share URLs. just hit return or click directly on the OK button; which seems a natural reaction. -

    Anonymous_Authoritative

    -Syntax: Anonymous_Authoritative on | off
    -Default: Anonymous_Authoritative off
    +
    + +

    Anonymous_VerifyEmail

    +Syntax: Anonymous on | off
    +Default: Anonymous_VerifyEmail off
    Context: directory, .htaccess
    Override: AuthConfig
    Status: Extension
    Module: mod_auth_anon

    - When set 'on', there is no - fall-through to other authorization methods. So if a - userID does not match the values specified in the - Anonymous directive, access is denied. -

    - 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. + 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 Auth_LogEmail).


    Example

    diff --git a/docs/manual/mod/mod_autoindex.html b/docs/manual/mod/mod_autoindex.html index dc9093ee161..413f3164f7b 100644 --- a/docs/manual/mod/mod_autoindex.html +++ b/docs/manual/mod/mod_autoindex.html @@ -30,6 +30,9 @@ first icon listed that matches the file is displayed.

    Directives

    +
  • AddAlt +
  • AddAltByEncoding +
  • AddAltByType
  • AddDescription
  • AddIcon
  • AddIconByEncoding @@ -44,6 +47,55 @@ first icon listed that matches the file is displayed.

  • +

    AddAlt

    + +Syntax: AddAlt string file file...
    +Context: server config, virtual host, directory, .htaccess
    +Override: Indexes
    +Status: Base
    +Module: mod_dir

    + +This sets the alternate text to display for a file, instead of an icon, for +FancyIndexing. File is a file +extension, partial filename, wild-card expression or full filename for files +to describe. String is enclosed in double quotes +("). This alternate text is displayed if the client is +image-incapable or has image loading disabled. + +


    +

    AddAltByEncoding

    + +Syntax: AddAltByEncoding string MIME-encoding + MIME-encoding...
    +Context: server config, virtual host, directory, .htaccess
    +Override: Indexes
    +Status: Base
    +Module: mod_dir

    + +This sets the alternate text to display for a file, instead of an icon, for +FancyIndexing. MIME-encoding is a +valid content-encoding, such as x-compress. +String is enclosed in double quotes +("). This alternate text is displayed if the client is +image-incapable or has image loading disabled. + +


    +

    AddAltByType

    + +Syntax: AddAltByType string MIME-type MIME-type...
    +Context: server config, virtual host, directory, .htaccess
    +Override: Indexes
    +Status: Base
    +Module: mod_dir

    + +This sets the alternate text to display for a file, instead of an icon, for +FancyIndexing. MIME-type is a +valid content-type, such as text/html. +String is enclosed in double quotes +("). This alternate text is displayed if the client is +image-incapable or has image loading disabled. + +


    AddDescription

    diff --git a/docs/manual/mod/mod_dir.html b/docs/manual/mod/mod_dir.html index dc9093ee161..413f3164f7b 100644 --- a/docs/manual/mod/mod_dir.html +++ b/docs/manual/mod/mod_dir.html @@ -30,6 +30,9 @@ first icon listed that matches the file is displayed.

    Directives

    +
  • AddAlt +
  • AddAltByEncoding +
  • AddAltByType
  • AddDescription
  • AddIcon
  • AddIconByEncoding @@ -44,6 +47,55 @@ first icon listed that matches the file is displayed.

  • +

    AddAlt

    + +Syntax: AddAlt string file file...
    +Context: server config, virtual host, directory, .htaccess
    +Override: Indexes
    +Status: Base
    +Module: mod_dir

    + +This sets the alternate text to display for a file, instead of an icon, for +FancyIndexing. File is a file +extension, partial filename, wild-card expression or full filename for files +to describe. String is enclosed in double quotes +("). This alternate text is displayed if the client is +image-incapable or has image loading disabled. + +


    +

    AddAltByEncoding

    + +Syntax: AddAltByEncoding string MIME-encoding + MIME-encoding...
    +Context: server config, virtual host, directory, .htaccess
    +Override: Indexes
    +Status: Base
    +Module: mod_dir

    + +This sets the alternate text to display for a file, instead of an icon, for +FancyIndexing. MIME-encoding is a +valid content-encoding, such as x-compress. +String is enclosed in double quotes +("). This alternate text is displayed if the client is +image-incapable or has image loading disabled. + +


    +

    AddAltByType

    + +Syntax: AddAltByType string MIME-type MIME-type...
    +Context: server config, virtual host, directory, .htaccess
    +Override: Indexes
    +Status: Base
    +Module: mod_dir

    + +This sets the alternate text to display for a file, instead of an icon, for +FancyIndexing. MIME-type is a +valid content-type, such as text/html. +String is enclosed in double quotes +("). This alternate text is displayed if the client is +image-incapable or has image loading disabled. + +


    AddDescription

    diff --git a/docs/manual/mod/mod_mime.html b/docs/manual/mod/mod_mime.html index bbd201eae91..0045dd42003 100644 --- a/docs/manual/mod/mod_mime.html +++ b/docs/manual/mod/mod_mime.html @@ -83,7 +83,7 @@ with the file extension ".cgi", you might use:

    Once that has been put into your srm.conf or httpd.conf file, any file ending with ".cgi" will be treated as a CGI program.

    - +

    AddLanguage

    @@ -179,7 +179,7 @@ called, you might put the following into access.conf: SetHandler server-status </Location> - +

    TypesConfig