]> granicus.if.org Git - apache/commitdiff
rename mod_charset_lite CharsetOption ForceAllMimeTypes to
authorEric Covener <covener@apache.org>
Thu, 21 Feb 2008 18:43:24 +0000 (18:43 +0000)
committerEric Covener <covener@apache.org>
Thu, 21 Feb 2008 18:43:24 +0000 (18:43 +0000)
TranslateAllMimeTypes (only about 18 hours old)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@629915 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
docs/manual/mod/mod_charset_lite.html.en
docs/manual/mod/mod_charset_lite.xml
modules/filters/mod_charset_lite.c

diff --git a/CHANGES b/CHANGES
index 7620228f3d64b055ace33ba297621519478d166f..3a88f7eb201250a4c906a6d76a1b905210692383 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,7 +2,7 @@
 Changes with Apache 2.3.0
 [ When backported to 2.2.x, remove entry from this file ]
 
-  *) mod_charset_lite: Add ForceAllMimeTypes sub-option to  
+  *) mod_charset_lite: Add TranslateAllMimeTypes sub-option to  
      CharsetOptions, allowing the administrator to skip the
      mimetype checking that precedes translation.
      PR 44458 [Eric Covener]
index 6407da62ba232aa24e0d65855e42b8040b72d539..91fb5441f6c3004c6e8eed61c9d3e68376b4ff95 100644 (file)
       should be specified so that <code class="module"><a href="../mod/mod_charset_lite.html">mod_charset_lite</a></code>
       doesn't add its filter.</dd>
 
-      <dt><code>ForceAllMimeTypes | NoForceAllMimeTypes</code></dt>
+      <dt><code>TranslateAllMimeTypes | NoTranslateAllMimeTypes</code></dt>
       <dd>Normally, <code class="module"><a href="../mod/mod_charset_lite.html">mod_charset_lite</a></code> will only perform
       translation on a small subset of possible mimetypes.  When the
-      <code>ForceAllMimeTypes</code> keyord is specified for a given
+      <code>TranslateAllMimeTypes</code> keyord is specified for a given
       configuration section, translation is performed without regard for
       mimetype.</dd>
 
index 4eb4cd53f6f0c18b6a86fb88c0eda2fc70c2d4e0..ecbd412ad234d31e3bfc0ab1234062d17b1caddb 100644 (file)
       should be specified so that <module>mod_charset_lite</module>
       doesn't add its filter.</dd>
 
-      <dt><code>ForceAllMimeTypes | NoForceAllMimeTypes</code></dt>
+      <dt><code>TranslateAllMimeTypes | NoTranslateAllMimeTypes</code></dt>
       <dd>Normally, <module>mod_charset_lite</module> will only perform
       translation on a small subset of possible mimetypes.  When the
-      <code>ForceAllMimeTypes</code> keyord is specified for a given
+      <code>TranslateAllMimeTypes</code> keyord is specified for a given
       configuration section, translation is performed without regard for
       mimetype.</dd>
 
index 2a276e3a625371f19980def0ad056fefc37d1a9a..079876b1d54c17b183ba2f3047adcebe36159576 100644 (file)
@@ -180,10 +180,10 @@ static const char *add_charset_options(cmd_parms *cmd, void *in_dc,
     else if (!strcasecmp(flag, "NoImplicitAdd")) {
         dc->implicit_add = IA_NOIMPADD;
     }
-    if (!strcasecmp(flag, "ForceAllMimeTypes")) {
+    if (!strcasecmp(flag, "TranslateAllMimeTypes")) {
         dc->force_xlate = FX_FORCE;
     }
-    else if (!strcasecmp(flag, "NoForceAllMimeTypes")) {
+    else if (!strcasecmp(flag, "NoTranslateAllMimeTypes")) {
         dc->force_xlate = FX_NOFORCE;
     }
     else if (!strncasecmp(flag, "DebugLevel=", 11)) {