You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2002/06/19 22:36:39 UTC

cvs commit: httpd-2.0/docs/manual/developer request.html

wrowe       2002/06/19 13:36:39

  Modified:    docs/manual/developer request.html
  Log:
    This moved, so moved.
  
  Revision  Changes    Path
  1.3       +8 -7      httpd-2.0/docs/manual/developer/request.html
  
  Index: request.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/developer/request.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- request.html	22 Sep 2001 19:12:40 -0000	1.2
  +++ request.html	19 Jun 2002 20:36:39 -0000	1.3
  @@ -199,13 +199,6 @@
       always the cleanest mechanism, but occasionally it's the only
       option.</p>
   
  -    <h3>Hook: insert_filter</h3>
  -
  -    <p>Modules that transform the content in some way can insert
  -    their values and override existing filters, such that if the
  -    user configured a more advanced filter out-of-order, then the
  -    module can move it's order as need be.</p>
  -
       <h2>The Handler Phase</h2>
   
       <p>This phase is <strong><em>not</em></strong> part of the
  @@ -214,6 +207,14 @@
       content at all. After the core, or a module calls
       <code>ap_process_request_internal()</code> it then calls
       <code>ap_invoke_handler()</code> to generate the request.</p>
  +
  +    <h3>Hook: insert_filter</h3>
  +
  +    <p>Modules that transform the content in some way can insert
  +    their values and override existing filters, such that if the
  +    user configured a more advanced filter out-of-order, then the
  +    module can move it's order as need be.  There is no result code,
  +    so actions in this hook better be trusted to always succeed.</p>
   
       <h3>Hook: handler</h3>