From: Jim Jagielski Date: Fri, 4 Feb 2005 13:47:40 +0000 (+0000) Subject: Docs update. Bring current X-Git-Tag: 2.0.53~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb58e768f4ed4035492318f94a45d70e25320005;p=thirdparty%2Fapache%2Fhttpd.git Docs update. Bring current git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@151350 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/allmodules.xml b/docs/manual/mod/allmodules.xml index 02d97030799..db6f18bd6e6 100644 --- a/docs/manual/mod/allmodules.xml +++ b/docs/manual/mod/allmodules.xml @@ -22,6 +22,7 @@ mod_deflate.xml mod_dir.xml mod_disk_cache.xml + mod_dumpio.xml mod_echo.xml mod_env.xml mod_example.xml diff --git a/docs/manual/mod/allmodules.xml.de b/docs/manual/mod/allmodules.xml.de index c3e4eff6c6b..cd6b9ad31cd 100644 --- a/docs/manual/mod/allmodules.xml.de +++ b/docs/manual/mod/allmodules.xml.de @@ -22,6 +22,7 @@ mod_deflate.xml mod_dir.xml mod_disk_cache.xml + mod_dumpio.xml mod_echo.xml mod_env.xml mod_example.xml diff --git a/docs/manual/mod/allmodules.xml.es b/docs/manual/mod/allmodules.xml.es index 1ad5cba46ee..b7a772872b0 100644 --- a/docs/manual/mod/allmodules.xml.es +++ b/docs/manual/mod/allmodules.xml.es @@ -22,6 +22,7 @@ mod_deflate.xml mod_dir.xml mod_disk_cache.xml + mod_dumpio.xml mod_echo.xml mod_env.xml mod_example.xml diff --git a/docs/manual/mod/allmodules.xml.ja b/docs/manual/mod/allmodules.xml.ja index 8ddccfbebd9..307645edcf5 100644 --- a/docs/manual/mod/allmodules.xml.ja +++ b/docs/manual/mod/allmodules.xml.ja @@ -22,6 +22,7 @@ mod_deflate.xml.ja mod_dir.xml.ja mod_disk_cache.xml + mod_dumpio.xml mod_echo.xml.ja mod_env.xml.ja mod_example.xml diff --git a/docs/manual/mod/allmodules.xml.ko b/docs/manual/mod/allmodules.xml.ko index 2fb79a82858..4ea6751ea47 100644 --- a/docs/manual/mod/allmodules.xml.ko +++ b/docs/manual/mod/allmodules.xml.ko @@ -22,6 +22,7 @@ mod_deflate.xml.ko mod_dir.xml.ko mod_disk_cache.xml.ko + mod_dumpio.xml mod_echo.xml.ko mod_env.xml.ko mod_example.xml.ko diff --git a/docs/manual/mod/allmodules.xml.ru b/docs/manual/mod/allmodules.xml.ru index 02d97030799..db6f18bd6e6 100644 --- a/docs/manual/mod/allmodules.xml.ru +++ b/docs/manual/mod/allmodules.xml.ru @@ -22,6 +22,7 @@ mod_deflate.xml mod_dir.xml mod_disk_cache.xml + mod_dumpio.xml mod_echo.xml mod_env.xml mod_example.xml diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 7bed41942f1..c895cf6891a 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -209,8 +209,8 @@ available
top

AddDefaultCharset Directive

- + @@ -218,21 +218,39 @@ response without an explicit character set
Description:Default character set to be added for a -response without an explicit character set
Description:Default charset parameter to be added when a response +content-type is "text/plain" or "text/html"
Syntax:AddDefaultCharset On|Off|charset
Default:AddDefaultCharset Off
Context:server config, virtual host, directory, .htaccess
Status:Core
Module:core
-

This directive specifies the name of the character set that - will be added to any response that does not have any parameter on - the content type in the HTTP headers. This will override any - character set specified in the body of the document via a - META tag. A setting of AddDefaultCharset - Off disables this - functionality. AddDefaultCharset On enables - Apache's internal default charset of iso-8859-1 as - required by the directive. You can also specify an alternate - charset to be used. For example:

+

This directive specifies a default value for the media type + charset parameter (the name of a character encoding) to be added + to a response if and only if the response's content-type is either + "text/plain" or "text/html". This should override any charset + specified in the body of the document via a META tag, + though the exact behavior is often dependent on the user's client + configuration. A setting of AddDefaultCharset Off + disables this functionality. AddDefaultCharset On enables + a default charset of iso-8859-1. Any other value is assumed + to be the charset to be used, which should be one of the + IANA registered + charset values for use in MIME media types. + For example:

AddDefaultCharset utf-8

+

AddDefaultCharset should only be used when all + of the text resources to which it applies are known to be in that + character encoding and it is too inconvenient to label their charset + individually. One such example is to add the charset parameter + to resources containing generated content, such as legacy CGI + scripts, that might be vulnerable to cross-site scripting attacks + due to user-provided data being included in the output. Note, however, + that a better solution is to just fix (or delete) those scripts, since + setting a default charset does not protect users that have enabled + the "auto-detect character encoding" feature on their browser.

+ +

See also

+
top

AddOutputFilterByType Directive

diff --git a/docs/manual/mod/core.xml.de b/docs/manual/mod/core.xml.de index c0ed7d7351e..07156abb035 100644 --- a/docs/manual/mod/core.xml.de +++ b/docs/manual/mod/core.xml.de @@ -1,7 +1,7 @@ - + + +mod_dumpio - Apache HTTP Server + + + + + + +
<-
+ +
+

Apache Module mod_dumpio

+
+

Available Languages:  en 

+
+ + + +
Description:Dumps all I/O to error log as desired.
Status:Experimental
Module Identifier:dumpio_module
Source File:mod_dumpio.c
+

Summary

+ +

mod_dumpio allows for the logging of + all input received by Apache and/or all output sent by + Apache to be logged (dumped) to the error.log file. +

+ +

The data logging is done right after SSL decoding (for + input) and right before SSL encoding (for output). As can + be expected, this can produce extreme volumes of data, + and should only be used when debugging problems.

+
+

Directives

+ +

Topics

+
+
top
+
+

Enabling dumpio Support

+ + +

To enable the module, it should be compiled and + loaded in to your running Apache configuration. Logging + can then be enabled or disabled via the below directives.

+
+
top
+

DumpIOInput Directive

+ + + + + + + + +
Description:Dump all input data to the error log
Syntax:DumpIOInput On|Off
Default:DumpIOInput Off
Context:server config
Status:Experimental
Module:mod_dumpio
Compatibility:DumpIOInput is only available in Apache 2.0.53 and +later.
+

Enable dumping of all input.

+ +

Example

+ DumpIOInput On +

+ +
+
top
+

DumpIOOutput Directive

+ + + + + + + + +
Description:Dump all output data to the error log
Syntax:DumpIOOutput On|Off
Default:DumpIOOutput Off
Context:server config
Status:Experimental
Module:mod_dumpio
Compatibility:DumpIOOutput is only available in Apache 2.0.53 and +later.
+

Enable dumping of all output.

+ +

Example

+ DumpIOOutput On +

+ +
+
+
+

Available Languages:  en 

+
+ + diff --git a/docs/manual/mod/mod_mime.html.en b/docs/manual/mod/mod_mime.html.en index 695a980bc85..b5beaffe19c 100644 --- a/docs/manual/mod/mod_mime.html.en +++ b/docs/manual/mod/mod_mime.html.en @@ -239,7 +239,8 @@ charset

The AddCharset directive maps the given filename extensions to the specified content charset. charset - is the MIME charset parameter of filenames containing + is the MIME + charset parameter of filenames containing extension. This mapping is added to any already in force, overriding any mappings that already exist for the same extension.

diff --git a/docs/manual/mod/mod_mime.xml.ja b/docs/manual/mod/mod_mime.xml.ja index 39199663127..efeee6e671c 100644 --- a/docs/manual/mod/mod_mime.xml.ja +++ b/docs/manual/mod/mod_mime.xml.ja @@ -1,7 +1,7 @@ - +