From: André Malo Date: Fri, 25 Jul 2003 20:07:29 +0000 (+0000) Subject: remove outdated and more confusing than helping comment. X-Git-Tag: pre_ajp_proxy~1360 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b982623b1d0633f142ae047f649e38c1e659e907;p=apache remove outdated and more confusing than helping comment. no code change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100789 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 4eedd5c1b8..7095b64db9 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -129,39 +129,6 @@ ** +-------------------------------------------------------+ */ - -/* -** 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;