stas 02/01/24 06:54:25
Modified: src/docs/1.0/api Apache.pod
Log:
- escape & chars
Revision Changes Path
1.4 +5 -5 modperl-docs/src/docs/1.0/api/Apache.pod
Index: Apache.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/1.0/api/Apache.pod,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Apache.pod 21 Jan 2002 14:33:48 -0000 1.3
+++ Apache.pod 24 Jan 2002 14:54:25 -0000 1.4
@@ -577,20 +577,20 @@
$list = $r->get_handlers( 'PerlHandler' );
-=item $r-E<gt>set_handlers( $hook, [\&handler, ... ] )
+=item $r-E<gt>set_handlers( $hook, [\E<amp>handler, ... ] )
Sets the list if handlers to be called for $hook. $hook is a string
representing the phase to handle. The list of handlers is an anonymous
array of code references to the handlers to install for this request
-phase. The special list [ \&OK ] can be used to disable a particular
-phase.
+phase. The special list C<[ \&OK ]> can be used to disable a
+particular phase.
$r->set_handlers( PerlLogHandler => [ \&myhandler1, \&myhandler2 ] );
$r->set_handlers( PerlAuthenHandler => [ \&OK ] );
-=item $r-E<gt>push_handlers( $hook, \&handler )
+=item $r-E<gt>push_handlers( $hook, \E<amp>handler )
-Pushes a new handler to be called for $hook. $hook is a string
+Pushes a new handler to be called for C<$hook>. C<$hook> is a string
representing the phase to handle. The handler is a reference to a
subroutine to install for this request phase. This handler will be
called before any configured handlers.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]