-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
77 lines (77 loc) · 1.56 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
{
"name": "Html2Wiki",
"version": "2017.07",
"author": [
"Greg Rundlett"
],
"url": "https://www.mediawiki.org/wiki/Extension:Html2Wiki",
"descriptionmsg": "html2wiki-desc",
"license-name": "GPL-2.0-or-later",
"type": "other",
"SpecialPages": {
"Html2Wiki": "SpecialHtml2Wiki"
},
"LogTypes": [
"html2wiki"
],
"LogNames": {
"html2wiki": "html2wiki-log-name"
},
"LogHeaders": {
"html2wiki": "html2wiki-log-description"
},
"LogActionsHandlers": {
"html2wiki/*": "LogFormatter"
},
"MessagesDirs": {
"Html2Wiki": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"Html2WikiAlias": "Html2Wiki.i18n.alias.php"
},
"AutoloadClasses": {
"Html2WikiHooks": "Html2Wiki.hooks.php",
"SpecialHtml2Wiki": "specials/SpecialHtml2Wiki.php"
},
"ResourceModules": {
"ext.Html2Wiki": {
"scripts": [
"modules/ext.Html2Wiki.js"
],
"styles": [
"modules/ext.Html2Wiki.css"
],
"messages": [
"html2wiki",
"html2wiki-desc",
"html2wiki-fieldset-legend",
"html2wiki-filename",
"html2wiki-intro",
"html2wiki-log-description",
"html2wiki-log-name",
"html2wiki-not-allowed",
"html2wiki-summary",
"html2wiki-text",
"html2wiki-title",
"html2wiki_uploaderror"
],
"dependencies": []
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Html2Wiki/"
},
"config": {
"H2WEliminateDuplicateImages": false,
"H2WProcessImages": true
},
"load_composer_autoloader": true,
"manifest_version": 1,
"callback": "SpecialHtml2Wiki::checkEnvironment",
"requires": {
"MediaWiki": ">= 1.19.0"
}
}