forked from wikimedia/mediawiki-extensions-SemanticACL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
61 lines (61 loc) · 1.98 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
{
"name": "SemanticACL",
"version": "0.2b",
"author": [
"[https://wikimedi.ca/wiki/Utilisateur:Antoine_Mercier-Linteau Antoine Mercier-Linteau]",
"Andrew Garrett"
],
"url": "https://www.mediawiki.org/wiki/Extension:SemanticACL",
"descriptionmsg": "sacl-desc",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.38.0",
"extensions": {
"SemanticMediaWiki": "> 3.0"
}
},
"AvailableRights": [
"sacl-exempt",
"view-non-categorized-media"
],
"GroupPermissions": {
"sysop": {
"sacl-exempt": true
}
},
"AutoloadClasses": {
"MediaWiki\\Extension\\SemanticACL\\SemanticACL": "SemanticACL.class.php"
},
"config": {
"SemanticACLWhitelistIPs": {
"value": null,
"description": "IPs listed in this array are granted full access."
},
"PublicImagesCategory": {
"value": null,
"description": "Only files within this category are shown to unregistered users. This feature is useful for wikis that make use of copyrighted images that have not been cleared for public viewing."
},
"EnablePrivateLinks": {
"value": true,
"description": "If protected pages can be viewed by anyone using a private link with a key."
}
},
"Hooks": {
"SMW::Property::initProperties": "MediaWiki\\Extension\\SemanticACL\\SemanticACL::onSMWPropertyinitProperties",
"SMW::Store::AfterQueryResultLookupComplete": "MediaWiki\\Extension\\SemanticACL\\SemanticACL::onSMWStoreAfterQueryResultLookupComplete",
"BadImage": "MediaWiki\\Extension\\SemanticACL\\SemanticACL::onBadImage",
"ParserFetchTemplate": "MediaWiki\\Extension\\SemanticACL\\SemanticACL::onParserFetchTemplate",
"getUserPermissionsErrors": "MediaWiki\\Extension\\SemanticACL\\SemanticACL::onGetUserPermissionsErrors",
"ParserFirstCallInit": "MediaWiki\\Extension\\SemanticACL\\SemanticACL::onParserFirstCallInit"
},
"MessagesDirs": {
"SemanticACL": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"SemanticACLMagic": "i18n/SemanticACL.magic.php"
},
"manifest_version": 2
}