From f65ed749c31fe04a92af10ee9d2a94d5c4e84de5 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Sat, 10 Feb 2001 23:32:21 +0000 Subject: [PATCH] Remove SetFilter from the mod_mime docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88071 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_mime.html | 79 ++++++----------------------------- 1 file changed, 13 insertions(+), 66 deletions(-) diff --git a/docs/manual/mod/mod_mime.html b/docs/manual/mod/mod_mime.html index da766cdddf..341c8bd4d4 100644 --- a/docs/manual/mod/mod_mime.html +++ b/docs/manual/mod/mod_mime.html @@ -44,17 +44,19 @@ which determines how the document will be processed within the server.

-The directives AddCharset, -AddEncoding, AddHandler, -SetFilter, AddLanguage -and AddType are all used to map file extensions onto -the meta-information for that file. Respectively they set the character set, -content-encoding, handler, content-language, and MIME-type (content-type) of -documents. The directive TypesConfig is used to -specify a file which also maps extensions onto MIME types. The directives -ForceType and SetHandler -are used to associated all the files in a given location (e.g., a -particular directory) onto a particular MIME type or handler. +The directives AddCharset, AddEncoding, AddHandler, AddLanguage and AddType +are all used to map file extensions onto the meta-information for that +file. Respectively they set the character set, content-encoding, +handler, content-language, and MIME-type (content-type) of documents. +The directive TypesConfig is used to +specify a file which also maps extensions onto MIME types. The +directives ForceType and SetHandler are used to associated all the files +in a given location (e.g., a particular directory) onto a +particular MIME type or handler.

@@ -67,7 +69,6 @@ copies may still be used by a client or proxy, with the previous headers.

  • AddCharset
  • AddEncoding
  • AddHandler -
  • SetFilter
  • AddLanguage
  • AddType
  • DefaultLanguage @@ -358,60 +359,6 @@ HREF="./mod_negotiation.html">mod_negotiation
    -

    SetFilter directive

    - -Syntax: SetFilter MIME-type filter - [filter] ...
    -Context: server config, virtual host, directory, .htaccess
    -Override: FileInfo
    -Status: Base
    -Module: mod_mime - -

    -The SetFilter directive maps a filter stack to the specified MIME-type. -

    -

    -Example:

    -SetFilter server-parsed INCLUDES CACHE -
    -

    -

    -Then any document with the server-parsed MIME-type will pass through the -INCLUDES and CACHE filters. The filters are added in the same order that -they are specified in the config file. -

    -

    -This can be very powerful when combined with the -AddType directive. This allows you to specify an extension for a -MIME-type and a set of filters for files with those extensions to be passed -through -

    -
    -SetFilter text/html INCLUDES 
    -
    -

    -documents with the extension ".shtml" would be passed through -the INCLUDES filter. -

    -

    - -


    -

    AddType directive