MediaWiki:Timeless.js: Difference between revisions

From Game Wiki - VortanMU
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 1: Line 1:
/**
$( function () {
* This file is where we decide whether to initialise the modern support browser run-time.
// sidebar-chunk only applies to desktop-small, but the toggles are hidden at
*
// other resolutions regardless and the css overrides any visible effects.
* - Beware: This file MUST parse without errors on even the most ancient of browsers!
var $dropdowns = $( '#personal, #p-variants-desktop, .sidebar-chunk' );
*/
/* eslint-disable no-implicit-globals */
/* global $CODE, RLQ:true, NORLQ:true */
 
/**
* See <https://www.mediawiki.org/wiki/Compatibility#Browsers>
*
* Browsers that pass these checks get served our modern run-time. This includes all Grade A
* browsers, and some Grade C and Grade X browsers.
*
* The following browsers are known to pass these checks:
* - Chrome 63+
* - Edge 79+
* - Opera 50+
* - Firefox 58+
* - Safari 11.1+
* - Mobile Safari 11.2+ (iOS 11+)
* - Android 5.0+
*
* @private
* @return {boolean} User agent is compatible with MediaWiki JS
*/
function isCompatible() {
return !!(
// Ensure DOM Level 4 features (including Selectors API).
//
// https://caniuse.com/#feat=queryselector
'querySelector' in document &&
 
// Ensure HTML 5 features (including Web Storage API)
//
// https://caniuse.com/#feat=namevalue-storage
// https://blog.whatwg.org/this-week-in-html-5-episode-30
'localStorage' in window &&
 
// Ensure ES2015 grammar and runtime API (a.k.a. ES6)
//
// In practice, Promise.finally is a good proxy for overall ES6 support and
// rejects most unsupporting browsers in one sweep. The feature itself
// was specified in ES2018, however.
// https://caniuse.com/promise-finally
// Chrome 63+, Edge 18+, Opera 50+, Safari 11.1+, Firefox 58+, iOS 11+
//
// eslint-disable-next-line es-x/no-promise, es-x/no-promise-prototype-finally, dot-notation
typeof Promise === 'function' && Promise.prototype[ 'finally' ] &&
// ES6 Arrow Functions (with default params), this ensures
// genuine syntax support for ES6 grammar, not just API coverage.
//
// https://caniuse.com/arrow-functions
// Chrome 45+, Safari 10+, Firefox 22+, Opera 32+
//
// Based on Benjamin De Cock's snippet here:
// https://gist.github.com/bendc/d7f3dbc83d0f65ca0433caf90378cd95
( function () {
try {
// eslint-disable-next-line no-new, no-new-func
new Function( '(a = 0) => a' );
return true;
} catch ( e ) {
return false;
}
}() ) &&
// ES6 RegExp.prototype.flags
//
// https://caniuse.com/mdn-javascript_builtins_regexp_flags
// Edge 79+ (Chromium-based, rejects MSEdgeHTML-based Edge <= 18)
//
// eslint-disable-next-line es-x/no-regexp-prototype-flags
/./g.flags === 'g'
);
}
 
if ( !isCompatible() ) {
// Handle basic supported browsers (Grade C).
// Undo speculative modern (Grade A) root CSS class `<html class="client-js">`.
// See ResourceLoaderClientHtml::getDocumentAttributes().
document.documentElement.className = document.documentElement.className
.replace( /(^|\s)client-js(\s|$)/, '$1client-nojs$2' );
 
// Process any callbacks for basic support (Grade C).
while ( window.NORLQ && NORLQ[ 0 ] ) {
NORLQ.shift()();
}
NORLQ = {
push: function ( fn ) {
fn();
}
};
 
// Clear and disable the modern (Grade A) queue.
RLQ = {
push: function () {}
};
} else {
// Handle modern (Grade A).
 
if ( window.performance && performance.mark ) {
performance.mark( 'mwStartup' );
}
 
// This embeds mediawiki.js, which defines 'mw' and 'mw.loader'.
/**
* Base library for MediaWiki.
*/
/* global $CODE */
 
( function () {
'use strict';
 
var con = window.console;


/**
/**
* @class mw.Map
* Desktop menu click-toggling
* @classdesc Collection of values by string keys.
*
* This is an internal class that backs the mw.config and mw.messages APIs.
*
* It allows reading and writing to the collection via public methods,
* and allows batch iteraction for all its methods.
*
* For mw.config, scripts sometimes choose to "import" a set of keys locally,
* like so:
*
*
* ```
* We're not even checking if it's desktop because the classes in play have no effect
* var conf = mw.config.get( [ 'wgServerName', 'wgUserName', 'wgPageName' ] );
* on mobile regardless... this may break things at some point, though.
* conf.wgServerName; // "example.org"
* ```
*
* Check the existence ("AND" condition) of multiple keys:
*
* ```
* if ( mw.config.exists( [ 'wgFoo', 'wgBar' ] ) );
* ```
*
* For mw.messages, the {@link mw.Map#set} method allows mw.loader and mw.Api to essentially
* extend the object, and batch-apply all their loaded values in one go:
*
* ```
* mw.messages.set( { "mon": "Monday", "tue": "Tuesday" } );
* ```
*
* @hideconstructor
*/
*/
function Map() {
this.values = Object.create( null );
}
Map.prototype = /** @lends mw.Map.prototype */ {
constructor: Map,
/**
* Get the value of one or more keys.
*
* If called with no arguments, all values are returned.
*
* @param {string|Array} [selection] Key or array of keys to retrieve values for.
* @param {any} [fallback=null] Value for keys that don't exist.
* @return {any|Object|null} If selection was a string, returns the value,
*  If selection was an array, returns an object of key/values.
*  If no selection is passed, a new object with all key/values is returned.
*/
get: function ( selection, fallback ) {
if ( arguments.length < 2 ) {
fallback = null;
}
if ( typeof selection === 'string' ) {
return selection in this.values ?
this.values[ selection ] :
fallback;
}
var results;
if ( Array.isArray( selection ) ) {
results = {};
for ( var i = 0; i < selection.length; i++ ) {
if ( typeof selection[ i ] === 'string' ) {
results[ selection[ i ] ] = selection[ i ] in this.values ?
this.values[ selection[ i ] ] :
fallback;
}
}
return results;
}
if ( selection === undefined ) {
results = {};
for ( var key in this.values ) {
results[ key ] = this.values[ key ];
}
return results;
}
// Invalid selection key
return fallback;
},
/**
* Set one or more key/value pairs.
*
* @param {string|Object} selection Key to set value for, or object mapping keys to values
* @param {any} [value] Value to set (optional, only in use when key is a string)
* @return {boolean} True on success, false on failure
*/
set: function ( selection, value ) {
// Use `arguments.length` because `undefined` is also a valid value.
if ( arguments.length > 1 ) {
// Set one key
if ( typeof selection === 'string' ) {
this.values[ selection ] = value;
return true;
}
} else if ( typeof selection === 'object' ) {
// Set multiple keys
for ( var key in selection ) {
this.values[ key ] = selection[ key ];
}
return true;
}
return false;
},
/**
* Check if a given key exists in the map.
*
* @param {string} selection Key to check
* @return {boolean} True if the key exists
*/
exists: function ( selection ) {
return typeof selection === 'string' && selection in this.values;
}
};


/**
/**
* Write a verbose message to the browser's console in debug mode.
* Close all dropdowns
*
* In ResourceLoader debug mode, this writes to the browser's console.
* In production mode, it is a no-op.
*
* See {@link mw.log} for other logging methods.
*
* @memberof mw
* @variation 2
* @param {...string} msg Messages to output to console.
*/
*/
var log = function () {
function closeOpen() {
console.log.apply( console, arguments );
$dropdowns.removeClass( 'dropdown-active' );
};
}


/**
/**
* Write a message to the browser console's warning channel.
* Click behaviour
*
* @memberof mw.log
* @method warn
* @param {...string} msg Messages to output to console
*/
*/
log.warn = Function.prototype.bind.call( con.warn, con );
$dropdowns.on( 'click', function ( e ) {
 
// Check if it's already open so we don't open it again
/**
// eslint-disable-next-line no-jquery/no-class-state
* Base library for MediaWiki.
if ( $( this ).hasClass( 'dropdown-active' ) ) {
*
if ( $( e.target ).closest( $( 'h2, #p-variants-desktop h3' ) ).length > 0 ) {
* Exposed globally as `mw`, with `mediaWiki` as alias. `mw` code can be considered stable and follows the
// treat reclick on the header as a toggle
* [frontend stable interface policy](https://www.mediawiki.org/wiki/Special:MyLanguage/Stable_interface_policy/Frontend).
closeOpen();
*
* @namespace mw
*/
var mw = /** @lends mw */ {
/**
* Get the current time, measured in milliseconds since January 1, 1970 (UTC).
*
* On browsers that implement the Navigation Timing API, this function will produce
* floating-point values with microsecond precision that are guaranteed to be monotonic.
* On all other browsers, it will fall back to using `Date`.
*
* @return {number} Current time
*/
now: function () {
// Optimisation: Cache and re-use the chosen implementation.
// Optimisation: Avoid startup overhead by re-defining on first call instead of IIFE.
var perf = window.performance;
var navStart = perf && perf.timing && perf.timing.navigationStart;
 
// Define the relevant shortcut
mw.now = navStart && perf.now ?
function () {
return navStart + perf.now();
} :
Date.now;
 
return mw.now();
},
 
/**
* List of all analytic events emitted so far.
*
* Exposed only for use by mediawiki.base.
*
* @private
* @property {Array}
*/
trackQueue: [],
 
/**
* Track `'resourceloader.exception'` event and send it to the window console.
*
* This exists for internal use by mw.loader only, to remember and buffer
* very early events for `mw.trackSubscribe( 'resourceloader.exception' )`
* even while `mediawiki.base` and `mw.track` are still in-flight.
*
* @private
* @param {Object} data
* @param {Error} [data.exception]
* @param {string} data.source Error source
* @param {string} [data.module] Name of module which caused the error
*/
trackError: function ( data ) {
if ( mw.track ) {
mw.track( 'resourceloader.exception', data );
} else {
mw.trackQueue.push( { topic: 'resourceloader.exception', data: data } );
}
}
 
// Clicked inside an open menu; don't do anything
// Log an error message to window.console, even in production mode.
} else {
var e = data.exception;
closeOpen();
var msg = ( e ? 'Exception' : 'Error' ) +
e.stopPropagation(); // stop hiding it!
' in ' + data.source +
$( this ).addClass( 'dropdown-active' );
( data.module ? ' in module ' + data.module : '' ) +
( e ? ':' : '.' );
 
con.log( msg );
 
// If we have an exception object, log it to the warning channel to trigger
// proper stacktraces in browsers that support it.
if ( e ) {
con.warn( e );
}
},
 
// Expose mw.Map
Map: Map,
 
/**
* Map of configuration values.
*
* Check out [the complete list of configuration values](https://www.mediawiki.org/wiki/Manual:Interface/JavaScript#mw.config)
* on mediawiki.org.
*
* @type {mw.Map}
*/
config: new Map(),
 
/**
* Store for messages.
*
* @type {mw.Map}
*/
messages: new Map(),
 
/**
* Store for templates associated with a module.
*
* @type {mw.Map}
*/
templates: new Map(),
 
// Expose mw.log
log: log
 
// mw.loader is defined in a separate file that is appended to this
};
 
// Attach to window and globally alias
window.mw = window.mediaWiki = mw;
 
window.QUnit = undefined;
}() );
/*!
* Defines mw.loader, the infrastructure for loading ResourceLoader
* modules.
*
* This file is appended directly to the code in startup/mediawiki.js
*/
/* global $VARS, $CODE, mw */
 
( function () {
'use strict';
 
var store,
hasOwn = Object.hasOwnProperty;
 
/**
* Client for ResourceLoader server end point.
*
* This client is in charge of maintaining the module registry and state
* machine, initiating network (batch) requests for loading modules, as
* well as dependency resolution and execution of source code.
*
* @see <https://www.mediawiki.org/wiki/ResourceLoader/Features>
* @namespace mw.loader
*/
 
/**
* FNV132 hash function
*
* This function implements the 32-bit version of FNV-1.
* It is equivalent to hash( 'fnv132', ... ) in PHP, except
* its output is base 36 rather than hex.
* See <https://en.wikipedia.org/wiki/Fowler–Noll–Vo_hash_function>
*
* @private
* @param {string} str String to hash
* @return {string} hash as a five-character base 36 string
*/
function fnv132( str ) {
var hash = 0x811C9DC5;
 
/* eslint-disable no-bitwise */
for ( var i = 0; i < str.length; i++ ) {
hash += ( hash << 1 ) + ( hash << 4 ) + ( hash << 7 ) + ( hash << 8 ) + ( hash << 24 );
hash ^= str.charCodeAt( i );
}
 
hash = ( hash >>> 0 ).toString( 36 ).slice( 0, 5 );
/* eslint-enable no-bitwise */
 
while ( hash.length < 5 ) {
hash = '0' + hash;
}
}
return hash;
} );
}
$( document ).on( 'click', function ( e ) {
 
if ( $( e.target ).closest( $dropdowns ).length > 0 ) {
/**
// Clicked inside an open menu; don't close anything
* Fired via mw.track on various resource loading errors.
*
* eslint-disable jsdoc/valid-types
*
* @event ~'resourceloader.exception'
* @ignore
* @param {Error|Mixed} e The error that was thrown. Almost always an Error
*  object, but in theory module code could manually throw something else, and that
*  might also end up here.
* @param {string} [module] Name of the module which caused the error. Omitted if the
*  error is not module-related or the module cannot be easily identified due to
*  batched handling.
* @param {string} source Source of the error. Possible values:
*
*  - load-callback: exception thrown by user callback
*  - module-execute: exception thrown by module code
*  - resolve: failed to sort dependencies for a module in mw.loader.load
*  - store-eval: could not evaluate module code cached in localStorage
*  - store-localstorage-json: JSON conversion error in mw.loader.store
*  - store-localstorage-update: localStorage conversion error in mw.loader.store.
*/
 
/**
* Mapping of registered modules.
*
* See #implement and #execute for exact details on support for script, style and messages.
*
* @example // Format:
* {
*    'moduleName': {
*        // From mw.loader.register()
*        'version': '#####' (five-character hash)
*        'dependencies': ['required.foo', 'bar.also', ...]
*        'group': string, integer, (or) null
*        'source': 'local', (or) 'anotherwiki'
*        'skip': 'return !!window.Example;', (or) null, (or) boolean result of skip
*        'module': export Object
*
*        // Set by execute() or mw.loader.state()
*        // See mw.loader.getState() for documentation of the state machine
*        'state': 'registered', 'loading', 'loaded', 'executing', 'ready', 'error', or 'missing'
*
*        // Optionally added at run-time by mw.loader.impl()
*        'script': closure, array of urls, or string
*        'style': { ... } (see #execute)
*        'messages': { 'key': 'value', ... }
*    }
* }
*
* @property {Object}
* @private
*/
var registry = Object.create( null ),
// Mapping of sources, keyed by source-id, values are strings.
//
// Format:
//
//    {
//        'sourceId': 'http://example.org/w/load.php'
//    }
//
sources = Object.create( null ),
 
// For queueModuleScript()
handlingPendingRequests = false,
pendingRequests = [],
 
// List of modules to be loaded
queue = [],
 
/**
* List of callback jobs waiting for modules to be ready.
*
* Jobs are created by #enqueue() and run by #doPropagation().
* Typically when a job is created for a module, the job's dependencies contain
* both the required module and all its recursive dependencies.
*
* @example // Format:
* {
*    'dependencies': [ module names ],
*    'ready': Function callback
*    'error': Function callback
* }
*
* @property {Object[]} jobs
* @private
*/
jobs = [],
 
// For #setAndPropagate() and #doPropagation()
willPropagate = false,
errorModules = [],
 
/**
* @private
* @property {Array} baseModules
*/
baseModules = [
    "jquery",
    "mediawiki.base"
],
 
/**
* For #addEmbeddedCSS() and #addLink()
*
* @private
* @property {HTMLElement|null} marker
*/
marker = document.querySelector( 'meta[name="ResourceLoaderDynamicStyles"]' ),
 
// For #addEmbeddedCSS()
lastCssBuffer;
 
/**
* Append an HTML element to `document.head` or before a specified node.
*
* @private
* @param {HTMLElement} el
* @param {Node|null} [nextNode]
*/
function addToHead( el, nextNode ) {
if ( nextNode && nextNode.parentNode ) {
nextNode.parentNode.insertBefore( el, nextNode );
} else {
} else {
document.head.appendChild( el );
closeOpen();
}
}
}
} );
} );


/**
mw.hook( 'wikipage.content' ).add( function ( $content ) {
* Create a new style element and add it to the DOM.
// Gotta wrap them for this to work; maybe later the parser etc will do this for us?!
* Stable for use in gadgets.
$content.find( 'div > table:not( table table )' ).wrap( '<div class="content-table-wrapper"><div class="content-table"></div></div>' );
*
$content.find( '.content-table-wrapper' ).prepend( '<div class="content-table-left"></div><div class="content-table-right"></div>' );
* @method mw.loader.addStyleTag
* @param {string} text CSS text
* @param {Node|null} [nextNode] The element where the style tag
*  should be inserted before
* @return {HTMLStyleElement} Reference to the created style element
*/
function newStyleTag( text, nextNode ) {
var el = document.createElement( 'style' );
el.appendChild( document.createTextNode( text ) );
addToHead( el, nextNode );
return el;
}
 
/**
* @private
* @param {Object} cssBuffer
*/
function flushCssBuffer( cssBuffer ) {
// Make sure the next call to addEmbeddedCSS() starts a new buffer.
// This must be done before we run the callbacks, as those may end up
// queueing new chunks which would be lost otherwise (T105973).
//
// There can be more than one buffer in-flight (given "@import", and
// generally due to race conditions). Only tell addEmbeddedCSS() to
// start a new buffer if we're currently flushing the last one that it
// started. If we're flushing an older buffer, keep the last one open.
if ( cssBuffer === lastCssBuffer ) {
lastCssBuffer = null;
}
newStyleTag( cssBuffer.cssText, marker );
for ( var i = 0; i < cssBuffer.callbacks.length; i++ ) {
cssBuffer.callbacks[ i ]();
}
}


/**
/**
* Add a bit of CSS text to the current browser page.
* Set up borders for experimental overflowing table scrolling
*
* The creation and insertion of the `<style>` element is debounced for two reasons:
*
*
* - Performing the insertion before the next paint round via requestAnimationFrame
* I have no idea what I'm doing.
*  avoids forced or wasted style recomputations, which are expensive in browsers.
* - Reduce how often new stylesheets are inserted by letting additional calls to this
*  function accumulate into a buffer for at least one JavaScript tick. Modules are
*  received from the server in batches, which means there is likely going to be many
*  calls to this function in a row within the same tick / the same call stack.
*  See also T47810.
*
*
* @private
* @param {jQuery} $table
* @param {string} cssText CSS text to be added in a `<style>` tag.
* @param {Function} callback Called after the insertion has occurred.
*/
*/
function addEmbeddedCSS( cssText, callback ) {
function setScrollClass( $table ) {
// Start a new buffer if one of the following is true:
var $tableWrapper = $table.parent(),
// - We've never started a buffer before, this will be our first.
// wtf browser rtl implementations
// - The last buffer we created was flushed meanwhile, so start a new one.
scroll = Math.abs( $tableWrapper.scrollLeft() );
// - The next CSS chunk syntactically needs to be at the start of a stylesheet (T37562).
if ( !lastCssBuffer || cssText.startsWith( '@import' ) ) {
lastCssBuffer = {
cssText: '',
callbacks: []
};
requestAnimationFrame( flushCssBuffer.bind( null, lastCssBuffer ) );
}


// Linebreak for somewhat distinguishable sections
$tableWrapper.parent()
lastCssBuffer.cssText += '\n' + cssText;
// 1 instead of 0 because of weird rtl rounding errors or something
lastCssBuffer.callbacks.push( callback );
.toggleClass( 'scroll-left', scroll > 1 )
.toggleClass( 'scroll-right', $table.outerWidth() - $tableWrapper.innerWidth() - scroll > 1 );
}
}


/**
$content.find( '.content-table' ).on( 'scroll', function () {
* See also `ResourceLoader.php#makeVersionQuery` on the server.
setScrollClass( $( this ).children( 'table' ).first() );
*
* @private
* @param {string[]} modules List of module names
* @return {string} Hash of concatenated version hashes.
*/
function getCombinedVersion( modules ) {
var hashes = modules.reduce( function ( result, module ) {
return result + registry[ module ].version;
}, '' );
return fnv132( hashes );
}


/**
if ( $content.attr( 'dir' ) === 'rtl' ) {
* Determine whether all dependencies are in state 'ready', which means we may
$( this ).find( 'caption' ).css( 'margin-right', Math.abs( $( this ).scrollLeft() ) + 'px' );
* execute the module or job now.
} else {
*
$( this ).find( 'caption' ).css( 'margin-left', $( this ).scrollLeft() + 'px' );
* @private
* @param {string[]} modules Names of modules to be checked
* @return {boolean} True if all modules are in state 'ready', false otherwise
*/
function allReady( modules ) {
for ( var i = 0; i < modules.length; i++ ) {
if ( mw.loader.getState( modules[ i ] ) !== 'ready' ) {
return false;
}
}
}
return true;
} );
}


/**
/**
* Determine whether all direct and base dependencies are in state 'ready'
* Mark overflowed tables for scrolling
*
* @private
* @param {string} module Name of the module to be checked
* @return {boolean} True if all direct/base dependencies are in state 'ready'; false otherwise
*/
*/
function allWithImplicitReady( module ) {
function unOverflowTables() {
return allReady( registry[ module ].dependencies ) &&
$content.find( '.content-table > table' ).each( function () {
( baseModules.indexOf( module ) !== -1 || allReady( baseModules ) );
var $table = $( this ),
}
$wrapper = $table.parent().parent();
 
if ( $table.outerWidth() > $wrapper.outerWidth() ) {
/**
$wrapper.addClass( 'overflowed' );
* Determine whether all dependencies are in state 'ready', which means we may
setScrollClass( $table );
* execute the module or job now.
} else {
*
$wrapper.removeClass( 'overflowed scroll-left scroll-right fixed-scrollbar-container' );
* @private
* @param {string[]} modules Names of modules to be checked
* @return {boolean|string} False if no modules are in state 'error' or 'missing';
*  failed module otherwise
*/
function anyFailed( modules ) {
for ( var i = 0; i < modules.length; i++ ) {
var state = mw.loader.getState( modules[ i ] );
if ( state === 'error' || state === 'missing' ) {
return modules[ i ];
}
}
}
} );
return false;
}


/**
// Set up sticky captions
* Handle propagation of module state changes and reactions to them.
$content.find( '.content-table > table > caption' ).each( function () {
*
var $container, tableHeight,
* - When a module reaches a failure state, this should be propagated to
$table = $( this ).parent(),
*  modules that depend on the failed module.
$wrapper = $table.parent().parent();
* - When a module reaches a final state, pending job callbacks for the
*  module from mw.loader.using() should be called.
* - When a module reaches the 'ready' state from #execute(), consider
*  executing dependent modules now having their dependencies satisfied.
* - When a module reaches the 'loaded' state from mw.loader.impl,
*  consider executing it, if it has no unsatisfied dependencies.
*
* @private
*/
function doPropagation() {
var didPropagate = true;
var module;


// Keep going until the last iteration performed no actions.
if ( $table.outerWidth() > $wrapper.outerWidth() ) {
while ( didPropagate ) {
$container = $( this ).parents( '.content-table-wrapper' );
didPropagate = false;
$( this ).width( $content.width() );
tableHeight = $container.innerHeight() - $( this ).outerHeight();


// Stage 1: Propagate failures
$container.find( '.content-table-left' ).height( tableHeight );
while ( errorModules.length ) {
$container.find( '.content-table-right' ).height( tableHeight );
var errorModule = errorModules.shift(),
baseModuleError = baseModules.indexOf( errorModule ) !== -1;
for ( module in registry ) {
if ( registry[ module ].state !== 'error' && registry[ module ].state !== 'missing' ) {
if ( baseModuleError && baseModules.indexOf( module ) === -1 ) {
// Propate error from base module to all regular (non-base) modules
registry[ module ].state = 'error';
didPropagate = true;
} else if ( registry[ module ].dependencies.indexOf( errorModule ) !== -1 ) {
// Propagate error from dependency to depending module
registry[ module ].state = 'error';
// .. and propagate it further
errorModules.push( module );
didPropagate = true;
}
}
}
}
}
 
} );
// Stage 2: Execute 'loaded' modules with no unsatisfied dependencies
for ( module in registry ) {
if ( registry[ module ].state === 'loaded' && allWithImplicitReady( module ) ) {
// Recursively execute all dependent modules that were already loaded
// (waiting for execution) and no longer have unsatisfied dependencies.
// Base modules may have dependencies amongst eachother to ensure correct
// execution order. Regular modules wait for all base modules.
execute( module );
didPropagate = true;
}
}
 
// Stage 3: Invoke job callbacks that are no longer blocked
for ( var i = 0; i < jobs.length; i++ ) {
var job = jobs[ i ];
var failed = anyFailed( job.dependencies );
if ( failed !== false || allReady( job.dependencies ) ) {
jobs.splice( i, 1 );
i -= 1;
try {
if ( failed !== false && job.error ) {
job.error( new Error( 'Failed dependency: ' + failed ), job.dependencies );
} else if ( failed === false && job.ready ) {
job.ready();
}
} catch ( e ) {
// A user-defined callback raised an exception.
// Swallow it to protect our state machine!
mw.trackError( {
exception: e,
source: 'load-callback'
} );
}
didPropagate = true;
}
}
}
 
willPropagate = false;
}
}


/**
unOverflowTables();
* Update a module's state in the registry and make sure any necessary
$( window ).on( 'resize', unOverflowTables );
* propagation will occur, by adding a (debounced) call to doPropagation().
* See #doPropagation for more about propagation.
* See #registry for more about how states are used.
*
* @private
* @param {string} module
* @param {string} state
*/
function setAndPropagate( module, state ) {
registry[ module ].state = state;
if ( state === 'ready' ) {
// Queue to later be synced to the local module store.
store.add( module );
} else if ( state === 'error' || state === 'missing' ) {
errorModules.push( module );
} else if ( state !== 'loaded' ) {
// We only have something to do in doPropagation for the
// 'loaded', 'ready', 'error', and 'missing' states.
// Avoid scheduling and propagation cost for frequent and short-lived
// transition states, such as 'loading' and 'executing'.
return;
}
if ( willPropagate ) {
// Already scheduled, or, we're already in a doPropagation stack.
return;
}
willPropagate = true;
// Yield for two reasons:
// * Allow successive calls to mw.loader.impl() from the same
//  load.php response, or from the same asyncEval() to be in the
//  propagation batch.
// * Allow the browser to breathe between the reception of
//  module source code and the execution of it.
//
// Use a high priority because the user may be waiting for interactions
// to start being possible. But, first provide a moment (up to 'timeout')
// for native input event handling (e.g. scrolling/typing/clicking).
mw.requestIdleCallback( doPropagation, { timeout: 1 } );
}


/**
/**
* Resolve dependencies and detect circular references.
* Sticky scrollbars maybe?!
*
* @private
* @param {string} module Name of the top-level module whose dependencies shall be
*  resolved and sorted.
* @param {Array} resolved Returns a topological sort of the given module and its
*  dependencies, such that later modules depend on earlier modules. The array
*  contains the module names. If the array contains already some module names,
*  this function appends its result to the pre-existing array.
* @param {Set} [unresolved] Used to detect loops in the dependency graph.
* @throws {Error} If an unknown module or a circular dependency is encountered
*/
*/
function sortDependencies( module, resolved, unresolved ) {
$content.find( '.content-table' ).each( function () {
if ( !( module in registry ) ) {
var $table, $tableWrapper, $spoof, $scrollbar;
throw new Error( 'Unknown module: ' + module );
}


if ( typeof registry[ module ].skip === 'string' ) {
$tableWrapper = $( this );
// eslint-disable-next-line no-new-func
$table = $tableWrapper.children( 'table' ).first();
var skip = ( new Function( registry[ module ].skip )() );
registry[ module ].skip = !!skip;
if ( skip ) {
registry[ module ].dependencies = [];
setAndPropagate( module, 'ready' );
return;
}
}


// Create unresolved if not passed in
// Assemble our silly crap and add to page
if ( !unresolved ) {
$scrollbar = $( '<div>' ).addClass( 'content-table-scrollbar inactive' ).width( $content.width() );
unresolved = new Set();
$spoof = $( '<div>' ).addClass( 'content-table-spoof' ).width( $table.outerWidth() );
}
$tableWrapper.parent().prepend( $scrollbar.prepend( $spoof ) );
 
} );
// Track down dependencies
var deps = registry[ module ].dependencies;
unresolved.add( module );
for ( var i = 0; i < deps.length; i++ ) {
if ( resolved.indexOf( deps[ i ] ) === -1 ) {
if ( unresolved.has( deps[ i ] ) ) {
throw new Error(
'Circular reference detected: ' + module + ' -> ' + deps[ i ]
);
}
 
sortDependencies( deps[ i ], resolved, unresolved );
}
}
 
resolved.push( module );
}


/**
/**
* Get names of module that a module depends on, in their proper dependency order.
* Scoll table when scrolling scrollbar and visa-versa lololol wut
*
* @private
* @param {string[]} modules Array of string module names
* @return {Array} List of dependencies, including 'module'.
* @throws {Error} If an unregistered module or a dependency loop is encountered
*/
*/
function resolve( modules ) {
$content.find( '.content-table' ).on( 'scroll', function () {
// Always load base modules
// Only do this here if we're not already mirroring the spoof
var resolved = baseModules.slice();
var $mirror = $( this ).siblings( '.inactive' ).first();
for ( var i = 0; i < modules.length; i++ ) {
sortDependencies( modules[ i ], resolved );
}
return resolved;
}


/**
$mirror.scrollLeft( $( this ).scrollLeft() );
* Like #resolve(), except it will silently ignore modules that
} );
* are missing or have missing dependencies.
$content.find( '.content-table-scrollbar' ).on( 'scroll', function () {
*
var $mirror = $( this ).siblings( '.content-table' ).first();
* @private
* @param {string[]} modules Array of string module names
* @return {Array} List of dependencies.
*/
function resolveStubbornly( modules ) {
// Always load base modules
var resolved = baseModules.slice();
for ( var i = 0; i < modules.length; i++ ) {
var saved = resolved.slice();
try {
sortDependencies( modules[ i ], resolved );
} catch ( err ) {
resolved = saved;
// This module is not currently known, or has invalid dependencies.
//
// Most likely due to a cached reference after the module was
// removed, otherwise made redundant, or omitted from the registry
// by the ResourceLoader "target" system.
//
// These errors can be common, e.g. queuing an unavailable module
// unconditionally from the server-side is OK and should fail gracefully.
mw.log.warn( 'Skipped unavailable module ' + modules[ i ] );


// Do not track this error as an exception when the module:
// Only do this here if we're not already mirroring the table
// - Is valid, but gracefully filtered out by target system.
// eslint-disable-next-line no-jquery/no-class-state
// - Was recently valid, but is still referenced in stale cache.
if ( !$( this ).hasClass( 'inactive' ) ) {
//
$mirror.scrollLeft( $( this ).scrollLeft() );
// Basically the only reason to track this as exception is when the error
// was circular or invalid dependencies. What the above scenarios have in
// common is that they don't register the module client-side.
if ( modules[ i ] in registry ) {
mw.trackError( {
exception: err,
source: 'resolve'
} );
}
}
}
}
return resolved;
} );
}


/**
/**
* Resolve a relative file path.
* Set active when actually over the table it applies to...
*
* For example, resolveRelativePath( '../foo.js', 'resources/src/bar/bar.js' )
* returns 'resources/src/foo.js'.
*
* @private
* @param {string} relativePath Relative file path, starting with ./ or ../
* @param {string} basePath Path of the file (not directory) relativePath is relative to
* @return {string|null} Resolved path, or null if relativePath does not start with ./ or ../
*/
*/
function resolveRelativePath( relativePath, basePath ) {
function determineActiveSpoofScrollbars() {
 
$content.find( '.overflowed .content-table' ).each( function () {
var relParts = relativePath.match( /^((?:\.\.?\/)+)(.*)$/ );
var $scrollbar = $( this ).siblings( '.content-table-scrollbar' ).first();
if ( !relParts ) {
return null;
}
 
var baseDirParts = basePath.split( '/' );
// basePath looks like 'foo/bar/baz.js', so baseDirParts looks like [ 'foo', 'bar, 'baz.js' ]
// Remove the file component at the end, so that we are left with only the directory path
baseDirParts.pop();
 
var prefixes = relParts[ 1 ].split( '/' );
// relParts[ 1 ] looks like '../../', so prefixes looks like [ '..', '..', '' ]
// Remove the empty element at the end
prefixes.pop();


// For every ../ in the path prefix, remove one directory level from baseDirParts
// Skip caption
var prefix;
var captionHeight = $( this ).find( 'caption' ).outerHeight() || 0;
var reachedRoot = false;
if ( captionHeight ) {
while ( ( prefix = prefixes.pop() ) !== undefined ) {
// Pad slightly for reasons
if ( prefix === '..' ) {
captionHeight += 8;
// Once we reach the package's base dir, preserve all remaining "..".
reachedRoot = !baseDirParts.length || reachedRoot;
if ( !reachedRoot ) {
baseDirParts.pop();
} else {
baseDirParts.push( prefix );
}
}
}
}


// If there's anything left of the base path, prepend it to the file path
var tableTop = $( this ).offset().top,
return ( baseDirParts.length ? baseDirParts.join( '/' ) + '/' : '' ) + relParts[ 2 ];
tableBottom = tableTop + $( this ).outerHeight(),
viewBottom = window.scrollY + document.documentElement.clientHeight,
active = tableTop + captionHeight < viewBottom && tableBottom > viewBottom;
$scrollbar.toggleClass( 'inactive', !active );
} );
}
}


/**
determineActiveSpoofScrollbars();
* Make a require() function scoped to a package file
$( window ).on( 'scroll resize', determineActiveSpoofScrollbars );
*
* @private
* @param {Object} moduleObj Module object from the registry
* @param {string} basePath Path of the file this is scoped to. Used for relative paths.
* @return {Function}
*/
function makeRequireFunction( moduleObj, basePath ) {
return function require( moduleName ) {
var fileName = resolveRelativePath( moduleName, basePath );
if ( fileName === null ) {
// Not a relative path, so it's either a module name or,
// (if in test mode) a private file imported from another module.
return mw.loader.require( moduleName );
}


if ( hasOwn.call( moduleObj.packageExports, fileName ) ) {
// File has already been executed, return the cached result
return moduleObj.packageExports[ fileName ];
}
var scriptFiles = moduleObj.script.files;
if ( !hasOwn.call( scriptFiles, fileName ) ) {
throw new Error( 'Cannot require undefined file ' + fileName );
}


var result,
function showContent(id) {
fileContent = scriptFiles[ fileName ];
const conteudos = document.querySelectorAll('.nav-content');
if ( typeof fileContent === 'function' ) {
conteudos.forEach((div) => {
var moduleParam = { exports: {} };
div.classList.remove('show-content');
fileContent( makeRequireFunction( moduleObj, fileName ), moduleParam, moduleParam.exports );
});
result = moduleParam.exports;
document.getElementById(id).classList.add('show-content');
} else {
// fileContent is raw data (such as a JSON object), just pass it through
result = fileContent;
}
moduleObj.packageExports[ fileName ] = result;
return result;
};
}
}


/**
/**
* Load and execute a script.
* Make sure tablespoofs remain correctly-sized?
*
* @private
* @param {string} src URL to script, will be used as the src attribute in the script tag
* @param {Function} [callback] Callback to run after request resolution
* @param {string[]} [modules] List of modules being requested, for state to be marked as error
* in case the script fails to load
* @return {HTMLElement}
*/
*/
function addScript( src, callback, modules ) {
$( window ).on( 'resize', function () {
// Use a <script> element rather than XHR. Using XHR changes the request
$content.find( '.content-table-scrollbar' ).each( function () {
// headers (potentially missing a cache hit), and reduces caching in general
var width = $( this ).siblings().first().find( 'table' ).first().width();
// since browsers cache XHR much less (if at all). And XHR means we retrieve
$( this ).find( '.content-table-spoof' ).first().width( width );
// text, so we'd need to eval, which then messes up line numbers.
$( this ).width( $content.width() );
// The drawback is that <script> does not offer progress events, feedback is
} );
// only given after downloading, parsing, and execution have completed.
} );
var script = document.createElement( 'script' );
} );
script.src = src;
/* Popout menus (header) */
function onComplete() {
if ( script.parentNode ) {
script.parentNode.removeChild( script );
}
if ( callback ) {
callback();
callback = null;
}
}
script.onload = onComplete;
script.onerror = function () {
onComplete();
if ( modules ) {
for ( var i = 0; i < modules.length; i++ ) {
setAndPropagate( modules[ i ], 'error' );
}
}
};
document.head.appendChild( script );
return script;
}


/**
/* eslint-disable no-jquery/no-fade */
* Queue the loading and execution of a script for a particular module.
*
* This does for legacy debug mode what runScript() does for production.
*
* @private
* @param {string} src URL of the script
* @param {string} moduleName Name of currently executing module
* @param {Function} callback Callback to run after addScript() resolution
*/
function queueModuleScript( src, moduleName, callback ) {
pendingRequests.push( function () {
// Keep in sync with execute()/runScript().
if ( moduleName !== 'jquery' ) {
window.require = mw.loader.require;
window.module = registry[ moduleName ].module;
}
addScript( src, function () {
// 'module.exports' should not persist after the file is executed to
// avoid leakage to unrelated code. 'require' should be kept, however,
// as asynchronous access to 'require' is allowed and expected. (T144879)
delete window.module;
callback();
// Start the next one (if any)
if ( pendingRequests[ 0 ] ) {
pendingRequests.shift()();
} else {
handlingPendingRequests = false;
}
} );
} );
if ( !handlingPendingRequests && pendingRequests[ 0 ] ) {
handlingPendingRequests = true;
pendingRequests.shift()();
}
}


/**
$( function () {
* Utility function for execute()
var toggleTime = 200;
*
* @ignore
* @param {string} url URL
* @param {string} [media] Media attribute
* @param {Node|null} [nextNode]
* @return {HTMLElement}
*/
function addLink( url, media, nextNode ) {
var el = document.createElement( 'link' );


el.rel = 'stylesheet';
// Open the various menus
if ( media ) {
$( '#user-tools h2' ).on( 'click', function () {
el.media = media;
if ( $( window ).width() < 851 ) {
$( '#personal-inner, #menus-cover' ).fadeToggle( toggleTime );
}
} );
$( '#site-navigation h2' ).on( 'click', function () {
if ( $( window ).width() < 851 ) {
$( '#site-navigation .sidebar-inner, #menus-cover' ).fadeToggle( toggleTime );
}
}
// If you end up here from an IE exception "SCRIPT: Invalid property value.",
} );
// see #addEmbeddedCSS, T33676, T43331, and T49277 for details.
$( '#site-tools h2' ).on( 'click', function () {
el.href = url;
if ( $( window ).width() < 851 ) {
 
$( '#site-tools .sidebar-inner, #menus-cover' ).fadeToggle( toggleTime );
addToHead( el, nextNode );
return el;
}
 
/**
* Evaluate in the global scope.
*
* This is used by MediaWiki user scripts, where it is (for example)
* important that `var` makes a global variable.
*
* @private
* @param {string} code JavaScript code
*/
function globalEval( code ) {
var script = document.createElement( 'script' );
script.text = code;
document.head.appendChild( script );
script.parentNode.removeChild( script );
}
 
/**
* Evaluate JS code using indirect eval().
*
* This is used by mw.loader.store. It is important that we protect the
* integrity of mw.loader's private variables (from accidental clashes
* or re-assignment), which means we can't use regular `eval()`.
*
* Optimization: This exists separately from globalEval(), because that
* involves slow DOM overhead.
*
* @private
* @param {string} code JavaScript code
*/
function indirectEval( code ) {
// See http://perfectionkills.com/global-eval-what-are-the-options/
// for an explanation of this syntax.
// eslint-disable-next-line no-eval
( 1, eval )( code );
}
 
/**
* Add one or more modules to the module load queue.
*
* See also #work().
*
* @private
* @param {string[]} dependencies Array of module names in the registry
* @param {Function} [ready] Callback to execute when all dependencies are ready
* @param {Function} [error] Callback to execute when any dependency fails
*/
function enqueue( dependencies, ready, error ) {
if ( allReady( dependencies ) ) {
// Run ready immediately
if ( ready ) {
ready();
}
return;
}
}
 
} );
var failed = anyFailed( dependencies );
$( '#ca-more' ).on( 'click', function () {
if ( failed !== false ) {
$( '#page-tools .sidebar-inner' ).css( 'top', $( '#ca-more' ).offset().top + 25 );
if ( error ) {
if ( $( window ).width() < 851 ) {
// Execute error immediately if any dependencies have errors
$( '#page-tools .sidebar-inner, #menus-cover' ).fadeToggle( toggleTime );
error(
new Error( 'Dependency ' + failed + ' failed to load' ),
dependencies
);
}
return;
}
}
 
} );
// Not all dependencies are ready, add to the load queue...
$( '#ca-languages' ).on( 'click', function () {
 
$( '#other-languages .sidebar-inner' ).css( 'top', $( '#ca-languages' ).offset().top + 25 );
// Add ready and error callbacks if they were given
if ( $( window ).width() < 851 ) {
if ( ready || error ) {
$( '#other-languages .sidebar-inner, #menus-cover' ).fadeToggle( toggleTime );
jobs.push( {
// Narrow down the list to modules that are worth waiting for
dependencies: dependencies.filter( function ( module ) {
var state = registry[ module ].state;
return state === 'registered' || state === 'loaded' || state === 'loading' || state === 'executing';
} ),
ready: ready,
error: error
} );
}
}
} );


dependencies.forEach( function ( module ) {
// Close menus on click outside
// Only queue modules that are still in the initial 'registered' state
$( document ).on( 'click touchstart', function ( e ) {
// (e.g. not ones already loading or loaded etc.).
if ( $( e.target ).closest( '#menus-cover' ).length > 0 ) {
if ( registry[ module ].state === 'registered' && queue.indexOf( module ) === -1 ) {
$( '#personal-inner' ).fadeOut( toggleTime );
queue.push( module );
$( '.sidebar-inner' ).fadeOut( toggleTime );
}
$( '#menus-cover' ).fadeOut( toggleTime );
} );
 
mw.loader.work();
}
 
/**
* Executes a loaded module, making it ready to use
*
* @private
* @param {string} module Module name to execute
*/
function execute( module ) {
if ( registry[ module ].state !== 'loaded' ) {
throw new Error( 'Module in state "' + registry[ module ].state + '" may not execute: ' + module );
}
}
} );
} );


registry[ module ].state = 'executing';
// Melhoria do comportamento dos submenus multi-coluna
$(document).ready(function() {


var runScript = function () {
// Função para aplicar classes de coluna dinamicamente se necessário
function adjustSubmenuColumns() {
var script = registry[ module ].script;
$('.submenu').each(function() {
var markModuleReady = function () {
const $submenu = $(this);
const itemCount = $submenu.find('li').length;
setAndPropagate( module, 'ready' );
};
var nestedAddScript = function ( arr, offset ) {
// Recursively call queueModuleScript() in its own callback
// for each element of arr.
if ( offset >= arr.length ) {
// We're at the end of the array
markModuleReady();
return;
}


queueModuleScript( arr[ offset ], module, function () {
// Remove classes existentes
nestedAddScript( arr, offset + 1 );
$submenu.removeClass('submenu-2-columns submenu-3-columns submenu-4-columns');
} );
};


try {
// Aplica classe baseada na quantidade de itens
if ( Array.isArray( script ) ) {
if (itemCount > 20) {
nestedAddScript( script, 0 );
$submenu.addClass('submenu-4-columns');
} else if ( typeof script === 'function' ) {
} else if (itemCount > 12) {
// Keep in sync with queueModuleScript() for debug mode
$submenu.addClass('submenu-3-columns');
if ( module === 'jquery' ) {
} else if (itemCount > 6) {
// This is a special case for when 'jquery' itself is being loaded.
$submenu.addClass('submenu-2-columns');
// - The standard jquery.js distribution does not set `window.jQuery`
//  in CommonJS-compatible environments (Node.js, AMD, RequireJS, etc.).
// - MediaWiki's 'jquery' module also bundles jquery.migrate.js, which
//  in a CommonJS-compatible environment, will use require('jquery'),
//  but that can't work when we're still inside that module.
script();
} else {
// Pass jQuery twice so that the signature of the closure which wraps
// the script can bind both '$' and 'jQuery'.
script( window.$, window.$, mw.loader.require, registry[ module ].module );
}
markModuleReady();
} else if ( typeof script === 'object' && script !== null ) {
var mainScript = script.files[ script.main ];
if ( typeof mainScript !== 'function' ) {
throw new Error( 'Main file in module ' + module + ' must be a function' );
}
// jQuery parameters are not passed for multi-file modules
mainScript(
makeRequireFunction( registry[ module ], script.main ),
registry[ module ].module,
registry[ module ].module.exports
);
markModuleReady();
} else if ( typeof script === 'string' ) {
// Site and user modules are legacy scripts that run in the global scope.
// This is transported as a string instead of a function to avoid needing
// to use string manipulation to undo the function wrapper.
globalEval( script );
markModuleReady();
 
} else {
// Module without script
markModuleReady();
}
} catch ( e ) {
// Use mw.trackError instead of mw.log because these errors are common in production mode
// (e.g. undefined variable), and mw.log is only enabled in debug mode.
setAndPropagate( module, 'error' );
mw.trackError( {
exception: e,
module: module,
source: 'module-execute'
} );
}
}
};
});
}


// Emit deprecation warnings
// Aplica as classes na inicialização
if ( registry[ module ].deprecationWarning ) {
adjustSubmenuColumns();
mw.log.warn( registry[ module ].deprecationWarning );
}


// Add localizations to message system
// Comportamento móvel para submenus
if ( registry[ module ].messages ) {
if ($(window).width() <= 850) {
mw.messages.set( registry[ module ].messages );
$('li.has-submenu > a').on('click', function(e) {
}
e.preventDefault();
var $parent = $(this).parent();


// Initialise templates
if ($parent.hasClass('active')) {
if ( registry[ module ].templates ) {
$parent.removeClass('active');
mw.templates.set( module, registry[ module ].templates );
} else {
}
// Fecha outros menus abertos
$('li.has-submenu.active').removeClass('active');
$parent.addClass('active');
}
});
}


// Adding of stylesheets is asynchronous via addEmbeddedCSS().
// Força aplicação de colunas em navegadores específicos
// The below function uses a counting semaphore to make sure we don't call
function forceColumnLayout() {
// runScript() until after this module's stylesheets have been inserted
// Verifica se as colunas não estão sendo aplicadas corretamente
// into the DOM.
$('.submenu.submenu-2-columns').each(function() {
var cssPending = 0;
const $this = $(this);
var cssHandle = function () {
if ($this.is(':visible')) {
// Increase semaphore, when creating a callback for addEmbeddedCSS.
const width = $this.width();
cssPending++;
const items = $this.find('li');
return function () {
// Decrease semaphore, when said callback is invoked.
cssPending--;
if ( cssPending === 0 ) {
// Paranoia:
// This callback is exposed to addEmbeddedCSS, which is outside the execute()
// function and is not concerned with state-machine integrity. In turn,
// addEmbeddedCSS() actually exposes stuff further via requestAnimationFrame.
// If increment and decrement callbacks happen in the wrong order, or start
// again afterwards, then this branch could be reached multiple times.
// To protect the integrity of the state-machine, prevent that from happening
// by making runScript() cannot be called more than once.  We store a private
// reference when we first reach this branch, then deference the original, and
// call our reference to it.
var runScriptCopy = runScript;
runScript = undefined;
runScriptCopy();
}
};
};


// Process styles (see also mw.loader.impl)
// Se parece que não está em colunas, força o CSS
// * { "css": [css, ..] }
if (items.length > 6 && width < 400) {
// * { "url": { <media>: [url, ..] } }
$this.css({
var style = registry[ module ].style;
'column-count': '2',
if ( style ) {
'column-gap': '20px',
// Array of CSS strings under key 'css'
'min-width': '450px'
// { "css": [css, ..] }
});
if ( 'css' in style ) {
for ( var i = 0; i < style.css.length; i++ ) {
addEmbeddedCSS( style.css[ i ], cssHandle() );
}
}
}
}
});


// Plain object with array of urls under a media-type key
$('.submenu.submenu-3-columns').each(function() {
// { "url": { <media>: [url, ..] } }
const $this = $(this);
if ( 'url' in style ) {
if ($this.is(':visible')) {
for ( var media in style.url ) {
const width = $this.width();
var urls = style.url[ media ];
const items = $this.find('li');
for ( var j = 0; j < urls.length; j++ ) {
 
addLink( urls[ j ], media, marker );
if (items.length > 12 && width < 550) {
}
$this.css({
'column-count': '3',
'column-gap': '20px',
'min-width': '600px'
});
}
}
}
}
}
});


// End profiling of execute()-self before we call runScript(),
$('.submenu.submenu-4-columns').each(function() {
// which we want to measure separately without overlap.
const $this = $(this);
if ($this.is(':visible')) {
const width = $this.width();
const items = $this.find('li');


if ( module === 'user' ) {
if (items.length > 20 && width < 700) {
// Implicit dependency on the site module. Not a real dependency because it should
$this.css({
// run after 'site' regardless of whether it succeeds or fails.
'column-count': '4',
// Note: This is a simplified version of mw.loader.using(), inlined here because
'column-gap': '20px',
// mw.loader.using() is part of mediawiki.base (depends on jQuery; T192623).
'min-width': '750px'
var siteDeps;
});
var siteDepErr;
}
try {
siteDeps = resolve( [ 'site' ] );
} catch ( e ) {
siteDepErr = e;
runScript();
}
if ( !siteDepErr ) {
enqueue( siteDeps, runScript, runScript );
}
}
} else if ( cssPending === 0 ) {
});
// Regular module without styles
runScript();
}
// else: runScript will get called via cssHandle()
}
}


function sortQuery( o ) {
// Aplica verificação quando submenus são mostrados
var sorted = {};
$('li.has-submenu').on('mouseenter', function() {
var list = [];
setTimeout(forceColumnLayout, 50);
});


for ( var key in o ) {
// Reaplica classes quando a janela é redimensionada
list.push( key );
$(window).on('resize', function() {
}
adjustSubmenuColumns();
list.sort();
setTimeout(forceColumnLayout, 100);
for ( var i = 0; i < list.length; i++ ) {
});
sorted[ list[ i ] ] = o[ list[ i ] ];
}
return sorted;
}


/**
// Garante que o comportamento seja aplicado em conteúdo carregado dinamicamente
* Converts a module map of the form `{ foo: [ 'bar', 'baz' ], bar: [ 'baz, 'quux' ] }`
if (typeof MutationObserver !== 'undefined') {
* to a query string of the form `foo.bar,baz|bar.baz,quux`.
const observer = new MutationObserver(function(mutations) {
*
mutations.forEach(function(mutation) {
* See `ResourceLoader::makePackedModulesString()` in PHP, of which this is a port.
if (mutation.addedNodes.length) {
* On the server, unpacking is done by `ResourceLoader::expandModuleNames()`.
// Verifica se algum dos nós adicionados contém submenus
*
$(mutation.addedNodes).find('.submenu').each(function() {
* Note: This is only half of the logic, the other half has to be in #batchRequest(),
adjustSubmenuColumns();
* because its implementation needs to keep track of potential string size in order
});
* to decide when to split the requests due to url size.
}
*
});
* @typedef {Object} ModuleString
});
* @property {string} str Module query string
* @property {Array} list List of module names in matching order
*
* @private
* @param {Object} moduleMap Module map
* @return {ModuleString}
*/
function buildModulesString( moduleMap ) {
var str = [];
var list = [];
var p;


function restore( suffix ) {
observer.observe(document.body, { childList: true, subtree: true });
return p + suffix;
}
 
for ( var prefix in moduleMap ) {
p = prefix === '' ? '' : prefix + '.';
str.push( p + moduleMap[ prefix ].join( ',' ) );
list.push.apply( list, moduleMap[ prefix ].map( restore ) );
}
return {
str: str.join( '|' ),
list: list
};
}
}


/**
// Função de debug para verificar se as colunas estão funcionando
* @private
window.debugSubmenus = function() {
* @param {Object} params Map of parameter names to values
$('.submenu').each(function() {
* @return {string}
const $this = $(this);
*/
const itemCount = $this.find('li').length;
function makeQueryString( params ) {
const isVisible = $this.is(':visible');
// Optimisation: This is a fairly hot code path with batchRequest() loops.
const columnCount = $this.css('column-count');
// Avoid overhead from Object.keys and Array.forEach.
const width = $this.width();
// String concatenation is faster than array pushing and joining, see
// https://phabricator.wikimedia.org/P19931
var str = '';
for ( var key in params ) {
// Parameters are separated by &, added before all parameters other than
// the first
str += ( str ? '&' : '' ) + encodeURIComponent( key ) + '=' +
encodeURIComponent( params[ key ] );
}
return str;
}


/**
console.log('Submenu:', {
* Create network requests for a batch of modules.
items: itemCount,
*
visible: isVisible,
* This is an internal method for #work(). This must not be called directly
columnCount: columnCount,
* unless the modules are already registered, and no request is in progress,
width: width,
* and the module state has already been set to `loading`.
classes: $this.attr('class')
*
});
* @private
});
* @param {string[]} batch
};
*/
});
function batchRequest( batch ) {
// Adiciona efeitos de interação
if ( !batch.length ) {
document.addEventListener('DOMContentLoaded', function() {
return;
const guideItems = document.querySelectorAll('.mw-guide-item');
}


var sourceLoadScript, currReqBase, moduleMap;
guideItems.forEach(item => {
item.addEventListener('mouseenter', function() {
this.style.transform = 'translateY(-3px)';
});


/**
item.addEventListener('mouseleave', function() {
* Start the currently drafted request to the server.
this.style.transform = 'translateY(0)';
*
});
* @ignore
*/
function doRequest() {
// Optimisation: Inherit (Object.create), not copy ($.extend)
var query = Object.create( currReqBase ),
packed = buildModulesString( moduleMap );
query.modules = packed.str;
// The packing logic can change the effective order, even if the input was
// sorted. As such, the call to getCombinedVersion() must use this
// effective order to ensure that the combined version will match the hash
// expected by the server based on combining versions from the module
// query string in-order. (T188076)
query.version = getCombinedVersion( packed.list );
query = sortQuery( query );
addScript( sourceLoadScript + '?' + makeQueryString( query ), null, packed.list );
}


// Always order modules alphabetically to help reduce cache
item.addEventListener('click', function(e) {
// misses for otherwise identical content.
// Adiciona efeito de clique
batch.sort();
this.style.transform = 'translateY(1px)';
setTimeout(() => {
this.style.transform = 'translateY(-3px)';
}, 100);
});
});
});
// JavaScript para Cards com Imagem - compatível com sistema existente
$(document).ready(function() {


// Query parameters common to all requests
// Função para gerenciar cards com imagem (reutiliza lógica existente)
var reqBase = {
function initImageCards() {
    "lang": "en",
const imageCards = $('.mw-image-card');
    "skin": "customtimeless",
    "debug": "1"
};


// Split module list by source and by group.
// Aplica os mesmos efeitos dos guias existentes
var splits = Object.create( null );
imageCards.each(function() {
for ( var b = 0; b < batch.length; b++ ) {
const $card = $(this);
var bSource = registry[ batch[ b ] ].source;
var bGroup = registry[ batch[ b ] ].group;
if ( !splits[ bSource ] ) {
splits[ bSource ] = Object.create( null );
}
if ( !splits[ bSource ][ bGroup ] ) {
splits[ bSource ][ bGroup ] = [];
}
splits[ bSource ][ bGroup ].push( batch[ b ] );
}


for ( var source in splits ) {
// Efeitos hover melhorados
sourceLoadScript = sources[ source ];
$card.on('mouseenter', function() {
$(this).css({
'transform': 'translateY(-8px) scale(1.02)',
'transition': 'all 0.3s ease'
});
});


for ( var group in splits[ source ] ) {
$card.on('mouseleave', function() {
$(this).css({
'transform': 'translateY(0) scale(1)',
'transition': 'all 0.3s ease'
});
});


// Cache access to currently selected list of
// Efeito de clique
// modules for this group from this source.
$card.on('click', function() {
var modules = splits[ source ][ group ];
$(this).css('transform', 'translateY(-2px) scale(0.98)');
setTimeout(() => {
$(this).css('transform', 'translateY(-8px) scale(1.02)');
}, 150);
});
});
}


// Query parameters common to requests for this module group
// Função para gerenciar carregamento de imagens
// Optimisation: Inherit (Object.create), not copy ($.extend)
function handleImageLoading() {
currReqBase = Object.create( reqBase );
$('.mw-card-image img').each(function() {
// User modules require a user name in the query string.
const $img = $(this);
if ( group === 0 && mw.config.get( 'wgUserName' ) !== null ) {
const $container = $img.parent();
currReqBase.user = mw.config.get( 'wgUserName' );
}


// In addition to currReqBase, doRequest() will also add 'modules' and 'version'.
// Adiciona classe de loading
// > '&modules='.length === 9
$container.addClass('loading');
// > '&version=12345'.length === 14
// > 9 + 14 = 23
var currReqBaseLength = makeQueryString( currReqBase ).length + 23;


// We may need to split up the request to honor the query string length limit,
// Quando a imagem carregar
// so build it piece by piece. `length` does not include the characters from
$img.on('load', function() {
// the request base, see below
$container.removeClass('loading');
var length = 0;
});
moduleMap = Object.create( null ); // { prefix: [ suffixes ] }


for ( var i = 0; i < modules.length; i++ ) {
// Se a imagem falhar ao carregar
// Determine how many bytes this module would add to the query string
$img.on('error', function() {
var lastDotIndex = modules[ i ].lastIndexOf( '.' ),
$container.removeClass('loading');
prefix = modules[ i ].slice( 0, Math.max( 0, lastDotIndex ) ),
// Mantém o gradiente de fundo como fallback
suffix = modules[ i ].slice( lastDotIndex + 1 ),
$img.hide();
bytesAdded = moduleMap[ prefix ] ?
});
suffix.length + 3 : // '%2C'.length == 3
modules[ i ].length + 3; // '%7C'.length == 3


// If the url would become too long, create a new one, but don't create empty requests.
// Se a imagem já estiver carregada (cache)
// The value of `length` only reflects the request-specific bytes relating to the
if (this.complete) {
// accumulated entries in moduleMap so far. It does not include the base length,
$container.removeClass('loading');
// which we account for separately with `currReqBaseLength` so that length is 0
// when moduleMap is empty.
if ( length && length + currReqBaseLength + bytesAdded > mw.loader.maxQueryLength ) {
// Dispatch what we've got...
doRequest();
// .. and start preparing a new request.
length = 0;
moduleMap = Object.create( null );
}
if ( !moduleMap[ prefix ] ) {
moduleMap[ prefix ] = [];
}
length += bytesAdded;
moduleMap[ prefix ].push( suffix );
}
// Optimization: Skip `length` check.
// moduleMap will contain at least one module here. The loop above leaves the last module
// undispatched (and maybe some before it), so for moduleMap to be empty here, there must
// have been no modules to iterate in the current group to start with, but we only create
// a group in `splits` when the first module in the group is seen, so there are always
// modules in the group when this code is reached.
doRequest();
}
}
}
});
}
}


/**
// Função de responsividade para cards com imagem
* @private
function adjustImageGrid() {
* @param {string[]} implementations Array containing pieces of JavaScript code in the
const imageGrid = $('.mw-image-grid');
*  form of calls to mw.loader#impl().
const width = $(window).innerWidth;
* @param {Function} cb Callback in case of failure
* @param {Error} cb.err
* @param {number} [offset] Integer offset into implementations to start at
*/
function asyncEval( implementations, cb, offset ) {
if ( !implementations.length ) {
return;
}
offset = offset || 0;
mw.requestIdleCallback( function ( deadline ) {
asyncEvalTask( deadline, implementations, cb, offset );
} );
}


/**
if (width < 480) {
* Idle callback for asyncEval
imageGrid.css('grid-template-columns', '1fr');
*
} else if (width < 768) {
* @private
imageGrid.css('grid-template-columns', 'repeat(auto-fit, minmax(250px, 1fr))');
* @param {IdleDeadline} deadline
} else {
* @param {string[]} implementations
imageGrid.css('grid-template-columns', 'repeat(auto-fit, minmax(300px, 1fr))');
* @param {Function} cb
* @param {Error} cb.err
* @param {number} offset
*/
function asyncEvalTask( deadline, implementations, cb, offset ) {
for ( var i = offset; i < implementations.length; i++ ) {
if ( deadline.timeRemaining() <= 0 ) {
asyncEval( implementations, cb, i );
return;
}
try {
indirectEval( implementations[ i ] );
} catch ( err ) {
cb( err );
}
}
}
}
}


/**
// Função para lazy loading de imagens (opcional)
* Make a versioned key for a specific module.
function lazyLoadImages() {
*
if ('IntersectionObserver' in window) {
* @private
const imageObserver = new IntersectionObserver((entries, observer) => {
* @param {string} module Module name
entries.forEach(entry => {
* @return {string|null} Module key in format '`[name]@[version]`',
if (entry.isIntersecting) {
*  or null if the module does not exist
const img = entry.target;
*/
const dataSrc = img.getAttribute('data-src');
function getModuleKey( module ) {
if (dataSrc) {
return module in registry ? ( module + '@' + registry[ module ].version ) : null;
img.src = dataSrc;
}
img.removeAttribute('data-src');
imageObserver.unobserve(img);
}
}
});
});


/**
$('.mw-card-image img[data-src]').each(function() {
* @private
imageObserver.observe(this);
* @param {string} key Module name or '`[name]@[version]`'
});
* @return {Object}
*/
function splitModuleKey( key ) {
// Module names may contain '@' but version strings may not, so the last '@' is the delimiter
var index = key.lastIndexOf( '@' );
// If the key doesn't contain '@' or starts with it, the whole thing is the module name
if ( index === -1 || index === 0 ) {
return {
name: key,
version: ''
};
}
}
return {
name: key.slice( 0, index ),
version: key.slice( index + 1 )
};
}
}


/**
// Integração com sistema existente de guias
* @private
function integrateWithExistingSystem() {
* @param {string} module
// Estende a funcionalidade existente para incluir cards de imagem
* @param {string} [version]
if (typeof window.adjustGuideGrid === 'function') {
* @param {string[]} [dependencies]
const originalAdjustGuideGrid = window.adjustGuideGrid;
* @param {string} [group]
window.adjustGuideGrid = function() {
* @param {string} [source]
originalAdjustGuideGrid();
* @param {string} [skip]
adjustImageGrid();
*/
};
function registerOne( module, version, dependencies, group, source, skip ) {
} else {
if ( module in registry ) {
window.adjustGuideGrid = adjustImageGrid;
throw new Error( 'module already registered: ' + module );
}
}


registry[ module ] = {
// Adiciona cards de imagem ao sistema de debug existente
// Exposed to execute() for mw.loader.impl() closures.
if (typeof window.debugSubmenus === 'function') {
// Import happens via require().
const originalDebug = window.debugSubmenus;
module: {
window.debugImageCards = function() {
exports: {}
$('.mw-image-card').each(function() {
},
const $card = $(this);
// module.export objects for each package file inside this module
const text = $card.find('.mw-card-text').text();
packageExports: {},
const hasImage = $card.find('img').length > 0;
version: version || '',
const imageLoaded = hasImage ? $card.find('img')[0].complete : false;
dependencies: dependencies || [],
group: typeof group === 'undefined' ? null : group,
source: typeof source === 'string' ? source : 'local',
state: 'registered',
skip: typeof skip === 'string' ? skip : null
};
}


/* Public Members */
console.log('Image Card:', {
text: text,
hasImage: hasImage,
imageLoaded: imageLoaded,
dimensions: {
width: $card.width(),
height: $card.height()
}
});
});


mw.loader = {
// Chama debug original se existir
/**
if (originalDebug) originalDebug();
* The module registry is exposed as an aid for debugging and inspecting page
};
* state; it is not a public interface for modifying the registry.
}
*
}
* @see #registry
* @property {Object}
* @private
*/
moduleRegistry: registry,
 
/**
* Exposed for testing and debugging only.
*
* @see #batchRequest
* @property {number}
* @private
*/
maxQueryLength: 2000,
 
addStyleTag: newStyleTag,
 
// Exposed for internal use only. Documented as @private.
addScriptTag: addScript,
// Exposed for internal use only. Documented as @private.
addLinkTag: addLink,
 
// Exposed for internal use only. Documented as @private.
enqueue: enqueue,
 
// Exposed for internal use only. Documented as @private.
resolve: resolve,
 
/**
* Start loading of all queued module dependencies.
*
* @private
*/
work: function () {
store.init();


var q = queue.length,
// Inicialização
storedImplementations = [],
initImageCards();
storedNames = [],
handleImageLoading();
requestNames = [],
adjustImageGrid();
batch = new Set();
lazyLoadImages();
integrateWithExistingSystem();


// Iterate the list of requested modules, and do one of three things:
// Event listeners
// - 1) Nothing (if already loaded or being loaded).
$(window).on('resize', function() {
// - 2) Eval the cached implementation from the module store.
adjustImageGrid();
// - 3) Request from network.
});
while ( q-- ) {
var module = queue[ q ];
// Only consider modules which are the initial 'registered' state,
// and ignore duplicates
if ( mw.loader.getState( module ) === 'registered' &&
!batch.has( module )
) {
// Progress the state machine
registry[ module ].state = 'loading';
batch.add( module );


var implementation = store.get( module );
// Observa mudanças no DOM para novos cards adicionados dinamicamente
if ( implementation ) {
if (typeof MutationObserver !== 'undefined') {
// Module store enabled and contains this module/version
const observer = new MutationObserver(function(mutations) {
storedImplementations.push( implementation );
mutations.forEach(function(mutation) {
storedNames.push( module );
if (mutation.addedNodes.length) {
} else {
$(mutation.addedNodes).find('.mw-image-card').each(function() {
// Module store disabled or doesn't have this module/version
initImageCards();
requestNames.push( module );
handleImageLoading();
}
});
}
}
}
});
});


// Now that the queue has been processed into a batch, clear the queue.
observer.observe(document.body, { childList: true, subtree: true });
// This MUST happen before we initiate any eval or network request. Otherwise,
}
// it is possible for a cached script to instantly trigger the same work queue
});
// again; all before we've cleared it causing each request to include modules
// which are already loaded.
queue = [];


asyncEval( storedImplementations, function ( err ) {
// Função global para adicionar novos cards dinamicamente
// Not good, the cached mw.loader.impl calls failed! This should
window.addImageCard = function(container, link, imageSrc, text, bgClass) {
// never happen, barring ResourceLoader bugs, browser bugs and PEBKACs.
const cardHtml = `
// Depending on how corrupt the string is, it is likely that some
        <a href="${link}" class="mw-image-card">
// modules' impl() succeeded while the ones after the error will
            <div class="mw-card-image ${bgClass || ''}">
// never run and leave their modules in the 'loading' state forever.
                <img src="${imageSrc}" alt="${text}" />
store.stats.failed++;
            </div>
            <div class="mw-card-text">${text}</div>
        </a>
    `;


// Since this is an error not caused by an individual module but by
$(container).find('.mw-image-grid').append(cardHtml);
// something that infected the implement call itself, don't take any
// risks and clear everything in this cache.
store.clear();


mw.trackError( {
// Reinicializa funcionalidades para o novo card
exception: err,
const $newCard = $(container).find('.mw-image-card').last();
source: 'store-eval'
$newCard.trigger('initImageCard');
} );
};
// For any failed ones, fallback to requesting from network
var failed = storedNames.filter( function ( name ) {
return registry[ name ].state === 'loading';
} );
batchRequest( failed );
} );


batchRequest( requestNames );
// Função para tornar todas as tabelas responsivas
},
function makeTablesResponsive() {
// Seleciona todas as tabelas da página
const tables = document.querySelectorAll('table');


/**
tables.forEach(table => {
* Register a source.
// Verifica se a tabela tem cabeçalhos (th)
*
let headers = Array.from(table.querySelectorAll('th')).map(th => th.textContent.trim());
* The #work() method will use this information to split up requests by source.
*
* @example
* mw.loader.addSource( { mediawikiwiki: 'https://www.mediawiki.org/w/load.php' } );
*
* @private
* @param {Object} ids An object mapping ids to load.php end point urls
* @throws {Error} If source id is already registered
*/
addSource: function ( ids ) {
for ( var id in ids ) {
if ( id in sources ) {
throw new Error( 'source already registered: ' + id );
}
sources[ id ] = ids[ id ];
}
},


/**
// Se não houver cabeçalhos, tenta usar a primeira linha como cabeçalho
* Register a module, letting the system know about it and its properties.
if (headers.length === 0) {
*
const firstRow = table.querySelector('tr');
* The startup module calls this method.
if (firstRow) {
*
const cells = firstRow.querySelectorAll('td');
* When using multiple module registration by passing an array, dependencies that
headers.push(...Array.from(cells).map(cell => cell.textContent.trim()));
* are specified as references to modules within the array will be resolved before
* the modules are registered.
*
* @param {string|Array} modules Module name or array of arrays, each containing
a list of arguments compatible with this method
* @param {string} [version] Module version hash (falls backs to empty string)
* @param {string[]} [dependencies] Array of module names on which this module depends.
* @param {string} [group=null] Group which the module is in
* @param {string} [source='local'] Name of the source
* @param {string} [skip=null] Script body of the skip function
* @private
*/
register: function ( modules ) {
if ( typeof modules !== 'object' ) {
registerOne.apply( null, arguments );
return;
}
}
// Need to resolve indexed dependencies:
// ResourceLoader uses an optimisation to save space which replaces module
// names in dependency lists with the index of that module within the
// array of module registration data if it exists. The benefit is a significant
// reduction in the data size of the startup module. This loop changes
// those dependency lists back to arrays of strings.
function resolveIndex( dep ) {
return typeof dep === 'number' ? modules[ dep ][ 0 ] : dep;
}
for ( var i = 0; i < modules.length; i++ ) {
var deps = modules[ i ][ 2 ];
if ( deps ) {
for ( var j = 0; j < deps.length; j++ ) {
deps[ j ] = resolveIndex( deps[ j ] );
}
}
// Optimisation: Up to 55% faster.
// Typically register() is called exactly once on a page, and with a batch.
// See <https://gist.github.com/Krinkle/f06fdb3de62824c6c16f02a0e6ce0e66>
// Benchmarks taught us that the code for adding an object to `registry`
// should be in a function that has only one signature and does no arguments
// manipulation.
// JS semantics make it hard to optimise recursion to a different
// signature of itself, hence we moved this out.
registerOne.apply( null, modules[ i ] );
}
},
/**
* Implement a module given the components of the module.
*
* See #impl for a full description of the parameters.
*
* Prior to MW 1.41, this was used internally, but now it is only kept
* for backwards compatibility.
*
* Does not support mw.loader.store caching.
*
* @param {string} module
* @param {Function|Array|string|Object} [script]
* @param {Object} [style]
* @param {Object} [messages] List of key/value pairs to be added to mw#messages.
* @param {Object} [templates] List of key/value pairs to be added to mw#templates.
* @param {string|null} [deprecationWarning] Deprecation warning if any
* @private
*/
implement: function ( module, script, style, messages, templates, deprecationWarning ) {
var split = splitModuleKey( module ),
name = split.name,
version = split.version;
// Automatically register module
if ( !( name in registry ) ) {
mw.loader.register( name );
}
// Check for duplicate implementation
if ( registry[ name ].script !== undefined ) {
throw new Error( 'module already implemented: ' + name );
}
registry[ name ].version = version;
registry[ name ].declarator = null; // not supported
registry[ name ].script = script;
registry[ name ].style = style;
registry[ name ].messages = messages;
registry[ name ].templates = templates;
registry[ name ].deprecationWarning = deprecationWarning;
// The module may already have been marked as erroneous
if ( registry[ name ].state !== 'error' && registry[ name ].state !== 'missing' ) {
setAndPropagate( name, 'loaded' );
}
},
/**
* Implement a module given a function which returns the components of the module
*
* @param {Function} declarator
*
* The declarator should return an array with the following keys:
*
*  - 0. {string} module Name of module and current module version. Formatted
*    as '`[name]@[version]`". This version should match the requested version
*    (from #batchRequest and #registry). This avoids race conditions (T117587).
*
*  - 1. {Function|Array|string|Object} [script] Module code. This can be a function,
*    a list of URLs to load via `<script src>`, a string for `globalEval()`, or an
*    object like {"files": {"foo.js":function, "bar.js": function, ...}, "main": "foo.js"}.
*    If an object is provided, the main file will be executed immediately, and the other
*    files will only be executed if loaded via require(). If a function or string is
*    provided, it will be executed/evaluated immediately. If an array is provided, all
*    URLs in the array will be loaded immediately, and executed as soon as they arrive.
*
*  - 2. {Object} [style] Should follow one of the following patterns:
*
*    { "css": [css, ..] }
*    { "url": { (media): [url, ..] } }
*
*    The reason css strings are not concatenated anymore is T33676. We now check
*    whether it's safe to extend the stylesheet.
*
*  - 3. {Object} [messages] List of key/value pairs to be added to mw#messages.
*  - 4. {Object} [templates] List of key/value pairs to be added to mw#templates.
*  - 5. {String|null} [deprecationWarning] Deprecation warning if any
*
* The declarator must not use any scope variables, since it will be serialized with
* Function.prototype.toString() and later restored and executed in the global scope.
*
* The elements are all optional except the name.
* @private
*/
impl: function ( declarator ) {
var data = declarator(),
module = data[ 0 ],
script = data[ 1 ] || null,
style = data[ 2 ] || null,
messages = data[ 3 ] || null,
templates = data[ 4 ] || null,
deprecationWarning = data[ 5 ] || null,
split = splitModuleKey( module ),
name = split.name,
version = split.version;
// Automatically register module
if ( !( name in registry ) ) {
mw.loader.register( name );
}
// Check for duplicate implementation
if ( registry[ name ].script !== undefined ) {
throw new Error( 'module already implemented: ' + name );
}
// Without this reset, if there is a version mismatch between the
// requested and received module version, then mw.loader.store would
// cache the response under the requested key. Thus poisoning the cache
// indefinitely with a stale value. (T117587)
registry[ name ].version = version;
// Attach components
registry[ name ].declarator = declarator;
registry[ name ].script = script;
registry[ name ].style = style;
registry[ name ].messages = messages;
registry[ name ].templates = templates;
registry[ name ].deprecationWarning = deprecationWarning;
// The module may already have been marked as erroneous
if ( registry[ name ].state !== 'error' && registry[ name ].state !== 'missing' ) {
setAndPropagate( name, 'loaded' );
}
},
/**
* Load an external script or one or more modules.
*
* This method takes a list of unrelated modules. Use cases:
*
* - A web page will be composed of many different widgets. These widgets independently
*  queue their ResourceLoader modules (`OutputPage::addModules()`). If any of them
*  have problems, or are no longer known (e.g. cached HTML), the other modules
*  should still be loaded.
* - This method is used for preloading, which must not throw. Later code that
*  calls #using() will handle the error.
*
* @param {string|Array} modules Either the name of a module, array of modules,
*  or a URL of an external script or style
* @param {string} [type='text/javascript'] MIME type to use if calling with a URL of an
*  external script or style; acceptable values are "text/css" and
*  "text/javascript"; if no type is provided, text/javascript is assumed.
* @throws {Error} If type is invalid
*/
load: function ( modules, type ) {
if ( typeof modules === 'string' && /^(https?:)?\/?\//.test( modules ) ) {
// Called with a url like so:
// - "https://example.org/x.js"
// - "http://example.org/x.js"
// - "//example.org/x.js"
// - "/x.js"
if ( type === 'text/css' ) {
addLink( modules );
} else if ( type === 'text/javascript' || type === undefined ) {
addScript( modules );
} else {
// Unknown type
throw new Error( 'Invalid type ' + type );
}
} else {
// One or more modules
modules = typeof modules === 'string' ? [ modules ] : modules;
// Resolve modules into a flat list for internal queuing.
// This also filters out unknown modules and modules with
// unknown dependencies, allowing the rest to continue. (T36853)
// Omit ready and error parameters, we don't have callbacks
enqueue( resolveStubbornly( modules ) );
}
},
/**
* Change the state of one or more modules.
*
* @param {Object} states Object of module name/state pairs
* @private
*/
state: function ( states ) {
for ( var module in states ) {
if ( !( module in registry ) ) {
mw.loader.register( module );
}
setAndPropagate( module, states[ module ] );
}
},
/**
* Get the state of a module.
*
* Possible states for the public API:
*
* - `registered`: The module is available for loading but not yet requested.
* - `loading`, `loaded`, or `executing`: The module is currently being loaded.
* - `ready`: The module was successfully and fully loaded.
* - `error`: The module or one its dependencies has failed to load, e.g. due to
*    uncaught error from the module's script files.
* - `missing`: The module was requested but is not defined according to the server.
*
* Internal mw.loader state machine:
*
* - `registered`:
*    The module is known to the system but not yet required.
*    Meta data is stored by `register()`.
*    Calls to that method are generated server-side by StartupModule.
* - `loading`:
*    The module was required through mw.loader (either directly or as dependency of
*    another module). The client will fetch module contents from mw.loader.store
*    or from the server. The contents should later be received by `implement()`.
* - `loaded`:
*    The module has been received by `implement()`.
*    Once the module has no more dependencies in-flight, the module will be executed,
*    controlled via `setAndPropagate()` and `doPropagation()`.
* - `executing`:
*    The module is being executed (apply messages and stylesheets, execute scripts)
*    by `execute()`.
* - `ready`:
*    The module has been successfully executed.
* - `error`:
*    The module (or one of its dependencies) produced an uncaught error during execution.
* - `missing`:
*    The module was registered client-side and requested, but the server denied knowledge
*    of the module's existence.
*
* @param {string} module Name of module
* @return {string|null} The state, or null if the module (or its state) is not
*  in the registry.
*/
getState: function ( module ) {
return module in registry ? registry[ module ].state : null;
},
/**
* Get the exported value of a module.
*
* This static method is publicly exposed for debugging purposes
* only and must not be used in production code. In production code,
* please use the dynamically provided `require()` function instead.
*
* In case of lazy-loaded modules via mw.loader#using(), the returned
* Promise provides the function, see #using() for examples.
*
* @private
* @since 1.27
* @param {string} moduleName Module name
* @return {any} Exported value
*/
require: function ( moduleName ) {
var path;
if ( window.QUnit ) {
// Comply with Node specification
// https://nodejs.org/docs/v20.1.0/api/modules.html#all-together
//
// > Interpret X as a combination of NAME and SUBPATH, where the NAME
// > may have a "@scope/" prefix and the subpath begins with a slash (`/`).
//
// Regex inspired by Node [1], but simplified to suite our purposes
// and split in two in order to keep the Regex Star Height under 2,
// as per ESLint security/detect-unsafe-regex.
//
// These patterns match "@scope/module/dir/file.js" and "module/dir/file.js"
// respectively. They must not match "module.name" or "@scope/module.name".
//
// [1] https://github.com/nodejs/node/blob/v20.1.0/lib/internal/modules/cjs/loader.js#L554-L560
var paths = moduleName.startsWith( '@' ) ?
/^(@[^/]+\/[^/]+)\/(.*)$/.exec( moduleName ) :
// eslint-disable-next-line no-mixed-spaces-and-tabs
        /^([^/]+)\/(.*)$/.exec( moduleName );
if ( paths ) {
moduleName = paths[ 1 ];
path = paths[ 2 ];
}
}
// Only ready modules can be required
if ( mw.loader.getState( moduleName ) !== 'ready' ) {
// Module may've forgotten to declare a dependency
throw new Error( 'Module "' + moduleName + '" is not loaded' );
}
return path ?
makeRequireFunction( registry[ moduleName ], '' )( './' + path ) :
registry[ moduleName ].module.exports;
}
}
};
var hasPendingFlush = false,
hasPendingWrites = false;


/**
// Para tabelas com cabeçalhos em múltiplas linhas, tentamos capturar todos
* Actually update the store
if (table.querySelectorAll('thead tr').length > 1) {
*
// Para tabelas com cabeçalhos complexos, usamos a última linha de cabeçalhos
* @see #requestUpdate
const headerRows = table.querySelectorAll('thead tr');
* @private
const lastHeaderRow = headerRows[headerRows.length - 1];
*/
headers = Array.from(lastHeaderRow.querySelectorAll('th')).map(th => th.textContent.trim());
function flushWrites() {
// Process queued module names, serialise their contents to the in-memory store.
while ( store.queue.length ) {
store.set( store.queue.shift() );
}
}


// Optimization: Don't reserialize the entire store and rewrite localStorage,
// Para cada linha da tabela, adiciona atributos data-label às células
// if no module was added or changed.
const rows = table.querySelectorAll('tr');
if ( hasPendingWrites ) {
// Remove anything from the in-memory store that came from previous page
// loads that no longer corresponds with current module names and versions.
store.prune();


try {
// Começa a partir da primeira linha após os cabeçalhos
// Replacing the content of the module store might fail if the new
// Se estamos em uma tabela sem thead ou com th, começamos nas linhas de tbody
// contents would exceed the browser's localStorage size limit. To
// Se tabela tiver thead, ignoramos as linhas de cabeçalho
// avoid clogging the browser with stale data, always remove the old
let startRow = 0;
// value before attempting to store a new one.
if (table.querySelector('thead')) {
localStorage.removeItem( store.key );
startRow = table.querySelectorAll('thead tr').length;
localStorage.setItem( store.key, JSON.stringify( {
} else if (headers.length > 0 && table.querySelectorAll('th').length > 0) {
items: store.items,
// Se não tem thead mas tem th, assumimos primeira linha como cabeçalho
vary: store.vary,
startRow = 1;
// Store with 1e7 ms accuracy (1e4 seconds, or ~ 2.7 hours),
// which is enough for the purpose of expiring after ~ 30 days.
asOf: Math.ceil( Date.now() / 1e7 )
} ) );
} catch ( e ) {
mw.trackError( {
exception: e,
source: 'store-localstorage-update'
} );
}
}
}


// Let the next call to requestUpdate() create a new timer.
for (let i = startRow; i < rows.length; i++) {
hasPendingFlush = hasPendingWrites = false;
const cells = rows[i].querySelectorAll('td');
}
cells.forEach((cell, index) => {
 
if (index < headers.length && headers[index]) {
// We use a local variable `store` so that its easier to access, but also need to set
cell.setAttribute('data-label', headers[index]);
// this in mw.loader so its exported - combine the two
 
/**
* On browsers that implement the localStorage API, the module store serves as a
* smart complement to the browser cache. Unlike the browser cache, the module store
* can slice a concatenated response from ResourceLoader into its constituent
* modules and cache each of them separately, using each module's versioning scheme
* to determine when the cache should be invalidated.
*
* @private
* @singleton
* @class mw.loader.store
* @ignore
*/
mw.loader.store = store = {
// Whether the store is in use on this page.
enabled: null,
 
// The contents of the store, mapping '[name]@[version]' keys
// to module implementations.
items: {},
 
// Names of modules to be stored during the next update.
// See add() and update().
queue: [],
 
// Cache hit stats
stats: { hits: 0, misses: 0, expired: 0, failed: 0 },
 
/**
* The localStorage key for the entire module store. The key references
* $wgDBname to prevent clashes between wikis which share a common host.
*
* @property {string}
*/
key: "MediaWikiModuleStore:wikirealmu_mw14490",
 
/**
* A string containing various factors by which the module cache should vary.
*
* Defined by ResourceLoader\StartupModule::getStoreVary() in PHP.
*
* @property {string}
*/
vary: "customtimeless:2:1:en",
 
/**
* Initialize the store.
*
* Retrieves store from localStorage and (if successfully retrieved) decoding
* the stored JSON value to a plain object.
*/
init: function () {
// Init only once per page
if ( this.enabled === null ) {
this.enabled = false;
if ( false ) {
this.load();
} else {
// Clear any previous store to free up space. (T66721)
this.clear();
}
 
}
},
 
/**
* Internal helper for init(). Separated for ease of testing.
*/
load: function () {
// These are the scenarios to think about:
//
// 1. localStorage is disallowed by the browser.
//    This means `localStorage.getItem` throws.
//    The store stays disabled.
//
// 2. localStorage did not contain our store key.
//    This usually means the browser has a cold cache for this site,
//    and thus localStorage.getItem returns null.
//    The store will be enabled, and `items` starts fresh.
//
// 3. localStorage contains parseable data, but it's not usable.
//    This means the data is too old, or is not valid for mw.loader.store.vary
//    (e.g. user switched skin or language).
//    The store will be enabled, and `items` starts fresh.
//
// 4. localStorage contains invalid JSON data.
//    This means the data was corrupted, and `JSON.parse` throws.
//    The store will be enabled, and `items` starts fresh.
//
// 5. localStorage contains valid and usable JSON.
//    This means we have a warm cache from a previous visit.
//    The store will be enabled, and `items` starts with the stored data.
 
try {
var raw = localStorage.getItem( this.key );
 
// If we make it here, localStorage is enabled and available.
// The rest of the function may fail, but that only affects what we load from
// the cache. We'll still enable the store to allow storing new modules.
this.enabled = true;
 
// If getItem returns null, JSON.parse() will cast to string and re-parse, still null.
var data = JSON.parse( raw );
if ( data &&
data.vary === this.vary &&
data.items &&
// Only use if it's been less than 30 days since the data was written
// 30 days = 2,592,000 s = 2,592,000,000 ms = ± 259e7 ms
Date.now() < ( data.asOf * 1e7 ) + 259e7
) {
// The data is not corrupt, matches our vary context, and has not expired.
this.items = data.items;
}
} catch ( e ) {
// Ignore error from localStorage or JSON.parse.
// Don't print any warning (T195647).
}
},
 
/**
* Retrieve a module from the store and update cache hit stats.
*
* @param {string} module Module name
* @return {string|boolean} Module implementation or false if unavailable
*/
get: function ( module ) {
if ( this.enabled ) {
var key = getModuleKey( module );
if ( key in this.items ) {
this.stats.hits++;
return this.items[ key ];
}
 
this.stats.misses++;
}
 
return false;
},
 
/**
* Queue the name of a module that the next update should consider storing.
*
* @since 1.32
* @param {string} module Module name
*/
add: function ( module ) {
if ( this.enabled ) {
this.queue.push( module );
this.requestUpdate();
}
},
 
/**
* Add the contents of the named module to the in-memory store.
*
* This method does not guarantee that the module will be stored.
* Inspection of the module's meta data and size will ultimately decide that.
*
* This method is considered internal to mw.loader.store and must only
* be called if the store is enabled.
*
* @private
* @param {string} module Module name
*/
set: function ( module ) {
var descriptor = registry[ module ],
key = getModuleKey( module );
 
if (
// Already stored a copy of this exact version
key in this.items ||
// Module failed to load
!descriptor ||
descriptor.state !== 'ready' ||
// Unversioned, private, or site-/user-specific
!descriptor.version ||
descriptor.group === 1 ||
descriptor.group === 0 ||
// Legacy descriptor, registered with mw.loader.implement
!descriptor.declarator
) {
// Decline to store
return;
}
 
var script = String( descriptor.declarator );
// Modules whose serialised form exceeds 100 kB won't be stored (T66721).
if ( script.length > 1e5 ) {
return;
}
 
var srcParts = [
'mw.loader.impl(',
script,
');\n'
];
if ( true ) {
srcParts.push( '// Saved in localStorage at ', ( new Date() ).toISOString(), '\n' );
var sourceLoadScript = sources[ descriptor.source ];
var query = Object.create( {
    "lang": "en",
    "skin": "customtimeless",
    "debug": "1"
} );
query.modules = module;
query.version = getCombinedVersion( [ module ] );
query = sortQuery( query );
srcParts.push(
'//# sourceURL=',
// Use absolute URL so that Firefox console stack trace links will work
( new URL( sourceLoadScript, location ) ).href,
'?',
makeQueryString( query ),
'\n'
);
 
query.sourcemap = '1';
query = sortQuery( query );
srcParts.push(
'//# sourceMappingURL=',
sourceLoadScript,
'?',
makeQueryString( query )
);
}
this.items[ key ] = srcParts.join( '' );
hasPendingWrites = true;
},
 
/**
* Iterate through the module store, removing any item that does not correspond
* (in name and version) to an item in the module registry.
*/
prune: function () {
for ( var key in this.items ) {
// key is in the form [name]@[version], slice to get just the name
// to provide to getModuleKey, which will return a key in the same
// form but with the latest version
if ( getModuleKey( splitModuleKey( key ).name ) !== key ) {
this.stats.expired++;
delete this.items[ key ];
}
}
}
});
},
 
/**
* Clear the entire module store right now.
*/
clear: function () {
this.items = {};
try {
localStorage.removeItem( this.key );
} catch ( e ) {}
},
 
/**
* Request a sync of the in-memory store back to persisted localStorage.
*
* This function debounces updates. The debouncing logic should account
* for the following factors:
*
* - Writing to localStorage is an expensive operation that must not happen
*  during the critical path of initialising and executing module code.
*  Instead, it should happen at a later time after modules have been given
*  time and priority to do their thing first.
*
* - This method is called from mw.loader.store.add(), which will be called
*  hundreds of times on a typical page, including within the same call-stack
*  and eventloop-tick. This is because responses from load.php happen in
*  batches. As such, we want to allow all modules from the same load.php
*  response to be written to disk with a single flush, not many.
*
* - Repeatedly deleting and creating timers is non-trivial.
*
* - localStorage is shared by all pages from the same origin, if multiple
*  pages are loaded with different module sets, the possibility exists that
*  modules saved by one page will be clobbered by another. The impact of
*  this is minor, it merely causes a less efficient cache use, and the
*  problem would be corrected by subsequent page views.
*
* This method is considered internal to mw.loader.store and must only
* be called if the store is enabled.
*
* @private
* @method
*/
requestUpdate: function () {
// On the first call to requestUpdate(), create a timer that
// waits at least two seconds, then calls onTimeout.
// The main purpose is to allow the current batch of load.php
// responses to complete before we do anything. This batch can
// trigger many hundreds of calls to requestUpdate().
if ( !hasPendingFlush ) {
hasPendingFlush = setTimeout(
// Defer the actual write via requestIdleCallback
function () {
mw.requestIdleCallback( flushWrites );
},
2000
);
}
}
}
};
});
}() );
}
/* global mw */
mw.requestIdleCallbackInternal = function ( callback ) {
setTimeout( function () {
var start = mw.now();
callback( {
didTimeout: false,
timeRemaining: function () {
// Hard code a target maximum busy time of 50 milliseconds
return Math.max( 0, 50 - ( mw.now() - start ) );
}
} );
}, 1 );
};


/**
// Executa quando o DOM estiver pronto
* Schedule a deferred task to run in the background.
if (document.readyState === 'loading') {
*
document.addEventListener('DOMContentLoaded', makeTablesResponsive);
* This allows code to perform tasks in the main thread without impacting
} else {
* time-critical operations such as animations and response to input events.
makeTablesResponsive();
*
}
* Basic logic is as follows:
*
* - User input event should be acknowledged within 100ms per [RAIL][].
* - Idle work should be grouped in blocks of upto 50ms so that enough time
*  remains for the event handler to execute and any rendering to take place.
* - Whenever a native event happens (e.g. user input), the deadline for any
*  running idle callback drops to 0.
* - As long as the deadline is non-zero, other callbacks pending may be
*  executed in the same idle period.
*
* See also:
*
* - <https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback>
* - <https://w3c.github.io/requestidlecallback/>
* - <https://developers.google.com/web/updates/2015/08/using-requestidlecallback>
*
* [RAIL]: https://developers.google.com/web/fundamentals/performance/rail
*
* @memberof mw
* @method
* @param {Function} callback
* @param {Object} [options]
* @param {number} [options.timeout] If set, the callback will be scheduled for
*  immediate execution after this amount of time (in milliseconds) if it didn't run
*  by that time.
*/
mw.requestIdleCallback = window.requestIdleCallback ?
// Bind because it throws TypeError if context is not window
window.requestIdleCallback.bind( window ) :
mw.requestIdleCallbackInternal;
// Note: Polyfill was previously disabled due to
// https://bugs.chromium.org/p/chromium/issues/detail?id=647870
// See also <http://codepen.io/Krinkle/full/XNGEvv>
 
 
/**
* The $CODE placeholder is substituted in ResourceLoaderStartUpModule.php.
*/
( function () {
/* global mw */
var queue;
 
mw.loader.addSource({
    "local": "/load.php"
});
mw.loader.register([
    [
        "site",
        "",
        [
            1
        ]
    ],
    [
        "site.styles",
        "",
        [],
        2
    ],
    [
        "filepage",
        ""
    ],
    [
        "user",
        "",
        [],
        0
    ],
    [
        "user.styles",
        "",
        [],
        0
    ],
    [
        "user.options",
        "",
        [],
        1
    ],
    [
        "mediawiki.skinning.interface",
        ""
    ],
    [
        "jquery.makeCollapsible.styles",
        ""
    ],
    [
        "mediawiki.skinning.content.parsoid",
        ""
    ],
    [
        "web2017-polyfills",
        "",
        [],
        null,
        null,
        "return 'IntersectionObserver' in window \u0026\u0026\n    typeof fetch === 'function' \u0026\u0026\n    // Ensure:\n    // - standards compliant URL\n    // - standards compliant URLSearchParams\n    // - URL#toJSON method (came later)\n    //\n    // Facts:\n    // - All browsers with URL also have URLSearchParams, don't need to check.\n    // - Safari \u003C= 7 and Chrome \u003C= 31 had a buggy URL implementations.\n    // - Firefox 29-43 had an incomplete URLSearchParams implementation. https://caniuse.com/urlsearchparams\n    // - URL#toJSON was released in Firefox 54, Safari 11, and Chrome 71. https://caniuse.com/mdn-api_url_tojson\n    //  Thus we don't need to check for buggy URL or incomplete URLSearchParams.\n    typeof URL === 'function' \u0026\u0026 'toJSON' in URL.prototype;\n"
    ],
    [
        "jquery",
        ""
    ],
    [
        "mediawiki.base",
        "",
        [
            10
        ]
    ],
    [
        "jquery.chosen",
        ""
    ],
    [
        "jquery.client",
        ""
    ],
    [
        "jquery.confirmable",
        "",
        [
            101
        ]
    ],
    [
        "jquery.highlightText",
        "",
        [
            75
        ]
    ],
    [
        "jquery.i18n",
        "",
        [
            100
        ]
    ],
    [
        "jquery.lengthLimit",
        "",
        [
            60
        ]
    ],
    [
        "jquery.makeCollapsible",
        "",
        [
            7,
            75
        ]
    ],
    [
        "jquery.spinner",
        "",
        [
            20
        ]
    ],
    [
        "jquery.spinner.styles",
        ""
    ],
    [
        "jquery.suggestions",
        "",
        [
            15
        ]
    ],
    [
        "jquery.tablesorter",
        "",
        [
            23,
            102,
            75
        ]
    ],
    [
        "jquery.tablesorter.styles",
        ""
    ],
    [
        "jquery.textSelection",
        "",
        [
            13
        ]
    ],
    [
        "jquery.ui",
        ""
    ],
    [
        "moment",
        "",
        [
            98,
            75
        ]
    ],
    [
        "vue",
        "",
        [
            109
        ]
    ],
    [
        "vuex",
        "",
        [
            27
        ]
    ],
    [
        "pinia",
        "",
        [
            27
        ]
    ],
    [
        "@wikimedia/codex",
        "",
        [
            31,
            27
        ]
    ],
    [
        "codex-styles",
        ""
    ],
    [
        "mediawiki.codex.messagebox.styles",
        ""
    ],
    [
        "@wikimedia/codex-search",
        "",
        [
            34,
            27
        ]
    ],
    [
        "codex-search-styles",
        ""
    ],
    [
        "mediawiki.template",
        ""
    ],
    [
        "mediawiki.template.mustache",
        "",
        [
            35
        ]
    ],
    [
        "mediawiki.apipretty",
        ""
    ],
    [
        "mediawiki.api",
        "",
        [
            101
        ]
    ],
    [
        "mediawiki.content.json",
        ""
    ],
    [
        "mediawiki.confirmCloseWindow",
        ""
    ],
    [
        "mediawiki.debug",
        "",
        [
            196
        ]
    ],
    [
        "mediawiki.diff",
        "",
        [
            38
        ]
    ],
    [
        "mediawiki.diff.styles",
        ""
    ],
    [
        "mediawiki.feedback",
        "",
        [
            336,
            204
        ]
    ],
    [
        "mediawiki.feedlink",
        ""
    ],
    [
        "mediawiki.filewarning",
        "",
        [
            196,
            208
        ]
    ],
    [
        "mediawiki.ForeignApi",
        "",
        [
            48
        ]
    ],
    [
        "mediawiki.ForeignApi.core",
        "",
        [
            38,
            193
        ]
    ],
    [
        "mediawiki.helplink",
        ""
    ],
    [
        "mediawiki.hlist",
        ""
    ],
    [
        "mediawiki.htmlform",
        "",
        [
            171
        ]
    ],
    [
        "mediawiki.htmlform.ooui",
        "",
        [
            196
        ]
    ],
    [
        "mediawiki.htmlform.styles",
        ""
    ],
    [
        "mediawiki.htmlform.codex.styles",
        ""
    ],
    [
        "mediawiki.htmlform.ooui.styles",
        ""
    ],
    [
        "mediawiki.inspect",
        "",
        [
            60,
            75
        ]
    ],
    [
        "mediawiki.notification",
        "",
        [
            75,
            81
        ]
    ],
    [
        "mediawiki.notification.convertmessagebox",
        "",
        [
            57
        ]
    ],
    [
        "mediawiki.notification.convertmessagebox.styles",
        ""
    ],
    [
        "mediawiki.String",
        ""
    ],
    [
        "mediawiki.pager.styles",
        ""
    ],
    [
        "mediawiki.pulsatingdot",
        ""
    ],
    [
        "mediawiki.searchSuggest",
        "",
        [
            21,
            38
        ]
    ],
    [
        "mediawiki.storage",
        "",
        [
            75
        ]
    ],
    [
        "mediawiki.Title",
        "",
        [
            60,
            75
        ]
    ],
    [
        "mediawiki.Upload",
        "",
        [
            38
        ]
    ],
    [
        "mediawiki.ForeignUpload",
        "",
        [
            47,
            66
        ]
    ],
    [
        "mediawiki.Upload.Dialog",
        "",
        [
            69
        ]
    ],
    [
        "mediawiki.Upload.BookletLayout",
        "",
        [
            66,
            73,
            26,
            199,
            204,
            209,
            210
        ]
    ],
    [
        "mediawiki.ForeignStructuredUpload.BookletLayout",
        "",
        [
            67,
            69,
            105,
            175,
            169
        ]
    ],
    [
        "mediawiki.toc",
        "",
        [
            78
        ]
    ],
    [
        "mediawiki.Uri",
        "",
        [
            75
        ]
    ],
    [
        "mediawiki.user",
        "",
        [
            38,
            78
        ]
    ],
    [
        "mediawiki.userSuggest",
        "",
        [
            21,
            38
        ]
    ],
    [
        "mediawiki.util",
        "",
        [
            13,
            9
        ]
    ],
    [
        "mediawiki.checkboxtoggle",
        ""
    ],
    [
        "mediawiki.checkboxtoggle.styles",
        ""
    ],
    [
        "mediawiki.cookie",
        ""
    ],
    [
        "mediawiki.experiments",
        ""
    ],
    [
        "mediawiki.editfont.styles",
        ""
    ],
    [
        "mediawiki.visibleTimeout",
        ""
    ],
    [
        "mediawiki.action.edit",
        "",
        [
            24,
            83,
            80,
            171
        ]
    ],
    [
        "mediawiki.action.edit.styles",
        ""
    ],
    [
        "mediawiki.action.edit.collapsibleFooter",
        "",
        [
            18,
            64
        ]
    ],
    [
        "mediawiki.action.edit.preview",
        "",
        [
            19,
            111
        ]
    ],
    [
        "mediawiki.action.history",
        "",
        [
            18
        ]
    ],
    [
        "mediawiki.action.history.styles",
        ""
    ],
    [
        "mediawiki.action.protect",
        "",
        [
            171
        ]
    ],
    [
        "mediawiki.action.view.metadata",
        "",
        [
            96
        ]
    ],
    [
        "mediawiki.editRecovery.postEdit",
        ""
    ],
    [
        "mediawiki.editRecovery.edit",
        "",
        [
            57,
            168,
            212
        ]
    ],
    [
        "mediawiki.action.view.postEdit",
        "",
        [
            57,
            64,
            158,
            196,
            216
        ]
    ],
    [
        "mediawiki.action.view.redirect",
        ""
    ],
    [
        "mediawiki.action.view.redirectPage",
        ""
    ],
    [
        "mediawiki.action.edit.editWarning",
        "",
        [
            24,
            40,
            101
        ]
    ],
    [
        "mediawiki.action.view.filepage",
        ""
    ],
    [
        "mediawiki.action.styles",
        ""
    ],
    [
        "mediawiki.language",
        "",
        [
            99
        ]
    ],
    [
        "mediawiki.cldr",
        "",
        [
            100
        ]
    ],
    [
        "mediawiki.libs.pluralruleparser",
        ""
    ],
    [
        "mediawiki.jqueryMsg",
        "",
        [
            65,
            98,
            5
        ]
    ],
    [
        "mediawiki.language.months",
        "",
        [
            98
        ]
    ],
    [
        "mediawiki.language.names",
        "",
        [
            98
        ]
    ],
    [
        "mediawiki.language.specialCharacters",
        "",
        [
            98
        ]
    ],
    [
        "mediawiki.libs.jpegmeta",
        ""
    ],
    [
        "mediawiki.page.gallery",
        "",
        [
            107,
            75
        ]
    ],
    [
        "mediawiki.page.gallery.styles",
        ""
    ],
    [
        "mediawiki.page.gallery.slideshow",
        "",
        [
            199,
            219,
            221
        ]
    ],
    [
        "mediawiki.page.ready",
        "",
        [
            38
        ]
    ],
    [
        "mediawiki.page.watch.ajax",
        "",
        [
            73
        ]
    ],
    [
        "mediawiki.page.preview",
        "",
        [
            18,
            24,
            42,
            43,
            73,
            196
        ]
    ],
    [
        "mediawiki.page.image.pagination",
        "",
        [
            19,
            75
        ]
    ],
    [
        "mediawiki.page.media",
        ""
    ],
    [
        "mediawiki.rcfilters.filters.base.styles",
        ""
    ],
    [
        "mediawiki.rcfilters.highlightCircles.seenunseen.styles",
        ""
    ],
    [
        "mediawiki.rcfilters.filters.ui",
        "",
        [
            18,
            72,
            73,
            166,
            205,
            212,
            215,
            216,
            217,
            219,
            220
        ]
    ],
    [
        "mediawiki.interface.helpers.styles",
        ""
    ],
    [
        "mediawiki.special",
        ""
    ],
    [
        "mediawiki.special.apisandbox",
        "",
        [
            18,
            186,
            172,
            195
        ]
    ],
    [
        "mediawiki.special.restsandbox.styles",
        ""
    ],
    [
        "mediawiki.special.restsandbox",
        "",
        [
            120
        ]
    ],
    [
        "mediawiki.special.block",
        "",
        [
            51,
            169,
            185,
            176,
            186,
            183,
            212
        ]
    ],
    [
        "mediawiki.misc-authed-ooui",
        "",
        [
            19,
            52,
            166,
            171
        ]
    ],
    [
        "mediawiki.misc-authed-pref",
        "",
        [
            5
        ]
    ],
    [
        "mediawiki.misc-authed-curate",
        "",
        [
            12,
            14,
            17,
            19,
            38
        ]
    ],
    [
        "mediawiki.special.block.codex",
        "",
        [
            30,
            29
        ]
    ],
    [
        "mediawiki.protectionIndicators.styles",
        ""
    ],
    [
        "mediawiki.special.changeslist",
        ""
    ],
    [
        "mediawiki.special.changeslist.watchlistexpiry",
        "",
        [
            118,
            216
        ]
    ],
    [
        "mediawiki.special.changeslist.enhanced",
        ""
    ],
    [
        "mediawiki.special.changeslist.legend",
        ""
    ],
    [
        "mediawiki.special.changeslist.legend.js",
        "",
        [
            78
        ]
    ],
    [
        "mediawiki.special.contributions",
        "",
        [
            18,
            169,
            195
        ]
    ],
    [
        "mediawiki.special.import.styles.ooui",
        ""
    ],
    [
        "mediawiki.special.changecredentials",
        ""
    ],
    [
        "mediawiki.special.changeemail",
        ""
    ],
    [
        "mediawiki.special.preferences.ooui",
        "",
        [
            40,
            80,
            58,
            64,
            176,
            171,
            204
        ]
    ],
    [
        "mediawiki.special.preferences.styles.ooui",
        ""
    ],
    [
        "mediawiki.special.editrecovery.styles",
        ""
    ],
    [
        "mediawiki.special.editrecovery",
        "",
        [
            27
        ]
    ],
    [
        "mediawiki.special.search",
        "",
        [
            188
        ]
    ],
    [
        "mediawiki.special.search.commonsInterwikiWidget",
        "",
        [
            38
        ]
    ],
    [
        "mediawiki.special.search.interwikiwidget.styles",
        ""
    ],
    [
        "mediawiki.special.search.styles",
        ""
    ],
    [
        "mediawiki.special.unwatchedPages",
        "",
        [
            38
        ]
    ],
    [
        "mediawiki.special.upload",
        "",
        [
            19,
            38,
            40,
            105,
            118,
            35
        ]
    ],
    [
        "mediawiki.authenticationPopup",
        "",
        [
            19,
            204
        ]
    ],
    [
        "mediawiki.authenticationPopup.success",
        ""
    ],
    [
        "mediawiki.special.userlogin.common.styles",
        ""
    ],
    [
        "mediawiki.special.userlogin.login.styles",
        ""
    ],
    [
        "mediawiki.special.userlogin.authentication-popup",
        ""
    ],
    [
        "mediawiki.special.createaccount",
        "",
        [
            38
        ]
    ],
    [
        "mediawiki.special.userlogin.signup.styles",
        ""
    ],
    [
        "mediawiki.special.userrights",
        "",
        [
            17,
            58
        ]
    ],
    [
        "mediawiki.special.watchlist",
        "",
        [
            196,
            216
        ]
    ],
    [
        "mediawiki.tempUserBanner.styles",
        ""
    ],
    [
        "mediawiki.tempUserBanner",
        "",
        [
            101
        ]
    ],
    [
        "mediawiki.tempUserCreated",
        "",
        [
            75
        ]
    ],
    [
        "mediawiki.ui",
        ""
    ],
    [
        "mediawiki.ui.checkbox",
        ""
    ],
    [
        "mediawiki.ui.radio",
        ""
    ],
    [
        "mediawiki.legacy.messageBox",
        ""
    ],
    [
        "mediawiki.ui.button",
        ""
    ],
    [
        "mediawiki.ui.input",
        ""
    ],
    [
        "mediawiki.ui.icon",
        ""
    ],
    [
        "mediawiki.widgets",
        "",
        [
            167,
            199,
            209,
            210
        ]
    ],
    [
        "mediawiki.widgets.styles",
        ""
    ],
    [
        "mediawiki.widgets.AbandonEditDialog",
        "",
        [
            204
        ]
    ],
    [
        "mediawiki.widgets.DateInputWidget",
        "",
        [
            170,
            26,
            199,
            221
        ]
    ],
    [
        "mediawiki.widgets.DateInputWidget.styles",
        ""
    ],
    [
        "mediawiki.widgets.visibleLengthLimit",
        "",
        [
            17,
            196
        ]
    ],
    [
        "mediawiki.widgets.datetime",
        "",
        [
            196,
            216,
            220,
            221
        ]
    ],
    [
        "mediawiki.widgets.expiry",
        "",
        [
            172,
            26,
            199
        ]
    ],
    [
        "mediawiki.widgets.CheckMatrixWidget",
        "",
        [
            196
        ]
    ],
    [
        "mediawiki.widgets.CategoryMultiselectWidget",
        "",
        [
            47,
            199
        ]
    ],
    [
        "mediawiki.widgets.SelectWithInputWidget",
        "",
        [
            177,
            199
        ]
    ],
    [
        "mediawiki.widgets.SelectWithInputWidget.styles",
        ""
    ],
    [
        "mediawiki.widgets.SizeFilterWidget",
        "",
        [
            179,
            199
        ]
    ],
    [
        "mediawiki.widgets.SizeFilterWidget.styles",
        ""
    ],
    [
        "mediawiki.widgets.MediaSearch",
        "",
        [
            47,
            73,
            199
        ]
    ],
    [
        "mediawiki.widgets.Table",
        "",
        [
            199
        ]
    ],
    [
        "mediawiki.widgets.TagMultiselectWidget",
        "",
        [
            199
        ]
    ],
    [
        "mediawiki.widgets.UserInputWidget",
        "",
        [
            199
        ]
    ],
    [
        "mediawiki.widgets.UsersMultiselectWidget",
        "",
        [
            199
        ]
    ],
    [
        "mediawiki.widgets.NamespacesMultiselectWidget",
        "",
        [
            166
        ]
    ],
    [
        "mediawiki.widgets.TitlesMultiselectWidget",
        "",
        [
            166
        ]
    ],
    [
        "mediawiki.widgets.TagMultiselectWidget.styles",
        ""
    ],
    [
        "mediawiki.widgets.SearchInputWidget",
        "",
        [
            63,
            166,
            216
        ]
    ],
    [
        "mediawiki.widgets.SearchInputWidget.styles",
        ""
    ],
    [
        "mediawiki.widgets.ToggleSwitchWidget",
        "",
        [
            199
        ]
    ],
    [
        "mediawiki.watchstar.widgets",
        "",
        [
            195
        ]
    ],
    [
        "mediawiki.deflate",
        ""
    ],
    [
        "oojs",
        ""
    ],
    [
        "mediawiki.router",
        "",
        [
            193
        ]
    ],
    [
        "oojs-ui",
        "",
        [
            202,
            199,
            204
        ]
    ],
    [
        "oojs-ui-core",
        "",
        [
            109,
            193,
            198,
            197,
            206
        ]
    ],
    [
        "oojs-ui-core.styles",
        ""
    ],
    [
        "oojs-ui-core.icons",
        ""
    ],
    [
        "oojs-ui-widgets",
        "",
        [
            196,
            201
        ]
    ],
    [
        "oojs-ui-widgets.styles",
        ""
    ],
    [
        "oojs-ui-widgets.icons",
        ""
    ],
    [
        "oojs-ui-toolbars",
        "",
        [
            196,
            203
        ]
    ],
    [
        "oojs-ui-toolbars.icons",
        ""
    ],
    [
        "oojs-ui-windows",
        "",
        [
            196,
            205
        ]
    ],
    [
        "oojs-ui-windows.icons",
        ""
    ],
    [
        "oojs-ui.styles.indicators",
        ""
    ],
    [
        "oojs-ui.styles.icons-accessibility",
        ""
    ],
    [
        "oojs-ui.styles.icons-alerts",
        ""
    ],
    [
        "oojs-ui.styles.icons-content",
        ""
    ],
    [
        "oojs-ui.styles.icons-editing-advanced",
        ""
    ],
    [
        "oojs-ui.styles.icons-editing-citation",
        ""
    ],
    [
        "oojs-ui.styles.icons-editing-core",
        ""
    ],
    [
        "oojs-ui.styles.icons-editing-functions",
        ""
    ],
    [
        "oojs-ui.styles.icons-editing-list",
        ""
    ],
    [
        "oojs-ui.styles.icons-editing-styling",
        ""
    ],
    [
        "oojs-ui.styles.icons-interactions",
        ""
    ],
    [
        "oojs-ui.styles.icons-layout",
        ""
    ],
    [
        "oojs-ui.styles.icons-location",
        ""
    ],
    [
        "oojs-ui.styles.icons-media",
        ""
    ],
    [
        "oojs-ui.styles.icons-moderation",
        ""
    ],
    [
        "oojs-ui.styles.icons-movement",
        ""
    ],
    [
        "oojs-ui.styles.icons-user",
        ""
    ],
    [
        "oojs-ui.styles.icons-wikimedia",
        ""
    ],
    [
        "skins.minerva.base.styles",
        ""
    ],
    [
        "skins.minerva.content.styles.images",
        ""
    ],
    [
        "skins.minerva.amc.styles",
        ""
    ],
    [
        "skins.minerva.overflow.icons",
        ""
    ],
    [
        "skins.minerva.icons.wikimedia",
        ""
    ],
    [
        "skins.minerva.mainPage.styles",
        ""
    ],
    [
        "skins.minerva.userpage.styles",
        ""
    ],
    [
        "skins.minerva.personalMenu.icons",
        ""
    ],
    [
        "skins.minerva.mainMenu.advanced.icons",
        ""
    ],
    [
        "skins.minerva.mainMenu.icons",
        ""
    ],
    [
        "skins.minerva.mainMenu.styles",
        ""
    ],
    [
        "skins.minerva.loggedin.styles",
        ""
    ],
    [
        "skins.minerva.scripts",
        "",
        [
            72,
            79,
            110,
            194,
            64,
            335,
            233,
            234,
            237,
            36
        ]
    ],
    [
        "skins.minerva.messageBox.styles",
        ""
    ],
    [
        "skins.minerva.categories.styles",
        ""
    ],
    [
        "skins.minerva.codex.styles",
        ""
    ],
    [
        "skins.monobook.styles",
        ""
    ],
    [
        "skins.monobook.scripts",
        "",
        [
            73,
            208
        ]
    ],
    [
        "skins.timeless",
        ""
    ],
    [
        "skins.timeless.js",
        ""
    ],
    [
        "skins.vector.search.codex.styles",
        ""
    ],
    [
        "skins.vector.search.codex.scripts",
        "",
        [
            244,
            27
        ]
    ],
    [
        "skins.vector.search",
        "",
        [
            245
        ]
    ],
    [
        "skins.vector.styles.legacy",
        ""
    ],
    [
        "skins.vector.styles",
        ""
    ],
    [
        "skins.vector.icons.js",
        ""
    ],
    [
        "skins.vector.icons",
        ""
    ],
    [
        "skins.vector.clientPreferences",
        "",
        [
            73
        ]
    ],
    [
        "skins.vector.js",
        "",
        [
            79,
            110,
            64,
            251,
            249
        ]
    ],
    [
        "skins.vector.legacy.js",
        "",
        [
            109
        ]
    ],
    [
        "skins.customtimeless.styles",
        ""
    ],
    [
        "ext.wikiEditor",
        "",
        [
            24,
            25,
            104,
            73,
            166,
            211,
            212,
            214,
            215,
            219,
            35
        ],
        3
    ],
    [
        "ext.wikiEditor.styles",
        "",
        [],
        3
    ],
    [
        "ext.wikiEditor.images",
        ""
    ],
    [
        "ext.wikiEditor.realtimepreview",
        "",
        [
            255,
            257,
            111,
            62,
            64,
            216
        ]
    ],
    [
        "mmv",
        "",
        [
            263
        ]
    ],
    [
        "mmv.codex",
        ""
    ],
    [
        "mmv.ui.reuse",
        "",
        [
            73,
            166,
            260
        ]
    ],
    [
        "mmv.ui.restriction",
        ""
    ],
    [
        "mmv.bootstrap",
        "",
        [
            194,
            64,
            73,
            260
        ]
    ],
    [
        "mmv.bootstrap.autostart",
        "",
        [
            263
        ]
    ],
    [
        "mmv.head",
        "",
        [
            263
        ]
    ],
    [
        "ext.uls.common",
        "",
        [
            286,
            64,
            73
        ]
    ],
    [
        "ext.uls.compactlinks",
        "",
        [
            266
        ]
    ],
    [
        "ext.uls.ime",
        "",
        [
            276,
            284
        ]
    ],
    [
        "ext.uls.displaysettings",
        "",
        [
            268,
            275
        ]
    ],
    [
        "ext.uls.geoclient",
        "",
        [
            78
        ]
    ],
    [
        "ext.uls.i18n",
        "",
        [
            16,
            75
        ]
    ],
    [
        "ext.uls.interface",
        "",
        [
            282,
            193
        ]
    ],
    [
        "ext.uls.interlanguage",
        ""
    ],
    [
        "ext.uls.languagenames",
        ""
    ],
    [
        "ext.uls.languagesettings",
        "",
        [
            277,
            278,
            287
        ]
    ],
    [
        "ext.uls.mediawiki",
        "",
        [
            266,
            274,
            277,
            282,
            285
        ]
    ],
    [
        "ext.uls.messages",
        "",
        [
            271
        ]
    ],
    [
        "ext.uls.preferences",
        "",
        [
            64,
            73
        ]
    ],
    [
        "ext.uls.preferencespage",
        ""
    ],
    [
        "ext.uls.pt",
        ""
    ],
    [
        "ext.uls.setlang",
        "",
        [
            30
        ]
    ],
    [
        "ext.uls.webfonts",
        "",
        [
            278
        ]
    ],
    [
        "ext.uls.webfonts.repository",
        ""
    ],
    [
        "jquery.ime",
        ""
    ],
    [
        "jquery.uls",
        "",
        [
            16,
            286,
            287
        ]
    ],
    [
        "jquery.uls.data",
        ""
    ],
    [
        "jquery.uls.grid",
        ""
    ],
    [
        "rangy.core",
        ""
    ],
    [
        "ext.translate",
        ""
    ],
    [
        "ext.translate.base",
        "",
        [
            38
        ]
    ],
    [
        "ext.translate.dropdownmenu",
        ""
    ],
    [
        "ext.translate.specialpages.styles",
        ""
    ],
    [
        "ext.translate.loader",
        ""
    ],
    [
        "ext.translate.messagetable",
        "",
        [
            290,
            293,
            299,
            72
        ]
    ],
    [
        "ext.translate.pagetranslation.uls",
        "",
        [
            276
        ]
    ],
    [
        "ext.translate.edit.documentation.styles",
        ""
    ],
    [
        "ext.translate.entity.selector",
        "",
        [
            199
        ]
    ],
    [
        "ext.translate.eventlogginghelpers",
        ""
    ],
    [
        "ext.translate.parsers",
        "",
        [
            75
        ]
    ],
    [
        "ext.translate.quickedit",
        ""
    ],
    [
        "ext.translate.selecttoinput",
        ""
    ],
    [
        "ext.translate.special.groupstats",
        ""
    ],
    [
        "ext.translate.special.languagestats",
        "",
        [
            297,
            22
        ]
    ],
    [
        "ext.translate.special.exporttranslations",
        "",
        [
            297
        ]
    ],
    [
        "ext.translate.messagerenamedialog",
        "",
        [
            199,
            204
        ]
    ],
    [
        "ext.translate.cleanchanges",
        ""
    ],
    [
        "ext.translate.groupselector",
        "",
        [
            290,
            293,
            320
        ]
    ],
    [
        "ext.translate.editor",
        "",
        [
            290,
            291,
            18,
            24,
            72,
            80,
            103,
            162,
            73
        ]
    ],
    [
        "ext.translate.special.managetranslatorsandbox.styles",
        ""
    ],
    [
        "ext.translate.special.movetranslatablebundles.styles",
        ""
    ],
    [
        "ext.translate.special.pagemigration",
        "",
        [
            38,
            159,
            163
        ]
    ],
    [
        "ext.translate.special.pagepreparation",
        "",
        [
            38,
            43,
            162
        ]
    ],
    [
        "ext.translate.special.searchtranslations",
        "",
        [
            308,
            307,
            276
        ]
    ],
    [
        "ext.translate.special.translate",
        "",
        [
            308,
            298,
            307,
            294,
            286,
            64
        ]
    ],
    [
        "ext.translate.special.translate.styles",
        ""
    ],
    [
        "ext.translate.specialTranslationStash",
        "",
        [
            308,
            294,
            276
        ]
    ],
    [
        "ext.translate.special.translationstats",
        "",
        [
            319,
            172
        ]
    ],
    [
        "ext.translate.translationstats.embedded",
        "",
        [
            319
        ]
    ],
    [
        "ext.translate.translationstats.graphbuilder.js",
        "",
        [
            38
        ]
    ],
    [
        "ext.translate.statsbar",
        ""
    ],
    [
        "ext.translate.statstable",
        ""
    ],
    [
        "ext.translate.tag.languages",
        ""
    ],
    [
        "ext.translate.special.aggregategroups",
        "",
        [
            297
        ]
    ],
    [
        "ext.translate.special.importtranslations",
        ""
    ],
    [
        "ext.translate.special.managetranslatorsandbox",
        "",
        [
            293,
            276,
            26
        ]
    ],
    [
        "ext.translate.special.pagetranslation",
        "",
        [
            72,
            163,
            166
        ]
    ],
    [
        "ext.translate.special.managegroups",
        "",
        [
            305
        ]
    ],
    [
        "ext.translate.ve",
        "",
        [
            "ext.visualEditor.mwcore"
        ]
    ],
    [
        "ext.translate.codemirror",
        ""
    ],
    [
        "ext.embedVideo.messages",
        ""
    ],
    [
        "ext.embedVideo.videolink",
        ""
    ],
    [
        "ext.embedVideo.consent",
        ""
    ],
    [
        "ext.embedVideo.overlay",
        ""
    ],
    [
        "ext.embedVideo.styles",
        ""
    ],
    [
        "mobile.startup",
        "",
        [
            63
        ]
    ],
    [
        "mediawiki.messagePoster",
        "",
        [
            47
        ]
    ]
]);


// First set page-specific config needed by mw.loader (wgUserName)
// Verifica novamente após o carregamento da página (para conteúdo carregado dinamicamente)
mw.config.set( window.RLCONF || {} );
window.addEventListener('load', makeTablesResponsive);
mw.loader.state( window.RLSTATE || {} );
mw.loader.load( window.RLPAGEMODULES || [] );


// Process RLQ callbacks
// Para lidar com conteúdo adicionado dinamicamente (como em edições AJAX)
//
// Observe mutações no DOM
// The code in these callbacks could've been exposed from load.php and
if (typeof MutationObserver !== 'undefined') {
// requested client-side. Instead, they are pushed by the server directly
const observer = new MutationObserver(function(mutations) {
// (from ResourceLoaderClientHtml and other parts of MediaWiki). This
mutations.forEach(function(mutation) {
// saves the need for additional round trips. It also allows load.php
if (mutation.addedNodes.length) {
// to remain stateless and sending personal data in the HTML instead.
makeTablesResponsive();
//
// The HTML inline script lazy-defines the 'RLQ' array. Now that we are
// processing it, replace it with an implementation where 'push' actually
// considers executing the code directly. This is to ensure any late
// arrivals will also be processed. Late arrival can happen because
// startup.js is executed asynchronously, concurrently with the streaming
// response of the HTML.
queue = window.RLQ || [];
// Replace RLQ with an empty array, then process the things that were
// in RLQ previously. We have to do this to avoid an infinite loop:
// non-function items are added back to RLQ by the processing step.
RLQ = [];
RLQ.push = function ( fn ) {
if ( typeof fn === 'function' ) {
fn();
} else {
// If the first parameter is not a function, then it is an array
// containing a list of required module names and a function.
// Do an actual push for now, as this signature is handled
// later by mediawiki.base.js.
RLQ[ RLQ.length ] = fn;
}
}
};
});
while ( queue[ 0 ] ) {
});
// Process all values gathered so far
RLQ.push( queue.shift() );
}


// Clear and disable the basic (Grade C) queue.
// Observe mudanças no corpo do documento
NORLQ = {
observer.observe(document.body, { childList: true, subtree: true });
push: function () {}
};
}() );
}
}
mw.loader.state({
    "skins.timeless.js": "ready"
});

Revision as of 08:17, 17 November 2025

$( function () {
	// sidebar-chunk only applies to desktop-small, but the toggles are hidden at
	// other resolutions regardless and the css overrides any visible effects.
	var $dropdowns = $( '#personal, #p-variants-desktop, .sidebar-chunk' );

	/**
	 * Desktop menu click-toggling
	 *
	 * We're not even checking if it's desktop because the classes in play have no effect
	 * on mobile regardless... this may break things at some point, though.
	 */

	/**
	 * Close all dropdowns
	 */
	function closeOpen() {
		$dropdowns.removeClass( 'dropdown-active' );
	}

	/**
	 * Click behaviour
	 */
	$dropdowns.on( 'click', function ( e ) {
		// Check if it's already open so we don't open it again
		// eslint-disable-next-line no-jquery/no-class-state
		if ( $( this ).hasClass( 'dropdown-active' ) ) {
			if ( $( e.target ).closest( $( 'h2, #p-variants-desktop h3' ) ).length > 0 ) {
				// treat reclick on the header as a toggle
				closeOpen();
			}
			// Clicked inside an open menu; don't do anything
		} else {
			closeOpen();
			e.stopPropagation(); // stop hiding it!
			$( this ).addClass( 'dropdown-active' );
		}
	} );
	$( document ).on( 'click', function ( e ) {
		if ( $( e.target ).closest( $dropdowns ).length > 0 ) {
			// Clicked inside an open menu; don't close anything
		} else {
			closeOpen();
		}
	} );
} );

mw.hook( 'wikipage.content' ).add( function ( $content ) {
	// Gotta wrap them for this to work; maybe later the parser etc will do this for us?!
	$content.find( 'div > table:not( table table )' ).wrap( '<div class="content-table-wrapper"><div class="content-table"></div></div>' );
	$content.find( '.content-table-wrapper' ).prepend( '<div class="content-table-left"></div><div class="content-table-right"></div>' );

	/**
	 * Set up borders for experimental overflowing table scrolling
	 *
	 * I have no idea what I'm doing.
	 *
	 * @param {jQuery} $table
	 */
	function setScrollClass( $table ) {
		var $tableWrapper = $table.parent(),
			// wtf browser rtl implementations
			scroll = Math.abs( $tableWrapper.scrollLeft() );

		$tableWrapper.parent()
			// 1 instead of 0 because of weird rtl rounding errors or something
			.toggleClass( 'scroll-left', scroll > 1 )
			.toggleClass( 'scroll-right', $table.outerWidth() - $tableWrapper.innerWidth() - scroll > 1 );
	}

	$content.find( '.content-table' ).on( 'scroll', function () {
		setScrollClass( $( this ).children( 'table' ).first() );

		if ( $content.attr( 'dir' ) === 'rtl' ) {
			$( this ).find( 'caption' ).css( 'margin-right', Math.abs( $( this ).scrollLeft() ) + 'px' );
		} else {
			$( this ).find( 'caption' ).css( 'margin-left', $( this ).scrollLeft() + 'px' );
		}
	} );

	/**
	 * Mark overflowed tables for scrolling
	 */
	function unOverflowTables() {
		$content.find( '.content-table > table' ).each( function () {
			var $table = $( this ),
				$wrapper = $table.parent().parent();
			if ( $table.outerWidth() > $wrapper.outerWidth() ) {
				$wrapper.addClass( 'overflowed' );
				setScrollClass( $table );
			} else {
				$wrapper.removeClass( 'overflowed scroll-left scroll-right fixed-scrollbar-container' );
			}
		} );

		// Set up sticky captions
		$content.find( '.content-table > table > caption' ).each( function () {
			var $container, tableHeight,
				$table = $( this ).parent(),
				$wrapper = $table.parent().parent();

			if ( $table.outerWidth() > $wrapper.outerWidth() ) {
				$container = $( this ).parents( '.content-table-wrapper' );
				$( this ).width( $content.width() );
				tableHeight = $container.innerHeight() - $( this ).outerHeight();

				$container.find( '.content-table-left' ).height( tableHeight );
				$container.find( '.content-table-right' ).height( tableHeight );
			}
		} );
	}

	unOverflowTables();
	$( window ).on( 'resize', unOverflowTables );

	/**
	 * Sticky scrollbars maybe?!
	 */
	$content.find( '.content-table' ).each( function () {
		var $table, $tableWrapper, $spoof, $scrollbar;

		$tableWrapper = $( this );
		$table = $tableWrapper.children( 'table' ).first();

		// Assemble our silly crap and add to page
		$scrollbar = $( '<div>' ).addClass( 'content-table-scrollbar inactive' ).width( $content.width() );
		$spoof = $( '<div>' ).addClass( 'content-table-spoof' ).width( $table.outerWidth() );
		$tableWrapper.parent().prepend( $scrollbar.prepend( $spoof ) );
	} );

	/**
	 * Scoll table when scrolling scrollbar and visa-versa lololol wut
	 */
	$content.find( '.content-table' ).on( 'scroll', function () {
		// Only do this here if we're not already mirroring the spoof
		var $mirror = $( this ).siblings( '.inactive' ).first();

		$mirror.scrollLeft( $( this ).scrollLeft() );
	} );
	$content.find( '.content-table-scrollbar' ).on( 'scroll', function () {
		var $mirror = $( this ).siblings( '.content-table' ).first();

		// Only do this here if we're not already mirroring the table
		// eslint-disable-next-line no-jquery/no-class-state
		if ( !$( this ).hasClass( 'inactive' ) ) {
			$mirror.scrollLeft( $( this ).scrollLeft() );
		}
	} );

	/**
	 * Set active when actually over the table it applies to...
	 */
	function determineActiveSpoofScrollbars() {
		$content.find( '.overflowed .content-table' ).each( function () {
			var $scrollbar = $( this ).siblings( '.content-table-scrollbar' ).first();

			// Skip caption
			var captionHeight = $( this ).find( 'caption' ).outerHeight() || 0;
			if ( captionHeight ) {
				// Pad slightly for reasons
				captionHeight += 8;
			}

			var tableTop = $( this ).offset().top,
				tableBottom = tableTop + $( this ).outerHeight(),
				viewBottom = window.scrollY + document.documentElement.clientHeight,
				active = tableTop + captionHeight < viewBottom && tableBottom > viewBottom;
			$scrollbar.toggleClass( 'inactive', !active );
		} );
	}

	determineActiveSpoofScrollbars();
	$( window ).on( 'scroll resize', determineActiveSpoofScrollbars );


	function showContent(id) {
		const conteudos = document.querySelectorAll('.nav-content');
		conteudos.forEach((div) => {
			div.classList.remove('show-content');
		});
		document.getElementById(id).classList.add('show-content');
	}

	/**
	 * Make sure tablespoofs remain correctly-sized?
	 */
	$( window ).on( 'resize', function () {
		$content.find( '.content-table-scrollbar' ).each( function () {
			var width = $( this ).siblings().first().find( 'table' ).first().width();
			$( this ).find( '.content-table-spoof' ).first().width( width );
			$( this ).width( $content.width() );
		} );
	} );
} );
/* Popout menus (header) */

/* eslint-disable no-jquery/no-fade */

$( function () {
	var toggleTime = 200;

	// Open the various menus
	$( '#user-tools h2' ).on( 'click', function () {
		if ( $( window ).width() < 851 ) {
			$( '#personal-inner, #menus-cover' ).fadeToggle( toggleTime );
		}
	} );
	$( '#site-navigation h2' ).on( 'click', function () {
		if ( $( window ).width() < 851 ) {
			$( '#site-navigation .sidebar-inner, #menus-cover' ).fadeToggle( toggleTime );
		}
	} );
	$( '#site-tools h2' ).on( 'click', function () {
		if ( $( window ).width() < 851 ) {
			$( '#site-tools .sidebar-inner, #menus-cover' ).fadeToggle( toggleTime );
		}
	} );
	$( '#ca-more' ).on( 'click', function () {
		$( '#page-tools .sidebar-inner' ).css( 'top', $( '#ca-more' ).offset().top + 25 );
		if ( $( window ).width() < 851 ) {
			$( '#page-tools .sidebar-inner, #menus-cover' ).fadeToggle( toggleTime );
		}
	} );
	$( '#ca-languages' ).on( 'click', function () {
		$( '#other-languages .sidebar-inner' ).css( 'top', $( '#ca-languages' ).offset().top + 25 );
		if ( $( window ).width() < 851 ) {
			$( '#other-languages .sidebar-inner, #menus-cover' ).fadeToggle( toggleTime );
		}
	} );

	// Close menus on click outside
	$( document ).on( 'click touchstart', function ( e ) {
		if ( $( e.target ).closest( '#menus-cover' ).length > 0 ) {
			$( '#personal-inner' ).fadeOut( toggleTime );
			$( '.sidebar-inner' ).fadeOut( toggleTime );
			$( '#menus-cover' ).fadeOut( toggleTime );
		}
	} );
} );

// Melhoria do comportamento dos submenus multi-coluna
$(document).ready(function() {

	// Função para aplicar classes de coluna dinamicamente se necessário
	function adjustSubmenuColumns() {
		$('.submenu').each(function() {
			const $submenu = $(this);
			const itemCount = $submenu.find('li').length;

			// Remove classes existentes
			$submenu.removeClass('submenu-2-columns submenu-3-columns submenu-4-columns');

			// Aplica classe baseada na quantidade de itens
			if (itemCount > 20) {
				$submenu.addClass('submenu-4-columns');
			} else if (itemCount > 12) {
				$submenu.addClass('submenu-3-columns');
			} else if (itemCount > 6) {
				$submenu.addClass('submenu-2-columns');
			}
		});
	}

	// Aplica as classes na inicialização
	adjustSubmenuColumns();

	// Comportamento móvel para submenus
	if ($(window).width() <= 850) {
		$('li.has-submenu > a').on('click', function(e) {
			e.preventDefault();
			var $parent = $(this).parent();

			if ($parent.hasClass('active')) {
				$parent.removeClass('active');
			} else {
				// Fecha outros menus abertos
				$('li.has-submenu.active').removeClass('active');
				$parent.addClass('active');
			}
		});
	}

	// Força aplicação de colunas em navegadores específicos
	function forceColumnLayout() {
		// Verifica se as colunas não estão sendo aplicadas corretamente
		$('.submenu.submenu-2-columns').each(function() {
			const $this = $(this);
			if ($this.is(':visible')) {
				const width = $this.width();
				const items = $this.find('li');

				// Se parece que não está em colunas, força o CSS
				if (items.length > 6 && width < 400) {
					$this.css({
						'column-count': '2',
						'column-gap': '20px',
						'min-width': '450px'
					});
				}
			}
		});

		$('.submenu.submenu-3-columns').each(function() {
			const $this = $(this);
			if ($this.is(':visible')) {
				const width = $this.width();
				const items = $this.find('li');

				if (items.length > 12 && width < 550) {
					$this.css({
						'column-count': '3',
						'column-gap': '20px',
						'min-width': '600px'
					});
				}
			}
		});

		$('.submenu.submenu-4-columns').each(function() {
			const $this = $(this);
			if ($this.is(':visible')) {
				const width = $this.width();
				const items = $this.find('li');

				if (items.length > 20 && width < 700) {
					$this.css({
						'column-count': '4',
						'column-gap': '20px',
						'min-width': '750px'
					});
				}
			}
		});
	}

	// Aplica verificação quando submenus são mostrados
	$('li.has-submenu').on('mouseenter', function() {
		setTimeout(forceColumnLayout, 50);
	});

	// Reaplica classes quando a janela é redimensionada
	$(window).on('resize', function() {
		adjustSubmenuColumns();
		setTimeout(forceColumnLayout, 100);
	});

	// Garante que o comportamento seja aplicado em conteúdo carregado dinamicamente
	if (typeof MutationObserver !== 'undefined') {
		const observer = new MutationObserver(function(mutations) {
			mutations.forEach(function(mutation) {
				if (mutation.addedNodes.length) {
					// Verifica se algum dos nós adicionados contém submenus
					$(mutation.addedNodes).find('.submenu').each(function() {
						adjustSubmenuColumns();
					});
				}
			});
		});

		observer.observe(document.body, { childList: true, subtree: true });
	}

	// Função de debug para verificar se as colunas estão funcionando
	window.debugSubmenus = function() {
		$('.submenu').each(function() {
			const $this = $(this);
			const itemCount = $this.find('li').length;
			const isVisible = $this.is(':visible');
			const columnCount = $this.css('column-count');
			const width = $this.width();

			console.log('Submenu:', {
				items: itemCount,
				visible: isVisible,
				columnCount: columnCount,
				width: width,
				classes: $this.attr('class')
			});
		});
	};
});
// Adiciona efeitos de interação
document.addEventListener('DOMContentLoaded', function() {
	const guideItems = document.querySelectorAll('.mw-guide-item');

	guideItems.forEach(item => {
		item.addEventListener('mouseenter', function() {
			this.style.transform = 'translateY(-3px)';
		});

		item.addEventListener('mouseleave', function() {
			this.style.transform = 'translateY(0)';
		});

		item.addEventListener('click', function(e) {
			// Adiciona efeito de clique
			this.style.transform = 'translateY(1px)';
			setTimeout(() => {
				this.style.transform = 'translateY(-3px)';
			}, 100);
		});
	});
});
// JavaScript para Cards com Imagem - compatível com sistema existente
$(document).ready(function() {

	// Função para gerenciar cards com imagem (reutiliza lógica existente)
	function initImageCards() {
		const imageCards = $('.mw-image-card');

		// Aplica os mesmos efeitos dos guias existentes
		imageCards.each(function() {
			const $card = $(this);

			// Efeitos hover melhorados
			$card.on('mouseenter', function() {
				$(this).css({
					'transform': 'translateY(-8px) scale(1.02)',
					'transition': 'all 0.3s ease'
				});
			});

			$card.on('mouseleave', function() {
				$(this).css({
					'transform': 'translateY(0) scale(1)',
					'transition': 'all 0.3s ease'
				});
			});

			// Efeito de clique
			$card.on('click', function() {
				$(this).css('transform', 'translateY(-2px) scale(0.98)');
				setTimeout(() => {
					$(this).css('transform', 'translateY(-8px) scale(1.02)');
				}, 150);
			});
		});
	}

	// Função para gerenciar carregamento de imagens
	function handleImageLoading() {
		$('.mw-card-image img').each(function() {
			const $img = $(this);
			const $container = $img.parent();

			// Adiciona classe de loading
			$container.addClass('loading');

			// Quando a imagem carregar
			$img.on('load', function() {
				$container.removeClass('loading');
			});

			// Se a imagem falhar ao carregar
			$img.on('error', function() {
				$container.removeClass('loading');
				// Mantém o gradiente de fundo como fallback
				$img.hide();
			});

			// Se a imagem já estiver carregada (cache)
			if (this.complete) {
				$container.removeClass('loading');
			}
		});
	}

	// Função de responsividade para cards com imagem
	function adjustImageGrid() {
		const imageGrid = $('.mw-image-grid');
		const width = $(window).innerWidth;

		if (width < 480) {
			imageGrid.css('grid-template-columns', '1fr');
		} else if (width < 768) {
			imageGrid.css('grid-template-columns', 'repeat(auto-fit, minmax(250px, 1fr))');
		} else {
			imageGrid.css('grid-template-columns', 'repeat(auto-fit, minmax(300px, 1fr))');
		}
	}

	// Função para lazy loading de imagens (opcional)
	function lazyLoadImages() {
		if ('IntersectionObserver' in window) {
			const imageObserver = new IntersectionObserver((entries, observer) => {
				entries.forEach(entry => {
					if (entry.isIntersecting) {
						const img = entry.target;
						const dataSrc = img.getAttribute('data-src');
						if (dataSrc) {
							img.src = dataSrc;
							img.removeAttribute('data-src');
							imageObserver.unobserve(img);
						}
					}
				});
			});

			$('.mw-card-image img[data-src]').each(function() {
				imageObserver.observe(this);
			});
		}
	}

	// Integração com sistema existente de guias
	function integrateWithExistingSystem() {
		// Estende a funcionalidade existente para incluir cards de imagem
		if (typeof window.adjustGuideGrid === 'function') {
			const originalAdjustGuideGrid = window.adjustGuideGrid;
			window.adjustGuideGrid = function() {
				originalAdjustGuideGrid();
				adjustImageGrid();
			};
		} else {
			window.adjustGuideGrid = adjustImageGrid;
		}

		// Adiciona cards de imagem ao sistema de debug existente
		if (typeof window.debugSubmenus === 'function') {
			const originalDebug = window.debugSubmenus;
			window.debugImageCards = function() {
				$('.mw-image-card').each(function() {
					const $card = $(this);
					const text = $card.find('.mw-card-text').text();
					const hasImage = $card.find('img').length > 0;
					const imageLoaded = hasImage ? $card.find('img')[0].complete : false;

					console.log('Image Card:', {
						text: text,
						hasImage: hasImage,
						imageLoaded: imageLoaded,
						dimensions: {
							width: $card.width(),
							height: $card.height()
						}
					});
				});

				// Chama debug original se existir
				if (originalDebug) originalDebug();
			};
		}
	}

	// Inicialização
	initImageCards();
	handleImageLoading();
	adjustImageGrid();
	lazyLoadImages();
	integrateWithExistingSystem();

	// Event listeners
	$(window).on('resize', function() {
		adjustImageGrid();
	});

	// Observa mudanças no DOM para novos cards adicionados dinamicamente
	if (typeof MutationObserver !== 'undefined') {
		const observer = new MutationObserver(function(mutations) {
			mutations.forEach(function(mutation) {
				if (mutation.addedNodes.length) {
					$(mutation.addedNodes).find('.mw-image-card').each(function() {
						initImageCards();
						handleImageLoading();
					});
				}
			});
		});

		observer.observe(document.body, { childList: true, subtree: true });
	}
});

// Função global para adicionar novos cards dinamicamente
window.addImageCard = function(container, link, imageSrc, text, bgClass) {
	const cardHtml = `
        <a href="${link}" class="mw-image-card">
            <div class="mw-card-image ${bgClass || ''}">
                <img src="${imageSrc}" alt="${text}" />
            </div>
            <div class="mw-card-text">${text}</div>
        </a>
    `;

	$(container).find('.mw-image-grid').append(cardHtml);

	// Reinicializa funcionalidades para o novo card
	const $newCard = $(container).find('.mw-image-card').last();
	$newCard.trigger('initImageCard');
};

// Função para tornar todas as tabelas responsivas
function makeTablesResponsive() {
	// Seleciona todas as tabelas da página
	const tables = document.querySelectorAll('table');

	tables.forEach(table => {
		// Verifica se a tabela tem cabeçalhos (th)
		let headers = Array.from(table.querySelectorAll('th')).map(th => th.textContent.trim());

		// Se não houver cabeçalhos, tenta usar a primeira linha como cabeçalho
		if (headers.length === 0) {
			const firstRow = table.querySelector('tr');
			if (firstRow) {
				const cells = firstRow.querySelectorAll('td');
				headers.push(...Array.from(cells).map(cell => cell.textContent.trim()));
			}
		}

		// Para tabelas com cabeçalhos em múltiplas linhas, tentamos capturar todos
		if (table.querySelectorAll('thead tr').length > 1) {
			// Para tabelas com cabeçalhos complexos, usamos a última linha de cabeçalhos
			const headerRows = table.querySelectorAll('thead tr');
			const lastHeaderRow = headerRows[headerRows.length - 1];
			headers = Array.from(lastHeaderRow.querySelectorAll('th')).map(th => th.textContent.trim());
		}

		// Para cada linha da tabela, adiciona atributos data-label às células
		const rows = table.querySelectorAll('tr');

		// Começa a partir da primeira linha após os cabeçalhos
		// Se estamos em uma tabela sem thead ou com th, começamos nas linhas de tbody
		// Se tabela tiver thead, ignoramos as linhas de cabeçalho
		let startRow = 0;
		if (table.querySelector('thead')) {
			startRow = table.querySelectorAll('thead tr').length;
		} else if (headers.length > 0 && table.querySelectorAll('th').length > 0) {
			// Se não tem thead mas tem th, assumimos primeira linha como cabeçalho
			startRow = 1;
		}

		for (let i = startRow; i < rows.length; i++) {
			const cells = rows[i].querySelectorAll('td');
			cells.forEach((cell, index) => {
				if (index < headers.length && headers[index]) {
					cell.setAttribute('data-label', headers[index]);
				}
			});
		}
	});
}

// Executa quando o DOM estiver pronto
if (document.readyState === 'loading') {
	document.addEventListener('DOMContentLoaded', makeTablesResponsive);
} else {
	makeTablesResponsive();
}

// Verifica novamente após o carregamento da página (para conteúdo carregado dinamicamente)
window.addEventListener('load', makeTablesResponsive);

// Para lidar com conteúdo adicionado dinamicamente (como em edições AJAX)
// Observe mutações no DOM
if (typeof MutationObserver !== 'undefined') {
	const observer = new MutationObserver(function(mutations) {
		mutations.forEach(function(mutation) {
			if (mutation.addedNodes.length) {
				makeTablesResponsive();
			}
		});
	});

	// Observe mudanças no corpo do documento
	observer.observe(document.body, { childList: true, subtree: true });
}
mw.loader.state({
    "skins.timeless.js": "ready"
});