mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-27 17:50:06 +00:00
6bc11ff615
* Implemented the new parser interface based on a frame object, as described in the design document and wikitech-l. * Added parser tests for the new interface. * Removed {{script:}} parser function * Allow named parameters to {{#invoke:}} * Don't trim the return value * If a function invoked by #invoke returns multiple values, concatenate them into a single string. * If there is an error during parse, show the error message as an HTML comment as well as via JavaScript. This makes parser test construction easier, and probably makes debugging easier also. * Rename mw_internal to mw_php to clarify its role. It is now strictly a private Lua -> PHP interface function table. * Protect mw.setup() against multiple invocation. * Fixed a bug in Scribunto_LuaStandaloneInterpreter::receiveMessage(): large packets caused fread() to return with less than the requested amount of data, which previously caused an exception. It's necessary to check for EOF and to repeat the read to get all data. The receive function on the Lua side does not suffer from this problem. * In the standalone engine, fixed a bug in the interpretation of null return values from PHP callbacks. This should return no values to Lua. * Updated the Lua unit tests to account for the fact that functions are now forced to return strings. * Updated the getfenv and setfenv tests to account for the extra stack level introduced by mw.executeFunction(). Change-Id: If8fdecdfc91ebe7bd4b1dae8489ccbdeb6bbf5ce
136 lines
4.8 KiB
PHP
136 lines
4.8 KiB
PHP
<?php
|
|
/**
|
|
* Wikitext scripting infrastructure for MediaWiki.
|
|
* Copyright (C) 2009-2012 Victor Vasiliev <vasilvv@gmail.com>
|
|
* http://www.mediawiki.org/
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
if( !defined( 'MEDIAWIKI' ) )
|
|
die();
|
|
|
|
$wgExtensionCredits['parserhook']['Scribunto'] = array(
|
|
'path' => __FILE__,
|
|
'name' => 'Scribunto',
|
|
'author' => 'Victor Vasiliev',
|
|
'descriptionmsg' => 'scribunto-desc',
|
|
'url' => 'https://www.mediawiki.org/wiki/Extension:Scribunto',
|
|
);
|
|
|
|
$dir = dirname(__FILE__) . '/';
|
|
$wgExtensionMessagesFiles['Scribunto'] = $dir . 'Scribunto.i18n.php';
|
|
$wgExtensionMessagesFiles['ScribuntoMagic'] = $dir . 'Scribunto.magic.php';
|
|
$wgExtensionMessagesFiles['ScribuntoNamespaces'] = $dir . 'Scribunto.namespaces.php';
|
|
|
|
$wgAutoloadClasses['ScribuntoEngineBase'] = $dir.'common/Base.php';
|
|
$wgAutoloadClasses['ScribuntoModuleBase'] = $dir.'common/Base.php';
|
|
$wgAutoloadClasses['ScribuntoHooks'] = $dir.'common/Hooks.php';
|
|
$wgAutoloadClasses['ScribuntoException'] = $dir.'common/Common.php';
|
|
$wgAutoloadClasses['Scribunto'] = $dir.'common/Common.php';
|
|
|
|
$wgHooks['ParserFirstCallInit'][] = 'ScribuntoHooks::setupParserHook';
|
|
$wgHooks['ParserLimitReport'][] = 'ScribuntoHooks::reportLimits';
|
|
$wgHooks['ParserClearState'][] = 'ScribuntoHooks::clearState';
|
|
|
|
$wgHooks['CanonicalNamespaces'][] = 'ScribuntoHooks::addCanonicalNamespaces';
|
|
$wgHooks['ArticleViewCustom'][] = 'ScribuntoHooks::handleScriptView';
|
|
$wgHooks['TitleIsWikitextPage'][] = 'ScribuntoHooks::isWikitextPage';
|
|
$wgHooks['CodeEditorGetPageLanguage'][] = 'ScribuntoHooks::getCodeLanguage';
|
|
$wgHooks['EditFilterMerged'][] = 'ScribuntoHooks::validateScript';
|
|
|
|
$wgHooks['UnitTestsList'][] = 'ScribuntoHooks::unitTestsList';
|
|
$wgParserTestFiles[] = $dir . 'tests/engines/LuaCommon/luaParserTests.txt';
|
|
|
|
$wgParserOutputHooks['ScribuntoError'] = 'ScribuntoHooks::parserOutputHook';
|
|
|
|
$wgResourceModules['ext.scribunto'] = array(
|
|
'localBasePath' => dirname( __FILE__ ) . '/modules',
|
|
'remoteExtPath' => 'Scribunto/modules',
|
|
'scripts' => 'ext.scribunto.js',
|
|
'dependencies' => array( 'jquery.ui.dialog' ),
|
|
'messages' => array(
|
|
'scribunto-parser-dialog-title'
|
|
),
|
|
);
|
|
|
|
/***** Individual engines and their configurations *****/
|
|
|
|
$wgAutoloadClasses['Scribunto_LuaEngine'] = $dir.'engines/LuaCommon/LuaCommon.php';
|
|
$wgAutoloadClasses['Scribunto_LuaModule'] = $dir.'engines/LuaCommon/LuaCommon.php';
|
|
$wgAutoloadClasses['Scribunto_LuaInterpreter'] = $dir.'engines/LuaCommon/LuaInterpreter.php';
|
|
$wgAutoloadClasses['Scribunto_LuaSandboxEngine'] = $dir.'engines/LuaSandbox/Engine.php';
|
|
$wgAutoloadClasses['Scribunto_LuaStandaloneEngine'] = $dir.'engines/LuaStandalone/LuaStandaloneEngine.php';
|
|
$wgAutoloadClasses['Scribunto_LuaStandaloneInterpreter'] = $dir.'engines/LuaStandalone/LuaStandaloneEngine.php';
|
|
|
|
|
|
/***** Configuration *****/
|
|
|
|
/**
|
|
* The name of the default script engine.
|
|
*/
|
|
$wgScribuntoDefaultEngine = 'luastandalone';
|
|
|
|
/**
|
|
* Configuration for each script engine
|
|
*/
|
|
$wgScribuntoEngineConf = array(
|
|
'luasandbox' => array(
|
|
'class' => 'Scribunto_LuaSandboxEngine',
|
|
'memoryLimit' => 50 * 1024 * 1024,
|
|
'cpuLimit' => 7,
|
|
),
|
|
'luastandalone' => array(
|
|
'class' => 'Scribunto_LuaStandaloneEngine',
|
|
|
|
// A filename to act as the destination for stderr from the Lua
|
|
// binary. This may provide useful error information if Lua fails to
|
|
// run. Set this to null to discard stderr output.
|
|
'errorFile' => null,
|
|
|
|
// The location of the Lua binary, or null to use the bundled binary.
|
|
'luaPath' => null,
|
|
'memoryLimit' => 50 * 1024 * 1024,
|
|
'cpuLimit' => 7,
|
|
),
|
|
);
|
|
|
|
/**
|
|
* Script namespace numbers.
|
|
*/
|
|
$wgScribuntoNamespaceNumbers = array(
|
|
'Module' => 20,
|
|
'Module_talk' => 21,
|
|
);
|
|
|
|
/**
|
|
* Set to true to enable the SyntaxHighlight_GeSHi extension
|
|
*/
|
|
$wgScribuntoUseGeSHi = false;
|
|
|
|
/**
|
|
* Set to true to enable the CodeEditor extension
|
|
*/
|
|
$wgScribuntoUseCodeEditor = false;
|
|
|
|
function efDefineScribuntoNamespace() {
|
|
global $wgScribuntoNamespaceNumbers;
|
|
define( 'NS_MODULE', $wgScribuntoNamespaceNumbers['Module'] );
|
|
define( 'NS_MODULE_TALK', $wgScribuntoNamespaceNumbers['Module_talk'] );
|
|
}
|
|
|
|
$wgExtensionFunctions[] = 'efDefineScribuntoNamespace';
|