]> granicus.if.org Git - apache/commitdiff
remove outdated and more confusing than helping comment.
authorAndré Malo <nd@apache.org>
Fri, 25 Jul 2003 20:07:29 +0000 (20:07 +0000)
committerAndré Malo <nd@apache.org>
Fri, 25 Jul 2003 20:07:29 +0000 (20:07 +0000)
no code change.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100789 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index 4eedd5c1b844b511995bebdd2bc02d15bfe34e98..7095b64db91bf01602d2ab957dfe4bd4a80a6b8f 100644 (file)
 ** +-------------------------------------------------------+
 */
 
-
-/*
-**  Our interface to the Apache server kernel:
-**
-**  o  Runtime logic of a request is as following:
-**       while(request or subrequest)
-**           foreach(stage #0...#9)
-**               foreach(module) (**)
-**                   try to run hook
-**
-**  o  the order of modules at (**) is the inverted order as
-**     given in the "Configuration" file, i.e. the last module
-**     specified is the first one called for each hook!
-**     The core module is always the last!
-**
-**  o  there are two different types of result checking and
-**     continue processing:
-**     for hook #0,#1,#4,#5,#6,#8:
-**         hook run loop stops on first modules which gives
-**         back a result != DECLINED, i.e. it usually returns OK
-**         which says "OK, module has handled this _stage_" and for #1
-**         this have not to mean "Ok, the filename is now valid".
-**     for hook #2,#3,#7,#9:
-**         all hooks are run, independend of result
-**
-**  o  at the last stage, the core module always
-**       - says "HTTP_BAD_REQUEST" if r->filename does not begin with "/"
-**       - prefix URL with document_root or replaced server_root
-**         with document_root and sets r->filename
-**       - always return a "OK" independed if the file really exists
-**         or not!
-*/
-
     /* the module (predeclaration) */
 module AP_MODULE_DECLARE_DATA rewrite_module;