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<XXX>.
-
-The handler's configuration scope is C<XXX>.
+This phase is of type
+C<L<RUN_ALL|docs::2.0::user::handlers::intro/item_RUN_ALL>>.
+The handler's configuration scope is
+C<L<DIR|docs::2.0::user::config::config/item_DIR>>.
+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<L<PerlChildExitHandler|docs::2.0::user::handlers::http/PerlChildExitHandler>>
+and
+C<L<PerlCleanupHandler|docs::2.0::user::handlers::http/PerlCleanupHandler>>
+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<L<RUN_ALL|docs::2.0::user::handlers::intro/item_RUN_ALL>>.
+
+The handler's configuration scope is
+C<L<SRV|docs::2.0::user::config::config/item_SRV>>.
+
+META: examples are needed (for now mod_perl 1.0 docs apply)
=head1 Maintainers
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]