mediawiki-extensions-InputBox/extension.json
Umherirrender 7ffb957f31 Prefer descriptionmsg over description in extension.json
Change-Id: If5f4e779c9c4663edab3f4dc26b7cdcb22cd5609
2017-01-27 20:19:58 +01:00

64 lines
1.2 KiB
JSON

{
"name": "InputBox",
"version": "0.3.0",
"author": [
"Erik Moeller",
"Leonardo Pimenta",
"Rob Church",
"Trevor Parscal",
"DaSch"
],
"url": "https://www.mediawiki.org/wiki/Extension:InputBox",
"descriptionmsg": "inputbox-desc",
"license-name": "MIT",
"type": "parserhook",
"MessagesDirs": {
"InputBox": [
"i18n"
]
},
"AutoloadClasses": {
"InputBoxHooks": "InputBox.hooks.php",
"InputBox": "InputBox.classes.php"
},
"ResourceModules": {
"ext.inputBox.styles": {
"styles": "ext.inputBox.styles.css",
"position": "top",
"targets": [
"mobile",
"desktop"
]
},
"ext.inputBox": {
"scripts": "ext.inputBox.js",
"dependencies": [
"jquery.throttle-debounce"
],
"targets": [
"mobile",
"desktop"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "InputBox/resources"
},
"Hooks": {
"ParserFirstCallInit": [
"InputBoxHooks::register"
],
"MediaWikiPerformAction": [
"InputBoxHooks::onMediaWikiPerformAction"
],
"SpecialPageBeforeExecute": [
"InputBoxHooks::onSpecialPageBeforeExecute"
]
},
"ParserTestFiles": [
"tests/inputBoxParserTests.txt"
],
"manifest_version": 1
}