-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
executable file
·67 lines (67 loc) · 1.64 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
{
"name": "Side Summary",
"author": "Solene",
"version": "1.0.0",
"url": "https://www.mediawiki.org/wiki/Extension:SideSummary",
"descriptionmsg": "Side Summary",
"license-name": "GPL-2.0+",
"type": "parserhook",
"ResourceModules": {
"ext.sidesummary.fixed.js": {
"scripts": [
"resources/mwscrollspy.js",
"resources/fixed-side-summary.js"
]
},
"ext.sidesummary.forceshowtoc.js": {
"scripts": [
"resources/mediawiki.toc.forceshow.js"
],
"dependencies": [
"ext.sidesummary.fixed.js"
]
},
"ext.sidesummary.js": {
"scripts": [
"resources/wikifab-side-summary.js",
"resources/wikifab-side-page-summary.js"
],
"dependencies": [
"ext.sidesummary.fixed.js"
]
},
"ext.sidesummary.css": {
"styles": [
"resources/wikifab-side-summary.css",
"resources/wikifab-side-page-summary.css"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "SideSummary"
},
"AutoloadClasses": {
"SideSummary\\SideSummary": "includes/SideSummary.class.php",
"Skins\\Chameleon\\Components\\SideSummary":"includes/SideSummary.php"
},
"ExtensionMessagesFiles": {
"SideSummary": "SideSummary.i18n.php"
},
"Hooks": {
"ParserFirstCallInit": [
"SideSummary\\SideSummary::onParserSetup"
],
"ArticleAfterFetchContentObject": "SideSummary\\SideSummary::onArticleAfterFetchContentObject",
"BeforePageDisplay": [
"SideSummary\\SideSummary::onBeforePageDisplay"
],
"OutputPageParserOutput":[
"SideSummary\\SideSummary::onOutputPageParserOutput"
],
"SkinTemplateNavigation":[
"SideSummary\\SideSummary::onSkinTemplateNavigation"
]
},
"manifest_version": 1
}