Index: trunk/phase3/includes/WebRequest.php |
— | — | @@ -39,7 +39,8 @@ |
40 | 40 | * not create a second WebRequest object; make a FauxRequest object if |
41 | 41 | * you want to pass arbitrary data to some function in place of the web |
42 | 42 | * input. |
43 | | - * |
| 43 | + * |
| 44 | + * @ingroup HTTP |
44 | 45 | */ |
45 | 46 | class WebRequest { |
46 | 47 | var $data = array(); |
— | — | @@ -641,6 +642,7 @@ |
642 | 643 | /** |
643 | 644 | * WebRequest clone which takes values from a provided array. |
644 | 645 | * |
| 646 | + * @ingroup HTTP |
645 | 647 | */ |
646 | 648 | class FauxRequest extends WebRequest { |
647 | 649 | var $wasPosted = false; |
Index: trunk/phase3/includes/HttpFunctions.php |
— | — | @@ -2,6 +2,7 @@ |
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Various HTTP related functions |
| 6 | + * @ingroup HTTP |
6 | 7 | */ |
7 | 8 | class Http { |
8 | 9 | static function get( $url, $timeout = 'default' ) { |
Index: trunk/phase3/includes/WebResponse.php |
— | — | @@ -2,6 +2,7 @@ |
3 | 3 | /** |
4 | 4 | * Allow programs to request this object from WebRequest::response() |
5 | 5 | * and handle all outputting (or lack of outputting) via it. |
| 6 | + * @ingroup HTTP |
6 | 7 | */ |
7 | 8 | class WebResponse { |
8 | 9 | |