-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextension.json
More file actions
134 lines (134 loc) · 3.53 KB
/
Copy pathextension.json
File metadata and controls
134 lines (134 loc) · 3.53 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
124
125
126
127
128
129
130
131
132
133
134
{
"name": "RobloxAPI",
"version": "1.7.0",
"author": [
"SomeRandomDeveloper"
],
"url": "https://www.mediawiki.org/wiki/Extension:RobloxAPI",
"descriptionmsg": "robloxapi-desc",
"license-name": "GPL-2.0-or-later",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.43.0"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\RobloxAPI\\": "src/"
},
"TestAutoloadNamespaces": {
"MediaWiki\\Extension\\RobloxAPI\\Tests\\": "tests/phpunit/unit/"
},
"config": {
"RobloxAPIAllowedArguments": {
"value": {},
"description": "The arguments per argument type that are allowed to be used in the extension. If empty, all arguments for the type are allowed.",
"merge_strategy": "array_plus_2d"
},
"RobloxAPICacheSplittingOptionalArguments": {
"value": [
"is_circular"
],
"description": "A list of optional arguments that affect caching.",
"merge_strategy": "provide_default"
},
"RobloxAPICachingExpiries": {
"value": {
"*": 600,
"assetThumbnail": 7200,
"badgeInfo": 1800,
"groupData": 3600,
"userAvatarThumbnail": 3600,
"userId": 86400,
"userInfo": 86400
},
"description": "The amount of seconds after the cache for a data source expires. '*' is a wildcard for all data sources."
},
"RobloxAPIDataSourceUsageLimits": {
"value": {},
"description": "The maximum amount of times a data source can be used per page. If empty, no limit is applied.",
"merge_strategy": "array_plus_2d"
},
"RobloxAPIDisableCache": {
"value": false,
"description": "Whether or not to disable the cache for the extension."
},
"RobloxAPIEnabledDatasources": {
"value": [
"gameData",
"activePlayers",
"visits",
"userId",
"userAvatarThumbnail",
"userAvatarThumbnailUrl",
"assetThumbnail",
"assetThumbnailUrl",
"gameIcon",
"gameIconUrl",
"groupRoles",
"groupRoleMembers",
"groupData",
"groupRank",
"groupMembers",
"badgeInfo",
"userInfo",
"assetDetails",
"groupRolesList",
"gameNameDescription",
"universeInfo",
"userGames",
"userPlaceVisits",
"gameEvents"
],
"merge_strategy": "provide_default",
"description": "The data sources that should be enabled and available."
},
"RobloxAPIParserFunctionsExpensive": {
"value": true,
"description": "Whether or not to make the parser functions expensive."
},
"RobloxAPIRegisterLegacyParserFunctions": {
"value": true,
"description": "Whether or not to register the legacy parser functions that became deprecated in v1.2.0."
},
"RobloxAPIRequestUserAgent": {
"value": null,
"description": "The user agent that should be used when making requests to the Roblox API."
},
"RobloxAPIShowPlainErrors": {
"value": false,
"description": "Whether errors should be shown as plain text instead of being rendered in an error box."
}
},
"ConfigRegistry": {
"RobloxAPI": "MediaWiki\\Config\\GlobalVarConfig::newInstance"
},
"ExtensionMessagesFiles": {
"RobloxAPIMagic": "RobloxAPI.i18n.magic.php"
},
"HookHandlers": {
"RobloxAPIHooks": {
"class": "MediaWiki\\Extension\\RobloxAPI\\Hooks",
"services": [
"ConfigFactory",
"RobloxAPI.DataSourceProvider",
"RobloxAPI.Utils"
]
}
},
"Hooks": {
"ParserFirstCallInit": "RobloxAPIHooks",
"ParserTestGlobals": "RobloxAPIHooks"
},
"MessagesDirs": {
"RobloxAPI": [
"i18n"
]
},
"TrackingCategories": [
"robloxapi-category-deprecated-parser-function",
"robloxapi-category-error"
],
"ServiceWiringFiles": [
"src/ServiceWiring.php"
],
"manifest_version": 2
}