stas        2004/09/13 13:43:33

  Modified:    src/docs/2.0/api/Apache CmdParms.pod
  Log:
  fix order
  
  Revision  Changes    Path
  1.11      +30 -29    modperl-docs/src/docs/2.0/api/Apache/CmdParms.pod
  
  Index: CmdParms.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/Apache/CmdParms.pod,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -u -r1.10 -r1.11
  --- CmdParms.pod      9 Sep 2004 22:39:13 -0000       1.10
  +++ CmdParms.pod      13 Sep 2004 20:43:33 -0000      1.11
  @@ -12,38 +12,38 @@
     
     sub MyDirective {
         my($self, $parms, $args) = @_;
  -      
  +  
         # push config
         $parms->add_config(['ServerTokens off']);
  -      
  +  
         # this command's command object
         $cmd = $parms->cmd;
  -      
  +  
         # check the current command's context
         $error = $parms->check_cmd_context(Apache::NOT_IN_LOCATION);
  -      
  +  
         # this command's context
         $context = $parms->context;
  -      
  +  
         # this command's directive object
         $directive = $parms->directive;
  -      
  +  
         # the extra information passed thru cmd_data in
         # @APACHE_MODULE_COMMANDS
         $info = $parms->info;
  -      
  +  
         # which methods are <Limit>ed ?
         $is_limited = $parms->method_is_limited('GET');
  -      
  +  
         # which allow-override bits are set
         $override = $parms->override;
  -      
  +  
         # the path this command is being invoked in
         $path = $parms->path;
  -      
  +  
         # this command's pool
         $p = $parms->pool;
  -      
  +  
         # this command's configuration time pool
         $p = $parms->temp_pool;
     }
  @@ -94,24 +94,6 @@
   C<L<$s-E<gt>add_config|docs::2.0::api::Apache::ServerUtil/C_add_config_>>,
   C<L<$r-E<gt>add_config|docs::2.0::api::Apache::RequestUtil/C_add_config_>>
   
  -=head2 C<cmd>
  -
  -This module's command information
  -
  -  $cmd = $parms->cmd();
  -
  -=over 4
  -
  -=item obj: C<$parms>
  -( C<L<Apache::CmdParms object|docs::2.0::api::Apache::CmdParms>> )
  -
  -=item ret: C<$cmd>
  -( C<L<Apache::Command object|docs::2.0::api::Apache::Command>> )
  -
  -=item since: 1.99_17
  -
  -=back
  -
   
   
   
  @@ -151,6 +133,25 @@
     }
   
   
  +
  +
  +=head2 C<cmd>
  +
  +This module's command information
  +
  +  $cmd = $parms->cmd();
  +
  +=over 4
  +
  +=item obj: C<$parms>
  +( C<L<Apache::CmdParms object|docs::2.0::api::Apache::CmdParms>> )
  +
  +=item ret: C<$cmd>
  +( C<L<Apache::Command object|docs::2.0::api::Apache::Command>> )
  +
  +=item since: 1.99_17
  +
  +=back
   
   
   
  
  
  

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

Reply via email to