forked from SemanticMediaWiki/SemanticDrilldown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
119 lines (119 loc) · 2.65 KB
/
extension.json
File metadata and controls
119 lines (119 loc) · 2.65 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
{
"name": "SemanticDrilldown",
"version": "5.0.0-beta1",
"author": [
"Yaron Koren",
"gesinn.it team",
"..."
],
"url": "https://www.mediawiki.org/wiki/Extension:Semantic_Drilldown",
"descriptionmsg": "semanticdrilldown-desc",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.43"
},
"SpecialPages": {
"BrowseData": "SD\\Services::getSpecialBrowseData"
},
"MessagesDirs": {
"SemanticDrilldown": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"SemanticDrilldownMagic": "languages/SemanticDrilldown.i18n.magic.php",
"SemanticDrilldownAlias": "languages/SD_Aliases.php"
},
"AutoloadNamespaces": {
"SD\\": "includes/"
},
"ResourceModules": {
"ext.semanticdrilldown.main": {
"scripts": "libs/SemanticDrilldown.js",
"styles": [
"skins/SD_main.css",
"skins/SD_jquery_ui_overrides.css"
],
"dependencies": [
"jquery.ui"
]
},
"ext.semanticdrilldown.info": {
"styles": [
"skins/SD_info.css"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "SemanticDrilldown"
},
"Hooks": {
"AdminLinks": "SD\\Utils::addToAdminLinks",
"MagicWordwgVariableIDs": "SD\\Utils::addMagicWordVariableIDs",
"MakeGlobalVariablesScript": "SD\\Utils::setGlobalJSVariables",
"ParserAfterTidy": "SD\\Utils::handleShowAndHide",
"PageSchemasRegisterHandlers": "SD\\PageSchemas::registerClass",
"ParserFirstCallInit": "SD\\Services::onParserFirstCallInit",
"UnitTestsList": "SD\\Utils::onUnitTestsList"
},
"config_prefix": "sdg",
"config": {
"HideCategoriesByDefault": {
"value": false
},
"NumResultsPerPage": {
"value": 250
},
"FiltersSmallestFontSize": {
"value": -1
},
"FiltersLargestFontSize": {
"value": -1
},
"ShowCategoriesAsTabs": {
"value": false
},
"MinValuesForComboBox": {
"value": 40
},
"NumRangesForNumberFilters": {
"value": 6
},
"HideFiltersWithoutValues": {
"value": false
},
"DisableFilterCollapsible": {
"value": false
},
"ResultFormatTypes": {
"value": {
"broadtable": "paged",
"category": "paged",
"count": "unsupported",
"csv": "unsupported",
"debug": "unsupported",
"dsv": "unsupported",
"embedded": "paged",
"feed": "unsupported",
"gantt": "unsupported",
"icalendar": "unsupported",
"jqplotchart": "unsupported",
"jqplotseries": "paged",
"json": "unsupported",
"list": "paged",
"map": "unpaged",
"ol": "paged",
"plainlist": "paged",
"rdf": "unsupported",
"spreadsheet": "unsupported",
"table": "paged",
"template": "paged",
"templatefile": "unsupported",
"ul": "paged"
}
}
},
"manifest_version": 2
}