WikiImport no longer returns a WikiError since the rewrite to use XmlReader
[mediawiki.git] / maintenance / language / StatOutputs.php
blobb8e283025d5c3f5d45d5a87cf3bee91d994bb885
1 <?php
2 if ( !defined( 'MEDIAWIKI' ) ) die();
3 /**
4 * Statistic output classes.
6 * @file
7 * @ingroup MaintenanceLanguage
8 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
9 * @author Ashar Voultoiz <hashar at free dot fr>
12 /** A general output object. Need to be overriden */
13 class statsOutput {
14 function formatPercent( $subset, $total, $revert = false, $accuracy = 2 ) {
15 return @sprintf( '%.' . $accuracy . 'f%%', 100 * $subset / $total );
18 # Override the following methods
19 function heading() {
21 function footer() {
23 function blockstart() {
25 function blockend() {
27 function element( $in, $heading = false ) {
31 /** Outputs WikiText */
32 class wikiStatsOutput extends statsOutput {
33 function heading() {
34 $version = SpecialVersion::getVersion( 'nodb' );
35 echo "'''Statistics are based on:''' <code>" . $version . "</code>\n\n";
36 echo "'''Note:''' These statistics can be generated by running <code>php maintenance/language/transstat.php</code>.\n\n";
37 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";
38 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";
40 function footer() {
41 echo "|}\n";
43 function blockstart() {
44 echo "|-\n";
46 function blockend() {
47 echo '';
49 function element( $in, $heading = false ) {
50 echo ( $heading ? '!' : '|' ) . "$in\n";
52 function formatPercent( $subset, $total, $revert = false, $accuracy = 2 ) {
53 $v = @round( 255 * $subset / $total );
54 if ( $revert ) {
55 # Weigh reverse with factor 20 so coloring takes effect more quickly as
56 # this option is used solely for reporting 'bad' percentages.
57 $v = $v * 20;
58 if ( $v > 255 ) $v = 255;
59 $v = 255 - $v;
61 if ( $v < 128 ) {
62 # Red to Yellow
63 $red = 'FF';
64 $green = sprintf( '%02X', 2 * $v );
65 } else {
66 # Yellow to Green
67 $red = sprintf( '%02X', 2 * ( 255 - $v ) );
68 $green = 'FF';
70 $blue = '00';
71 $color = $red . $green . $blue;
73 $percent = parent::formatPercent( $subset, $total, $revert, $accuracy );
74 return 'bgcolor="#' . $color . '"|' . $percent;
78 /** Output text. To be used on a terminal for example. */
79 class textStatsOutput extends statsOutput {
80 function element( $in, $heading = false ) {
81 echo $in . "\t";
83 function blockend() {
84 echo "\n";
88 /** csv output. Some people love excel */
89 class csvStatsOutput extends statsOutput {
90 function element( $in, $heading = false ) {
91 echo $in . ";";
93 function blockend() {
94 echo "\n";