blob: 36fb8eec090924cb205b250b197df64794448633 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
/**
* @ingroup Testing
*
* Set of classes to help with test output and such. Right now pretty specific
* to the parser tests but could be more useful one day :)
*
* @todo Fixme: Make this more generic
*/
class AnsiTermColorer {
function __construct() {
}
/**
* Return ANSI terminal escape code for changing text attribs/color
*
* @param $color String: semicolon-separated list of attribute/color codes
* @return String
*/
public function color( $color ) {
global $wgCommandLineDarkBg;
$light = $wgCommandLineDarkBg ? "1;" : "0;";
return "\x1b[{$light}{$color}m";
}
/**
* Return ANSI terminal escape code for restoring default text attributes
*
* @return String
*/
public function reset() {
return $this->color( 0 );
}
}
/* A colour-less terminal */
class DummyTermColorer {
public function color( $color ) {
return '';
}
public function reset() {
return '';
}
}
|