2015-05-27 16:15:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*/
|
|
|
|
|
2017-05-10 14:18:57 +00:00
|
|
|
class ResourceLoaderSyntaxHighlightVisualEditorModule extends ResourceLoaderFileModule {
|
2015-05-27 16:15:00 +00:00
|
|
|
|
|
|
|
protected $targets = array( 'desktop', 'mobile' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ResourceLoaderContext $context
|
|
|
|
* @return string JavaScript code
|
|
|
|
*/
|
|
|
|
public function getScript( ResourceLoaderContext $context ) {
|
2015-06-24 23:34:11 +00:00
|
|
|
$scripts = parent::getScript( $context );
|
|
|
|
|
|
|
|
return $scripts . Xml::encodeJsCall(
|
2016-10-21 13:49:00 +00:00
|
|
|
've.dm.MWSyntaxHighlightNode.static.addPygmentsLanguages', array(
|
|
|
|
$this->getPygmentsLanguages()
|
|
|
|
),
|
|
|
|
ResourceLoader::inDebugMode()
|
|
|
|
) . Xml::encodeJsCall(
|
|
|
|
've.dm.MWSyntaxHighlightNode.static.addGeshiToPygmentsMap', array(
|
2017-05-10 13:32:52 +00:00
|
|
|
SyntaxHighlightGeSHiCompat::getGeSHiToPygmentsMap()
|
2016-10-21 13:49:00 +00:00
|
|
|
),
|
|
|
|
ResourceLoader::inDebugMode()
|
|
|
|
) . Xml::encodeJsCall(
|
|
|
|
've.dm.MWSyntaxHighlightNode.static.addPygmentsToAceMap', array(
|
|
|
|
SyntaxHighlightAce::getPygmentsToAceMap()
|
2015-05-27 16:15:00 +00:00
|
|
|
),
|
|
|
|
ResourceLoader::inDebugMode()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-28 22:42:37 +00:00
|
|
|
/**
|
|
|
|
* Don't break debug mode by only showing file URLs
|
|
|
|
*/
|
|
|
|
public function getScriptURLsForDebug( ResourceLoaderContext $context ) {
|
|
|
|
return ResourceLoaderModule::getScriptURLsForDebug( $context );
|
|
|
|
}
|
|
|
|
|
2015-05-27 16:15:00 +00:00
|
|
|
/**
|
|
|
|
* Get a full list of available langauges
|
|
|
|
* @return array
|
|
|
|
*/
|
2016-10-21 13:49:00 +00:00
|
|
|
private function getPygmentsLanguages() {
|
2017-05-10 14:18:57 +00:00
|
|
|
$lexers = require __DIR__ . '/SyntaxHighlight.lexers.php';
|
2016-10-21 13:49:00 +00:00
|
|
|
return $lexers;
|
2015-05-27 16:15:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function enableModuleContentVersion() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-05-10 14:18:57 +00:00
|
|
|
class_alias( ResourceLoaderSyntaxHighlightVisualEditorModule::class,
|
|
|
|
'ResourceLoaderGeSHiVisualEditorModule' );
|