geoff       2004/01/19 08:57:45

  Modified:    src/docs/2.0/api/Apache RequestUtil.pod ServerUtil.pod
               src/docs/2.0/user/handlers http.pod
  Log:
  Apache::method_register() is now Apache::Server::method_register()
  
  Revision  Changes    Path
  1.8       +0 -29     modperl-docs/src/docs/2.0/api/Apache/RequestUtil.pod
  
  Index: RequestUtil.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/Apache/RequestUtil.pod,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- RequestUtil.pod   14 Jan 2004 23:39:22 -0000      1.7
  +++ RequestUtil.pod   19 Jan 2004 16:57:45 -0000      1.8
  @@ -204,35 +204,6 @@
   
   
   
  -=head2 C<method_register>
  -
  -META: Autogenerated - needs to be reviewed/completed
  -
  -Register a new request method, and return the offset that will be
  -associated with that method.
  -
  -  $ret = $p->method_register($methname);
  -
  -=over 4
  -
  -=item arg1: C<$p> (C<L<APR::Pool|docs::2.0::api::APR::Pool>>)
  -
  -The pool to create registered method numbers from.
  -
  -=item arg2: C<$methname> (string)
  -
  -The name of the new method to register.
  -
  -=item ret: C<$ret> (integer)
  -
  -Ab int value representing an offset into a bitmask.
  -
  -=back
  -
  -
  -
  -
  -
   =head2 C<add_config>
   
   META: Autogenerated - needs to be reviewed/completed
  
  
  
  1.10      +30 -0     modperl-docs/src/docs/2.0/api/Apache/ServerUtil.pod
  
  Index: ServerUtil.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/Apache/ServerUtil.pod,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ServerUtil.pod    15 Jan 2004 20:43:18 -0000      1.9
  +++ ServerUtil.pod    19 Jan 2004 16:57:45 -0000      1.10
  @@ -423,6 +423,36 @@
   
   
   
  +=head2 C<method_register>
  +
  +META: Autogenerated - needs to be reviewed/completed
  +
  +Register a new request method, and return the offset that will be
  +associated with that method.
  +
  +  $ret = $p->method_register($methname);
  +
  +=over 4
  +
  +=item arg1: C<$p> (C<L<APR::Pool|docs::2.0::api::APR::Pool>>)
  +
  +The pool to create registered method numbers from.
  +
  +=item arg2: C<$methname> (string)
  +
  +The name of the new method to register.
  +
  +=item ret: C<$ret> (integer)
  +
  +Ab int value representing an offset into a bitmask.
  +
  +=back
  +
  +
  +
  +
  +
  +
   =head2 C<server>
   
   Get the main server's object
  
  
  
  1.28      +2 -2      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.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- http.pod  12 Jan 2004 08:49:38 -0000      1.27
  +++ http.pod  19 Jan 2004 16:57:45 -0000      1.28
  @@ -378,7 +378,7 @@
     
         return Apache::DECLINED unless $r->method eq METHOD;
     
  -      Apache::method_register($r->pool, METHOD);
  +      Apache::Server::method_register($r->pool, METHOD);
         $r->handler("perl-script");
         $r->push_handlers(PerlResponseHandler => \&send_email_handler);
     
  @@ -441,7 +441,7 @@
   function C<send_email_handler()> to the C<PerlResponseHandler> list of
   handlers:
   
  -      Apache::method_register($r->pool, METHOD);
  +      Apache::Server::method_register($r->pool, METHOD);
         $r->handler("perl-script");
         $r->push_handlers(PerlResponseHandler => \&send_email_handler);
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to