Merge "Remove #bodyContent { width: 100%; }"
[mediawiki.git] / maintenance / term / MWTerm.php
blobc52f07ccdfa26bb89d59947c2e762e6b51c8874a
1 <?php
2 /**
3 * Set of classes to help with test output and such. Right now pretty specific
4 * to the parser tests but could be more useful one day :)
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
21 * @file
22 * @ingroup Maintenance Testing
23 * @todo Fixme: Make this more generic
26 /**
27 * Terminal that supports ANSI escape sequences.
29 * @ingroup Maintenance Testing
31 class AnsiTermColorer {
32 function __construct() {
35 /**
36 * Return ANSI terminal escape code for changing text attribs/color
38 * @param $color String: semicolon-separated list of attribute/color codes
39 * @return String
41 public function color( $color ) {
42 global $wgCommandLineDarkBg;
44 $light = $wgCommandLineDarkBg ? "1;" : "0;";
46 return "\x1b[{$light}{$color}m";
49 /**
50 * Return ANSI terminal escape code for restoring default text attributes
52 * @return String
54 public function reset() {
55 return $this->color( 0 );
59 /**
60 * A colour-less terminal
62 * @ingroup Maintenance Testing
64 class DummyTermColorer {
65 public function color( $color ) {
66 return '';
69 public function reset() {
70 return '';