-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
82 lines (82 loc) · 1.92 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
74
75
76
77
78
79
80
81
82
{
"name": "UserJourney",
"version": "0.1",
"author": [
"[https://www.mediawiki.org/wiki/User:Darenwelsh Daren Welsh]"
],
"url": "https://github.com/darenwelsh/UserJourney",
"description": "userjourney-desc",
"type": "specialpage",
"SpecialPages": {
"UserJourney": "SpecialUserJourney"
},
"MessagesDirs": {
"UserJourney": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"UserJourney": "UserJourney.i18n.php",
"UserJourneyAlias": "UserJourney.alias.php"
},
"AutoloadClasses": {
"UserJourney": "UserJourney.body.php",
"SpecialUserJourney": "SpecialUserJourney.php"
},
"ResourceModules": {
"ext.userjourney.myActivityByYear.nvd3": {
"position": "bottom",
"styles": [
"nvd3js/nv.d3.css"
],
"scripts": [
"nvd3js/nv.d3.js",
"nvd3js/ext.userjourney.my-activity-by-year.nvd3.js"
],
"dependencies": [
"d3.js"
]
},
"ext.userjourney.myActivity.nvd3": {
"position": "bottom",
"styles": [
"nvd3js/nv.d3.css",
"nvd3js/ext.userjourney.my-activity.nvd3.css"
],
"scripts": [
"nvd3js/nv.d3.js",
"nvd3js/ext.userjourney.my-activity.nvd3.js"
],
"dependencies": [
"d3.js"
]
},
"ext.userjourney.compare.nvd3": {
"position": "bottom",
"styles": [
"nvd3js/nv.d3.css",
"nvd3js/ext.userjourney.compare.nvd3.css"
],
"scripts": [
"nvd3js/nv.d3.js",
"nvd3js/ext.userjourney.compare-line-with-window.nvd3.js",
"nvd3js/ext.userjourney.compare-stacked.nvd3.js"
],
"dependencies": [
"d3.js"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "UserJourney/modules"
},
"config": {
"UJscoreDefinition": "COUNT(DISTINCT rev_page) + SQRT( COUNT(rev_id) - COUNT(DISTINCT rev_page) ) * 2",
"UJscoreDefinitionUsingAliases": "page_count + SQRT( rev_count - page_count ) * 2",
"UJscoreCeiling": 100,
"UJdaysToDetermineCompetitors": 14,
"UJdaysToPlotCompetition": 30
},
"manifest_version": 1
}