Return-Path: Delivered-To: apmail-perl-docs-cvs-archive@perl.apache.org Received: (qmail 46758 invoked by uid 500); 18 Feb 2003 04:29:44 -0000 Mailing-List: contact docs-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk Reply-To: docs-dev@perl.apache.org List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list docs-cvs@perl.apache.org Received: (qmail 46725 invoked by uid 500); 18 Feb 2003 04:29:43 -0000 Delivered-To: apmail-modperl-docs-cvs@apache.org Date: 18 Feb 2003 04:29:41 -0000 Message-ID: <20030218042941.47188.qmail@icarus.apache.org> From: stas@apache.org To: modperl-docs-cvs@apache.org Subject: cvs commit: modperl-docs/src/docs/2.0/user/handlers http.pod intro.pod server.pod X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N stas 2003/02/17 20:29:41 Modified: src/docs/2.0/user/config config.pod src/docs/2.0/user/handlers http.pod intro.pod server.pod Log: PerlCleanupHandler and PerlChildExitHandler are now available Revision Changes Path 1.36 +1 -0 modperl-docs/src/docs/2.0/user/config/config.pod Index: config.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/config/config.pod,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- config.pod 3 Feb 2003 03:22:09 -0000 1.35 +++ config.pod 18 Feb 2003 04:29:41 -0000 1.36 @@ -861,6 +861,7 @@ PerlOpenLogsHandler ITERATE SRV PerlPostConfigHandler ITERATE SRV PerlChildInitHandler ITERATE SRV + PerlChildExitHandler ITERATE SRV PerlPreConnectionHandler ITERATE SRV PerlProcessConnectionHandler ITERATE SRV 1.13 +7 -4 modperl-docs/src/docs/2.0/user/handlers/http.pod Index: http.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/handlers/http.pod,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- http.pod 29 Jan 2003 07:13:03 -0000 1.12 +++ http.pod 18 Feb 2003 04:29:41 -0000 1.13 @@ -1182,13 +1182,16 @@ =head2 PerlCleanupHandler -META: not implemented yet +The cleanup stage is used to execute some code when the request has +been served. -This phase is of type C. - -The handler's configuration scope is C. +This phase is of type +C>. +The handler's configuration scope is +C>. +META: examples are needed (for now mod_perl 1.0 docs apply) =head1 Extending HTTP Protocol 1.6 +9 -2 modperl-docs/src/docs/2.0/user/handlers/intro.pod Index: intro.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/handlers/intro.pod,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- intro.pod 24 Nov 2002 10:54:06 -0000 1.5 +++ intro.pod 18 Feb 2003 04:29:41 -0000 1.6 @@ -236,7 +236,7 @@ PerlOpenLogsHandler RUN_ALL PerlPostConfigHandler RUN_ALL PerlChildInitHandler VOID - PerlChildExitHandler XXX + PerlChildExitHandler RUN_ALL PerlPreConnectionHandler RUN_ALL PerlProcessConnectionHandler RUN_FIRST @@ -252,10 +252,17 @@ PerlFixupHandler RUN_ALL PerlResponseHandler RUN_FIRST PerlLogHandler RUN_ALL - PerlCleanupHandler XXX + PerlCleanupHandler RUN_ALL PerlInputFilterHandler VOID PerlOutputFilterHandler VOID + +Note: +C> +and +C> +are not real Apache hooks, but to mod_perl users they behave as all +other hooks. And here is the description of the possible types: 1.4 +10 -1 modperl-docs/src/docs/2.0/user/handlers/server.pod Index: server.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/handlers/server.pod,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- server.pod 11 Jan 2003 05:43:40 -0000 1.3 +++ server.pod 18 Feb 2003 04:29:41 -0000 1.4 @@ -278,7 +278,16 @@ =head2 PerlChildExitHandler -META: not implemented yet +The child_exit stage is used to execute some code just before the +child process (not threads!) is killed. + +This phase is of type +C>. + +The handler's configuration scope is +C>. + +META: examples are needed (for now mod_perl 1.0 docs apply) =head1 Maintainers --------------------------------------------------------------------- To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org For additional commands, e-mail: docs-cvs-help@perl.apache.org