stas 2003/01/28 18:47:12 Modified: src/docs/2.0/api config.cfg src/docs/2.0/api/Apache ServerUtil.pod Added: src/docs/2.0/api/Apache RequestUtil.pod Log: a skeleton for the request util api Revision Changes Path 1.14 +1 -0 modperl-docs/src/docs/2.0/api/config.cfg Index: config.cfg =================================================================== RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/config.cfg,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- config.cfg 28 Jan 2003 07:26:29 -0000 1.13 +++ config.cfg 29 Jan 2003 02:47:12 -0000 1.14 @@ -19,6 +19,7 @@ chapters => [qw( Apache/Log.pod Apache/RequestRec.pod + Apache/RequestUtil.pod Apache/ServerUtil.pod Apache/SubProcess.pod Apache/compat.pod 1.2 +6 -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.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ServerUtil.pod 27 Jan 2003 04:05:12 -0000 1.1 +++ ServerUtil.pod 29 Jan 2003 02:47:12 -0000 1.2 @@ -118,6 +118,12 @@ =item * push_handlers() + $s->push_handlers(PerlResponseHandler => \&handler); + $s->push_handlers(PerlResponseHandler => [\&handler, \&handler2]); + + # XXX: not implemented yet + $s->push_handlers(PerlResponseHandler => sub {...}); + =item * add_handlers() =item * get_handlers() 1.1 modperl-docs/src/docs/2.0/api/Apache/RequestUtil.pod Index: RequestUtil.pod =================================================================== =head1 NAME Apache::RequestUtil -- Methods for work with Apache::Request object =head1 SYNOPSIS use Apache::RequestUtil; =head1 DESCRIPTION C<Apache::RequestUtil> provides the Perl API for Apache request object. META: complete =head1 API Function arguments (if any) and return values are shown in the function's synopsis. =head2 FUNCTIONS =over =item * Apache-E<gt>request() =back =head2 METHODS =over =item * new() =item * server_name() =item * server_port() =item * dir_config() =item * get_status_line() =item * is_initial_req() =item * method_register() =item * add_config() =item * location() =item * location_merge() =item * no_cache() =item * pnotes() =item * set_basic_credentials() =item * as_string() =item * push_handlers() $r->push_handlers(PerlResponseHandler => \&handler); $r->push_handlers(PerlResponseHandler => [\&handler, \&handler2]); # XXX: not implemented yet $r->push_handlers(PerlResponseHandler => sub {...}); =item * add_handlers() =item * get_handlers() =back =cut
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]