-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathextension.json
More file actions
123 lines (123 loc) · 3.26 KB
/
extension.json
File metadata and controls
123 lines (123 loc) · 3.26 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "DynamicPageList4",
"version": "4.0.5",
"author": [
"Universal Omega",
"..."
],
"url": "https://www.mediawiki.org/wiki/Extension:DynamicPageList4",
"descriptionmsg": "dpl-desc",
"license-name": "GPL-3.0-or-later",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.44.0"
},
"MessagesDirs": {
"DynamicPageList4": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"DynamicPageList4Magic": "DynamicPageList4Magic.php"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\DynamicPageList4\\": "includes/",
"MediaWiki\\Extension\\DynamicPageList4\\Maintenance\\": "maintenance/"
},
"TestAutoloadNamespaces": {
"MediaWiki\\Extension\\DynamicPageList4\\Tests\\": "tests/phpunit/"
},
"Hooks": {
"LoadExtensionSchemaUpdates": {
"handler": "Installer"
},
"ParserFirstCallInit": {
"handler": "Main"
}
},
"HookHandlers": {
"Installer": {
"class": "MediaWiki\\Extension\\DynamicPageList4\\HookHandlers\\Installer"
},
"Main": {
"class": "MediaWiki\\Extension\\DynamicPageList4\\HookHandlers\\Main"
}
},
"config": {
"DPLAllowedNamespaces": {
"description": "Namespaces DynamicPageList4 is allowed to query.",
"value": []
},
"DPLAllowUnlimitedCategories": {
"description": "Allow unlimited categories in a DPL query.",
"value": false
},
"DPLAllowUnlimitedResults": {
"description": "Allow unlimited result counts in a DPL query.",
"value": false
},
"DPLAlwaysCacheResults": {
"description": "Always cache DPL query results.",
"value": false
},
"DPLCategoryStyleListCutoff": {
"description": "Cutoff for switching category style list formatting.",
"value": 6
},
"DPLFunctionalRichness": {
"description": "Controls which DPL features are enabled.",
"value": 3
},
"DPLMaxCategoryCount": {
"description": "Maximum number of categories allowed in a DPL query.",
"value": 8
},
"DPLMaxQueryTime": {
"description": "Maximum execution time for a DPL query (ms).",
"value": 10000
},
"DPLMaxResultCount": {
"description": "Maximum number of pages returned by a DPL query.",
"value": 500
},
"DPLMinCategoryCount": {
"description": "Minimum number of categories required in a DPL query.",
"value": 0
},
"DPLOverrideParameterDefaults": {
"description": "Overrides default values for DPL parameters.",
"value": []
},
"DPLQueryCacheTime": {
"description": "Cache lifetime for DPL queries (seconds).",
"value": 0
},
"DPLRecursivePreprocess": {
"description": "Enable recursive preprocessing of DPL output.",
"value": true
},
"DPLRecursiveTagParse": {
"description": "Enable recursive parsing of DPL tags.",
"value": false
},
"DPLRunFromProtectedPagesOnly": {
"description": "Restrict DPL usage to protected pages only.",
"value": false
}
},
"ConfigRegistry": {
"DynamicPageList4": "MediaWiki\\Config\\GlobalVarConfig::newInstance"
},
"TrackingCategories": [
"dpl-tracking-category",
"dpl-tag-tracking-category",
"dpl-intersection-tracking-category",
"dpl-parserfunc-tracking-category",
"dplnum-parserfunc-tracking-category",
"dplvar-parserfunc-tracking-category",
"dplreplace-parserfunc-tracking-category",
"dplchapter-parserfunc-tracking-category",
"dplmatrix-parserfunc-tracking-category"
],
"manifest_version": 2
}