Merge "Suppress section edit links with action=render"
[lhc/web/wiklou.git] / maintenance / language / StatOutputs.php
1 <?php
2 if ( !defined( 'MEDIAWIKI' ) ) {
3 die();
4 }
5 /**
6 * Statistic output classes.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup MaintenanceLanguage
25 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
26 * @author Antoine Musso <hashar at free dot fr>
27 */
28
29 /** A general output object. Need to be overriden */
30 class statsOutput {
31 function formatPercent( $subset, $total, $revert = false, $accuracy = 2 ) {
32 return @sprintf( '%.' . $accuracy . 'f%%', 100 * $subset / $total );
33 }
34
35 # Override the following methods
36 function heading() {
37 }
38
39 function footer() {
40 }
41
42 function blockstart() {
43 }
44
45 function blockend() {
46 }
47
48 function element( $in, $heading = false ) {
49 }
50 }
51
52 /** Outputs WikiText */
53 class wikiStatsOutput extends statsOutput {
54 function heading() {
55 global $wgDummyLanguageCodes;
56 $version = SpecialVersion::getVersion( 'nodb' );
57 echo "'''Statistics are based on:''' <code>" . $version . "</code>\n\n";
58 echo "'''Note:''' These statistics can be generated by running <code>php maintenance/language/transstat.php</code>.\n\n";
59 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";
60 echo 'English (en) is excluded because it is the default localization';
61 if ( is_array( $wgDummyLanguageCodes ) ) {
62 $dummyCodes = array();
63 foreach ( $wgDummyLanguageCodes as $dummyCode => $correctCode ) {
64 $dummyCodes[] = Language::fetchLanguageName( $dummyCode ) . ' (' . $dummyCode . ')';
65 }
66 echo ', as well as the following languages that are not intended for system message translations, usually because they redirect to other language codes: ' . implode( ', ', $dummyCodes );
67 }
68 echo ".\n\n"; # dot to end sentence
69 echo '{| class="sortable wikitable" border="2" style="background-color: #F9F9F9; border: 1px #AAAAAA solid; border-collapse: collapse; clear:both; width:100%;"' . "\n";
70 }
71
72 function footer() {
73 echo "|}\n";
74 }
75
76 function blockstart() {
77 echo "|-\n";
78 }
79
80 function blockend() {
81 echo '';
82 }
83
84 function element( $in, $heading = false ) {
85 echo ( $heading ? '!' : '|' ) . "$in\n";
86 }
87
88 function formatPercent( $subset, $total, $revert = false, $accuracy = 2 ) {
89 $v = @round( 255 * $subset / $total );
90 if ( $revert ) {
91 # Weigh reverse with factor 20 so coloring takes effect more quickly as
92 # this option is used solely for reporting 'bad' percentages.
93 $v = $v * 20;
94 if ( $v > 255 ) {
95 $v = 255;
96 }
97 $v = 255 - $v;
98 }
99 if ( $v < 128 ) {
100 # Red to Yellow
101 $red = 'FF';
102 $green = sprintf( '%02X', 2 * $v );
103 } else {
104 # Yellow to Green
105 $red = sprintf( '%02X', 2 * ( 255 - $v ) );
106 $green = 'FF';
107 }
108 $blue = '00';
109 $color = $red . $green . $blue;
110
111 $percent = parent::formatPercent( $subset, $total, $revert, $accuracy );
112
113 return 'style="background-color:#' . $color . ';"|' . $percent;
114 }
115 }
116
117 /** Output text. To be used on a terminal for example. */
118 class textStatsOutput extends statsOutput {
119 function element( $in, $heading = false ) {
120 echo $in . "\t";
121 }
122
123 function blockend() {
124 echo "\n";
125 }
126 }
127
128 /** csv output. Some people love excel */
129 class csvStatsOutput extends statsOutput {
130 function element( $in, $heading = false ) {
131 echo $in . ";";
132 }
133
134 function blockend() {
135 echo "\n";
136 }
137 }