From 63601400e476c6cf43d985f3e7b9864681695ed4 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Fri, 18 Jan 2013 16:46:04 +0100 Subject: Update to MediaWiki 1.20.2 this update includes: * adjusted Arch Linux skin * updated FluxBBAuthPlugin * patch for https://bugzilla.wikimedia.org/show_bug.cgi?id=44024 --- maintenance/rebuildLocalisationCache.php | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'maintenance/rebuildLocalisationCache.php') diff --git a/maintenance/rebuildLocalisationCache.php b/maintenance/rebuildLocalisationCache.php index 831d808a..83849de6 100644 --- a/maintenance/rebuildLocalisationCache.php +++ b/maintenance/rebuildLocalisationCache.php @@ -25,21 +25,32 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * + * @file * @ingroup Maintenance */ -require_once( dirname( __FILE__ ) . '/Maintenance.php' ); +require_once( __DIR__ . '/Maintenance.php' ); +/** + * Maintenance script to rebuild the localisation cache. + * + * @ingroup Maintenance + */ class RebuildLocalisationCache extends Maintenance { public function __construct() { parent::__construct(); $this->mDescription = "Rebuild the localisation cache"; $this->addOption( 'force', 'Rebuild all files, even ones not out of date' ); $this->addOption( 'threads', 'Fork more than one thread', false, true ); + $this->addOption( 'outdir', 'Override the output directory (normally $wgCacheDirectory)', + false, true ); } public function memoryLimit() { - return '200M'; + if ( $this->hasOption( 'memory-limit' ) ) { + return parent::memoryLimit(); + } + return '1000M'; } public function execute() { @@ -65,9 +76,12 @@ class RebuildLocalisationCache extends Maintenance { if ( $force ) { $conf['forceRecache'] = true; } + if ( $this->hasOption( 'outdir' ) ) { + $conf['storeDirectory'] = $this->getOption( 'outdir' ); + } $lc = new LocalisationCache_BulkLoad( $conf ); - $codes = array_keys( Language::getLanguageNames( true ) ); + $codes = array_keys( Language::fetchLanguageNames( null, 'mwfile' ) ); sort( $codes ); // Initialise and split into chunks @@ -111,7 +125,7 @@ class RebuildLocalisationCache extends Maintenance { /** * Helper function to rebuild list of languages codes. Prints the code * for each language which is rebuilt. - * @param $codes list List of language codes to rebuild. + * @param $codes array List of language codes to rebuild. * @param $lc LocalisationCache Instance of LocalisationCache_BulkLoad (?) * @param $force bool Rebuild up-to-date languages * @return int Number of rebuilt languages -- cgit v1.2.2