geoff 2004/03/23 17:03:25 Modified: src/docs/2.0/api/Apache RequestUtil.pod Log: undo revisions 1.7 and 1.8 Revision Changes Path 1.14 +55 -0 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.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- RequestUtil.pod 16 Mar 2004 01:55:46 -0000 1.13 +++ RequestUtil.pod 24 Mar 2004 01:03:25 -0000 1.14 @@ -174,6 +174,32 @@ +=head2 C<get_status_line> + +META: Autogenerated - needs to be reviewed/completed + +Return the Status-Line for a given status code (excluding the +HTTP-Version field). If an invalid or unknown status code is +passed, "500 Internal Server Error" will be returned. + + $ret = get_status_line($status); + +=over 4 + +=item arg1: C<$status> (integer) + +The HTTP status code + +=item ret: C<$ret> (string) + +The Status-Line + +=back + + + + + =head2 C<is_initial_req> META: Autogenerated - needs to be reviewed/completed @@ -191,6 +217,35 @@ =item ret: C<$ret> (integer) + +=back + + + + + +=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
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]