]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - maintenance/language/transstat.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / maintenance / language / transstat.php
index 6a1423a89fc033ad5ef1385fe6eab056e0024a77..720295234cadea4dfda2aaa04636f95c8ce4c233 100644 (file)
@@ -2,17 +2,36 @@
 /**
  * Statistics about the localisation.
  *
- * @addtogroup Maintenance
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
+ * @ingroup MaintenanceLanguage
  *
  * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
- * @author Ashar Voultoiz <thoane@altern.org>
+ * @author Antoine Musso <hashar at free dot fr>
  *
  * Output is posted from time to time on:
- * http://meta.wikimedia.org/wiki/Localization_statistics
+ * https://www.mediawiki.org/wiki/Localisation_statistics
  */
+$optionsWithArgs = [ 'output' ];
+$optionsWithoutArgs = [ 'help' ];
 
-require_once( dirname(__FILE__).'/../commandLine.inc' );
-require_once( 'languages.inc' );
+require_once __DIR__ . '/../commandLine.inc';
+require_once 'languages.inc';
+require_once __DIR__ . '/StatOutputs.php';
 
 if ( isset( $options['help'] ) ) {
        showUsage();
@@ -25,188 +44,109 @@ if ( !isset( $options['output'] ) ) {
 
 /** Print a usage message*/
 function showUsage() {
-       print <<<END
+       print <<<TEXT
 Usage: php transstat.php [--help] [--output=csv|text|wiki]
        --help : this helpful message
        --output : select an output engine one of:
                * 'csv'      : Comma Separated Values.
                * 'wiki'     : MediaWiki syntax (default).
-               * 'metawiki' : MediaWiki syntax used for Meta-Wiki.
                * 'text'     : Text with tabs.
 Example: php maintenance/transstat.php --output=text
 
-END;
-       exit();
-}
-
-/** 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";
-       }
+TEXT;
+       exit( 1 );
 }
 
 # Select an output engine
 switch ( $options['output'] ) {
        case 'wiki':
-               $wgOut = new wikiStatsOutput();
-               break;
-       case 'metawiki':
-               $wgOut = new metawikiStatsOutput();
+               $output = new WikiStatsOutput();
                break;
        case 'text':
-               $wgOut = new textStatsOutput();
+               $output = new TextStatsOutput();
                break;
        case 'csv':
-               $wgOut = new csvStatsOutput();
+               $output = new CsvStatsOutput();
                break;
        default:
                showUsage();
 }
 
 # Languages
-$wgLanguages = new languages();
+$languages = new Languages();
 
 # Header
-$wgOut->heading();
-$wgOut->blockstart();
-$wgOut->element( 'Language', true );
-$wgOut->element( 'Code', true );
-$wgOut->element( 'Translated', true );
-$wgOut->element( '%', true );
-$wgOut->element( 'Obsolete', true );
-$wgOut->element( '%', true );
-$wgOut->element( 'Problematic', true );
-$wgOut->element( '%', true );
-$wgOut->blockend();
-
-$wgGeneralMessages = $wgLanguages->getGeneralMessages();
+$output->heading();
+$output->blockstart();
+$output->element( 'Language', true );
+$output->element( 'Code', true );
+$output->element( 'Fallback', true );
+$output->element( 'Translated', true );
+$output->element( '%', true );
+$output->element( 'Obsolete', true );
+$output->element( '%', true );
+$output->element( 'Problematic', true );
+$output->element( '%', true );
+$output->blockend();
+
+$wgGeneralMessages = $languages->getGeneralMessages();
 $wgRequiredMessagesNumber = count( $wgGeneralMessages['required'] );
 
-foreach ( $wgLanguages->getLanguages() as $code ) {
-       # Don't check English or RTL English
-       if ( $code == 'en' || $code == 'enRTL' ) {
+foreach ( $languages->getLanguages() as $code ) {
+       # Don't check English, RTL English or dummy language codes
+       if ( $code == 'en' || $code == 'enRTL' || ( is_array( $wgDummyLanguageCodes ) &&
+                       isset( $wgDummyLanguageCodes[$code] ) )
+       ) {
                continue;
        }
 
        # Calculate the numbers
-       $language = $wgContLang->getLanguageName( $code );
-       $messages = $wgLanguages->getMessages( $code );
+       $language = Language::fetchLanguageName( $code );
+       $fallback = $languages->getFallback( $code );
+       $messages = $languages->getMessages( $code );
        $messagesNumber = count( $messages['translated'] );
        $requiredMessagesNumber = count( $messages['required'] );
-       $requiredMessagesPercent = $wgOut->formatPercent( $requiredMessagesNumber, $wgRequiredMessagesNumber );
+       $requiredMessagesPercent = $output->formatPercent(
+               $requiredMessagesNumber,
+               $wgRequiredMessagesNumber
+       );
        $obsoleteMessagesNumber = count( $messages['obsolete'] );
-       $obsoleteMessagesPercent = $wgOut->formatPercent( $obsoleteMessagesNumber, $messagesNumber, true );
-       $messagesWithoutVariables = $wgLanguages->getMessagesWithoutVariables( $code );
-       $emptyMessages = $wgLanguages->getEmptyMessages( $code );
-       $messagesWithWhitespace = $wgLanguages->getMessagesWithWhitespace( $code );
-       $nonXHTMLMessages = $wgLanguages->getNonXHTMLMessages( $code );
-       $messagesWithWrongChars = $wgLanguages->getMessagesWithWrongChars( $code );
-       $problematicMessagesNumber = count( array_unique( array_merge( $messagesWithoutVariables, $emptyMessages, $messagesWithWhitespace, $nonXHTMLMessages, $messagesWithWrongChars ) ) );
-       $problematicMessagesPercent = $wgOut->formatPercent( $problematicMessagesNumber, $messagesNumber, true );
+       $obsoleteMessagesPercent = $output->formatPercent(
+               $obsoleteMessagesNumber,
+               $messagesNumber,
+               true
+       );
+       $messagesWithMismatchVariables = $languages->getMessagesWithMismatchVariables( $code );
+       $emptyMessages = $languages->getEmptyMessages( $code );
+       $messagesWithWhitespace = $languages->getMessagesWithWhitespace( $code );
+       $nonXHTMLMessages = $languages->getNonXHTMLMessages( $code );
+       $messagesWithWrongChars = $languages->getMessagesWithWrongChars( $code );
+       $problematicMessagesNumber = count( array_unique( array_merge(
+               $messagesWithMismatchVariables,
+               $emptyMessages,
+               $messagesWithWhitespace,
+               $nonXHTMLMessages,
+               $messagesWithWrongChars
+       ) ) );
+       $problematicMessagesPercent = $output->formatPercent(
+               $problematicMessagesNumber,
+               $messagesNumber,
+               true
+       );
 
        # Output them
-       $wgOut->blockstart();
-       $wgOut->element( "$language" );
-       $wgOut->element( "$code" );
-       $wgOut->element( "$requiredMessagesNumber/$wgRequiredMessagesNumber" );
-       $wgOut->element( $requiredMessagesPercent );
-       $wgOut->element( "$obsoleteMessagesNumber/$messagesNumber" );
-       $wgOut->element( $obsoleteMessagesPercent );
-       $wgOut->element( "$problematicMessagesNumber/$messagesNumber" );
-       $wgOut->element( $problematicMessagesPercent );
-       $wgOut->blockend();
+       $output->blockstart();
+       $output->element( "$language" );
+       $output->element( "$code" );
+       $output->element( "$fallback" );
+       $output->element( "$requiredMessagesNumber/$wgRequiredMessagesNumber" );
+       $output->element( $requiredMessagesPercent );
+       $output->element( "$obsoleteMessagesNumber/$messagesNumber" );
+       $output->element( $obsoleteMessagesPercent );
+       $output->element( "$problematicMessagesNumber/$messagesNumber" );
+       $output->element( $problematicMessagesPercent );
+       $output->blockend();
 }
 
 # Footer
-$wgOut->footer();
-
-
+$output->footer();