fetchLanguageNames: fallback to default instead of false
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.js
index c0e2fdd..4f345ab 100644 (file)
@@ -1,9 +1,11 @@
+/*jslint browser: true, continue: true, white: true, forin: true*/
+/*global jQuery*/
 /*
  * Core MediaWiki JavaScript Library
  */
 
 var mw = ( function ( $, undefined ) {
-"use strict";
+       "use strict";
 
        /* Private Members */
 
@@ -49,7 +51,9 @@ var mw = ( function ( $, undefined ) {
                                        results[selection[i]] = this.get( selection[i], fallback );
                                }
                                return results;
-                       } else if ( typeof selection === 'string' ) {
+                       }
+
+                       if ( typeof selection === 'string' ) {
                                if ( this.values[selection] === undefined ) {
                                        if ( fallback !== undefined ) {
                                                return fallback;
@@ -58,11 +62,13 @@ var mw = ( function ( $, undefined ) {
                                }
                                return this.values[selection];
                        }
+
                        if ( selection === undefined ) {
                                return this.values;
-                       } else {
-                               return null; // invalid selection key
                        }
+
+                       // invalid selection key
+                       return null;
                },
 
                /**
@@ -80,7 +86,8 @@ var mw = ( function ( $, undefined ) {
                                        this.values[s] = selection[s];
                                }
                                return true;
-                       } else if ( typeof selection === 'string' && value !== undefined ) {
+                       }
+                       if ( typeof selection === 'string' && value !== undefined ) {
                                this.values[selection] = value;
                                return true;
                        }
@@ -103,9 +110,8 @@ var mw = ( function ( $, undefined ) {
                                        }
                                }
                                return true;
-                       } else {
-                               return this.values[selection] !== undefined;
                        }
+                       return this.values[selection] !== undefined;
                }
        };
 
@@ -132,7 +138,7 @@ var mw = ( function ( $, undefined ) {
                /**
                 * Simple message parser, does $N replacement and nothing else.
                 * This may be overridden to provide a more complex message parser.
-                * 
+                *
                 * This function will not be called for nonexistent messages.
                 */
                parser: function() {
@@ -142,7 +148,7 @@ var mw = ( function ( $, undefined ) {
                                return parameters[index] !== undefined ? parameters[index] : '$' + match;
                        } );
                },
-               
+
                /**
                 * Appends (does not replace) parameters for replacement to the .parameters property.
                 *
@@ -186,7 +192,7 @@ var mw = ( function ( $, undefined ) {
                                text = this.parser();
                                text = mw.html.escape( text );
                        }
-                       
+
                        if ( this.format === 'parse' ) {
                                text = this.parser();
                        }
@@ -242,7 +248,7 @@ var mw = ( function ( $, undefined ) {
                 * emulates console.log in console-less environments.
                 */
                log: function() { },
-       
+
                /**
                 * @var constructor Make the Map constructor publicly available.
                 */
@@ -252,7 +258,7 @@ var mw = ( function ( $, undefined ) {
                 * @var constructor Make the Message constructor publicly available.
                 */
                Message: Message,
-       
+
                /**
                 * List of configuration values
                 *
@@ -261,25 +267,25 @@ var mw = ( function ( $, undefined ) {
                 * in the global window object.
                 */
                config: null,
-       
+
                /**
                 * @var object
                 *
                 * Empty object that plugins can be installed in.
                 */
                libs: {},
-       
+
                /* Extension points */
-       
+
                legacy: {},
-       
+
                /**
                 * Localization system
                 */
                messages: new Map(),
-       
+
                /* Public Methods */
-       
+
                /**
                 * Gets a message object, similar to wfMessage()
                 *
@@ -299,7 +305,7 @@ var mw = ( function ( $, undefined ) {
                        }
                        return new Message( mw.messages, key, parameters );
                },
-       
+
                /**
                 * Gets a message string, similar to wfMsg()
                 *
@@ -308,17 +314,17 @@ var mw = ( function ( $, undefined ) {
                 *  each a parameter for $N replacement in messages.
                 * @return String.
                 */
-               msg: function ( key, parameters ) {
+               msg: function ( /* key, parameter_1, parameter_2, .. */ ) {
                        return mw.message.apply( mw.message, arguments ).toString();
                },
-       
+
                /**
                 * Client-side module loader which integrates with the MediaWiki ResourceLoader
                 */
                loader: ( function () {
-       
+
                        /* Private Members */
-       
+
                        /**
                         * Mapping of registered modules
                         *
@@ -366,28 +372,29 @@ var mw = ( function ( $, undefined ) {
                                ready = false,
                                // Selector cache for the marker element. Use getMarker() to get/use the marker!
                                $marker = null;
-       
+
                        /* Cache document ready status */
-       
+
                        $(document).ready( function () {
                                ready = true;
                        } );
-       
+
                        /* Private methods */
-       
+
                        function getMarker() {
                                // Cached ?
                                if ( $marker ) {
                                        return $marker;
-                               } else {
-                                       $marker = $( 'meta[name="ResourceLoaderDynamicStyles"]' );
-                                       if ( $marker.length ) {
-                                               return $marker;
-                                       }
-                                       mw.log( 'getMarker> No <meta name="ResourceLoaderDynamicStyles"> found, inserting dynamically.' );
-                                       $marker = $( '<meta>' ).attr( 'name', 'ResourceLoaderDynamicStyles' ).appendTo( 'head' );
+                               }
+
+                               $marker = $( 'meta[name="ResourceLoaderDynamicStyles"]' );
+                               if ( $marker.length ) {
                                        return $marker;
                                }
+                               mw.log( 'getMarker> No <meta name="ResourceLoaderDynamicStyles"> found, inserting dynamically.' );
+                               $marker = $( '<meta>' ).attr( 'name', 'ResourceLoaderDynamicStyles' ).appendTo( 'head' );
+
+                               return $marker;
                        }
 
                        /**
@@ -421,10 +428,11 @@ var mw = ( function ( $, undefined ) {
                                return s;
                        }
 
-                       function addInlineCSS( css, media ) {
+                       function addInlineCSS( css ) {
                                var $style, style, $newStyle;
                                $style = getMarker().prev();
-                               if ( $style.is( 'style' ) && $style.data( 'ResourceLoaderDynamicStyleTag' ) === true ) {
+                               // Disable <style> tag recycling/concatenation because of bug 34669
+                               if ( false && $style.is( 'style' ) && $style.data( 'ResourceLoaderDynamicStyleTag' ) === true ) {
                                        // There's already a dynamic <style> tag present, append to it. This recycling of
                                        // <style> tags is for bug 31676 (can't have more than 32 <style> tags in IE)
                                        style = $style.get( 0 );
@@ -435,7 +443,6 @@ var mw = ( function ( $, undefined ) {
                                        }
                                } else {
                                        $newStyle = $( addStyleTag( css, getMarker() ) )
-                                               .attr( 'media', media )
                                                .data( 'ResourceLoaderDynamicStyleTag', true );
                                }
                        }
@@ -457,7 +464,7 @@ var mw = ( function ( $, undefined ) {
                                }
                                return true;
                        }
-       
+
                        /**
                         * Generates an ISO8601 "basic" string from a UNIX timestamp
                         */
@@ -472,13 +479,13 @@ var mw = ( function ( $, undefined ) {
                                        pad( d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds() ), 'Z'
                                ].join( '' );
                        }
-       
+
                        /**
                         * Recursively resolves dependencies and detects circular references
                         */
                        function recurse( module, resolved, unresolved ) {
                                var n, deps, len;
-       
+
                                if ( registry[module] === undefined ) {
                                        throw new Error( 'Unknown dependency: ' + module );
                                }
@@ -511,7 +518,7 @@ var mw = ( function ( $, undefined ) {
                                }
                                resolved[resolved.length] = module;
                        }
-       
+
                        /**
                         * Gets a list of module names that a module depends on in their proper dependency order
                         *
@@ -521,7 +528,7 @@ var mw = ( function ( $, undefined ) {
                         */
                        function resolve( module ) {
                                var modules, m, deps, n, resolved;
-       
+
                                // Allow calling with an array of module names
                                if ( $.isArray( module ) ) {
                                        modules = [];
@@ -532,14 +539,17 @@ var mw = ( function ( $, undefined ) {
                                                }
                                        }
                                        return modules;
-                               } else if ( typeof module === 'string' ) {
+                               }
+
+                               if ( typeof module === 'string' ) {
                                        resolved = [];
                                        recurse( module, resolved, [] );
                                        return resolved;
                                }
+
                                throw new Error( 'Invalid module argument: ' + module );
                        }
-       
+
                        /**
                         * Narrows a list of module names down to those matching a specific
                         * state (see comment on top of this scope for a list of valid states).
@@ -553,7 +563,7 @@ var mw = ( function ( $, undefined ) {
                         */
                        function filter( states, modules ) {
                                var list, module, s, m;
-       
+
                                // Allow states to be given as a string
                                if ( typeof states === 'string' ) {
                                        states = [states];
@@ -586,7 +596,7 @@ var mw = ( function ( $, undefined ) {
                                }
                                return list;
                        }
-       
+
                        /**
                         * Automatically executes jobs and modules which are pending with satistifed dependencies.
                         *
@@ -594,7 +604,7 @@ var mw = ( function ( $, undefined ) {
                         */
                        function handlePending( module ) {
                                var j, r;
-       
+
                                try {
                                        // Run jobs whose dependencies have just been met
                                        for ( j = 0; j < jobs.length; j += 1 ) {
@@ -602,11 +612,12 @@ var mw = ( function ( $, undefined ) {
                                                        filter( 'ready', jobs[j].dependencies ),
                                                        jobs[j].dependencies ) )
                                                {
-                                                       if ( $.isFunction( jobs[j].ready ) ) {
-                                                               jobs[j].ready();
-                                                       }
+                                                       var callback = jobs[j].ready;
                                                        jobs.splice( j, 1 );
                                                        j -= 1;
+                                                       if ( $.isFunction( callback ) ) {
+                                                               callback();
+                                                       }
                                                }
                                        }
                                        // Execute modules whose dependencies have just been met
@@ -631,9 +642,10 @@ var mw = ( function ( $, undefined ) {
                                                        j -= 1;
                                                }
                                        }
+                                       throw e;
                                }
                        }
-       
+
                        /**
                         * Adds a script tag to the DOM, either using document.write or low-level DOM manipulation,
                         * depending on whether document-ready has occured yet and whether we are in async mode.
@@ -653,7 +665,7 @@ var mw = ( function ( $, undefined ) {
                                        if ( $.isFunction( callback ) ) {
                                                // Attach handlers for all browsers (based on jQuery.ajax)
                                                script.onload = script.onreadystatechange = function() {
-       
+
                                                        if (
                                                                !done
                                                                && (
@@ -661,11 +673,11 @@ var mw = ( function ( $, undefined ) {
                                                                        || /loaded|complete/.test( script.readyState )
                                                                )
                                                        ) {
-       
+
                                                                done = true;
-       
+
                                                                callback();
-       
+
                                                                // Handle memory leak in IE. This seems to fail in
                                                                // IE7 sometimes (Permission Denied error when
                                                                // accessing script.parentNode) so wrap it in
@@ -675,14 +687,14 @@ var mw = ( function ( $, undefined ) {
                                                                        if ( script.parentNode ) {
                                                                                script.parentNode.removeChild( script );
                                                                        }
-               
+
                                                                        // Dereference the script
                                                                        script = undefined;
                                                                } catch ( e ) { }
                                                        }
                                                };
                                        }
-                                       
+
                                        if ( window.opera ) {
                                                // Appending to the <head> blocks rendering completely in Opera,
                                                // so append to the <body> after document ready. This means the
@@ -707,7 +719,7 @@ var mw = ( function ( $, undefined ) {
                                        }
                                }
                        }
-       
+
                        /**
                         * Executes a loaded module, making it ready to use
                         *
@@ -715,7 +727,7 @@ var mw = ( function ( $, undefined ) {
                         */
                        function execute( module, callback ) {
                                var style, media, i, script, markModuleReady, nestedAddScript;
-       
+
                                if ( registry[module] === undefined ) {
                                        throw new Error( 'Module has not been registered yet: ' + module );
                                } else if ( registry[module].state === 'registered' ) {
@@ -725,22 +737,22 @@ var mw = ( function ( $, undefined ) {
                                } else if ( registry[module].state === 'ready' ) {
                                        throw new Error( 'Module has already been loaded: ' + module );
                                }
-       
+
                                // Add styles
                                if ( $.isPlainObject( registry[module].style ) ) {
+                                       // 'media' type ignored, see documentation of mw.loader.implement
                                        for ( media in registry[module].style ) {
                                                style = registry[module].style[media];
                                                if ( $.isArray( style ) ) {
                                                        for ( i = 0; i < style.length; i += 1 ) {
                                                                getMarker().before( mw.html.element( 'link', {
                                                                        'type': 'text/css',
-                                                                       'media': media,
                                                                        'rel': 'stylesheet',
                                                                        'href': style[i]
                                                                } ) );
                                                        }
                                                } else if ( typeof style === 'string' ) {
-                                                       addInlineCSS( style, media );
+                                                       addInlineCSS( style );
                                                }
                                        }
                                }
@@ -766,17 +778,17 @@ var mw = ( function ( $, undefined ) {
                                                        callback();
                                                        return;
                                                }
-       
+
                                                addScript( arr[i], function() {
                                                        nestedAddScript( arr, callback, async, i + 1 );
                                                }, async );
                                        };
-       
+
                                        if ( $.isArray( script ) ) {
                                                registry[module].state = 'loading';
                                                nestedAddScript( script, markModuleReady, registry[module].async, 0 );
                                        } else if ( $.isFunction( script ) ) {
-                                               script();
+                                               script( $ );
                                                markModuleReady();
                                        }
                                } catch ( e ) {
@@ -784,12 +796,12 @@ var mw = ( function ( $, undefined ) {
                                        // and not in debug mode, such as when a symbol that should be global isn't exported
                                        if ( window.console && typeof window.console.log === 'function' ) {
                                                console.log( 'mw.loader::execute> Exception thrown by ' + module + ': ' + e.message );
+                                               console.log( e );
                                        }
                                        registry[module].state = 'error';
-                                       throw e;
                                }
                        }
-       
+
                        /**
                         * Adds a dependencies to the queue with optional callbacks to be run
                         * when the dependencies are ready or fail
@@ -802,7 +814,7 @@ var mw = ( function ( $, undefined ) {
                         */
                        function request( dependencies, ready, error, async ) {
                                var regItemDeps, regItemDepLen, n;
-       
+
                                // Allow calling by single module name
                                if ( typeof dependencies === 'string' ) {
                                        dependencies = [dependencies];
@@ -816,8 +828,9 @@ var mw = ( function ( $, undefined ) {
                                                }
                                        }
                                }
+
                                // Add ready and error callbacks if they were given
-                               if ( arguments.length > 1 ) {
+                               if ( ready !== undefined || error !== undefined ) {
                                        jobs[jobs.length] = {
                                                'dependencies': filter(
                                                        ['registered', 'loading', 'loaded'],
@@ -827,6 +840,7 @@ var mw = ( function ( $, undefined ) {
                                                'error': error
                                        };
                                }
+
                                // Queue up any dependencies that are registered
                                dependencies = filter( ['registered'], dependencies );
                                for ( n = 0; n < dependencies.length; n += 1 ) {
@@ -838,10 +852,11 @@ var mw = ( function ( $, undefined ) {
                                                }
                                        }
                                }
+
                                // Work the queue
                                mw.loader.work();
                        }
-       
+
                        function sortQuery(o) {
                                var sorted = {}, key, a = [];
                                for ( key in o ) {
@@ -855,7 +870,7 @@ var mw = ( function ( $, undefined ) {
                                }
                                return sorted;
                        }
-       
+
                        /**
                         * Converts a module map of the form { foo: [ 'bar', 'baz' ], bar: [ 'baz, 'quux' ] }
                         * to a query string of the form foo.bar,baz|bar.baz,quux
@@ -868,7 +883,7 @@ var mw = ( function ( $, undefined ) {
                                }
                                return arr.join( '|' );
                        }
-       
+
                        /**
                         * Asynchronously append a script tag to the end of the body
                         * that invokes load.php
@@ -887,7 +902,7 @@ var mw = ( function ( $, undefined ) {
                                // Append &* to avoid triggering the IE6 extension check
                                addScript( sourceLoadScript + '?' + $.param( request ) + '&*', null, async );
                        }
-       
+
                        /* Public Methods */
                        return {
                                addStyleTag: addStyleTag,
@@ -900,7 +915,7 @@ var mw = ( function ( $, undefined ) {
                                                source, group, g, i, modules, maxVersion, sourceLoadScript,
                                                currReqBase, currReqBaseLength, moduleMap, l,
                                                lastDotIndex, prefix, suffix, bytesAdded, async;
-               
+
                                        // Build a list of request parameters common to all requests.
                                        reqBase = {
                                                skin: mw.config.get( 'skin' ),
@@ -910,7 +925,7 @@ var mw = ( function ( $, undefined ) {
                                        // Split module batch by source and by group.
                                        splits = {};
                                        maxQueryLength = mw.config.get( 'wgResourceLoaderMaxQueryLength', -1 );
-               
+
                                        // Appends a list of modules from the queue to the batch
                                        for ( q = 0; q < queue.length; q += 1 ) {
                                                // Only request modules which are registered
@@ -927,14 +942,14 @@ var mw = ( function ( $, undefined ) {
                                        if ( !batch.length ) {
                                                return;
                                        }
-               
+
                                        // The queue has been processed into the batch, clear up the queue.
                                        queue = [];
-               
+
                                        // Always order modules alphabetically to help reduce cache
                                        // misses for otherwise identical content.
                                        batch.sort();
-               
+
                                        // Split batch by source and by group.
                                        for ( b = 0; b < batch.length; b += 1 ) {
                                                bSource = registry[batch[b]].source;
@@ -948,24 +963,24 @@ var mw = ( function ( $, undefined ) {
                                                bSourceGroup = splits[bSource][bGroup];
                                                bSourceGroup[bSourceGroup.length] = batch[b];
                                        }
-               
+
                                        // Clear the batch - this MUST happen before we append any
                                        // script elements to the body or it's possible that a script
                                        // will be locally cached, instantly load, and work the batch
                                        // again, all before we've cleared it causing each request to
                                        // include modules which are already loaded.
                                        batch = [];
-               
+
                                        for ( source in splits ) {
-               
+
                                                sourceLoadScript = sources[source].loadScript;
-               
+
                                                for ( group in splits[source] ) {
-               
+
                                                        // Cache access to currently selected list of
                                                        // modules for this group from this source.
                                                        modules = splits[source][group];
-               
+
                                                        // Calculate the highest timestamp
                                                        maxVersion = 0;
                                                        for ( g = 0; g < modules.length; g += 1 ) {
@@ -973,16 +988,16 @@ var mw = ( function ( $, undefined ) {
                                                                        maxVersion = registry[modules[g]].version;
                                                                }
                                                        }
-               
+
                                                        currReqBase = $.extend( { 'version': formatVersionNumber( maxVersion ) }, reqBase );
                                                        currReqBaseLength = $.param( currReqBase ).length;
                                                        async = true;
                                                        // We may need to split up the request to honor the query string length limit,
                                                        // so build it piece by piece.
                                                        l = currReqBaseLength + 9; // '&modules='.length == 9
-               
+
                                                        moduleMap = {}; // { prefix: [ suffixes ] }
-               
+
                                                        for ( i = 0; i < modules.length; i += 1 ) {
                                                                // Determine how many bytes this module would add to the query string
                                                                lastDotIndex = modules[i].lastIndexOf( '.' );
@@ -992,7 +1007,7 @@ var mw = ( function ( $, undefined ) {
                                                                bytesAdded = moduleMap[prefix] !== undefined
                                                                        ? suffix.length + 3 // '%2C'.length == 3
                                                                        : modules[i].length + 3; // '%7C'.length == 3
-               
+
                                                                // If the request would become too long, create a new one,
                                                                // but don't create empty requests
                                                                if ( maxQueryLength > 0 && !$.isEmptyObject( moduleMap ) && l + bytesAdded > maxQueryLength ) {
@@ -1022,7 +1037,7 @@ var mw = ( function ( $, undefined ) {
                                                }
                                        }
                                },
-               
+
                                /**
                                 * Register a source.
                                 *
@@ -1040,16 +1055,16 @@ var mw = ( function ( $, undefined ) {
                                                }
                                                return true;
                                        }
-               
+
                                        if ( sources[id] !== undefined ) {
                                                throw new Error( 'source already registered: ' + id );
                                        }
-               
+
                                        sources[id] = props;
-               
+
                                        return true;
                                },
-               
+
                                /**
                                 * Registers a module, letting the system know about it and its
                                 * properties. Startup modules contain calls to this function.
@@ -1100,7 +1115,7 @@ var mw = ( function ( $, undefined ) {
                                                registry[module].dependencies = dependencies;
                                        }
                                },
-               
+
                                /**
                                 * Implements a module, giving the system a course of action to take
                                 * upon loading. Results of a request for one or more modules contain
@@ -1112,7 +1127,12 @@ var mw = ( function ( $, undefined ) {
                                 * @param script Mixed: Function of module code or String of URL to be used as the src
                                 *  attribute when adding a script element to the body
                                 * @param style Object: Object of CSS strings keyed by media-type or Object of lists of URLs
-                                *  keyed by media-type
+                                *  keyed by media-type. Media-type should be "all" or "", actual types are not supported
+                                *  right now due to the way execute() processes the stylesheets (they are concatenated
+                                *  into a single <style> tag). In the past these weren't concatenated together (which is
+                                *  these are keyed by media-type),  but bug 31676 forces us to. In practice this is not a
+                                *  problem because ResourceLoader only generates stylesheets for media-type all (e.g. print
+                                *  stylesheets are wrapped in @media print {} and concatenated with the others).
                                 * @param msgs Object: List of key/value pairs to be passed through mw.messages.set
                                 */
                                implement: function ( module, script, style, msgs ) {
@@ -1151,7 +1171,7 @@ var mw = ( function ( $, undefined ) {
                                                execute( module );
                                        }
                                },
-               
+
                                /**
                                 * Executes a function as soon as one or more required modules are ready
                                 *
@@ -1190,7 +1210,7 @@ var mw = ( function ( $, undefined ) {
                                                request( dependencies, ready, error );
                                        }
                                },
-               
+
                                /**
                                 * Loads an external script or one or more modules for future use
                                 *
@@ -1201,7 +1221,8 @@ var mw = ( function ( $, undefined ) {
                                 *  "text/javascript"; if no type is provided, text/javascript is assumed.
                                 * @param async {Boolean} (optional) If true, load modules asynchronously
                                 *  even if document ready has not yet occurred. If false (default),
-                                *  block before document ready and load async after
+                                *  block before document ready and load async after. If not set, true will
+                                *  be assumed if loading a URL, and false will be assumed otherwise.
                                 */
                                load: function ( modules, type, async ) {
                                        var filtered, m;
@@ -1214,6 +1235,10 @@ var mw = ( function ( $, undefined ) {
                                        if ( typeof modules === 'string' ) {
                                                // Support adding arbitrary external scripts
                                                if ( /^(https?:)?\/\//.test( modules ) ) {
+                                                       if ( async === undefined ) {
+                                                               // Assume async for bug 34542
+                                                               async = true;
+                                                       }
                                                        if ( type === 'text/css' ) {
                                                                $( 'head' ).append( $( '<link>', {
                                                                        rel: 'stylesheet',
@@ -1221,7 +1246,8 @@ var mw = ( function ( $, undefined ) {
                                                                        href: modules
                                                                } ) );
                                                                return;
-                                                       } else if ( type === 'text/javascript' || type === undefined ) {
+                                                       }
+                                                       if ( type === 'text/javascript' || type === undefined ) {
                                                                addScript( modules, null, async );
                                                                return;
                                                        }
@@ -1250,16 +1276,14 @@ var mw = ( function ( $, undefined ) {
                                                return;
                                        }
                                        // If any modules have errors
-                                       else if ( filter( ['error'], filtered ).length ) {
+                                       if ( filter( ['error'], filtered ).length ) {
                                                return;
                                        }
                                        // Since some modules are not yet ready, queue up a request
-                                       else {
-                                               request( filtered, null, null, async );
-                                               return;
-                                       }
+                                       request( filtered, null, null, async );
+                                       return;
                                },
-               
+
                                /**
                                 * Changes the state of a module
                                 *
@@ -1268,6 +1292,7 @@ var mw = ( function ( $, undefined ) {
                                 */
                                state: function ( module, state ) {
                                        var m;
+
                                        if ( typeof module === 'object' ) {
                                                for ( m in module ) {
                                                        mw.loader.state( m, module[m] );
@@ -1277,9 +1302,16 @@ var mw = ( function ( $, undefined ) {
                                        if ( registry[module] === undefined ) {
                                                mw.loader.register( module );
                                        }
-                                       registry[module].state = state;
+                                       if ( state === 'ready' && registry[module].state !== state) {
+                                               // Make sure pending modules depending on this one get executed if their
+                                               // dependencies are now fulfilled!
+                                               registry[module].state = state;
+                                               handlePending( module );
+                                       } else {
+                                               registry[module].state = state;
+                                       }
                                },
-               
+
                                /**
                                 * Gets the version of a module
                                 *
@@ -1291,14 +1323,14 @@ var mw = ( function ( $, undefined ) {
                                        }
                                        return null;
                                },
-               
+
                                /**
                                 * @deprecated since 1.18 use mw.loader.getVersion() instead
                                 */
                                version: function () {
                                        return mw.loader.getVersion.apply( mw.loader, arguments );
                                },
-               
+
                                /**
                                 * Gets the state of a module
                                 *
@@ -1310,7 +1342,7 @@ var mw = ( function ( $, undefined ) {
                                        }
                                        return null;
                                },
-               
+
                                /**
                                 * Get names of all registered modules.
                                 *
@@ -1321,7 +1353,7 @@ var mw = ( function ( $, undefined ) {
                                                return key;
                                        } );
                                },
-               
+
                                /**
                                 * For backwards-compatibility with Squid-cached pages. Loads mw.user
                                 */
@@ -1330,7 +1362,7 @@ var mw = ( function ( $, undefined ) {
                                }
                        };
                }() ),
-       
+
                /** HTML construction helper functions */
                html: ( function () {
                        function escapeCallback( s ) {
@@ -1356,7 +1388,7 @@ var mw = ( function ( $, undefined ) {
                                escape: function ( s ) {
                                        return s.replace( /['"<>&]/g, escapeCallback );
                                },
-               
+
                                /**
                                 * Wrapper object for raw HTML passed to mw.html.element().
                                 * @constructor
@@ -1364,7 +1396,7 @@ var mw = ( function ( $, undefined ) {
                                Raw: function ( value ) {
                                        this.value = value;
                                },
-               
+
                                /**
                                 * Wrapper object for CDATA element contents passed to mw.html.element()
                                 * @constructor
@@ -1372,7 +1404,7 @@ var mw = ( function ( $, undefined ) {
                                Cdata: function ( value ) {
                                        this.value = value;
                                },
-               
+
                                /**
                                 * Create an HTML element string, with safe escaping.
                                 *
@@ -1394,7 +1426,7 @@ var mw = ( function ( $, undefined ) {
                                 */
                                element: function ( name, attrs, contents ) {
                                        var v, attrName, s = '<' + name;
-               
+
                                        for ( attrName in attrs ) {
                                                v = attrs[attrName];
                                                // Convert name=true, to name=name
@@ -1449,8 +1481,8 @@ var mw = ( function ( $, undefined ) {
                        tokens: new Map()
                }
        };
-       
-})( jQuery );
+
+}( jQuery ) );
 
 // Alias $j to jQuery for backwards compatibility
 window.$j = jQuery;
@@ -1459,7 +1491,7 @@ window.$j = jQuery;
 window.mw = window.mediaWiki = mw;
 
 // Auto-register from pre-loaded startup scripts
-if ( typeof startUp !== 'undefined' && jQuery.isFunction( startUp ) ) {
-       startUp();
-       startUp = undefined;
+if ( jQuery.isFunction( window.startUp ) ) {
+       window.startUp();
+       window.startUp = undefined;
 }