PortableInfobox/extension.json

152 lines
4.7 KiB
JSON
Raw Permalink Normal View History

{
"name": "Portable Infobox",
"author": [
2021-06-02 17:03:26 +00:00
"Universal Omega",
2021-09-11 23:46:15 +00:00
"Luqgreg (Łukasz K.)",
"..."
],
2021-09-11 23:46:15 +00:00
"url": "https://github.com/Universal-Omega/PortableInfobox",
"descriptionmsg": "portable-infobox-desc",
2024-05-08 05:45:24 +00:00
"version": "0.7",
"type": "parserhook",
2018-08-01 10:28:46 +00:00
"license-name": "GPL-3.0-or-later",
2018-08-19 11:35:46 +00:00
"requires": {
2022-12-07 00:19:24 +00:00
"MediaWiki": ">= 1.39.0",
2021-09-11 23:46:15 +00:00
"platform": {
"php": ">= 7.3"
}
2018-08-19 11:35:46 +00:00
},
2018-08-05 11:06:26 +00:00
"config": {
2021-09-13 00:37:45 +00:00
"AllInfoboxesSubpagesBlacklist": {
"value": [ "doc", "draft", "test" ]
},
"PortableInfoboxCacheRenderers": {
"value": false
},
"PortableInfoboxCustomImageWidth": {
"value": 300
},
"PortableInfoboxUseHeadings": {
"value": true
},
"PortableInfoboxUseTidy": {
"value": true
},
"PortableInfoboxResponsiblyOpenCollapsed": {
"value": true
},
"PortableInfoboxUseFileDescriptionPage": {
"value": false
2021-09-13 00:37:45 +00:00
}
2018-08-05 11:06:26 +00:00
},
"MessagesDirs": {
"PortableInfobox": "i18n"
},
2018-08-03 09:54:47 +00:00
"ExtensionMessagesFiles": {
2022-04-01 21:22:43 +00:00
"PortableInfoboxAliases": "includes/PortableInfoboxAliases.php",
"PortableInfoboxMagic": "includes/PortableInfoboxMagic.php"
2018-08-03 09:54:47 +00:00
},
"ResourceModules": {
"ext.PortableInfobox.scripts": {
"scripts": "resources/PortableInfobox.js",
"targets": [
"desktop",
"mobile"
]
},
"ext.PortableInfobox.styles": {
"class": "PortableInfoboxResourceLoaderModule",
"styles": "resources/PortableInfobox.less",
"targets": [
"desktop",
"mobile"
]
2021-12-17 18:00:14 +00:00
},
"ext.PortableInfoboxBuilder": {
"scripts": [
"resources/PortableInfoboxBuilderNodes.js",
"resources/PortableInfoboxBuilder.js"
],
"styles": "resources/PortableInfoboxBuilder.less",
"dependencies": [
"mediawiki.jqueryMsg",
"jquery.ui",
"oojs-ui-core",
"oojs-ui-widgets",
"oojs-ui-windows"
],
"messages": [
"confirmable-confirm",
"infoboxbuilder-action-addnode",
"infoboxbuilder-action-clear",
"infoboxbuilder-action-deletenode",
"infoboxbuilder-action-publish",
"infoboxbuilder-editerror",
"infoboxbuilder-editerrorunknown",
"infoboxbuilder-editsummary",
"infoboxbuilder-node-title",
"infoboxbuilder-node-title-value",
"infoboxbuilder-node-title-value-pagename",
"infoboxbuilder-node-header",
"infoboxbuilder-node-header-value",
"infoboxbuilder-node-navigation",
2021-12-17 18:00:14 +00:00
"infoboxbuilder-node-data",
"infoboxbuilder-node-data-value-source",
"infoboxbuilder-node-media",
"infoboxbuilder-nodeerror-invalidsource",
"infoboxbuilder-nodeerror-nosourceordefault",
"infoboxbuilder-nodeparam-default",
"infoboxbuilder-nodeparam-label",
"infoboxbuilder-nodeparam-source",
"infoboxbuilder-nodeparam-value",
2021-12-17 18:00:14 +00:00
"infoboxbuilder-templatename"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
2018-08-02 13:33:13 +00:00
"remoteExtPath": "PortableInfobox"
},
2021-09-13 00:29:24 +00:00
"AutoloadNamespaces": {
"PortableInfobox\\Helpers\\": "includes/services/Helpers/",
"PortableInfobox\\Parser\\": "includes/services/Parser/",
"PortableInfobox\\Parser\\Nodes\\": "includes/services/Parser/Nodes/"
},
"AutoloadClasses": {
2021-09-12 16:42:37 +00:00
"PortableInfoboxHooks": "includes/PortableInfoboxHooks.php",
2018-08-16 09:25:53 +00:00
"PortableInfoboxDataService": "includes/services/PortableInfoboxDataService.php",
"PortableInfoboxRenderService": "includes/services/PortableInfoboxRenderService.php",
"PortableInfoboxResourceLoaderModule": "includes/resourceloader/PortableInfoboxResourceLoaderModule.php",
2018-08-16 09:25:53 +00:00
"PortableInfoboxErrorRenderService": "includes/services/PortableInfoboxErrorRenderService.php",
"PortableInfoboxParserTagController": "includes/controllers/PortableInfoboxParserTagController.php",
"ApiPortableInfobox": "includes/controllers/ApiPortableInfobox.php",
"ApiQueryPortableInfobox": "includes/controllers/ApiQueryPortableInfobox.php",
2021-09-12 16:42:37 +00:00
"ApiQueryAllInfoboxes": "includes/controllers/ApiQueryAllInfoboxes.php",
2021-12-17 18:00:14 +00:00
"AllInfoboxesQueryPage": "includes/querypage/AllInfoboxesQueryPage.php",
"SpecialPortableInfoboxBuilder": "includes/specials/SpecialPortableInfoboxBuilder.php"
},
"Hooks": {
"ParserFirstCallInit": "PortableInfoboxParserTagController::parserTagInit",
"AfterParserFetchFileAndTitle": "PortableInfoboxHooks::onAfterParserFetchFileAndTitle",
"wgQueryPages": "PortableInfoboxHooks::onWgQueryPages",
"AllInfoboxesQueryRecached": "PortableInfoboxHooks::onAllInfoboxesQueryRecached",
"ArticlePurge": "PortableInfoboxHooks::onArticlePurge",
"MultiContentSave": "PortableInfoboxHooks::onMultiContentSave",
"ResourceLoaderRegisterModules": "PortableInfoboxHooks::onResourceLoaderRegisterModules"
},
"SpecialPages": {
2021-12-17 18:00:14 +00:00
"AllInfoboxes": "AllInfoboxesQueryPage",
"PortableInfoboxBuilder": "SpecialPortableInfoboxBuilder"
},
"APIModules": {
"infobox": "ApiPortableInfobox"
},
"APIPropModules": {
"infobox": "ApiQueryPortableInfobox"
},
"APIListModules": {
2021-09-12 16:42:37 +00:00
"allinfoboxes": "ApiQueryAllInfoboxes"
2018-08-08 08:29:34 +00:00
},
2021-09-13 00:37:45 +00:00
"manifest_version": 2
2021-06-02 17:03:26 +00:00
}