-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
73 lines (73 loc) · 1.5 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
{
"manifest_version": 2,
"name": "PageAuthors",
"version": "1.4",
"url": "https://www.mediawiki.org/wiki/Extension:PageAuthors",
"author": "[https://www.mediawiki.org/wiki/User:Sophivorus Sophivorus]",
"descriptionmsg": "pageauthors-desc",
"license-name": "GPL-3.0-or-later",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.35.0"
},
"MessagesDirs": {
"PageAuthors": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"PageAuthorsMagic": "PageAuthors.i18n.magic.php"
},
"AutoloadClasses": {
"PageAuthors": "PageAuthors.php"
},
"Hooks": {
"GetMagicVariableIDs": "PageAuthors::onGetMagicVariableIDs",
"ParserGetVariableValueSwitch": "PageAuthors::onParserGetVariableValueSwitch",
"ParserFirstCallInit": "PageAuthors::onParserFirstCallInit"
},
"config": {
"PageAuthorsMinBytesPerAuthor": {
"value": 100
},
"PageAuthorsMinBytesPerEdit": {
"value": 10
},
"PageAuthorsIgnoreSummaryPatterns": {
"value": [
"/Undo.*/",
"/Revert.*/"
]
},
"PageAuthorsIgnoreMinorEdits": {
"value": true
},
"PageAuthorsIgnoreSystemUsers": {
"value": true
},
"PageAuthorsIgnoreBots": {
"value": true
},
"PageAuthorsIgnoreAnons": {
"value": true
},
"PageAuthorsIgnoreUsers": {
"value": []
},
"PageAuthorsIgnoreGroups": {
"value": []
},
"PageAuthorsIgnoreBlocked": {
"value": true
},
"PageAuthorsUseRealNames": {
"value": false
},
"PageAuthorsLinkUserPages": {
"value": false
},
"PageAuthorsDelimiter": {
"value": ", "
}
}
}