mediawiki-extensions-Cite/extension.json

78 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "Cite",
"author": [
"Ævar Arnfjörð Bjarmason",
"Andrew Garrett",
"Brion Vibber",
"Marius Hoch",
"Steve Sanbeg"
],
"url": "https://www.mediawiki.org/wiki/Extension:Cite",
"descriptionmsg": "cite-desc",
"license-name": "GPL-2.0+",
"type": "parserhook",
"MessagesDirs": {
"Cite": [
"i18n"
]
},
"Hooks": {
"ParserFirstCallInit": [
"Cite::setHooks"
]
},
"@comment": "ext.cite and ext.rtlcite are backwards compatibility deployment hacks",
"ResourceModules": {
"ext.cite": {
"dependencies": [
"ext.cite.a11y",
"ext.cite.styles"
],
"position": "bottom"
},
"ext.rtlcite": {
"styles": "ext.rtlcite.css",
"position": "bottom"
},
"ext.cite.styles": {
"styles": {
"ext.cite.styles.css": {},
"ext.cite.print.css": {
"media": "print"
}
},
"position": "bottom"
},
"ext.cite.a11y": {
"scripts": "ext.cite.a11y.js",
"styles": "ext.cite.a11y.css",
"messages": [
"cite_references_link_accessibility_label",
"cite_references_link_many_accessibility_label"
],
"position": "bottom"
},
"ext.cite.style": {
"class": "CiteCSSFileModule",
"styles": "ext.cite.style.css",
"position": "top"
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "Cite/modules"
},
"config": {
"AllowCiteGroups": true,
"CiteCacheReferences": false
},
"AutoloadClasses": {
"Cite": "Cite_body.php",
"CiteCSSFileModule": "CiteCSSFileModule.php"
},
"ParserTestFiles": [
"citeParserTests.txt"
],
"manifest_version": 1
}