3 * ResourceLoader module for mediawiki.jqueryMsg that provides generated data.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * ResourceLoader module for mediawiki.jqueryMsg and its generated data
27 class ResourceLoaderJqueryMsgModule
extends ResourceLoaderFileModule
{
30 * @param ResourceLoaderContext $context
31 * @return string JavaScript code
33 public function getScript( ResourceLoaderContext
$context ) {
34 $fileScript = parent
::getScript( $context );
36 $tagData = Sanitizer
::getRecognizedTagData();
38 $parserDefaults['allowedHtmlElements'] = array_merge(
39 array_keys( $tagData['htmlpairs'] ),
41 array_keys( $tagData['htmlsingle'] ),
42 array_keys( $tagData['htmlsingleonly'] )
46 $dataScript = Xml
::encodeJsCall( 'mw.jqueryMsg.setParserDefaults', [ $parserDefaults ] );
48 return $fileScript . $dataScript;
52 * @param ResourceLoaderContext $context
55 public function getScriptURLsForDebug( ResourceLoaderContext
$context ) {
56 // Bypass file module urls
57 return ResourceLoaderModule
::getScriptURLsForDebug( $context );
63 public function enableModuleContentVersion() {