Go to the documentation of this file.
28 require_once __DIR__ .
'/Maintenance.php';
37 parent::__construct();
38 $this->mDescription =
"Build JSON messages files from a PHP messages file";
39 $this->
addArg(
'phpfile',
'PHP file defining a $messages array',
true );
40 $this->
addArg(
'jsondir',
'Directory to write JSON files to. ' .
41 'Required unless <phpfile> exists and --shim-only is specified',
false );
42 $this->
addOption(
'langcode',
'Language code; only needed for converting core i18n files',
44 $this->
addOption(
'shim-only',
'Only create or update the backward-compatibility shim' );
48 $phpfile = $this->
getArg( 0 );
49 $jsondir = $this->
getArg( 1 );
52 $this->
shimOnly( $phpfile, $jsondir );
56 if ( $jsondir ===
null ) {
57 $this->
error(
'Argument [jsondir] is required unless --shim-only is specified.' );
61 if ( !is_readable( $phpfile ) ) {
62 $this->
error(
"Error reading $phpfile\n", 1 );
65 $phpfileContents = file_get_contents( $phpfile );
68 $this->
error(
"PHP file $phpfile does not define \$messages array\n", 1 );
71 $extensionStyle =
true;
74 $this->
error(
"PHP file $phpfile does not set language codes, --langcode " .
75 "is required.\n", 1 );
77 $extensionStyle =
false;
78 $langcode = $this->
getOption(
'langcode' );
80 } elseif ( $this->
hasOption(
'langcode' ) ) {
81 $this->
output(
"Warning: --langcode option set but will not be used.\n" );
84 foreach ( $messages
as $langcode => $langmsgs ) {
86 $extensionStyle ?
"\$messages['$langcode'] =" :
'$messages =',
90 $langmsgs = array_merge(
91 array(
'@metadata' =>
array(
'authors' => $authors ) ),
95 $jsonfile =
"$jsondir/$langcode.json";
101 $this->
error(
"FAILED to write $jsonfile", 1 );
103 $this->
output(
"$jsonfile\n" );
107 $shim = $this->
doShim( $jsondir );
108 file_put_contents( $phpfile, $shim );
111 $this->
output(
"All done.\n" );
112 $this->
output(
"Also add \$wgMessagesDirs['YourExtension'] = __DIR__ . '/i18n';\n" );
115 protected function shimOnly( $phpfile, $jsondir ) {
116 if ( file_exists( $phpfile ) ) {
117 if ( !is_readable( $phpfile ) ) {
118 $this->
error(
"Error reading $phpfile\n", 1 );
121 $phpfileContents = file_get_contents( $phpfile );
123 if ( !preg_match(
'!"/([^"$]+)/\$csCode.json";!', $phpfileContents, $m ) ) {
124 $this->
error(
"Cannot recognize $phpfile as a shim.\n", 1 );
127 if ( $jsondir ===
null ) {
131 $this->
output(
"Updating existing shim $phpfile\n" );
132 } elseif ( $jsondir ===
null ) {
133 $this->
error(
"$phpfile does not exist.\n" .
134 "Argument [jsondir] is required in order to create a new shim.\n", 1 );
136 $this->
output(
"Creating new shim $phpfile\n" );
139 $shim = $this->
doShim( $jsondir );
140 file_put_contents( $phpfile, $shim );
141 $this->
output(
"All done.\n" );
159 if ( !function_exists(
'{{FUNC}}' ) ) {
160 function {{FUNC}}(
$cache, $code, &$cachedData ) {
161 $codeSequence = array_merge(
array( $code ), $cachedData[
'fallbackSequence'] );
162 foreach ( $codeSequence
as $csCode ) {
163 $fileName = dirname( __FILE__ ) .
"/{{OUT}}/$csCode.json";
164 if ( is_readable( $fileName ) ) {
166 foreach ( array_keys( $data )
as $key ) {
167 if ( $key ===
'' || $key[0] ===
'@' ) {
168 unset( $data[$key] );
171 $cachedData[
'messages'] = array_merge( $data, $cachedData[
'messages'] );
179 $GLOBALS[
'wgHooks'][
'LocalisationCacheRecache'][] =
'{{FUNC}}';
184 $jsondir = str_replace(
'\\',
'/', $jsondir );
185 $shim = str_replace(
'{{OUT}}', $jsondir, $shim );
186 $shim = str_replace(
'{{FUNC}}',
'wfJsonI18nShim' .
wfRandomString( 16 ), $shim );
197 $needlePos = strpos( $haystack, $needle );
198 if ( $needlePos ===
false ) {
203 $startPos = strrpos( $haystack,
'
216 protected function getAuthorsFromComment( $comment ) {
218 preg_match_all( '/@author (.*?)$/m
', $comment, $matches );
219 return $matches && $matches[1] ? $matches[1] : array();
223 $maintClass = "GenerateJsonI18n";
224 require_once RUN_MAINTENANCE_IF_MAIN;
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
__construct()
Default constructor.
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types as usual *javascript user provided javascript code *css user provided css code *text plain text In PHP
maybeHelp( $force=false)
Maybe show the help.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false)
Add a parameter to the script.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
execute()
Do the actual work.
getAuthorsFromComment( $comment)
Get an array of author names from a documentation comment containing.
Maintenance script to generate JSON i18n files from a PHP i18n file.
findCommentBefore( $needle, $haystack)
Find the documentation comment immediately before a given search string.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
shimOnly( $phpfile, $jsondir)
getOption( $name, $default=null)
Get an option, or return the default.
addArg( $arg, $description, $required=true)
Add some args that are needed.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular param exists.
getArg( $argId=0, $default=null)
Get an argument.
wfRandomString( $length=32)
Get a random string containing a number of pseudo-random hex characters.