From: Jim Jagielski Date: Sat, 5 Feb 2000 00:33:18 +0000 (+0000) Subject: Try to reduce confusion over multiple and possible "conflicting" X-Git-Tag: 1.3.12~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af4ec5a2315f569d53cb00de41fb1de3d481d918;p=apache Try to reduce confusion over multiple and possible "conflicting" versions of the term "default" by changing AddDefaultCharset to be of the mode Off | On | charset PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84569 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 4a5434d378..749e7092c3 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -166,13 +166,13 @@ AllowOverride None

AddDefaultCharset directive

Syntax: -AddDefaultCharset None / Default / charset
+AddDefaultCharset Off / On / charset
Context: all
Status: core
Default: -AddDefaultCharset None
+AddDefaultCharset Off
Compatibility: AddDefaultCharset is only available in Apache 1.3.12 and later

@@ -180,9 +180,11 @@ 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 None disables this functionality. -AddDefaultCharset Default is the exact same as -AddDefaultCharsetName iso-8859-1. +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; +e.g. AddDefaultCharset utf-8.


AddModule directive