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]
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>
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>
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)) {