You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2003/03/04 02:01:25 UTC

cvs commit: modperl-docs/src/docs/2.0/user/compat compat.pod

stas        2003/03/03 17:01:24

  Modified:    src/docs/2.0/user/compat compat.pod
  Log:
  document Apache->push_handlers, Apache->set_handlers and
  Apache->get_handlers
  
  Revision  Changes    Path
  1.50      +21 -1     modperl-docs/src/docs/2.0/user/compat/compat.pod
  
  Index: compat.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/compat/compat.pod,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- compat.pod	24 Feb 2003 02:09:29 -0000	1.49
  +++ compat.pod	4 Mar 2003 01:01:24 -0000	1.50
  @@ -316,7 +316,6 @@
         ...
     </Location>
   
  -
   =head2 C<Apache-E<gt>define>
   
   C<Apache-E<gt>define> has been replaced with
  @@ -326,6 +325,27 @@
   See the
   C<L<Apache::ServerUtil|docs::2.0::api::Apache::ServerUtil>>
   manpage.
  +
  +=head2 C<Apache-E<gt>get_handlers>
  +
  +Avalable via C<Apache::compat>. To get handlers for the server level,
  +mod_perl 2.0 code should use:
  +
  +  Apache->server->get_handlers();
  +
  +=head2 C<Apache-E<gt>push_handlers>
  +
  +Avalable via C<Apache::compat>. To push handlers at the server level,
  +mod_perl 2.0 code should use:
  +
  +  Apache->server->push_handlers();
  +
  +=head2 C<Apache-E<gt>set_handlers>
  +
  +Avalable via C<Apache::compat>. To set handlers at the server level,
  +mod_perl 2.0 code should use:
  +
  +  Apache->server->set_handlers();
   
   =head2 C<Apache::exit()>