Add @ingroup definitions to these. Created new group HTTP for web-related things...
authorChad Horohoe <demon@users.mediawiki.org>
Wed, 3 Sep 2008 17:30:20 +0000 (17:30 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Wed, 3 Sep 2008 17:30:20 +0000 (17:30 +0000)
includes/HttpFunctions.php
includes/WebRequest.php
includes/WebResponse.php

index 555a79b..8ae4d2d 100644 (file)
@@ -2,6 +2,7 @@
 
 /**
  * Various HTTP related functions
+ * @ingroup HTTP
  */
 class Http {
        static function get( $url, $timeout = 'default' ) {
index 3a845da..46816e4 100644 (file)
@@ -39,7 +39,8 @@ if ( !function_exists( '__autoload' ) ) {
  * not create a second WebRequest object; make a FauxRequest object if
  * you want to pass arbitrary data to some function in place of the web
  * input.
- *
+ * 
+ * @ingroup HTTP
  */
 class WebRequest {
        var $data = array();
@@ -641,6 +642,7 @@ class WebRequest {
 /**
  * WebRequest clone which takes values from a provided array.
  *
+ * @ingroup HTTP
  */
 class FauxRequest extends WebRequest {
        var $wasPosted = false;
index e3a6a1e..aeb2c64 100644 (file)
@@ -2,6 +2,7 @@
 /**
  * Allow programs to request this object from WebRequest::response()
  * and handle all outputting (or lack of outputting) via it.
+ * @ingroup HTTP
  */
 class WebResponse {