From: Joshua Slive Date: Mon, 27 Aug 2001 14:23:30 +0000 (+0000) Subject: Add information on backwards-compatible handler and magic-mime-types X-Git-Tag: 2.0.25~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e757a2fa344f0e73b10cbc349aff3b896ec1e7d4;p=apache Add information on backwards-compatible handler and magic-mime-types for mod_include. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90727 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_include.html b/docs/manual/mod/mod_include.html index 785131aac5..7f137cf973 100644 --- a/docs/manual/mod/mod_include.html +++ b/docs/manual/mod/mod_include.html @@ -87,6 +87,13 @@ Options is set):

Options +Includes +

For backwards compatibility, the server-parsed handler also activates the INCLUDES filter. +As well, Apache will activate the INCLUDES filter for any document +with mime type text/x-server-parsed-html or +text/x-server-parsed-html3 (and the resulting output will +have the mime type text/html).

+

For more information, see our Tutorial on Server Side Includes.

diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en index 901927f595..3a8c47c248 100644 --- a/docs/manual/upgrading.html.en +++ b/docs/manual/upgrading.html.en @@ -44,22 +44,6 @@ you should select the prefork MPM. Other MPMs will have different directives to control process creation and request processing. -
  • Server-Side Includes provided by mod_include are now implemented using -the new -filter system rather than as a handler. -This provides much more power and flexibility, but requires -the use of the SetOutputFilter -to activate server-parsed content. If you were using -AddHandler server-parsed .shtml, you can get -similar functionality using -
    -<FilesMatch "\.shtml(\..+)?$">
    -  SetOutputFilter INCLUDES
    -</FilesMatch> -
  • - -
  • The CacheNegotiatedDocs directive now takes the argument on or off. Existing instances of CacheNegotiatedDocs should be replaced