forked from moegirlwiki/MW-FlowThread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
executable file
·190 lines (190 loc) · 5.34 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "FlowThread",
"author": "Gary Guo",
"url": "https://github.com/nbdd0121/MW-FlowThread",
"descriptionmsg": "flowthread_desc",
"version": "1.2.0",
"license-name": "BSD-2-Clause",
"type": "specialpage",
"ExtensionMessagesFiles": {
"FlowThreadAlias": "FlowThread.alias.php"
},
"MessagesDirs": {
"FlowThread": [
"i18n"
]
},
"AutoloadClasses": {
"FlowThread\\Hooks": "includes/Hooks.php",
"FlowThread\\API": "includes/API.php",
"FlowThread\\Post": "includes/Post.php",
"FlowThread\\Page": "includes/Page.php",
"FlowThread\\UUID": "includes/UUID.php",
"FlowThread\\SpamFilter": "includes/SpamFilter.php",
"FlowThread\\PopularPosts": "includes/PopularPosts.php",
"FlowThread\\Helper": "includes/Helper.php",
"FlowThread\\SpecialExport": "special/Export.php",
"FlowThread\\SpecialImport": "special/Import.php",
"FlowThread\\SpecialManage": "special/Manage.php",
"FlowThread\\SpecialLink": "special/Link.php",
"FlowThread\\EchoHooks": "echo/Hooks.php",
"FlowThread\\EchoPresentationModel": "echo/PresentationModel.php",
"FlowThread\\EchoAlertPresentationModel": "echo/AlertPresentationModel.php",
"FlowThread\\CommentFilter": "includes/CommentFilter.php"
},
"Hooks": {
"BeforePageDisplay": [
"FlowThread\\Hooks::onBeforePageDisplay"
],
"LoadExtensionSchemaUpdates": [
"FlowThread\\Hooks::onLoadExtensionSchemaUpdates"
],
"ArticleDeleteComplete": [
"FlowThread\\Hooks::onArticleDeleteComplete"
],
"BeforeCreateEchoEvent": [
"FlowThread\\EchoHooks::onBeforeCreateEchoEvent"
],
"EchoGetDefaultNotifiedUsers": [
"FlowThread\\EchoHooks::onEchoGetDefaultNotifiedUsers"
],
"FlowThreadPosted": [
"FlowThread\\EchoHooks::onFlowThreadPosted"
],
"FlowThreadDeleted": [
"FlowThread\\EchoHooks::onFlowThreadDeleted"
],
"FlowThreadRecovered": [
"FlowThread\\EchoHooks::onFlowThreadRecovered"
],
"FlowThreadSpammed": [
"FlowThread\\EchoHooks::onFlowThreadSpammed"
],
"FlowThreadMention": [
"FlowThread\\EchoHooks::onFlowThreadMention"
],
"BaseTemplateToolbox": [
"FlowThread\\Hooks::onBaseTemplateToolbox"
],
"SkinTemplateOutputPageBeforeExec": [
"FlowThread\\Hooks::onSkinTemplateOutputPageBeforeExec"
]
},
"ResourceModules": {
"ext.flowthread": {
"dependencies": [
"mediawiki.language",
"moment",
"mediawiki.user"
],
"scripts": [
"assets/common.js",
"assets/flowthread.js"
],
"styles": [
"assets/common.css",
"assets/flowthread.css"
],
"messages": [
"flowthread-ui-reply",
"flowthread-ui-like",
"flowthread-ui-report",
"flowthread-ui-delete",
"flowthread-ui-delete_confirmation",
"flowthread-ui-usewikitext",
"flowthread-ui-preview",
"flowthread-ui-placeholder",
"flowthread-ui-submit",
"flowthread-ui-nocontent",
"flowthread-ui-popular",
"flowthread-ui-networkerror",
"flowthread-ui-useroptout",
"flowthread-CommentControl",
"flowthread-WordCountLimit",
"flowthread-WordCountLimit-msg"
]
},
"ext.flowthread.manage": {
"dependencies": [
"mediawiki.language",
"moment",
"mediawiki.user"
],
"scripts": [
"assets/common.js",
"assets/manage.js"
],
"styles": [
"assets/common.css",
"assets/manage.css"
],
"messages": [
"flowthread-ui-like",
"flowthread-ui-report",
"flowthread-ui-delete",
"flowthread-ui-delete_confirmation",
"flowthread-ui-recover",
"flowthread-ui-markchecked",
"flowthread-ui-erase",
"flowthread-ui-selectall",
"flowthread-ui-unselectall",
"flowthread-ui-user-post-on-page"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "FlowThread"
},
"APIModules": {
"flowthread": "FlowThread\\API"
},
"AvailableRights": [
"comment",
"commentadmin-restricted",
"commentadmin"
],
"GroupPermissions": {
"*": {
"comment": true
},
"sysop": {
"commentadmin": true,
"commentadmin-restricted": true
}
},
"LogTypes": [
"comments"
],
"FilterLogTypes": {
"comments": true
},
"LogActionsHandlers": {
"comments/delete": "LogFormatter",
"comments/recover": "LogFormatter",
"comments/erase": "LogFormatter",
"comments/import": "LogFormatter",
"comments/markchecked": "LogFormatter"
},
"SpecialPages": {
"FlowThreadExport": "FlowThread\\SpecialExport",
"FlowThreadImport": "FlowThread\\SpecialImport",
"FlowThreadManage": "FlowThread\\SpecialManage",
"FlowThreadLink": "FlowThread\\SpecialLink"
},
"config": {
"FlowThreadConfig": {
"Avatar": "https://www.gravatar.com/avatar/00000000000000000000000000000000?d=mm&f=y",
"AnonymousAvatar": "https://www.gravatar.com/avatar/00000000000000000000000000000000?d=mm&f=y",
"PopularPostCount": 3,
"PopularPostThreshold": 1,
"MaxNestLevel": 3
},
"TriggerFlowThreadHooks": true
},
"DefaultUserOptions": {
"echo-subscriptions-web-flowthread": true,
"echo-subscriptions-email-flowthread": false
},
"manifest_version": 1
}