Index: trunk/phase3/maintenance/language/StatOutputs.php |
— | — | @@ -72,18 +72,6 @@ |
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
76 | | -/** Outputs WikiText and appends category and text only used for Meta-Wiki */ |
77 | | -class metawikiStatsOutput extends wikiStatsOutput { |
78 | | - function heading() { |
79 | | - echo "See [[MediaWiki localisation]] to learn how you can help translating MediaWiki.\n\n"; |
80 | | - parent::heading(); |
81 | | - } |
82 | | - function footer() { |
83 | | - parent::footer(); |
84 | | - echo "\n[[Category:Localisation|Statistics]]\n"; |
85 | | - } |
86 | | -} |
87 | | - |
88 | 76 | /** Output text. To be used on a terminal for example. */ |
89 | 77 | class textStatsOutput extends statsOutput { |
90 | 78 | function element( $in, $heading = false ) { |
Index: trunk/phase3/maintenance/language/transstat.php |
— | — | @@ -35,7 +35,6 @@ |
36 | 36 | --output : select an output engine one of: |
37 | 37 | * 'csv' : Comma Separated Values. |
38 | 38 | * 'wiki' : MediaWiki syntax (default). |
39 | | - * 'metawiki' : MediaWiki syntax used for Meta-Wiki. |
40 | 39 | * 'text' : Text with tabs. |
41 | 40 | Example: php maintenance/transstat.php --output=text |
42 | 41 | |
— | — | @@ -50,9 +49,6 @@ |
51 | 50 | case 'wiki': |
52 | 51 | $output = new wikiStatsOutput(); |
53 | 52 | break; |
54 | | - case 'metawiki': |
55 | | - $output = new metawikiStatsOutput(); |
56 | | - break; |
57 | 53 | case 'text': |
58 | 54 | $output = new textStatsOutput(); |
59 | 55 | break; |