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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<?php
if (!defined('MEDIAWIKI')) die();
/**
* Statistic output classes.
*
* @file
* @ingroup MaintenanceLanguage
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
* @author Ashar Voultoiz <thoane@altern.org>
*/
/** A general output object. Need to be overriden */
class statsOutput {
function formatPercent( $subset, $total, $revert = false, $accuracy = 2 ) {
return @sprintf( '%.' . $accuracy . 'f%%', 100 * $subset / $total );
}
# Override the following methods
function heading() {
}
function footer() {
}
function blockstart() {
}
function blockend() {
}
function element( $in, $heading = false ) {
}
}
/** Outputs WikiText */
class wikiStatsOutput extends statsOutput {
function heading() {
global $IP;
$version = SpecialVersion::getVersion( $IP );
echo "'''Statistics are based on:''' <code>" . $version . "</code>\n\n";
echo "'''Note:''' These statistics can be generated by running <code>php maintenance/language/transstat.php</code>.\n\n";
echo "For additional information on specific languages (the message names, the actual problems, etc.), run <code>php maintenance/language/checkLanguage.php --lang=foo</code>.\n\n";
echo '{| class="sortable wikitable" border="2" cellpadding="4" cellspacing="0" style="background-color: #F9F9F9; border: 1px #AAAAAA solid; border-collapse: collapse; clear:both;" width="100%"'."\n";
}
function footer() {
echo "|}\n";
}
function blockstart() {
echo "|-\n";
}
function blockend() {
echo '';
}
function element( $in, $heading = false ) {
echo ($heading ? '!' : '|') . "$in\n";
}
function formatPercent( $subset, $total, $revert = false, $accuracy = 2 ) {
$v = @round(255 * $subset / $total);
if ( $revert ) {
$v = 255 - $v;
}
if ( $v < 128 ) {
# Red to Yellow
$red = 'FF';
$green = sprintf( '%02X', 2 * $v );
} else {
# Yellow to Green
$red = sprintf('%02X', 2 * ( 255 - $v ) );
$green = 'FF';
}
$blue = '00';
$color = $red . $green . $blue;
$percent = statsOutput::formatPercent( $subset, $total, $revert, $accuracy );
return 'bgcolor="#'. $color .'"|'. $percent;
}
}
/** Outputs WikiText and appends category and text only used for Meta-Wiki */
class metawikiStatsOutput extends wikiStatsOutput {
function heading() {
echo "See [[MediaWiki localisation]] to learn how you can help translating MediaWiki.\n\n";
parent::heading();
}
function footer() {
parent::footer();
echo "\n[[Category:Localisation|Statistics]]\n";
}
}
/** Output text. To be used on a terminal for example. */
class textStatsOutput extends statsOutput {
function element( $in, $heading = false ) {
echo $in."\t";
}
function blockend() {
echo "\n";
}
}
/** csv output. Some people love excel */
class csvStatsOutput extends statsOutput {
function element( $in, $heading = false ) {
echo $in . ";";
}
function blockend() {
echo "\n";
}
}
|