A comprehensive list of changes made in this commit is provided in the README for this fork.
69 lines
2.2 KiB
JSON
69 lines
2.2 KiB
JSON
{
|
|
"name": "ContributionScores",
|
|
"author": "Tim Laqua (modified by Eunakria)",
|
|
"url": "https://git.eunakria.com/Eunakria/mediawiki-extensions-ContributionScores",
|
|
"descriptionmsg": "contributionscores-desc",
|
|
"version": "1.26.1",
|
|
"type": "specialpage",
|
|
"requires": {
|
|
"MediaWiki": ">= 1.40.0"
|
|
},
|
|
"SpecialPages": {
|
|
"ContributionScores": "ContributionScores"
|
|
},
|
|
"AutoloadClasses": {
|
|
"ContributionScores": "src/ContributionScores.php"
|
|
},
|
|
"Hooks": {
|
|
"ParserFirstCallInit": "ContributionScores::onParserFirstCallInit"
|
|
},
|
|
"MessagesDirs": {
|
|
"ContributionScores": [
|
|
"i18n"
|
|
]
|
|
},
|
|
"ExtensionMessagesFiles": {
|
|
"ContribScoreAlias": "ContributionScores.alias.php",
|
|
"ContribScoreMagic": "ContributionScores.i18n.magic.php"
|
|
},
|
|
"config": {
|
|
"ContribScoreReports": {
|
|
"value": null,
|
|
"description": "Each array defines a report - 7,50 is \"past 7 days \" and \"LIMIT 50 \" - Can be omitted."
|
|
},
|
|
"ContribScoreIgnoreBlockedUsers": {
|
|
"value": false,
|
|
"description": "Set to true to exclude blocked users from the reporting."
|
|
},
|
|
"ContribScoreIgnoreBots": {
|
|
"value": false,
|
|
"description": "Set to true to exclude bots users from the reporting."
|
|
},
|
|
"ContribScoreIgnoreUsernames": {
|
|
"value": [],
|
|
"description": "Array of usernames to exclude from the reporting."
|
|
},
|
|
"ContribScoresUseRealName": {
|
|
"value": false,
|
|
"description": "Set to true to use real user names when available."
|
|
},
|
|
"ContribScoreDisableCache": {
|
|
"value": false,
|
|
"description": "Set to true to disable cache for parser function and inclusion of table."
|
|
},
|
|
"ContribScoreUseRoughEditCount": {
|
|
"value": false,
|
|
"description": "Set to true to use the rough number of edits in user table, for performance issue. Mutually exclusive with $ContribScoreIgnoreMinorEdits; this option will be disabled if the other is enabled."
|
|
},
|
|
"ContribScoreIgnoreMinorEdits": {
|
|
"value": false,
|
|
"description": "Set to true to ignore minor edits. Mutually exclusive with $wgContribScoreUseRoughEditCount; if this is enabled, the other option will be disabled."
|
|
},
|
|
"ContribScoreCacheTTL": {
|
|
"value": 30,
|
|
"description": "Cache the contribution scores data, in minutes."
|
|
}
|
|
},
|
|
"manifest_version": 2
|
|
}
|