mediawiki-extensions-Scribunto/extension.json
Umherirrender 648985c981 Use HookHandlers for core hooks
The use of "HookHandlers" attribute in extension.json makes it possible
to inject services into hook handler classes in a future patch.

Bug: T271026
Change-Id: I1583f5075937c4ce71a0d8748700f7012280851c
2023-08-15 13:49:53 +02:00

193 lines
6.5 KiB
JSON

{
"name": "Scribunto",
"author": [
"Victor Vasiliev",
"Tim Starling",
"Brad Jorsch"
],
"url": "https://www.mediawiki.org/wiki/Extension:Scribunto",
"descriptionmsg": "scribunto-desc",
"license-name": "GPL-2.0-or-later AND MIT",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.40.0"
},
"APIModules": {
"scribunto-console": "MediaWiki\\Extension\\Scribunto\\ApiScribuntoConsole"
},
"ContentHandlers": {
"Scribunto": "MediaWiki\\Extension\\Scribunto\\ScribuntoContentHandler"
},
"TrackingCategories": [
"scribunto-common-error-category",
"scribunto-module-with-errors-category"
],
"MessagesDirs": {
"Scribunto": [
"i18n",
"i18n/api"
]
},
"ExtensionMessagesFiles": {
"ScribuntoMagic": "Scribunto.magic.php",
"ScribuntoNamespaces": "Scribunto.namespaces.php"
},
"AutoloadClasses": {
"MediaWiki\\Extension\\Scribunto\\Engines\\LuaCommon\\LibraryBase": "includes/Engines/LuaCommon/LibraryBase.php",
"MediaWiki\\Extension\\Scribunto\\Engines\\LuaCommon\\LuaEngine": "includes/Engines/LuaCommon/LuaEngine.php",
"MediaWiki\\Extension\\Scribunto\\Engines\\LuaCommon\\LuaError": "includes/Engines/LuaCommon/LuaError.php",
"MediaWiki\\Extension\\Scribunto\\Engines\\LuaStandalone\\LuaStandaloneInterpreterFunction": "includes/Engines/LuaStandalone/LuaStandaloneInterpreterFunction.php",
"Scribunto_LuaEngine": "includes/Engines/LuaCommon/LuaEngine.php",
"Scribunto_LuaError": "includes/Engines/LuaCommon/LuaError.php",
"Scribunto_LuaLibraryBase": "includes/Engines/LuaCommon/LibraryBase.php",
"Scribunto_LuaStandaloneInterpreterFunction": "includes/Engines/LuaStandalone/LuaStandaloneInterpreterFunction.php"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\Scribunto\\": "includes/"
},
"TestAutoloadClasses": {
"MediaWiki\\Extension\\Scribunto\\Tests\\Engines\\LuaCommon\\LuaEngineTestBase": "tests/phpunit/Engines/LuaCommon/LuaEngineTestBase.php",
"Scribunto_LuaEngineTestBase": "tests/phpunit/Engines/LuaCommon/LuaEngineTestBase.php"
},
"TestAutoloadNamespaces": {
"MediaWiki\\Extension\\Scribunto\\Tests\\": "tests/phpunit/"
},
"ResourceModules": {
"ext.scribunto.errors": {
"scripts": "ext.scribunto.errors.js",
"styles": "ext.scribunto.errors.css",
"dependencies": [
"oojs-ui-widgets"
],
"messages": [
"scribunto-parser-dialog-title"
]
},
"ext.scribunto.logs": {
"styles": "ext.scribunto.logs.css"
},
"ext.scribunto.edit": {
"scripts": "ext.scribunto.edit.js",
"styles": "ext.scribunto.edit.css",
"dependencies": [
"mediawiki.api",
"jquery.spinner"
],
"messages": [
"scribunto-console-title",
"scribunto-console-intro",
"scribunto-console-clear",
"scribunto-console-cleared",
"scribunto-console-cleared-session-lost"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "Scribunto/modules"
},
"Hooks": {
"SoftwareInfo": "main",
"ParserFirstCallInit": "main",
"ParserLimitReportPrepare": "main",
"ParserLimitReportFormat": "main",
"ParserClearState": "main",
"ParserCloned": "main",
"CodeEditorGetPageLanguage": "MediaWiki\\Extension\\Scribunto\\Hooks::getCodeLanguage",
"EditPage::showStandardInputs:options": "main",
"EditPage::showReadOnlyForm:initial": "main",
"EditPageBeforeEditButtons": "main",
"EditFilterMergedContent": "main",
"ArticleViewHeader": "main",
"ContentHandlerDefaultModelFor": "main"
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\Scribunto\\Hooks"
}
},
"namespaces": [
{
"id": 828,
"constant": "NS_MODULE",
"name": "Module",
"subpages": true
},
{
"id": 829,
"constant": "NS_MODULE_TALK",
"name": "Module_talk",
"subpages": true
}
],
"callback": "MediaWiki\\Extension\\Scribunto\\Hooks::onRegistration",
"config": {
"ScribuntoDefaultEngine": {
"description": "The name of the default script engine",
"value": "luaautodetect"
},
"ScribuntoEngineConf": {
"description": [
"Configuration for each script engine. Parameters:",
" * profilerPeriod - The profiler sample period, or false to disable the profiler",
" * allowEnvFuncs - Set this to true to allow setfenv() and getfenv() in user code. Note that these functions have been removed in Lua 5.2. Scribunto does not yet support Lua 5.2, but we expect support will be implemented in the future, and there is no guarantee that a simulation of setfenv() and getfenv() will be provided",
" * maxLangCacheSize - The maximum number of languages about which data can be requested. The cost is about 1.5MB of memory usage per language on default installations (during recache), but if recaching is disabled with `$wgLocalisationCacheConf['manualRecache'] = false;` then memory usage is perhaps 10x smaller",
" * errorFile - 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",
" * luaPath - The location of the Lua binary, or null to use the bundled binary"
],
"value": {
"luasandbox": {
"class": "MediaWiki\\Extension\\Scribunto\\Engines\\LuaSandbox\\LuaSandboxEngine",
"memoryLimit": 52428800,
"cpuLimit": 7,
"profilerPeriod": 0.02,
"allowEnvFuncs": false,
"maxLangCacheSize": 30
},
"luastandalone": {
"class": "MediaWiki\\Extension\\Scribunto\\Engines\\LuaStandalone\\LuaStandaloneEngine",
"errorFile": null,
"luaPath": null,
"memoryLimit": 52428800,
"cpuLimit": 7,
"allowEnvFuncs": false,
"maxLangCacheSize": 30
},
"luaautodetect": {
"factory": "MediaWiki\\Extension\\Scribunto\\Engines\\LuaCommon\\LuaEngine::newAutodetectEngine"
}
},
"merge_strategy": "array_plus_2d"
},
"ScribuntoUseGeSHi": {
"description": "Set to true to enable the SyntaxHighlight_GeSHi extension integration",
"value": true
},
"ScribuntoUseCodeEditor": {
"description": "Set to true to enable the CodeEditor extension integration",
"value": true
},
"ScribuntoGatherFunctionStats": {
"description": "Set to true to enable gathering and reporting of performance data for slow function invocations.",
"value": false
},
"ScribuntoSlowFunctionThreshold": {
"description": "If $wgScribuntoGatherFunctionStats is true, this variable specifies the percentile threshold for slow function invocations. Should be a value between 0 and 1 (exclusive).",
"value": 0.9
}
},
"attributes": {
"TemplateSandbox": {
"EditNamespaces": [
828
]
},
"TemplateStyles": {
"Namespaces": [
828
]
}
},
"manifest_version": 2
}