-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
extension.json
84 lines (84 loc) · 1.92 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
{
"name": "SimpleBatchUpload",
"version": "2.0.1",
"author": [
"[https://www.mediawiki.org/wiki/User:F.trott Stephan Gambke]",
"[https://professional.wiki/ Professional.Wiki]",
"..."
],
"url": "https://www.mediawiki.org/wiki/Extension:SimpleBatchUpload",
"descriptionmsg": "simplebatchupload-desc",
"namemsg": "simplebatchupload-name",
"license-name": "GPL-2.0-or-later",
"type": "specialpage",
"requires": {
"MediaWiki": ">=1.35"
},
"MessagesDirs": {
"SimpleBatchUpload": [
"i18n"
]
},
"config": {
"SimpleBatchUploadMaxFilesPerBatch": {
"value":{
"*": 1000
}
}
},
"AutoloadNamespaces": {
"SimpleBatchUpload\\": "src/"
},
"TestAutoloadNamespaces": {
"SimpleBatchUpload\\Tests": "tests/phpunit/"
},
"ExtensionMessagesFiles": {
"SimpleBatchUploadAlias": "src/SimpleBatchUpload.alias.php",
"SimpleBatchUploadMagic": "src/SimpleBatchUpload.magic.php"
},
"SpecialPages": {
"BatchUpload": "SimpleBatchUpload\\SpecialBatchUpload"
},
"Hooks": {
"ParserFirstCallInit": "SimpleBatchUpload\\SimpleBatchUpload::registerParserFunction",
"MakeGlobalVariablesScript": "SimpleBatchUpload\\SimpleBatchUpload::onMakeGlobalVariablesScript"
},
"ResourceFileModulePaths": {
"localBasePath": "res",
"remoteExtPath": "SimpleBatchUpload/res"
},
"ResourceModules": {
"ext.SimpleBatchUpload.jquery-file-upload": {
"scripts": [
"jquery.fileupload.js"
],
"styles": [
"jquery.fileupload.css"
],
"position": "top",
"dependencies": [
"jquery.ui"
]
},
"ext.SimpleBatchUpload": {
"scripts": [
"ext.SimpleBatchUpload.js"
],
"styles": [
"ext.SimpleBatchUpload.css"
],
"position": "top",
"dependencies": [
"ext.SimpleBatchUpload.jquery-file-upload",
"mediawiki.Title",
"mediawiki.jqueryMsg",
"mediawiki.api"
],
"messages": [
"simplebatchupload-comment",
"simplebatchupload-max-files-alert"
]
}
},
"manifest_version": 2
}