From: Joshua Slive Date: Mon, 11 Dec 2000 00:45:41 +0000 (+0000) Subject: Remove mod_log_agent and mod_log_referer from the documentation. X-Git-Tag: APACHE_2_0_ALPHA_9~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2115c234f0917dbdcea54a51b6be2bff0f8dabf6;p=apache Remove mod_log_agent and mod_log_referer from the documentation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87277 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/directives.html b/docs/manual/mod/directives.html index ee5cf34468..d45e7d7f7f 100644 --- a/docs/manual/mod/directives.html +++ b/docs/manual/mod/directives.html @@ -41,7 +41,6 @@ of the terms used in their descriptions available.
  • AddModule
  • AddModuleInfo
  • AddType -
  • AgentLog
  • Alias
  • AliasMatch
  • Allow @@ -187,8 +186,6 @@ of the terms used in their descriptions available.
  • RedirectMatch
  • RedirectPermanent
  • RedirectTemp -
  • RefererIgnore -
  • RefererLog
  • RemoveHandler
  • Require
  • RewriteBase diff --git a/docs/manual/mod/index-bytype.html b/docs/manual/mod/index-bytype.html index 3a8a49280e..1f4123262e 100644 --- a/docs/manual/mod/index-bytype.html +++ b/docs/manual/mod/index-bytype.html @@ -153,12 +153,8 @@ virtual hosts under different userids.
    mod_log_config
    User-configurable logging replacement for mod_log_common. -
    mod_log_agent -
    Logging of User Agents. -
    mod_log_referer -
    Logging of document references.
    mod_usertrack -
    User tracking using Cookies (replacement for mod_cookies.c) +
    User tracking using Cookies

    Miscellaneous

    diff --git a/docs/manual/mod/index.html b/docs/manual/mod/index.html index 18d55e9063..589564c4cb 100644 --- a/docs/manual/mod/index.html +++ b/docs/manual/mod/index.html @@ -99,12 +99,8 @@ virtual hosts under different userids.
    Server configuration information
    mod_isapi
    Windows ISAPI Extension support -
    mod_log_agent -
    Logging of User Agents.
    mod_log_config
    User-configurable logging replacement for mod_log_common. -
    mod_log_referer -
    Logging of document references.
    mod_mime
    Determining document types using file extensions.
    mod_mime_magic diff --git a/docs/manual/mod/mod_log_agent.html b/docs/manual/mod/mod_log_agent.html deleted file mode 100644 index 1dfe6c5272..0000000000 --- a/docs/manual/mod/mod_log_agent.html +++ /dev/null @@ -1,102 +0,0 @@ - - - -Module mod_log_agent - - - - - -

    Module mod_log_agent

    - -

    This module provides for logging of the client user agents.

    - -

    Status: Extension -
    -Source File: mod_log_agent.c -
    -Module Identifier: agent_log_module -

    - -

    Summary

    - -

    This module is provided strictly for compatibility with NCSA httpd, -and is deprecated. We recommend you use mod_log_config instead.

    - -

    Directives

    - - - -

    See also: CustomLog and -LogFormat. - -


    - - -

    AgentLog

    - -Syntax: AgentLog file-pipe
    -Default: AgentLog logs/agent_log
    -Context: server config, virtual host
    -Status: Extension
    -Module: mod_log_agent

    - -The AgentLog directive sets the name of the file to which the server will -log the UserAgent header of incoming requests. File-pipe is one -of -

    A filename -
    A filename relative to the ServerRoot. -
    `|' followed by a command -
    A program to receive the agent log information on its standard input. -Note the a new program will not be started for a VirtualHost if it inherits -the AgentLog from the main server. -
    -Security: if a program is used, then it will be -run under the user who started httpd. This will be root if the server -was started by root; be sure that the program is secure.

    - -Security: See the security tips document for -details on why your security could be compromised if the directory -where logfiles are stored is writable by anyone other than the user -that starts the server.

    - -This directive is provided for compatibility with NCSA 1.4.

    - - - - - diff --git a/docs/manual/mod/mod_log_referer.html b/docs/manual/mod/mod_log_referer.html deleted file mode 100644 index 2eb3832394..0000000000 --- a/docs/manual/mod/mod_log_referer.html +++ /dev/null @@ -1,143 +0,0 @@ - - - -Apache module mod_log_referer - - - - - -

    Module mod_log_referer

    - -

    This module provides for logging of the documents which -reference documents on the server.

    - -

    Status: Extension -
    -Source File: mod_log_referer.c -
    -Module Identifier: referer_log_module -

    - -

    Summary

    - -

    This module is provided strictly for compatibility with NCSA httpd, -and is deprecated. We recommend you use mod_log_config instead.

    - -

    Directives

    - - -

    See also: CustomLog and -LogFormat. - - -

    Log file format

    -The log file contains a separate line for each refer. Each line has the -format -
    uri -> document
    -where uri is the (%-escaped) URI for the document that references -the one requested by the client, and document is the (%-decoded) -local URL to the document being referred to. - - - -
    - - -

    RefererIgnore directive

    - -Syntax: RefererIgnore string - [string] ...
    -Context: server config, virtual host
    -Status: Extension
    -Module: mod_log_referer

    - -The RefererIgnore directive adds to the list of strings to ignore in -Referer headers. If any of the strings in the list is contained in -the Referer header, then no referrer information will be logged for the -request. Example: -

    RefererIgnore www.ncsa.uiuc.edu
    -This avoids logging references from www.ncsa.uiuc.edu. -


    - - -

    RefererLog directive

    - -Syntax: RefererLog file-pipe
    -Default: RefererLog logs/referer_log
    -Context: server config, virtual host
    -Status: Extension
    -Module: mod_log_referer

    - -The RefererLog directive sets the name of the file to which the server will -log the Referer header of incoming requests. File-pipe is one -of -

    A filename -
    A filename relative to the ServerRoot. -
    `|' followed by a command -
    A program to receive the referrer log information on its standard input. -Note the a new program will not be started for a VirtualHost if it inherits -the RefererLog from the main server. -
    -Security: if a program is used, then it will be -run under the user who started httpd. This will be root if the server -was started by root; be sure that the program is secure.

    - -Security: See the security tips document for -details on why your security could be compromised if the directory -where logfiles are stored is writable by anyone other than the user -that starts the server.

    - -This directive is provided for compatibility with NCSA 1.4.

    - - - - - diff --git a/docs/manual/upgrading.html b/docs/manual/upgrading.html index 326cfe9a8e..999a6cf8af 100644 --- a/docs/manual/upgrading.html +++ b/docs/manual/upgrading.html @@ -80,6 +80,12 @@ inetd.

  • Many directives that were in the core server in Apache 1.3 are now in the MPMs.
  • +
  • The mod_log_agent and mod_log_referer modules which provided the +AgentLog, RefererLog and +RefererIgnore directives have been removed. Agent and +referer logs are still available using the CustomLog directive of +mod_log_config.
  • diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en index 326cfe9a8e..999a6cf8af 100644 --- a/docs/manual/upgrading.html.en +++ b/docs/manual/upgrading.html.en @@ -80,6 +80,12 @@ inetd.
  • Many directives that were in the core server in Apache 1.3 are now in the MPMs.
  • +
  • The mod_log_agent and mod_log_referer modules which provided the +AgentLog, RefererLog and +RefererIgnore directives have been removed. Agent and +referer logs are still available using the CustomLog directive of +mod_log_config.