Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.4.4

Doc Bug #9984 documentation for HTTP_Request class not linked
Submitted: 2007-01-31 09:48 UTC
From: mjs at beebo dot org Assigned: mj
Status: Closed Package: HTTP_Request (version 1.4.0)
PHP Version: Irrelevant OS:
Roadmaps: (Not assigned)    
Subscription  


 [2007-01-31 09:48 UTC] mjs at beebo dot org (Michael Stillwell)
Description: ------------ Hi, there seems to be a problem with the automatically-generated API documentation for HTTP_Request. If you go to: http://pear.php.net/package/HTTP_Request/docs/latest/ there's no link to the documentation for the HTTP_Request or HTTP_Response class itself. That is, I'm expecting a link to http://pear.php.net/package/HTTP_Request/docs/latest/apidoc/HTTP_Request/HTTP_Request.html but it does not appear to be linked from the class tree on the left hand side.

Comments

 [2007-02-23 21:34 UTC] mj (Martin Jansen)
The patch below should fix this issue. Maintainers: I can quickly fix this in CVS myself and would be happy to do so. Just let me know. Index: Request.php =================================================================== RCS file: /repository/pear/HTTP_Request/Request.php,v retrieving revision 1.51 diff -u -r1.51 Request.php --- Request.php 25 Oct 2006 16:23:31 -0000 1.51 +++ Request.php 23 Feb 2007 21:33:00 -0000 @@ -58,6 +58,13 @@ define('HTTP_REQUEST_HTTP_VER_1_0', '1.0', true); define('HTTP_REQUEST_HTTP_VER_1_1', '1.1', true); +/** + * HTTP_Request main class + * + * @package HTTP_Request + * @author Richard Heyes <richard@phpguru.org> + * @version $Revision$ + */ class HTTP_Request { /** @@ -1015,6 +1022,10 @@ /** * Response class to complement the Request class +* +* @author Richard Heyes <richard@phpguru.org> +* @package HTTP_Request +* @version $Revision$ */ class HTTP_Response {
 [2007-02-26 19:16 UTC] mj (Martin Jansen)
This bug has been fixed in CVS. If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET). If this was a problem with the pear.php.net website, the change should be live shortly. Otherwise, the fix will appear in the package's next release. Thank you for the report and for helping us make PEAR better.