-
Notifications
You must be signed in to change notification settings - Fork 18
/
extension.json
61 lines (61 loc) · 1.46 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": "DynamicPageList",
"version": "1.7.0",
"author": [
"[https://en.wikinews.org/wiki/User:Amgine Amgine]",
"[https://en.wikinews.org/wiki/User:IlyaHaykinson IlyaHaykinson]"
],
"url": "https://www.mediawiki.org/wiki/Extension:DynamicPageList",
"descriptionmsg": "intersection-desc",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.43"
},
"license-name": "GPL-2.0-or-later",
"AutoloadNamespaces": {
"MediaWiki\\Extension\\DynamicPageList\\": "includes/"
},
"MessagesDirs": {
"DynamicPageList": [
"i18n"
]
},
"Hooks": {
"ParserFirstCallInit": "main",
"ParserTestGlobals": "main"
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\DynamicPageList\\Hooks"
}
},
"TrackingCategories": [
"intersection-category"
],
"config": {
"DLPmaxCategories": {
"value": 6
},
"DLPMaxResultCount": {
"value": 200
},
"DLPAllowUnlimitedResults": {
"value": false
},
"DLPAllowUnlimitedCategories": {
"value": false
},
"DLPMaxCacheTime": {
"value": 86400
},
"DLPMaxQueryTime": {
"value": 10000,
"description": "Maximum allowed time for database queries in milliseconds."
},
"DLPQueryCacheTime": {
"value": 0,
"description": "This is the query cache. It can help with situations where you have a template with the same query used on a large number of pages all being refreshed at once. The query cache cannot be purged. Suggested value between 30 to 600."
}
},
"manifest_version": 2
}