mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-13 17:53:26 +00:00
7ffb957f31
Change-Id: If5f4e779c9c4663edab3f4dc26b7cdcb22cd5609
64 lines
1.2 KiB
JSON
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
|
|
}
|