forked from enterprisemediawiki/SemanticActions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
75 lines (75 loc) · 1.46 KB
/
extension.json
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
74
75
{
"name": "SemanticActions",
"version": "1.0.0",
"author": [
"[https://www.mediawiki.org/wiki/User:Darenwelsh Daren Welsh]"
],
"url": "https://www.mediawiki.org/wiki/Extension:SemanticActions",
"descriptionmsg": "sa-desc",
"namemsg": "sa-name",
"license-name": "MIT",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.27"
},
"MessagesDirs": {
"SemanticActions": [
"i18n"
]
},
"config": {
"_prefix": "eg",
"SemanticActionsAssigneeValuesFrom": "Person"
},
"manifest_version": 1,
"ResourceModules": {
"ext.SemanticActions.styles": {
"styles": [
"SemanticActions.css"
],
"position": "bottom"
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "SemanticActions/resources"
},
"namespaces": [
{
"id": 690,
"constant": "NS_ACTION",
"name": "Action"
},
{
"id": 691,
"constant": "NS_ACTION_TALK",
"name": "Action_Talk"
},
{
"id": 692,
"constant": "NS_LABEL",
"name": "Label"
},
{
"id": 693,
"constant": "NS_LABEL_TALK",
"name": "Label_Talk"
}
],
"attributes": {
"VisualEditor": {
"AvailableNamespaces": {
"690": true,
"692": true
}
}
},
"AutoloadClasses": {
"SemanticActions": "includes/SemanticActions.php"
},
"Hooks": {
"PageImporterRegisterPageLists": "SemanticActions::onPageImporterRegisterPageLists",
"BeforePageDisplay": "SemanticActions::onBeforePageDisplay",
"SetupAfterCache": "SemanticActions::onSetupAfterCache"
}
}