diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
commit | 08aa4418c30cfc18ccc69a0f0f9cb9e17be6c196 (patch) | |
tree | 577a29fb579188d16003a209ce2a2e9c5b0aa2bd /maintenance/term | |
parent | cacc939b34e315b85e2d72997811eb6677996cc1 (diff) |
Update to MediaWiki 1.21.1
Diffstat (limited to 'maintenance/term')
-rw-r--r-- | maintenance/term/MWTerm.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/maintenance/term/MWTerm.php b/maintenance/term/MWTerm.php index ca0f95d2..c52f07cc 100644 --- a/maintenance/term/MWTerm.php +++ b/maintenance/term/MWTerm.php @@ -19,12 +19,14 @@ * http://www.gnu.org/copyleft/gpl.html * * @file - * @ingroup Testing + * @ingroup Maintenance Testing * @todo Fixme: Make this more generic */ /** * Terminal that supports ANSI escape sequences. + * + * @ingroup Maintenance Testing */ class AnsiTermColorer { function __construct() { @@ -56,6 +58,8 @@ class AnsiTermColorer { /** * A colour-less terminal + * + * @ingroup Maintenance Testing */ class DummyTermColorer { public function color( $color ) { @@ -66,4 +70,3 @@ class DummyTermColorer { return ''; } } - |