You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sl...@apache.org on 2001/02/11 06:58:19 UTC

cvs commit: httpd-2.0/docs/manual filter.html handler.html

slive       01/02/10 21:58:19

  Modified:    docs/manual filter.html handler.html
  Log:
  Clean up the filter.html and handler.html files a little.
  
  Revision  Changes    Path
  1.2       +11 -14    httpd-2.0/docs/manual/filter.html
  
  Index: filter.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/filter.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -b -u -r1.1 -r1.2
  --- filter.html	2001/02/10 04:04:11	1.1
  +++ filter.html	2001/02/11 05:58:19	1.2
  @@ -32,30 +32,27 @@
   </td>
   </tr></table>
   
  -
   <p>A <em>filter</em> is a process which is applied to data that is
   sent or received by the server.  Data sent by clients to the server
   is processed by <em>input filters</em> while data sent by the
   server to the client is processed by <em>output filters</em>.
   Multiple filters can be applied to the data, and the order
  -of the filters can be explicitly specified.  In addition,
  -since filters apply to all content, they allow for flexible
  -manipulation of data such as processing the output of 
  -CGI scripts for Server Side Includes.</p>
  +of the filters can be explicitly specified.</p>
   
  -<p>The set of filters which apply to data can be manipulated
  +<p>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 <code>SetInputFilter</code> and <code>SetOutputFilter</code>
   directives.</p>
   
  -<p>The only filter currently included with the Apache distribution
  -is the <code>INCLUDE</code> filter which is provided by 
  -<a href="mod/mod_include.html">mod_include</a> to process output
  -for Server Side Includes.  There is also an experimental module
  -called <a href="mod/mod_ext_filter.html">mod_ext_filter</a>
  -which allows for external programs to be defined as filters.</p>
  -
  +<p>The only configurable filter currently included with the Apache
  +distribution is the <code>INCLUDES</code> filter which is provided by
  +<a href="mod/mod_include.html">mod_include</a> to process output for
  +Server Side Includes.  There is also an experimental module called <a
  +href="mod/mod_ext_filter.html">mod_ext_filter</a> which allows for
  +external programs to be defined as filters.</p>
   
   <!--#include virtual="footer.html" -->
   </BODY>
   </HTML>
  -
  
  
  
  1.22      +0 -4      httpd-2.0/docs/manual/handler.html
  
  Index: handler.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/handler.html,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -d -b -u -r1.21 -r1.22
  --- handler.html	2000/12/02 21:39:02	1.21
  +++ handler.html	2001/02/11 05:58:19	1.22
  @@ -33,7 +33,6 @@
   <A HREF="mod/mod_cgi.html">mod_cgi</A><br>
   <A HREF="mod/mod_imap.html">mod_imap</A><br>
   <A HREF="mod/mod_info.html">mod_info</A><br>
  -<A HREF="mod/mod_include.html">mod_include</A><br>
   <a href="mod/mod_mime.html">mod_mime</a><br>
   <A HREF="mod/mod_negotiation.html">mod_negotiation</A><br>
   <A HREF="mod/mod_status.html">mod_status</A><br>
  @@ -85,9 +84,6 @@
   <LI><STRONG>server-info</STRONG>:
       Get the server's configuration information.
       (<A HREF="mod/mod_info.html">mod_info</A>)
  -<LI><STRONG>server-parsed</STRONG>:
  -    Parse for server-side includes.
  -    (<A HREF="mod/mod_include.html">mod_include</A>)
   <LI><STRONG>server-status</STRONG>:
       Get the server's status report.
       (<A HREF="mod/mod_status.html">mod_status</A>)