aboutsummaryrefslogtreecommitdiff
path: root/extension.json
blob: d1e34292ad0549e2fc713836d2f57ec0e798edc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
	"name": "Code",
	"manifest_version": 2,
	"type": "other",
	"license-name": "MIT",
	"author": "[https://push-f.com/ Martin Fischer]",
	"url": "https://www.mediawiki.org/wiki/Extension:Code",
	"version": "0.1.0",
	"description": "Provides code pages, code actions and customizable code rendering.",
	"config_prefix": "wgCode_",
	"config": {
		"namespacesWithCodePages": {
			"value": {},
			"merge_strategy": "array_plus"
		},
		"languages": {
			"value": {}
		}
	},
	"MessagesDirs": {
		"VoteExtension": [
			"i18n"
		]
	},
	"AutoloadClasses": {
		"MediaWiki\\Extension\\Code\\CodeHooks": "Code.php",
		"MediaWiki\\Extension\\Code\\SpecialCodeAction": "Code.php",
		"MediaWiki\\Extension\\Code\\ContentHandler": "Code.php"
	},
	"ContentHandlers": {
		"code": "MediaWiki\\Extension\\Code\\ContentHandler"
	},
	"SpecialPages": {
		"CodeAction": "MediaWiki\\Extension\\Code\\SpecialCodeAction"
	},
	"Hooks": {
		"ParserFirstCallInit": "MediaWiki\\Extension\\Code\\CodeHooks::onParserFirstCallInit",
		"ContentHandlerDefaultModelFor": "MediaWiki\\Extension\\Code\\CodeHooks::onContentHandlerDefaultModelFor"
	},
	"TrackingCategories": [
		"codepage-error-category"
	]
}