-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathextension.json
156 lines (156 loc) · 3.74 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "Semantic Watchlist",
"author": [
"[https://www.mediawiki.org/wiki/User:Jeroen_De_Dauw Jeroen De Dauw] for [http://www.wikiworks.com/ WikiWorks]",
"Mark A. Hershberger",
"[https://www.wikiteq.com/ WikiTeq]",
"..."
],
"version": "1.4.0-beta",
"url": "https://www.mediawiki.org/wiki/Extension:Semantic_Watchlist",
"descriptionmsg": "semanticwatchlist-desc",
"namemsg": "semanticwatchlist-title",
"license-name": "GPL-3.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.39"
},
"MessagesDirs": {
"SemanticWatchlist": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"SemanticWatchlistAlias": "i18n/extra/SemanticWatchlist.alias.php"
},
"AutoloadNamespaces": {
"SWL\\": "src/"
},
"callback": "SWL\\SemanticWatchlist::initExtension",
"ExtensionFunctions": [
"SWL\\SemanticWatchlist::onExtensionFunction"
],
"SpecialPages": {
"SemanticWatchlist": "SWL\\Special\\Watchlist",
"WatchlistConditions": "SWL\\Special\\Conditions"
},
"SpecialPageGroups": {
"SemanticWatchlist": "changes",
"WatchlistConditions": "changes"
},
"APIModules": {
"addswlgroup": "SWL\\Api\\AddWatchlistGroup",
"deleteswlgroup": "SWL\\Api\\DeleteWatchlistGroup",
"editswlgroup": "SWL\\Api\\EditWatchlistGroup"
},
"APIListModules": {
"semanticwatchlist": "SWL\\Api\\QuerySemanticWatchlist"
},
"AvailableRights": [
"semanticwatch",
"semanticwatchgroups"
],
"GroupPermissions": {
"*": {
"semanticwatch": false,
"semanticwatchgroups": false
},
"user": {
"semanticwatch": true,
"semanticwatchgroups": false
},
"autoconfirmed": {
"semanticwatch": true,
"semanticwatchgroups": false
},
"bot": {
"semanticwatch": false,
"semanticwatchgroups": false
},
"sysop": {
"semanticwatch": true,
"semanticwatchgroups": true
}
},
"config_prefix": "egSWL",
"config": {
"EnableEmailNotify": {
"value": true,
"description": "Enable email notification or not?"
},
"MailPerChange": {
"value": true,
"description": "Send an email for every change (as opposed to a \"something changed email\" for the first 'MaxMails'] changes)?"
},
"MaxMails": {
"value": 1,
"description": "The maximum amount of generic emails to send about changes until the user actually checks his semantic watchlist."
},
"EnableTopLink": {
"value": true,
"description": "Enable displaying a top link to the semantic watchlist?"
},
"EnableSelfNotify": {
"value": false,
"description": "Send email to editor"
},
"SqlDatabaseSchemaPath": {
"value": "sql/swl-table-schema.sql",
"description": "SQL schema path",
"path": true
}
},
"ConfigRegistry": {
"SemanticWatchlist": "GlobalVarConfig::newInstance"
},
"ResourceFileModulePaths": {
"localBasePath": "module",
"remoteExtPath": "SemanticWatchlist/module"
},
"ResourceModules": {
"ext.swl.watchlist": {
"styles": [
"ext.swl.watchlist.css"
]
},
"ext.swl.watchlistconditions": {
"styles": [
"ext.swl.watchlistconditions.css"
],
"scripts": [
"jquery.watchlistcondition.js",
"ext.swl.watchlistconditions.js"
],
"messages": [
"swl-group-name",
"swl-group-legend",
"swl-group-properties",
"swl-properties-list",
"swl-group-remove-property",
"swl-group-add-property",
"swl-group-page-selection",
"swl-group-save",
"swl-group-saved",
"swl-group-saving",
"swl-group-remove",
"swl-group-category",
"swl-group-namespace",
"swl-group-concept",
"swl-group-confirm-remove",
"swl-custom-legend",
"swl-custom-remove-property",
"swl-custom-text-add",
"swl-custom-input"
],
"dependencies": [
"mediawiki.api",
"es6-polyfills"
]
}
},
"DefaultUserOptions": {
"swl_email": true,
"swl_watchlisttoplink": true
},
"manifest_version": 2
}