-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathextension.json
105 lines (105 loc) · 2.9 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
{
"name": "SmartComments",
"author": [
"Youri van den Bogert",
"Erwin Oord",
"Robin van der Wiel",
"Yvar Nanlohij"
],
"version": "2.0.2",
"url": "https://www.archixl.nl",
"descriptionmsg": "sic-desc",
"license-name": "GPL-2.0+",
"type": "other",
"MessagesDirs": {
"SmartComments": [
"i18n"
]
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\SmartComments\\": "src"
},
"SpecialPages": {
"SmartComments": "MediaWiki\\Extension\\SmartComments\\SpecialPage\\Special"
},
"JobClasses": {
"SmartCommentsUpdateJob": "MediaWiki\\Extension\\SmartComments\\Jobs\\Update"
},
"APIModules": {
"smartcomments": "MediaWiki\\Extension\\SmartComments\\Api"
},
"Actions": {
"screfresh": "MediaWiki\\Extension\\SmartComments\\RefreshAction"
},
"Hooks": {
"LoadExtensionSchemaUpdates": "MediaWiki\\Extension\\SmartComments\\SchemaUpdates::onLoadExtensionSchemaUpdates",
"BeforePageDisplay": "MediaWiki\\Extension\\SmartComments\\Hooks::onBeforePageDisplay",
"SkinTemplateNavigation::Universal": "MediaWiki\\Extension\\SmartComments\\Hooks::onSkinTemplateNavigation",
"ResourceLoaderGetConfigVars": "MediaWiki\\Extension\\SmartComments\\Hooks::onResourceLoaderGetConfigVars",
"SMW::Property::initProperties": "MediaWiki\\Extension\\SmartComments\\SMWHandler::initProperties",
"SMW::SQLStore::BeforeDataUpdateComplete": "MediaWiki\\Extension\\SmartComments\\Hooks::addSubobjectsForComments",
"ParserCacheSaveComplete": "MediaWiki\\Extension\\SmartComments\\Hooks::onParserCacheSaveComplete",
"MediaWikiServices": "MediaWiki\\Extension\\SmartComments\\Hooks::onMediaWikiServices",
"ArticleDeleteAfterSuccess": "MediaWiki\\Extension\\SmartComments\\Hooks::onArticleDeleteAfterSuccess",
"ResourceLoaderRegisterModules": "MediaWiki\\Extension\\SmartComments\\JavascriptLoader::register"
},
"ResourceModules": {
"ext.SmartComments.Special": {
"localBasePath": "",
"remoteExtPath": "SmartComments",
"styles": [
"resources/css/specialPage.less"
],
"scripts": [
"resources/js/SmartComments.special.js"
],
"messages": [
"sic-sp-adminbutton-confirm"
]
}
},
"AvailableRights": [
"add-inlinecomments",
"manage-inlinecomments"
],
"GroupPermissions": {
"user": {
"add-inlinecomments": true,
"manage-inlinecomments": false
},
"sysop": {
"add-inlinecomments": true,
"manage-inlinecomments": true
}
},
"config": {
"SmartCommentsBodyContainer": {
"value": "div#mw-content-text"
},
"SmartCommentsSelectLinksOnClick": {
"value": true
},
"SmartCommentsOpenPopupOnSelect": {
"value": false
},
"SmartCommentsDirectComment": {
"value": true
},
"SmartCommentsPopupTimeout": {
"value": 6500
},
"SmartCommentsSpecialMaxItems": {
"value": 25
},
"SmartCommentsEnabledAddons": {
"value": [
"SmartConnectArchiMate"
]
}
},
"requires": {
"MediaWiki": ">= 1.39"
},
"load_composer_autoloader": true,
"manifest_version": 2
}