stas        2004/08/17 23:34:58

  Modified:    src/docs/2.0/api/APR BucketAlloc.pod IpSubnet.pod Pool.pod
                        Util.pod
               src/docs/2.0/api/Apache Command.pod
  Log:
  polish
  
  Revision  Changes    Path
  1.3       +2 -0      modperl-docs/src/docs/2.0/api/APR/BucketAlloc.pod
  
  Index: BucketAlloc.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/APR/BucketAlloc.pod,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -u -r1.2 -r1.3
  --- BucketAlloc.pod   22 May 2004 02:03:26 -0000      1.2
  +++ BucketAlloc.pod   18 Aug 2004 06:34:57 -0000      1.3
  @@ -12,6 +12,8 @@
   
   =head1 Description
   
  +C<APR::BucketAlloc> is for bucket allocation.
  +
   At the moment C<APR::BucketAlloc> is a virtual class, which doesn't
   exists as a module/package - so you don't need to load it, nor does it
   contain any callable methods or functions.
  
  
  
  1.6       +1 -1      modperl-docs/src/docs/2.0/api/APR/IpSubnet.pod
  
  Index: IpSubnet.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/APR/IpSubnet.pod,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -u -r1.5 -r1.6
  --- IpSubnet.pod      12 Jul 2004 23:13:22 -0000      1.5
  +++ IpSubnet.pod      18 Aug 2004 06:34:57 -0000      1.6
  @@ -19,7 +19,7 @@
   =head1 Description
   
   C<APR::IpSubnet> object represents a range of IP addresses
  -(IPv4/IPv6). An socket connection can be matched against this range to
  +(IPv4/IPv6). A socket connection can be matched against this range to
   test whether the IP it's coming from is inside or outside of this
   range.
   
  
  
  
  1.7       +8 -7      modperl-docs/src/docs/2.0/api/APR/Pool.pod
  
  Index: Pool.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/APR/Pool.pod,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -u -r1.6 -r1.7
  --- Pool.pod  10 Jul 2004 00:26:55 -0000      1.6
  +++ Pool.pod  18 Aug 2004 06:34:57 -0000      1.7
  @@ -43,13 +43,14 @@
   =head1 Description
   
   C<APR::Pool> provides an access to APR pools, which are used for an
  -easy memory management. Different pools have different life scopes and
  -therefore one doesn't need to free allocated memory explicitly, but
  -instead it's done when the pool's life is getting to an end. For
  -example a request pool is created at the beginning of a request and
  -destroyed at the end of it, and all the memory allocated during the
  -request processing using the request pool is freed at once at the end
  -of the request.
  +easy memory management.
  +
  +Different pools have different life scopes and therefore one doesn't
  +need to free allocated memory explicitly, but instead it's done when
  +the pool's life is getting to an end. For example a request pool is
  +created at the beginning of a request and destroyed at the end of it,
  +and all the memory allocated during the request processing using the
  +request pool is freed at once at the end of the request.
   
   Most of the time you will just pass various pool objects to the
   methods that require them. And you must understand the scoping of the
  
  
  
  1.8       +1 -1      modperl-docs/src/docs/2.0/api/APR/Util.pod
  
  Index: Util.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/APR/Util.pod,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -u -r1.7 -r1.8
  --- Util.pod  12 Jul 2004 23:13:22 -0000      1.7
  +++ Util.pod  18 Aug 2004 06:34:57 -0000      1.8
  @@ -1,6 +1,6 @@
   =head1 NAME
   
  -APR::Util - Perl API for XXX
  +APR::Util - Perl API for Various APR Utilities
   
   
   
  
  
  
  1.8       +19 -3     modperl-docs/src/docs/2.0/api/Apache/Command.pod
  
  Index: Command.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/Apache/Command.pod,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -u -r1.7 -r1.8
  --- Command.pod       13 Aug 2004 05:45:50 -0000      1.7
  +++ Command.pod       18 Aug 2004 06:34:58 -0000      1.8
  @@ -19,20 +19,34 @@
       $cmd = $cmd->next();
     }
   
  +
  +
  +
  +
  +
   =head1 Description
   
  -Each apache module can define a list of configuration commands it offers.
  -This interface gives access to information about these configuration 
commands.
  -Each module contains a chained-list of Apache::Command objects, each 
representing a single directive.
  +Each Apache module can define a list of configuration commands it
  +offers.  This interface gives access to information about these
  +configuration commands.  Each module contains a chained-list of
  +C<Apache::Command> objects, each representing a single directive.
   
   For example, C<PerlRequire> is a command offered by mod_perl.
   
  +
  +
  +
  +
  +
   =head1 API
   
   C<Apache::Command> provides the following functions and/or methods:
   
   
   
  +
  +
  +
   =head2 C<args_how>
   
   What the command expects as arguments
  @@ -147,6 +161,8 @@
   =item since: 1.99_12
   
   =back
  +
  +
   
   
   
  
  
  

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

Reply via email to