mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-13 18:07:00 +00:00
1d08dd07b8
Changed README to README.md Moved changelog from README.md to CHANGELOG.md Bumped version to 1.4.0. And start following semver-notation. Bug: T88047 Change-Id: I21f417d9f5985598358d53a0afae815543f001ee
130 lines
2.9 KiB
JSON
130 lines
2.9 KiB
JSON
{
|
|
"@doc": "Please read README.md",
|
|
"name": "ConfirmEdit",
|
|
"version": "1.4.0",
|
|
"author": [
|
|
"Brion Vibber",
|
|
"..."
|
|
],
|
|
"url": "https://www.mediawiki.org/wiki/Extension:ConfirmEdit",
|
|
"descriptionmsg": "captcha-desc",
|
|
"license-name": "GPL-2.0+",
|
|
"type": "antispam",
|
|
"GroupPermissions": {
|
|
"*": {
|
|
"skipcaptcha": false
|
|
},
|
|
"user": {
|
|
"skipcaptcha": false
|
|
},
|
|
"autoconfirmed": {
|
|
"skipcaptcha": false
|
|
},
|
|
"bot": {
|
|
"skipcaptcha": true
|
|
},
|
|
"sysop": {
|
|
"skipcaptcha": true
|
|
}
|
|
},
|
|
"AvailableRights": [
|
|
"skipcaptcha"
|
|
],
|
|
"ExtensionFunctions": [
|
|
"ConfirmEditHooks::confirmEditSetup"
|
|
],
|
|
"SpecialPages": {
|
|
"Captcha": "CaptchaSpecialPage"
|
|
},
|
|
"MessagesDirs": {
|
|
"ConfirmEdit": [
|
|
"i18n"
|
|
]
|
|
},
|
|
"ExtensionMessagesFiles": {
|
|
"ConfirmEditAlias": "ConfirmEdit.alias.php"
|
|
},
|
|
"AutoloadClasses": {
|
|
"ConfirmEditHooks": "includes/ConfirmEditHooks.php",
|
|
"SimpleCaptcha": "SimpleCaptcha/Captcha.php",
|
|
"CaptchaStore": "includes/CaptchaStore.php",
|
|
"CaptchaSessionStore": "includes/CaptchaStore.php",
|
|
"CaptchaCacheStore": "includes/CaptchaStore.php",
|
|
"CaptchaSpecialPage": "includes/specials/SpecialCaptcha.php"
|
|
},
|
|
"Hooks": {
|
|
"EditPageBeforeEditButtons": [
|
|
"ConfirmEditHooks::confirmEditPage"
|
|
],
|
|
"UserCreateForm": [
|
|
"ConfirmEditHooks::injectUserCreate"
|
|
],
|
|
"AbortNewAccount": [
|
|
"ConfirmEditHooks::confirmUserCreate"
|
|
],
|
|
"LoginAuthenticateAudit": [
|
|
"ConfirmEditHooks::triggerUserLogin"
|
|
],
|
|
"UserLoginForm": [
|
|
"ConfirmEditHooks::injectUserLogin"
|
|
],
|
|
"AbortLogin": [
|
|
"ConfirmEditHooks::confirmUserLogin"
|
|
],
|
|
"EmailUserForm": [
|
|
"ConfirmEditHooks::injectEmailUser"
|
|
],
|
|
"EmailUser": [
|
|
"ConfirmEditHooks::confirmEmailUser"
|
|
],
|
|
"EditPage::showEditForm:fields": [
|
|
"ConfirmEditHooks::showEditFormFields"
|
|
],
|
|
"EditFilterMergedContent": [
|
|
"ConfirmEditHooks::confirmEditMerged"
|
|
],
|
|
"APIGetAllowedParams": [
|
|
"ConfirmEditHooks::APIGetAllowedParams"
|
|
],
|
|
"APIGetParamDescription": [
|
|
"ConfirmEditHooks::APIGetParamDescription"
|
|
],
|
|
"AddNewAccountApiForm": [
|
|
"ConfirmEditHooks::addNewAccountApiForm"
|
|
],
|
|
"AddNewAccountApiResult": [
|
|
"ConfirmEditHooks::addNewAccountApiResult"
|
|
],
|
|
"APIEditBeforeSave": [
|
|
"ConfirmEditHooks::confirmEditAPI"
|
|
],
|
|
"UnitTestsList": [
|
|
"ConfirmEditHooks::onUnitTestsList"
|
|
]
|
|
},
|
|
"config": {
|
|
"_prefix": "",
|
|
"wgCaptchaWhitelistIP": false,
|
|
"wgCaptcha": null,
|
|
"wgCaptchaClass": "SimpleCaptcha",
|
|
"wgCaptchaTriggers": {
|
|
"edit": false,
|
|
"create": false,
|
|
"sendemail": false,
|
|
"addurl": true,
|
|
"createaccount": true,
|
|
"badlogin": true,
|
|
"_merge_strategy": "array_plus"
|
|
},
|
|
"wgCaptchaTriggersOnNamespace": [],
|
|
"wgCaptchaStorageClass": "CaptchaSessionStore",
|
|
"wgCaptchaSessionExpiration": 1800,
|
|
"wgCaptchaBadLoginExpiration": 300,
|
|
"ceAllowConfirmedEmail": false,
|
|
"wgCaptchaBadLoginAttempts": 3,
|
|
"wgCaptchaWhitelist": false,
|
|
"wgCaptchaRegexes": []
|
|
},
|
|
"manifest_version": 1
|
|
}
|