-
Notifications
You must be signed in to change notification settings - Fork 2
/
extension.json
117 lines (117 loc) · 2.94 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
{
"name": "ArchiveLeaf",
"version": "0.0.4",
"author": [
"David Kamholz",
"Ben Yang",
"Alexey"
],
"url": "https://www.mediawiki.org/wiki/Extension:ArchiveLeaf",
"descriptionmsg": "archiveleaf-desc",
"license-name": "MIT",
"type": "other",
"config": {
"ArchiveLeafBaseURL": {
"value": "https://archive.org"
},
"ArchiveLeafApiURL": {
"value": "https://api.archivelab.org"
},
"ArchiveLeafIiifBaseUrl": {
"value": "https://iiif.archivelab.org/iiif"
},
"ArchiveLeafTemplateName": {
"value": "Entry"
},
"ArchiveLeafTemplateImageName": {
"value": "EntryImage"
},
"ArchiveLeafImportScript": {
"value": null
},
"ArchiveLeafArchiveOrgRewrite": {
"value": null
},
"ArchiveLeafAutoTransliterate": {
"value": false
},
"ArchiveLeafTransliterateUrl": {
"value": null
}
},
"ConfigRegistry": {
"archiveleaf": "GlobalVarConfig::newInstance"
},
"AutoloadClasses": {
"ArchiveLeaf": "ArchiveLeaf.class.php",
"ArchiveLeafTransliterateApi": "ArchiveLeaf.transliterate.api.php",
"SpecialArchiveLeaf": "specials/SpecialArchiveLeaf.php"
},
"APIModules": {
"transliterate": "ArchiveLeafTransliterateApi"
},
"ExtensionMessagesFiles": {
"ArchiveLeafAlias": "ArchiveLeaf.i18n.alias.php",
"ArchiveLeafMagic": "ArchiveLeaf.i18n.magic.php"
},
"Hooks": {
"ArticleViewFooter": "ArchiveLeaf::onArticleViewFooter",
"BeforePageDisplay": "ArchiveLeaf::onBeforePageDisplay",
"EditPage::showEditForm:initial": "ArchiveLeaf::onShowEditForm",
"EditPage::attemptSave": "ArchiveLeaf::onAttemptSave",
"LinkerMakeExternalLink": "ArchiveLeaf::onLinkerMakeExternalLink",
"ParserFirstCallInit": "ArchiveLeaf::onParserFirstCallInit",
"ParserBeforeInternalParse": "ArchiveLeaf::onParserBeforeInternalParse"
},
"MessagesDirs": {
"ArchiveLeaf": [
"i18n"
]
},
"ResourceModules": {
"ext.archiveleaf.special": {
"scripts": [
"modules/ext.archiveleaf.special.js"
],
"styles": [
"modules/ext.archiveleaf.special.css"
],
"position": "top",
"targets": ["desktop","mobile"]
},
"ext.archiveleaf.common": {
"scripts": [],
"styles": [
"modules/ext.archiveleaf.common.css"
],
"position": "top",
"targets": ["desktop","mobile"]
},
"ext.archiveleaf.transcriber": {
"scripts": [
"transcriber/build/static/js/transcriber.js"
],
"styles": [
"transcriber/build/static/css/transcriber.css"
],
"position": "top",
"targets": ["desktop","mobile"]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "ArchiveLeaf"
},
"SpecialPages": {
"ArchiveLeaf": "SpecialArchiveLeaf"
},
"AvailableRights": [
"archiveleaf"
],
"GroupPermissions": {
"sysop": {
"archiveleaf": true
}
},
"manifest_version": 2
}