From: Joshua Slive
Date: Thu, 17 Nov 2005 18:24:09 +0000 (+0000)
Subject: A few markup and spelling fixes.
X-Git-Tag: 2.3.0~2750
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efcaa3cf9b864209564f0617ae1eb0c2dd5c17a6;p=apache
A few markup and spelling fixes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@345298 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/filter.xml b/docs/manual/filter.xml
index b5373a17d3..4d224aad4e 100644
--- a/docs/manual/filter.xml
+++ b/docs/manual/filter.xml
@@ -67,17 +67,20 @@ independent of the traditional request processing phases.
Some examples of filtering in the standard Apache distribution are:
-- mod_includes, implements server-side includes.
-- mod_ssl, implements SSL encryption (https).
-- mod_deflate, implements compression/decompression on the fly.
-- mod_charset_lite, transcodes between different character sets.
-- mod_ext_filter, runs an external program as a filter.
+- mod_include, implements server-side includes.
+- mod_ssl, implements SSL encryption (https).
+- mod_deflate, implements compression/decompression on the fly.
+- mod_charset_lite, transcodes between different character sets.
+- mod_ext_filter, runs an external program as a filter.
-Apache also uses a number of filters internally, to perform
+
Apache also uses a number of filters internally to perform
functions like chunking and byte-range handling.
-A wider range of applications are implemented by third-party
-filter modules. A few of these are:
+A wider range of applications are implemented by third-party filter
+modules available from modules.apache.org and
+elsewhere. A few of these are:
+
- HTML and XML processing and rewriting
- XSLT transforms and XIncludes
@@ -88,6 +91,7 @@ filter modules. A few of these are:
- Text search-and-replace editing
+
Smart Filtering
@@ -108,7 +112,7 @@ used as a provider and inserted dynamically. For example,
an HTML processing filter will only run if the content is
text/html or application/xhtml+xml
A compression filter will only run if the input is a
-compressable type and not already compressed
+compressible type and not already compressed
A charset conversion filter will be inserted if a text
document is not already in the desired charset
@@ -117,11 +121,11 @@ document is not already in the desired charset
Using Filters
There are two ways to use filtering: Simple and Dynamic.
-In general, you should use one or the other: mixing them can
+In general, you should use one or the other; mixing them can
have unexpected consequences (although simple Input filtering
-can be mixed freely with either simple or dynamic Output filtering!
+can be mixed freely with either simple or dynamic Output filtering).
The Simple Way is the only way to configure input filters, and is
-suficient for output filters where you need a static filter chain.
+sufficient for output filters where you need a static filter chain.
Relevant directives are
SetInputFilter,
SetOutputFilter,
@@ -134,10 +138,13 @@ Relevant directives are
of output filters, as discussed in the mod_filter page.
Relevant directives are
FilterChain,
- FilterDeclare,
+ FilterDeclare, and
FilterProvider.
-One further directive AddOutputFilterByType is still supported,
-but may be problematic and is now deprecated. Use dynamic configuration
-instead.
+
+One further directive AddOutputFilterByType is still supported,
+but may be problematic and is now deprecated. Use dynamic
+configuration instead.
+