stas        2004/09/17 16:46:48

  Modified:    src/docs/2.0/api Apache.pod
  Log:
  complete the manpage
  
  Revision  Changes    Path
  1.10      +24 -7     modperl-docs/src/docs/2.0/api/Apache.pod
  
  Index: Apache.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/Apache.pod,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -u -r1.9 -r1.10
  --- Apache.pod        25 Aug 2004 21:51:27 -0000      1.9
  +++ Apache.pod        17 Sep 2004 23:46:48 -0000      1.10
  @@ -9,18 +9,35 @@
   There is no Apache class per se.
   
   There are several modules that require the I<Apache> class as the
  -first argument to the class methods that they define. For example
  -C<L<Apache::ServerUtil|docs::2.0::api::Apache::ServerUtil>> defines a
  -class method
  -C<L<Apache-E<gt>server|docs::2.0::api::Apache::ServerUtil/C_server_>>:
  -
  -  use Apache::ServerUtil;
  -  my $server = Apache->server;
  +first argument to the class methods that they define.
   
   To use these functions and methods you need to load the module that
   defines them. If you aren't sure which module contains the symbol you
   are after, use the helper module
   C<L<ModPerl::MethodLookup|docs::2.0::api::ModPerl::MethodLookup>>.
  +
  +And here are the methods:
  +
  +=head2 C<server>
  +
  +C<L<Apache::ServerUtil|docs::2.0::api::Apache::ServerUtil>> defines a
  +class method
  +C<L<Apache-E<gt>server|docs::2.0::api::Apache::ServerUtil/C_server_>>:
  +
  +  use Apache::ServerUtil ();
  +  my $s = Apache->server;
  +
  +=head2 C<request>
  +
  +C<L<Apache::RequestUtil|docs::2.0::api::Apache::RequestUtil>> defines
  +a class method
  +C<L<Apache-E<gt>request|docs::2.0::api::Apache::RequestUtil/C_request_>>:
  +
  +  use Apache::RequestUtil ();
  +  my $r = Apache->request;
  +
  +
  +
   
   
   
  
  
  

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

Reply via email to