From: Joshua Slive Date: Thu, 2 May 2002 17:52:21 +0000 (+0000) Subject: Update the filter documentation to mention AddInput/OutputFilter and X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e1018062c3bbe91cd11f656f681535151a27f6e;p=apache Update the filter documentation to mention AddInput/OutputFilter and DEFLATE. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94907 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/filter.html b/docs/manual/filter.html index 9d176661c9..e73851d2b3 100644 --- a/docs/manual/filter.html +++ b/docs/manual/filter.html @@ -19,6 +19,7 @@ Related Modules

+ mod_defalte
mod_ext_filter
mod_include
@@ -41,27 +42,35 @@ -

A filter is a process which is applied to data that +

A filter is a process that is applied to data that is sent or received by the server. Data sent by clients to the server is processed by input filters while data sent by the server to the client is processed by output filters. Multiple filters can be applied to the data, and the order of the filters can be explicitly specified.

-

Filters are used internally by Apache to perform functions - such as chunking and byte-range request handling. In addition, - modules can provide filters which are selectable using run-time - configuration directives. The set of filters which apply to - data can be manipulated with the SetInputFilter - and SetOutputFilter directives.

+

Filters are used internally by Apache to perform functions such + as chunking and byte-range request handling. In addition, modules + can provide filters that are selectable using run-time + configuration directives. The set of filters that apply to data + can be manipulated with the SetInputFilter, + SetOutputFilter, AddInputFilter, and + AddOutputFilter directives.

-

The only configurable filter currently included with the - Apache distribution is the INCLUDES filter which - is provided by mod_include - to process output for Server Side Includes. There is also an - experimental module called mod_ext_filter which allows +

The following user-selectable filters are currently provided + with the Apache HTTP Server distribution.

+ +
+
INCLUDES
Server-Side Includes processing by mod_include
+
DEFLATE
Compress output before sending it to +the client using mod_deflate
+
+ +

In addition, the module mod_ext_filter allows for external programs to be defined as filters.

+ diff --git a/docs/manual/filter.html.en b/docs/manual/filter.html.en index 9d176661c9..e73851d2b3 100644 --- a/docs/manual/filter.html.en +++ b/docs/manual/filter.html.en @@ -19,6 +19,7 @@ Related Modules

+ mod_defalte
mod_ext_filter
mod_include
@@ -41,27 +42,35 @@ -

A filter is a process which is applied to data that +

A filter is a process that is applied to data that is sent or received by the server. Data sent by clients to the server is processed by input filters while data sent by the server to the client is processed by output filters. Multiple filters can be applied to the data, and the order of the filters can be explicitly specified.

-

Filters are used internally by Apache to perform functions - such as chunking and byte-range request handling. In addition, - modules can provide filters which are selectable using run-time - configuration directives. The set of filters which apply to - data can be manipulated with the SetInputFilter - and SetOutputFilter directives.

+

Filters are used internally by Apache to perform functions such + as chunking and byte-range request handling. In addition, modules + can provide filters that are selectable using run-time + configuration directives. The set of filters that apply to data + can be manipulated with the SetInputFilter, + SetOutputFilter, AddInputFilter, and + AddOutputFilter directives.

-

The only configurable filter currently included with the - Apache distribution is the INCLUDES filter which - is provided by mod_include - to process output for Server Side Includes. There is also an - experimental module called mod_ext_filter which allows +

The following user-selectable filters are currently provided + with the Apache HTTP Server distribution.

+ +
+
INCLUDES
Server-Side Includes processing by mod_include
+
DEFLATE
Compress output before sending it to +the client using mod_deflate
+
+ +

In addition, the module mod_ext_filter allows for external programs to be defined as filters.

+