-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathextension.json
More file actions
73 lines (59 loc) · 2.06 KB
/
extension.json
File metadata and controls
73 lines (59 loc) · 2.06 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Automated Values",
"type": "wikibase",
"version": "1.1.0",
"author": [
"[https://www.EntropyWins.wtf/mediawiki Jeroen De Dauw]",
"[https://professional.wiki/ Professional Wiki]"
],
"license-name": "GPL-2.0-or-later",
"url": "https://professional.wiki/en/extension/automated-values",
"descriptionmsg": "automated-values-description",
"requires": {
"MediaWiki": ">= 1.43.0",
"extensions": {
"WikibaseRepository": "*"
}
},
"MessagesDirs": {
"AutomatedValues": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"AutomatedValuesAliases": "i18n/aliases/Aliases.php"
},
"AutoloadNamespaces": {
"ProfessionalWiki\\AutomatedValues\\": "src/",
"ProfessionalWiki\\AutomatedValues\\Tests\\": "tests/"
},
"Hooks": {
"MultiContentSave": "ProfessionalWiki\\AutomatedValues\\Hooks::onMultiContentSave",
"ContentHandlerDefaultModelFor": "ProfessionalWiki\\AutomatedValues\\Hooks::onContentHandlerDefaultModelFor",
"EditFilter": "ProfessionalWiki\\AutomatedValues\\Hooks::onEditFilter",
"AlternateEdit": "ProfessionalWiki\\AutomatedValues\\Hooks::onAlternateEdit",
"EditFormPreloadText": "ProfessionalWiki\\AutomatedValues\\Hooks::onEditFormPreloadText"
},
"config": {
"AutomatedValuesDefaultLanguages": {
"description": "List of languages to create values for via '*' build specifications. If this value is not an empty list, it will override anything set on MediaWiki:AutomatedValues",
"value": []
},
"AutomatedValuesRules": {
"description": "List of rules applied to the wiki. In JSON format, following the JSON Schema at schema.json. Gets combined with rules defined on MediaWiki:AutomatedValues",
"value": ""
},
"AutomatedValuesEnableInWikiConfig": {
"description": "If it should be possible to define Rules and configuration via MediaWiki:AutomatedValues",
"value": true
}
},
"SpecialPages": {
"AutomatedValues": "ProfessionalWiki\\AutomatedValues\\SpecialAutomatedValues"
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "AutomatedValues/resources"
},
"manifest_version": 2
}