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 --- mw-config/index.php | 8 +++---- mw-config/overrides.php | 63 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+), 4 deletions(-) create mode 100644 mw-config/overrides.php (limited to 'mw-config') diff --git a/mw-config/index.php b/mw-config/index.php index c65be69c..065d1879 100644 --- a/mw-config/index.php +++ b/mw-config/index.php @@ -8,11 +8,11 @@ define( 'MW_CONFIG_CALLBACK', 'Installer::overrideConfig' ); define( 'MEDIAWIKI_INSTALL', true ); -chdir( dirname( dirname( __FILE__ ) ) ); +chdir( dirname( __DIR__ ) ); if ( isset( $_SERVER['MW_COMPILED'] ) ) { - require ( 'phase3/includes/WebStart.php' ); + require ( 'core/includes/WebStart.php' ); } else { - require( dirname( dirname( __FILE__ ) ) . '/includes/WebStart.php' ); + require( dirname( __DIR__ ) . '/includes/WebStart.php' ); } wfInstallerMain(); @@ -20,7 +20,7 @@ wfInstallerMain(); function wfInstallerMain() { global $wgRequest, $wgLang, $wgMetaNamespace, $wgCanonicalNamespaceNames; - $installer = new WebInstaller( $wgRequest ); + $installer = InstallerOverrides::getWebInstaller( $wgRequest ); if ( !$installer->startSession() ) { $installer->finish(); diff --git a/mw-config/overrides.php b/mw-config/overrides.php new file mode 100644 index 00000000..ae982951 --- /dev/null +++ b/mw-config/overrides.php @@ -0,0 +1,63 @@ +values['wgResourceLoaderMaxQueryLength'] = 512; + // add a new setting + $ls = parent::getText(); + return $ls . "\n\$wgUseTex = true;\n"; + } +} +*/ + +/** + * @since 1.20 + */ +class InstallerOverrides { + /** + * Instantiates and returns an instance of LocalSettingsGenerator or its descendant classes + * @param Installer $installer + * @return LocalSettingsGenerator + */ + public static function getLocalSettingsGenerator( Installer $installer ) { + return new LocalSettingsGenerator( $installer ); + } + + /** + * Instantiates and returns an instance of WebInstaller or its descendant classes + * @param WebRequest $request + * @return WebInstaller + */ + public static function getWebInstaller( WebRequest $request ) { + return new WebInstaller( $request ); + } + + /** + * Instantiates and returns an instance of CliInstaller or its descendant classes + * @param string $siteName + * @param string|null $admin + * @param array $options + * @return CliInstaller + */ + public static function getCliInstaller( $siteName, $admin = null, array $options = array() ) { + return new CliInstaller( $siteName, $admin, $options ); + } +} -- cgit v1.2.2