mediawiki-extensions-Interwiki/extension.json
Jack Phoenix 4f51be9781 Global interlanguage links feature
To use, set the new global $wgInterwikiCentralInterlanguageDB to the
name of a MediaWiki DB from which to fetch global interlanguage links.
For example, on Uncyclomedia projects this could be 'uncm_meta' for
most of the Uncyclopedias to fetch their interlanguage links from the
meta-wiki, but perhaps 'illg_en' for the Illogicopedias to fetch their
interlanguage links from the English Illogicopedia's DB (instead of
the meta Uncyclomedia wiki's DB).

Disables local interlanguage links for as long as it is enabled, and
as such likewise prevents their editing, but does not change anything
currently in the local table.

Also bumped the version number and got rid of the silly, outdated
datestamp in it.

Bug: T220247
Change-Id: I6b691ef8e37367fe0e0fcb8b3778f4470d0c5200
2019-07-15 19:05:43 +00:00

65 lines
1.4 KiB
JSON

{
"name": "Interwiki",
"version": "3.2",
"author": [
"Stephanie Amanda Stevens",
"Alexandre Emsenhuber",
"Robin Pepermans",
"Siebrand Mazeland",
"Platonides",
"Raimond Spekking",
"Sam Reed",
"Jack Phoenix",
"Calimonius the Estrange",
"..."
],
"url": "https://www.mediawiki.org/wiki/Extension:Interwiki",
"descriptionmsg": "interwiki-desc",
"license-name": "GPL-2.0-or-later",
"type": "specialpage",
"requires": {
"MediaWiki": ">= 1.28.0"
},
"ExtensionMessagesFiles": {
"InterwikiAlias": "Interwiki.alias.php"
},
"config": {
"InterwikiCentralDB": null,
"InterwikiCentralInterlanguageDB": null,
"InterwikiViewOnly": false
},
"MessagesDirs": {
"Interwiki": [
"i18n"
]
},
"Hooks": {
"InterwikiLoadPrefix": "InterwikiHooks::onInterwikiLoadPrefix",
"UserGetAllRights": "InterwikiHooks::onUserGetAllRights"
},
"ResourceModules": {
"ext.interwiki.specialpage": {
"styles": "Interwiki.css"
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Interwiki"
},
"SpecialPages": {
"Interwiki": "SpecialInterwiki"
},
"ExtensionFunctions": [
"InterwikiHooks::onExtensionFunctions"
],
"AutoloadClasses": {
"InterwikiHooks": "includes/InterwikiHooks.php",
"SpecialInterwiki": "includes/SpecialInterwiki.php",
"InterwikiLogFormatter": "includes/InterwikiLogFormatter.php"
},
"LogActionsHandlers": {
"interwiki/*": "InterwikiLogFormatter"
},
"manifest_version": 1
}