moseley 02/04/25 14:45:19 Modified: src/start/tips handler.pod Log: Add 1.x as the mod_perl version and fix a typo on Apache::Constants::OK constant. Revision Changes Path 1.2 +2 -2 modperl-docs/src/start/tips/handler.pod Index: handler.pod =================================================================== RCS file: /home/cvs/modperl-docs/src/start/tips/handler.pod,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- handler.pod 25 Apr 2002 07:01:02 -0000 1.1 +++ handler.pod 25 Apr 2002 21:45:19 -0000 1.2 @@ -2,7 +2,7 @@ Content Handler Example -=head1 Creating a content handler with mod_perl +=head1 Creating a content handler with mod_perl 1.x Handlers are simply perl subroutines called by the server at various stages of the HTTP request cycle. A content handler is a subroutine that is called by the response phase. Handlers, are @@ -24,7 +24,7 @@ Thanks for visiting $server_name. The local time is $now EOT - return $Apache::Constants::OK; + return Apache::Constants::OK; } 1; # modules must return true
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]