mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 14:56:20 +00:00
8d33a3de0d
* Made method descriptions imperative: "Do this" rather than "Does this" * Changed use of "this object" to "the object" in method documentation * Added missing documentation * Fixed incorrect documentation * Fixed incorrect debug method names (as in those VeDmClassName tags we add to functions so they make sense when dumped into in the console) * Normalized use of package names throughout * Normalized class descriptions * Removed incorrect @abstract tags * Added missing @method tags * Lots of other minor cleanup Change-Id: I4ea66a2dd107613e2ea3a5f56ff54d675d72957e
141 lines
3.4 KiB
JavaScript
141 lines
3.4 KiB
JavaScript
/*!
|
|
* VisualEditor stand-alone Initialization Target class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Initialization stand-alone platform.
|
|
*
|
|
* @class
|
|
* @extends ve.init.Platform
|
|
* @constructor
|
|
*/
|
|
ve.init.sa.Platform = function VeInitSaPlatform() {
|
|
// Parent constructor
|
|
ve.init.Platform.call( this );
|
|
|
|
// Properties
|
|
this.externalLinkUrlProtocolsRegExp = /^https?\:\/\//;
|
|
this.modulesUrl = 'extensions/VisualEditor/modules';
|
|
this.messages = {};
|
|
this.parsedMessages = {};
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.init.sa.Platform, ve.init.Platform );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Get a regular expression that matches allowed external link URLs.
|
|
*
|
|
* @method
|
|
* @returns {RegExp} Regular expression object
|
|
*/
|
|
ve.init.sa.Platform.prototype.getExternalLinkUrlProtocolsRegExp = function () {
|
|
return this.externalLinkUrlProtocolsRegExp;
|
|
};
|
|
|
|
/**
|
|
* Set the remotely accessible URL to the modules directory.
|
|
*
|
|
* @method
|
|
* @param {string} url Remote modules URL
|
|
*/
|
|
ve.init.sa.Platform.prototype.setModulesUrl = function ( url ) {
|
|
this.modulesUrl = url;
|
|
};
|
|
|
|
/**
|
|
* Get a remotely accessible URL to the modules directory.
|
|
*
|
|
* @method
|
|
* @returns {string} Remote modules URL
|
|
*/
|
|
ve.init.sa.Platform.prototype.getModulesUrl = function () {
|
|
return this.modulesUrl;
|
|
};
|
|
|
|
/**
|
|
* Add multiple messages to the localization system.
|
|
*
|
|
* @method
|
|
* @param {Object} messages Map of message-key/message-string pairs
|
|
*/
|
|
ve.init.sa.Platform.prototype.addMessages = function ( messages ) {
|
|
for ( var key in messages ) {
|
|
this.messages[key] = messages[key];
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get a message from the localization system.
|
|
*
|
|
* @method
|
|
* @param {string} key Message key
|
|
* @param {Mixed...} [args] List of arguments which will be injected at $1, $2, etc. in the messaage
|
|
* @returns {string} Localized message
|
|
*/
|
|
ve.init.sa.Platform.prototype.getMessage = function ( key ) {
|
|
if ( key in this.messages ) {
|
|
// Simple message parser, does $N replacement and nothing else.
|
|
var parameters = Array.prototype.slice.call( arguments, 1 );
|
|
return this.messages[key].replace( /\$(\d+)/g, function ( str, match ) {
|
|
var index = parseInt( match, 10 ) - 1;
|
|
return parameters[index] !== undefined ? parameters[index] : '$' + match;
|
|
} );
|
|
}
|
|
return '<' + key + '>';
|
|
};
|
|
|
|
/**
|
|
* Add multiple parsed messages to the localization system.
|
|
*
|
|
* @method
|
|
* @param {Object} messages Map of message-key/html pairs
|
|
*/
|
|
ve.init.sa.Platform.prototype.addParsedMessages = function ( messages ) {
|
|
for ( var key in messages ) {
|
|
this.parsedMessages[key] = messages[key];
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get a parsed message as HTML string.
|
|
*
|
|
* Falls back to mw.messsage with .escaped().
|
|
* Does not support $# replacements.
|
|
*
|
|
* @method
|
|
* @param {string} key Message key
|
|
* @returns {string} Parsed localized message as HTML string.
|
|
*/
|
|
ve.init.sa.Platform.prototype.getParsedMessage = function ( key ) {
|
|
if ( key in this.parsedMessages ) {
|
|
// Prefer parsed results from VisualEditorMessagesModule.php if available.
|
|
return this.parsedMessages[key];
|
|
}
|
|
// Fallback to regular messages, html escaping applied.
|
|
return this.getMessage( key ).replace( /['"<>&]/g, function escapeCallback( s ) {
|
|
switch ( s ) {
|
|
case '\'':
|
|
return ''';
|
|
case '"':
|
|
return '"';
|
|
case '<':
|
|
return '<';
|
|
case '>':
|
|
return '>';
|
|
case '&':
|
|
return '&';
|
|
}
|
|
} );
|
|
};
|
|
|
|
/* Initialization */
|
|
|
|
ve.init.platform = new ve.init.sa.Platform();
|