மீடியாவிக்கி:Gadget-twinkleprotect.js: திருத்தங்களுக்கு இடையிலான வேறுபாடு

கட்டற்ற கலைக்களஞ்சியமான விக்கிப்பீடியாவில் இருந்து.
உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
சிNo edit summary
Shanmugamp7 (பேச்சு | பங்களிப்புகள்)
update from enwiki
 
வரிசை 1: வரிசை 1:
//<nowiki>
// <nowiki>




(function($){
(function($) {




வரிசை 10: வரிசை 10:
****************************************
****************************************
* Mode of invocation: Tab ("PP"/"RPP")
* Mode of invocation: Tab ("PP"/"RPP")
* Active on: Non-special pages
* Active on: Non-special, non-MediaWiki pages
* Config directives in: TwinkleConfig
*/
*/


வரிசை 17: வரிசை 16:


Twinkle.protect = function twinkleprotect() {
Twinkle.protect = function twinkleprotect() {
if ( mw.config.get('wgNamespaceNumber') < 0 ) {
if (mw.config.get('wgNamespaceNumber') < 0 || mw.config.get('wgNamespaceNumber') === 8) {
return;
return;
}
}


Twinkle.addPortletLink(Twinkle.protect.callback, Morebits.userIsInGroup('sysop') ? "காப்பு" : "கா-வே", "tw-rpp",
Twinkle.addPortletLink(Twinkle.protect.callback, Morebits.userIsSysop ? 'PP' : 'RPP', 'tw-rpp',
Morebits.userIsSysop ? 'Protect page' : 'Request page protection');
Morebits.userIsInGroup('sysop') ? "பக்கக் காப்பு" : "பக்கக் காப்பு வேண்டுகோள்" );
};
};


Twinkle.protect.callback = function twinkleprotectCallback() {
Twinkle.protect.callback = function twinkleprotectCallback() {
var Window = new Morebits.simpleWindow( 620, 530 );
var Window = new Morebits.simpleWindow(620, 530);
Window.setTitle(Morebits.userIsSysop ? 'Apply, request or tag page protection' : 'Request or tag page protection');
Window.setTitle( Morebits.userIsInGroup( 'sysop' ) ? "பக்கக் காப்புச் செய்தல், கோருதல், வார்ப்புரு இணைத்தல்" : " பக்கக் காப்புக் கோருதல், வார்ப்புரு இணைத்தல்" );
Window.setScriptName( "மின்னல்" );
Window.setScriptName('Twinkle');
Window.addFooterLink( "காப்பு வார்ப்புருக்கள்", "Template:Protection templates" );
Window.addFooterLink('Protection templates', 'Template:Protection templates');
Window.addFooterLink( "பாதுகாப்புக் கொள்கை", "WP:PROT" );
Window.addFooterLink('Protection policy', 'WP:PROT');
Window.addFooterLink( "மின்னல் உதவி", "WP:TW/DOC#protect" );
Window.addFooterLink('Twinkle help', 'WP:TW/DOC#protect');
Window.addFooterLink('Give feedback', 'WT:TW');


var form = new Morebits.quickForm( Twinkle.protect.callback.evaluate );
var form = new Morebits.quickForm(Twinkle.protect.callback.evaluate);
var actionfield = form.append( {
var actionfield = form.append({
type: 'field',
type: 'field',
label: 'செயல் வகை'
label: 'Type of action'
} );
});
if( Morebits.userIsInGroup( 'sysop' ) ) {
if (Morebits.userIsSysop) {
actionfield.append( {
actionfield.append({
type: 'radio',
name: 'actiontype',
event: Twinkle.protect.callback.changeAction,
list: [
{
label: 'பக்கக் காப்பு',
value: 'protect',
tooltip: 'பக்கக் காப்பைச் செய்தல்.',
checked: true
}
]
} );
}
actionfield.append( {
type: 'radio',
type: 'radio',
name: 'actiontype',
name: 'actiontype',
வரிசை 59: வரிசை 45:
list: [
list: [
{
{
label: 'Protect page',
label: 'பக்கக் காப்பு வேண்டுகோள்',
value: 'request',
value: 'protect',
tooltip: 'Apply actual protection to the page.',
tooltip: 'WP:RPP ஊடாகப் பக்கக் காப்பு வேண்டுகோள் விடுத்தல்' + (Morebits.userIsInGroup('sysop') ? ' (பக்கத்தை நீங்களே காப்பதற்குப் பதிலாக)' : '.'),
checked: !Morebits.userIsInGroup('sysop')
checked: true
},
{
label: 'பக்கத்தில் காப்பு வார்ப்புருவை இணைத்தல்',
value: 'tag',
tooltip: 'பக்கத்தைக் காத்த நிருவாகியோ நீங்களோ, ஒரு காப்பு வார்ப்புருவையிட மறந்தால், உரிய காப்பு வார்ப்புருவையிட இதனைப் பயன்படுத்தலாம்.',
disabled: mw.config.get('wgArticleId') === 0
}
}
]
]
} );
});
}
actionfield.append({
type: 'radio',
name: 'actiontype',
event: Twinkle.protect.callback.changeAction,
list: [
{
label: 'Request page protection',
value: 'request',
tooltip: 'If you want to request protection via WP:RPP' + (Morebits.userIsSysop ? ' instead of doing the protection by yourself.' : '.'),
checked: !Morebits.userIsSysop
},
{
label: 'Tag page with protection template',
value: 'tag',
tooltip: 'If the protecting admin forgot to apply a protection template, or you have just protected the page without tagging, you can use this to apply the appropriate protection tag.',
disabled: mw.config.get('wgArticleId') === 0 || mw.config.get('wgPageContentModel') === 'Scribunto'
}
]
});


form.append({ type: 'field', label: 'முன்னடுக்கு', name: 'field_preset' });
form.append({ type: 'field', label: 'Preset', name: 'field_preset' });
form.append({ type: 'field', label: '1', name: 'field1' });
form.append({ type: 'field', label: '1', name: 'field1' });
form.append({ type: 'field', label: '2', name: 'field2' });
form.append({ type: 'field', label: '2', name: 'field2' });


form.append( { type:'submit' } );
form.append({ type: 'submit' });


var result = form.render();
var result = form.render();
Window.setContent( result );
Window.setContent(result);
Window.display();
Window.display();


// We must init the controls
// We must init the controls
var evt = document.createEvent( "Event" );
var evt = document.createEvent('Event');
evt.initEvent( 'change', true, true );
evt.initEvent('change', true, true);
result.actiontype[0].dispatchEvent( evt );
result.actiontype[0].dispatchEvent(evt);

Morebits.wiki.actionCompleted.postfix = false; // avoid Action: completed notice


// get current protection level asynchronously
// get current protection level asynchronously
Twinkle.protect.fetchProtectionLevel();
Twinkle.protect.fetchProtectionLevel();
};
};


// A list of bots who may be the protecting sysop, for whom we shouldn't
// remind the user contact before requesting unprotection (evaluate)
Twinkle.protect.trustedBots = ['MusikBot II', 'TFA Protector Bot'];

// Customizable namespace and FlaggedRevs settings
// In theory it'd be nice to have restrictionlevels defined here,
// but those are only available via a siteinfo query

// mw.loader.getState('ext.flaggedRevs.review') returns null if the
// FlaggedRevs extension is not registered. Previously, this was done with
// wgFlaggedRevsParams, but after 1.34-wmf4 it is no longer exported if empty
// (https://gerrit.wikimedia.org/r/c/mediawiki/extensions/FlaggedRevs/+/508427)
var hasFlaggedRevs = mw.loader.getState('ext.flaggedRevs.review') &&
// FlaggedRevs only valid in some namespaces, hardcoded until [[phab:T218479]]
(mw.config.get('wgNamespaceNumber') === 0 || mw.config.get('wgNamespaceNumber') === 4);
// Limit template editor; a Twinkle restriction, not a site setting
var isTemplate = mw.config.get('wgNamespaceNumber') === 10 || mw.config.get('wgNamespaceNumber') === 828;



// Contains the current protection level in an object
// Contains the current protection level in an object
வரிசை 98: வரிசை 116:
// { edit: { level: "sysop", expiry: <some date>, cascade: true }, ... }
// { edit: { level: "sysop", expiry: <some date>, cascade: true }, ... }
Twinkle.protect.currentProtectionLevels = {};
Twinkle.protect.currentProtectionLevels = {};

// returns a jQuery Deferred object, usage:
// Twinkle.protect.fetchProtectingAdmin(apiObject, pageName, protect/stable).done(function(admin_username) { ...code... });
Twinkle.protect.fetchProtectingAdmin = function twinkleprotectFetchProtectingAdmin(api, pageName, protType, logIds) {
logIds = logIds || [];

return api.get({
format: 'json',
action: 'query',
list: 'logevents',
letitle: pageName,
letype: protType
}).then(function(data) {
// don't check log entries that have already been checked (e.g. don't go into an infinite loop!)
var event = data.query ? $.grep(data.query.logevents, function(le) {
return $.inArray(le.logid, logIds);
})[0] : null;
if (!event) {
// fail gracefully
return null;
} else if (event.action === 'move_prot' || event.action === 'move_stable') {
return twinkleprotectFetchProtectingAdmin(api, protType === 'protect' ? event.params.oldtitle_title : event.params.oldtitle, protType, logIds.concat(event.logid));
}
return event.user;
});
};


Twinkle.protect.fetchProtectionLevel = function twinkleprotectFetchProtectionLevel() {
Twinkle.protect.fetchProtectionLevel = function twinkleprotectFetchProtectionLevel() {
வரிசை 109: வரிசை 153:
letype: 'protect',
letype: 'protect',
letitle: mw.config.get('wgPageName'),
letitle: mw.config.get('wgPageName'),
prop: 'info|flagged',
prop: hasFlaggedRevs ? 'info|flagged' : 'info',
inprop: 'protection',
inprop: 'protection|watched',
titles: mw.config.get('wgPageName')
titles: mw.config.get('wgPageName')
});
});
வரிசை 121: வரிசை 165:
});
});


var earlyDecision = [protectDeferred];
$.when.apply($, [protectDeferred, stableDeferred]).done(function(protectData, stableData){
if (hasFlaggedRevs) {
earlyDecision.push(stableDeferred);
}

$.when.apply($, earlyDecision).done(function(protectData, stableData) {
// $.when.apply is supposed to take an unknown number of promises
// via an array, which it does, but the type of data returned varies.
// If there are two or more deferreds, it returns an array (of objects),
// but if there's just one deferred, it retuns a simple object.
// This is annoying.
protectData = $(protectData).toArray();

var pageid = protectData[0].query.pageids[0];
var pageid = protectData[0].query.pageids[0];
var page = protectData[0].query.pages[pageid];
var page = protectData[0].query.pages[pageid];
var current = {};
var current = {}, adminEditDeferred;

// Save requested page's watched status for later in case needed when filing request
Twinkle.protect.watched = page.watchlistexpiry || page.watched === '';


$.each(page.protection, function( index, protection ) {
$.each(page.protection, function(index, protection) {
if (protection.type !== "aft") {
// Don't overwrite actual page protection with cascading protection
if (!protection.source) {
current[protection.type] = {
current[protection.type] = {
level: protection.level,
level: protection.level,
expiry: protection.expiry,
expiry: protection.expiry,
cascade: protection.cascade === ''
cascade: protection.cascade === ''
};
// logs report last admin who made changes to either edit/move/create protection, regardless if they only modified one of them
if (!adminEditDeferred) {
adminEditDeferred = Twinkle.protect.fetchProtectingAdmin(api, mw.config.get('wgPageName'), 'protect');
}
} else {
// Account for the page being covered by cascading protection
current.cascading = {
expiry: protection.expiry,
source: protection.source,
level: protection.level // should always be sysop, unused
};
};
}
}
வரிசை 141: வரிசை 212:
expiry: page.flagged.protection_expiry
expiry: page.flagged.protection_expiry
};
};
adminEditDeferred = Twinkle.protect.fetchProtectingAdmin(api, mw.config.get('wgPageName'), 'stable');
}
}


// show the protection level and log info
// show the protection level and log info
Twinkle.protect.hasProtectLog = !!protectData[0].query.logevents.length;
Twinkle.protect.hasProtectLog = !!protectData[0].query.logevents.length;
Twinkle.protect.hasStableLog = !!stableData[0].query.logevents.length;
Twinkle.protect.protectLog = Twinkle.protect.hasProtectLog && protectData[0].query.logevents;
Twinkle.protect.hasStableLog = hasFlaggedRevs ? !!stableData[0].query.logevents.length : false;
Twinkle.protect.stableLog = Twinkle.protect.hasStableLog && stableData[0].query.logevents;
Twinkle.protect.currentProtectionLevels = current;
Twinkle.protect.currentProtectionLevels = current;

Twinkle.protect.callback.showLogAndCurrentProtectInfo();
if (adminEditDeferred) {
adminEditDeferred.done(function(admin) {
if (admin) {
$.each(['edit', 'move', 'create', 'stabilize', 'cascading'], function(i, type) {
if (Twinkle.protect.currentProtectionLevels[type]) {
Twinkle.protect.currentProtectionLevels[type].admin = admin;
}
});
}
Twinkle.protect.callback.showLogAndCurrentProtectInfo();
});
} else {
Twinkle.protect.callback.showLogAndCurrentProtectInfo();
}
});
});
};
};
வரிசை 155: வரிசை 243:


if (Twinkle.protect.hasProtectLog || Twinkle.protect.hasStableLog) {
if (Twinkle.protect.hasProtectLog || Twinkle.protect.hasStableLog) {
var $linkMarkup = $("<span>");
var $linkMarkup = $('<span>');


if (Twinkle.protect.hasProtectLog)
if (Twinkle.protect.hasProtectLog) {
$linkMarkup.append(
$linkMarkup.append(
$( '<a target="_blank" href="' + mw.util.getUrl('Special:Log', {action: 'view', page: mw.config.get('wgPageName'), type: 'protect'}) + '">காப்புப் பதிகை</a>' ),
$('<a target="_blank" href="' + mw.util.getUrl('Special:Log', {action: 'view', page: mw.config.get('wgPageName'), type: 'protect'}) + '">protection log</a>'));
if (!currentlyProtected || (!Twinkle.protect.currentProtectionLevels.edit && !Twinkle.protect.currentProtectionLevels.move)) {
Twinkle.protect.hasStableLog ? $("<span> &bull; </span>") : null
var lastProtectAction = Twinkle.protect.protectLog[0];
);
if (lastProtectAction.action === 'unprotect') {
if (Twinkle.protect.hasStableLog)
$linkMarkup.append($( '<a target="_blank" href="' + mw.util.getUrl('Special:Log', {action: 'view', page: mw.config.get('wgPageName'), type: 'stable'}) + '">pending changes log</a>)' ));
$linkMarkup.append(' (unprotected ' + new Morebits.date(lastProtectAction.timestamp).calendar('utc') + ')');
} else { // protect or modify
$linkMarkup.append(' (expired ' + new Morebits.date(lastProtectAction.params.details[0].expiry).calendar('utc') + ')');
}
}
$linkMarkup.append(Twinkle.protect.hasStableLog ? $('<span> &bull; </span>') : null);
}

if (Twinkle.protect.hasStableLog) {
$linkMarkup.append($('<a target="_blank" href="' + mw.util.getUrl('Special:Log', {action: 'view', page: mw.config.get('wgPageName'), type: 'stable'}) + '">pending changes log</a>)'));
if (!currentlyProtected || !Twinkle.protect.currentProtectionLevels.stabilize) {
var lastStabilizeAction = Twinkle.protect.stableLog[0];
if (lastStabilizeAction.action === 'reset') {
$linkMarkup.append(' (reset ' + new Morebits.date(lastStabilizeAction.timestamp).calendar('utc') + ')');
} else { // config or modify
$linkMarkup.append(' (expired ' + new Morebits.date(lastStabilizeAction.params.expiry).calendar('utc') + ')');
}
}
}


Morebits.status.init($('div[name="hasprotectlog"] span')[0]);
Morebits.status.init($('div[name="hasprotectlog"] span')[0]);
Morebits.status.warn(
Morebits.status.warn(
currentlyProtected ? 'Previous protections' : 'This page has been protected in the past',
currentlyProtected ? 'முந்திய காப்புகள்' : 'இப்பக்கம் முன்பு காக்கப்பட்டுள்ளது.',
$linkMarkup[0]
$linkMarkup[0]
);
);
வரிசை 178: வரிசை 284:
$.each(Twinkle.protect.currentProtectionLevels, function(type, settings) {
$.each(Twinkle.protect.currentProtectionLevels, function(type, settings) {
var label = type === 'stabilize' ? 'Pending Changes' : Morebits.string.toUpperCaseFirstChar(type);
var label = type === 'stabilize' ? 'Pending Changes' : Morebits.string.toUpperCaseFirstChar(type);

protectionNode.push($("<b>" + label + ": " + settings.level + "</b>")[0]);
if (type === 'cascading') { // Covered by another page
label = 'Cascading protection ';
protectionNode.push($('<b>' + label + '</b>')[0]);
if (settings.source) { // Should by definition exist
var sourceLink = '<a target="_blank" href="' + mw.util.getUrl(settings.source) + '">' + settings.source + '</a>';
protectionNode.push($('<span>from ' + sourceLink + '</span>')[0]);
}
} else {
var level = settings.level;
// Make cascading protection more prominent
if (settings.cascade) {
level += ' (cascading)';
}
protectionNode.push($('<b>' + label + ': ' + level + '</b>')[0]);
}

if (settings.expiry === 'infinity') {
if (settings.expiry === 'infinity') {
protectionNode.push(" (indefinite) ");
protectionNode.push(' (indefinite) ');
} else {
} else {
protectionNode.push(" (expires " + new Date(settings.expiry).toUTCString() + ") ");
protectionNode.push(' (expires ' + new Morebits.date(settings.expiry).calendar('utc') + ') ');
}
}
if (settings.cascade) {
if (settings.admin) {
var adminLink = '<a target="_blank" href="' + mw.util.getUrl('User talk:' + settings.admin) + '">' + settings.admin + '</a>';
protectionNode.push("(cascading) ");
protectionNode.push($('<span>by ' + adminLink + '</span>')[0]);
}
}
protectionNode.push($('<span> \u2022 </span>')[0]);
});
});
protectionNode = protectionNode.slice(0, -1); // remove the trailing bullet
statusLevel = 'warn';
statusLevel = 'warn';
} else {
} else {
protectionNode.push($("<b>காப்பு இல்லை</b>")[0]);
protectionNode.push($('<b>no protection</b>')[0]);
}
}


Morebits.status[statusLevel]("தற்போதைய காப்பு நிலை", protectionNode);
Morebits.status[statusLevel]('Current protection level', protectionNode);
};
};


வரிசை 200: வரிசை 325:
var field1;
var field1;
var field2;
var field2;
var isTemplate = mw.config.get("wgNamespaceNumber") === 10 || mw.config.get("wgNamespaceNumber") === 828;


switch (e.target.values) {
switch (e.target.values) {
வரிசை 206: வரிசை 330:
field_preset = new Morebits.quickForm.element({ type: 'field', label: 'Preset', name: 'field_preset' });
field_preset = new Morebits.quickForm.element({ type: 'field', label: 'Preset', name: 'field_preset' });
field_preset.append({
field_preset.append({
type: 'select',
type: 'select',
name: 'category',
name: 'category',
label: 'ஒரு முன்னடுக்கைத் தெரிக:',
label: 'Choose a preset:',
event: Twinkle.protect.callback.changePreset,
event: Twinkle.protect.callback.changePreset,
list: (mw.config.get('wgArticleId') ?
list: mw.config.get('wgArticleId') ? Twinkle.protect.protectionTypes : Twinkle.protect.protectionTypesCreate
});
Twinkle.protect.protectionTypes.filter(function(v) {
return isTemplate || v.label !== 'வார்ப்புருக் காப்பு';
}) :
Twinkle.protect.protectionTypesCreate)
});


field2 = new Morebits.quickForm.element({ type: 'field', label: 'காப்புத் தெரிவுகள்', name: 'field2' });
field2 = new Morebits.quickForm.element({ type: 'field', label: 'Protection options', name: 'field2' });
field2.append({ type: 'div', name: 'currentprot', label: ' ' }); // holds the current protection level, as filled out by the async callback
field2.append({ type: 'div', name: 'currentprot', label: ' ' }); // holds the current protection level, as filled out by the async callback
field2.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
field2.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
வரிசை 223: வரிசை 343:
if (mw.config.get('wgArticleId')) {
if (mw.config.get('wgArticleId')) {
field2.append({
field2.append({
type: 'checkbox',
event: Twinkle.protect.formevents.editmodify,
list: [
{
label: 'Modify edit protection',
name: 'editmodify',
tooltip: 'If this is turned off, the edit protection level, and expiry time, will be left as is.',
checked: true
}
]
});
field2.append({
type: 'select',
name: 'editlevel',
label: 'Edit protection:',
event: Twinkle.protect.formevents.editlevel,
list: Twinkle.protect.protectionLevels.filter(function(level) {
// Filter TE outside of templates and modules
return isTemplate || level.value !== 'templateeditor';
})
});
field2.append({
type: 'select',
name: 'editexpiry',
label: 'Expires:',
event: function(e) {
if (e.target.value === 'custom') {
Twinkle.protect.doCustomExpiry(e.target);
}
},
// default expiry selection (2 days) is conditionally set in Twinkle.protect.callback.changePreset
list: Twinkle.protect.protectionLengths
});
field2.append({
type: 'checkbox',
event: Twinkle.protect.formevents.movemodify,
list: [
{
label: 'Modify move protection',
name: 'movemodify',
tooltip: 'If this is turned off, the move protection level, and expiry time, will be left as is.',
checked: true
}
]
});
field2.append({
type: 'select',
name: 'movelevel',
label: 'Move protection:',
event: Twinkle.protect.formevents.movelevel,
list: Twinkle.protect.protectionLevels.filter(function(level) {
// Autoconfirmed is required for a move, redundant
return level.value !== 'autoconfirmed' && (isTemplate || level.value !== 'templateeditor');
})
});
field2.append({
type: 'select',
name: 'moveexpiry',
label: 'Expires:',
event: function(e) {
if (e.target.value === 'custom') {
Twinkle.protect.doCustomExpiry(e.target);
}
},
// default expiry selection (2 days) is conditionally set in Twinkle.protect.callback.changePreset
list: Twinkle.protect.protectionLengths
});
if (hasFlaggedRevs) {
field2.append({
type: 'checkbox',
type: 'checkbox',
event: Twinkle.protect.formevents.pcmodify,
name: 'editmodify',
event: Twinkle.protect.formevents.editmodify,
list: [
list: [
{
{
label: 'தொகுத்தல் காப்பை மாற்றுக',
label: 'Modify pending changes protection',
value: 'editmodify',
name: 'pcmodify',
tooltip: 'If this is turned off, the pending changes level, and expiry time, will be left as is.',
tooltip: 'இது தெரிந்தெடுக்கப்படாவிட்டால், தொகுத்தல் காப்பு நிலையும் முடிவு நேரமும் ஏற்கனவே இருந்தது போலேயே இருக்கும்.',
checked: true
checked: true
}
}
]
]
});
});
var editlevel = field2.append({
field2.append({
type: 'select',
type: 'select',
name: 'editlevel',
name: 'pclevel',
label: 'தொகுத்தல் காப்பு:',
label: 'Pending changes:',
event: Twinkle.protect.formevents.editlevel
event: Twinkle.protect.formevents.pclevel,
});
editlevel.append({
type: 'option',
label: 'அனைவரும்',
value: 'all'
});
editlevel.append({
type: 'option',
label: 'தானாக உறுதியளிக்கப்பட்ட பயனர்கள்',
value: 'autoconfirmed'
});
editlevel.append({
type: 'option',
label: 'நிருவாகி',
value: 'sysop',
selected: true
});
field2.append({
type: 'select',
name: 'editexpiry',
label: 'முடிவு:',
event: function(e) {
if (e.target.value === 'custom') {
Twinkle.protect.doCustomExpiry(e.target);
}
},
list: [
list: [
{ label: '1 மணி', value: '1 hour' },
{ label: 'None', value: 'none' },
{ label: '2 மணிகள்', value: '2 hours' },
{ label: 'Pending change', value: 'autoconfirmed', selected: true }
{ label: '3 மணிகள்', value: '3 hours' },
{ label: '6 மணிகள்', value: '6 hours' },
{ label: '12 மணிகள்', value: '12 hours' },
{ label: '1 நாள்', value: '1 day' },
{ label: '2 நாள்கள்', selected: true, value: '2 days' },
{ label: '3 நாள்கள்', value: '3 days' },
{ label: '4 நாள்கள்', value: '4 days' },
{ label: '1 கிழமை', value: '1 week' },
{ label: '2 கிழமைகள்', value: '2 weeks' },
{ label: '1 மாதம்', value: '1 month' },
{ label: '2 மாதங்கள்', value: '2 months' },
{ label: '3 மாதங்கள்', value: '3 months' },
{ label: '1 ஆண்டு', value: '1 year' },
{ label: 'முடிவிலி', value:'indefinite' },
{ label: 'வேறு...', value: 'custom' }
]
]
});
});
field2.append({
field2.append({
type: 'checkbox',
name: 'movemodify',
event: Twinkle.protect.formevents.movemodify,
list: [
{
label: 'நகர்த்தல் காப்பை மாற்றுக',
value: 'movemodify',
tooltip: 'இது தெரிந்தெடுக்கப்படாவிட்டால், நகர்த்தல் காப்பு நிலையும் முடிவு நேரமும் ஏற்கனவே இருந்தது போலேயே இருக்கும்.',
checked: true
}
]
});
var movelevel = field2.append({
type: 'select',
type: 'select',
name: 'movelevel',
name: 'pcexpiry',
label: 'நகர்த்தல் காப்பு:',
label: 'Expires:',
event: Twinkle.protect.formevents.movelevel
});
movelevel.append({
type: 'option',
label: 'அனைவரும்',
value: 'all'
});
movelevel.append({
type: 'option',
label: 'தானாக உறுதியளிக்கப்பட்ட பயனர்கள்',
value: 'autoconfirmed'
});
movelevel.append({
type: 'option',
label: 'நிருவாகி',
value: 'sysop',
selected: true
});
field2.append({
type: 'select',
name: 'moveexpiry',
label: 'முடிவு:',
event: function(e) {
event: function(e) {
if (e.target.value === 'custom') {
if (e.target.value === 'custom') {
வரிசை 330: வரிசை 442:
}
}
},
},
// default expiry selection (1 month) is conditionally set in Twinkle.protect.callback.changePreset
list: [
list: Twinkle.protect.protectionLengths
{ label: '1 மணி', value: '1 hour' },
{ label: '2 மணிகள்', value: '2 hours' },
{ label: '3 மணிகள்', value: '3 hours' },
{ label: '6 மணிகள்', value: '6 hours' },
{ label: '12 மணிகள்', value: '12 hours' },
{ label: '1 நாள்', value: '1 day' },
{ label: '2 நாள்கள்', value: '2 days' },
{ label: '3 நாள்கள்', value: '3 days' },
{ label: '4 நாள்கள்', value: '4 days' },
{ label: '1 கிழமை', value: '1 week' },
{ label: '2 கிழமைகள்', value: '2 weeks' },
{ label: '1 மாதம்', value: '1 month' },
{ label: '2 மாதங்கள்', value: '2 months' },
{ label: '3 மாதங்கள்', value: '3 months' },
{ label: '1 ஆண்டு', value: '1 year' },
{ label: 'முடிவிலி', selected: true, value:'indefinite' },
{ label: 'வேறு...', value: 'custom' }
]
});
});
}
} else { // for non-existing pages
} else { // for non-existing pages
var createlevel = field2.append({
type: 'select',
name: 'createlevel',
label: 'உருவாக்கல் காப்பு:',
event: Twinkle.protect.formevents.createlevel
});
createlevel.append({
type: 'option',
label: 'அனைவரும்',
value: 'all'
});
createlevel.append({
type: 'option',
label: 'தானாக உறுதியளிக்கப்பட்ட பயனர்கள்',
value: 'autoconfirmed'
});
createlevel.append({
type: 'option',
label: 'நிருவாகி',
value: 'sysop',
selected: true
});
field2.append({
field2.append({
type: 'select',
type: 'select',
name: 'createexpiry',
name: 'createlevel',
label: 'முடிவு:',
label: 'Create protection:',
event: function(e) {
event: Twinkle.protect.formevents.createlevel,
list: Twinkle.protect.protectionLevels.filter(function(level) {
if (e.target.value === 'custom') {
// Filter TE always, and autoconfirmed in mainspace, redundant since WP:ACPERM
Twinkle.protect.doCustomExpiry(e.target);
return level.value !== 'templateeditor' && (mw.config.get('wgNamespaceNumber') !== 0 || level.value !== 'autoconfirmed');
}
},
})
list: [
});
field2.append({
{ label: '1 மணி', value: '1 hour' },
type: 'select',
{ label: '2 மணிகள்', value: '2 hours' },
name: 'createexpiry',
{ label: '3 மணிகள்', value: '3 hours' },
{ label: '6 மணிகள்', value: '6 hours' },
label: 'Expires:',
event: function(e) {
{ label: '12 மணிகள்', value: '12 hours' },
if (e.target.value === 'custom') {
{ label: '1 நாள்', value: '1 day' },
Twinkle.protect.doCustomExpiry(e.target);
{ label: '2 நாள்கள்', value: '2 days' },
}
{ label: '3 நாள்கள்', value: '3 days' },
},
{ label: '4 நாள்கள்', value: '4 days' },
// default expiry selection (indefinite) is conditionally set in Twinkle.protect.callback.changePreset
{ label: '1 கிழமை', value: '1 week' },
list: Twinkle.protect.protectionLengths
{ label: '2 கிழமைகள்', value: '2 weeks' },
});
{ label: '1 மாதம்', value: '1 month' },
{ label: '2 மாதங்கள்', value: '2 months' },
{ label: '3 மாதங்கள்', value: '3 months' },
{ label: '1 ஆண்டு', value: '1 year' },
{ label: 'முடிவிலி', selected: true, value: 'indefinite' },
{ label: 'வேறு...', value: 'custom' }
]
});
}
}
field2.append({
field2.append({
type: 'textarea',
type: 'textarea',
name: 'protectReason',
name: 'protectReason',
label: 'Reason (for protection log):'
label: 'காரணம் (காப்புப் பதிகையில் குறிப்பிட):'
});
});
if (!mw.config.get('wgArticleId')) { // tagging isn't relevant for non-existing pages
if (!mw.config.get('wgArticleId') || mw.config.get('wgPageContentModel') === 'Scribunto') { // tagging isn't relevant for non-existing or module pages
break;
break;
}
}
/* falls through */
/* falls through */
case 'tag':
case 'tag':
field1 = new Morebits.quickForm.element({ type: 'field', label: 'அடையாளப்படுத்தல் தெரிவுகள்', name: 'field1' });
field1 = new Morebits.quickForm.element({ type: 'field', label: 'Tagging options', name: 'field1' });
field1.append({ type: 'div', name: 'currentprot', label: ' ' }); // holds the current protection level, as filled out by the async callback
field1.append({ type: 'div', name: 'currentprot', label: ' ' }); // holds the current protection level, as filled out by the async callback
field1.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
field1.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
field1.append( {
field1.append({
type: 'select',
type: 'select',
name: 'tagtype',
name: 'tagtype',
label: 'Choose protection template:',
label: 'காப்பு வார்ப்புருவைத் தெரிக:',
list: Twinkle.protect.protectionTags,
list: Twinkle.protect.protectionTags,
event: Twinkle.protect.formevents.tagtype
event: Twinkle.protect.formevents.tagtype
} );
});
field1.append( {
field1.append({
type: 'checkbox',
type: 'checkbox',
list: [
list: [
{
{
name: 'small',
name: 'small',
label: 'படவுருவாக்கு (small=yes)',
label: 'Iconify (small=yes)',
tooltip: 'Will use the |small=yes feature of the template, and only render it as a keylock',
tooltip: '|small=yes என்ற வார்ப்புரு வசதியைப் பயன்படுத்தி, பூட்டை மட்டும் காட்டும்.',
checked: true
checked: true
},
},
{
{
name: 'noinclude',
name: 'noinclude',
label: 'காப்பு வார்ப்புருவை <noinclude>இனுள் உள்ளடக்கு',
label: 'Wrap protection template with <noinclude>',
tooltip: 'Will wrap the protection template in &lt;noinclude&gt; tags, so that it won\'t transclude',
tooltip: '&lt;noinclude&gt; அடையாளங்களுக்குள் காப்பு வார்ப்புருவை உள்ளடக்கும். எனவே, அது வேறிடந்தோன்றாது.',
checked: (mw.config.get('wgNamespaceNumber') === 10)
checked: mw.config.get('wgNamespaceNumber') === 10
}
}
]
]
} );
});
break;
break;


வரிசை 445: வரிசை 512:
field_preset = new Morebits.quickForm.element({ type: 'field', label: 'Type of protection', name: 'field_preset' });
field_preset = new Morebits.quickForm.element({ type: 'field', label: 'Type of protection', name: 'field_preset' });
field_preset.append({
field_preset.append({
type: 'select',
type: 'select',
name: 'category',
name: 'category',
label: 'வகையும் காரணமும்:',
label: 'Type and reason:',
event: Twinkle.protect.callback.changePreset,
event: Twinkle.protect.callback.changePreset,
list: (mw.config.get('wgArticleId') ? Twinkle.protect.protectionTypes : Twinkle.protect.protectionTypesCreate)
list: mw.config.get('wgArticleId') ? Twinkle.protect.protectionTypes : Twinkle.protect.protectionTypesCreate
});
});


field1 = new Morebits.quickForm.element({ type: 'field', label: 'தெரிவுகள்', name: 'field1' });
field1 = new Morebits.quickForm.element({ type: 'field', label: 'Options', name: 'field1' });
field1.append({ type: 'div', name: 'currentprot', label: ' ' }); // holds the current protection level, as filled out by the async callback
field1.append({ type: 'div', name: 'currentprot', label: ' ' }); // holds the current protection level, as filled out by the async callback
field1.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
field1.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
field1.append( {
type: 'select',
name: 'expiry',
label: 'காலம்: ',
list: [
{ label: 'தற்காலிகம்', value: 'temporary' },
{ label: 'முடிவிலி', value: 'indefinite' },
{ label: '', selected: true, value: '' }
]
} );
field1.append({
field1.append({
type: 'textarea',
type: 'select',
name: 'reason',
name: 'expiry',
label: 'காரணம்: '
label: 'Duration: ',
});
list: [
{ label: '', selected: true, value: '' },
{ label: 'Temporary', value: 'temporary' },
{ label: 'Indefinite', value: 'infinity' }
]
});
field1.append({
type: 'textarea',
name: 'reason',
label: 'Reason: '
});
break;
break;
default:
default:
வரிசை 499: வரிசை 566:
if (e.target.values === 'protect') {
if (e.target.values === 'protect') {
// fake a change event on the preset dropdown
// fake a change event on the preset dropdown
var evt = document.createEvent( "Event" );
var evt = document.createEvent('Event');
evt.initEvent( 'change', true, true );
evt.initEvent('change', true, true);
e.target.form.category.dispatchEvent( evt );
e.target.form.category.dispatchEvent(evt);


// reduce vertical height of dialog
// reduce vertical height of dialog
வரிசை 511: வரிசை 578:
};
};


// NOTE: This function is used by batchprotect as well
Twinkle.protect.formevents = {
Twinkle.protect.formevents = {
editmodify: function twinkleprotectFormEditmodifyEvent(e) {
editmodify: function twinkleprotectFormEditmodifyEvent(e) {
e.target.form.editlevel.disabled = !e.target.checked;
e.target.form.editlevel.disabled = !e.target.checked;
e.target.form.editexpiry.disabled = !e.target.checked || (e.target.form.editlevel.value === 'all');
e.target.form.editexpiry.disabled = !e.target.checked || (e.target.form.editlevel.value === 'all');
e.target.form.editlevel.style.color = e.target.form.editexpiry.style.color = (e.target.checked ? "" : "transparent");
e.target.form.editlevel.style.color = e.target.form.editexpiry.style.color = e.target.checked ? '' : 'transparent';
},
},
editlevel: function twinkleprotectFormEditlevelEvent(e) {
editlevel: function twinkleprotectFormEditlevelEvent(e) {
e.target.form.editexpiry.disabled = (e.target.value === 'all');
e.target.form.editexpiry.disabled = e.target.value === 'all';
},
},
movemodify: function twinkleprotectFormMovemodifyEvent(e) {
movemodify: function twinkleprotectFormMovemodifyEvent(e) {
வரிசை 527: வரிசை 595:
} else if (e.target.form.editlevel.disabled) {
} else if (e.target.form.editlevel.disabled) {
e.target.form.movelevel.value = 'sysop';
e.target.form.movelevel.value = 'sysop';
e.target.form.moveexpiry.value = 'indefinite';
e.target.form.moveexpiry.value = 'infinity';
}
}
e.target.form.movelevel.disabled = !e.target.checked;
e.target.form.movelevel.disabled = !e.target.checked;
e.target.form.moveexpiry.disabled = !e.target.checked || (e.target.form.movelevel.value === 'all');
e.target.form.moveexpiry.disabled = !e.target.checked || (e.target.form.movelevel.value === 'all');
e.target.form.movelevel.style.color = e.target.form.moveexpiry.style.color = (e.target.checked ? "" : "transparent");
e.target.form.movelevel.style.color = e.target.form.moveexpiry.style.color = e.target.checked ? '' : 'transparent';
},
},
movelevel: function twinkleprotectFormMovelevelEvent(e) {
movelevel: function twinkleprotectFormMovelevelEvent(e) {
e.target.form.moveexpiry.disabled = (e.target.value === 'all');
e.target.form.moveexpiry.disabled = e.target.value === 'all';
},
},
pcmodify: function twinkleprotectFormPcmodifyEvent(e) {
pcmodify: function twinkleprotectFormPcmodifyEvent(e) {
e.target.form.pclevel.disabled = !e.target.checked;
e.target.form.pclevel.disabled = !e.target.checked;
e.target.form.pcexpiry.disabled = !e.target.checked || (e.target.form.pclevel.value === 'none');
e.target.form.pcexpiry.disabled = !e.target.checked || (e.target.form.pclevel.value === 'none');
e.target.form.pclevel.style.color = e.target.form.pcexpiry.style.color = (e.target.checked ? "" : "transparent");
e.target.form.pclevel.style.color = e.target.form.pcexpiry.style.color = e.target.checked ? '' : 'transparent';
},
},
pclevel: function twinkleprotectFormPclevelEvent(e) {
pclevel: function twinkleprotectFormPclevelEvent(e) {
e.target.form.pcexpiry.disabled = (e.target.value === 'none');
e.target.form.pcexpiry.disabled = e.target.value === 'none';
},
},
createlevel: function twinkleprotectFormCreatelevelEvent(e) {
createlevel: function twinkleprotectFormCreatelevelEvent(e) {
e.target.form.createexpiry.disabled = (e.target.value === 'all');
e.target.form.createexpiry.disabled = e.target.value === 'all';
},
},
tagtype: function twinkleprotectFormTagtypeEvent(e) {
tagtype: function twinkleprotectFormTagtypeEvent(e) {
வரிசை 553: வரிசை 621:


Twinkle.protect.doCustomExpiry = function twinkleprotectDoCustomExpiry(target) {
Twinkle.protect.doCustomExpiry = function twinkleprotectDoCustomExpiry(target) {
var custom = prompt('Enter a custom expiry time. \nYou can use relative times, like "1 minute" or "19 days", or absolute timestamps, "yyyymmddhhmm" (e.g. "200602011405" is Feb 1, 2006, at 14:05 UTC).', '');
var custom = prompt('முடிவு நேரத்தை உள்ளிடுக. \n"1 minute" அல்லது "19 days" என்றவாறு சார்பு நேரத்தையோ "ஆஆஆஆமாமாநாநாநிநி" (எ-டு: "200602011405" என்பது பெப்ரவரி 1, 2006 அன்று ஒ. அ. நே. 14:05ஐக் குறிக்கும்.) என்றவாறு தனிநேரத்தையோ பயன்படுத்தலாம்.', '');
if (custom) {
if (custom) {
var option = document.createElement('option');
var option = document.createElement('option');
வரிசை 564: வரிசை 632:
}
}
};
};

// NOTE: This list is used by batchprotect as well
Twinkle.protect.protectionLevels = [
{ label: 'All', value: 'all' },
{ label: 'Autoconfirmed', value: 'autoconfirmed' },
{ label: 'Extended confirmed', value: 'extendedconfirmed' },
{ label: 'Template editor', value: 'templateeditor' },
{ label: 'Sysop', value: 'sysop', selected: true }
];

// default expiry selection is conditionally set in Twinkle.protect.callback.changePreset
// NOTE: This list is used by batchprotect as well
Twinkle.protect.protectionLengths = [
{ label: '1 hour', value: '1 hour' },
{ label: '2 hours', value: '2 hours' },
{ label: '3 hours', value: '3 hours' },
{ label: '6 hours', value: '6 hours' },
{ label: '12 hours', value: '12 hours' },
{ label: '1 day', value: '1 day' },
{ label: '2 days', value: '2 days' },
{ label: '3 days', value: '3 days' },
{ label: '4 days', value: '4 days' },
{ label: '1 week', value: '1 week' },
{ label: '2 weeks', value: '2 weeks' },
{ label: '1 month', value: '1 month' },
{ label: '2 months', value: '2 months' },
{ label: '3 months', value: '3 months' },
{ label: '1 year', value: '1 year' },
{ label: 'indefinite', value: 'infinity' },
{ label: 'Custom...', value: 'custom' }
];


Twinkle.protect.protectionTypes = [
Twinkle.protect.protectionTypes = [
{ label: 'காப்பு நீக்கம்', value: 'unprotect' },
{ label: 'Unprotection', value: 'unprotect' },
{
{
label: 'முழுக்காப்பு',
label: 'Full protection',
list: [
list: [
{ label: 'பொது (முழு)', value: 'pp-protected' },
{ label: 'Generic (full)', value: 'pp-protected' },
{ label: 'உள்ளடக்கப் பிணக்கு/தொகுப்புப் போர் (முழு)', value: 'pp-dispute' },
{ label: 'Content dispute/edit warring (full)', value: 'pp-dispute' },
{ label: 'தொடர்ச்சியான நாசவேலை (முழு)', value: 'pp-vandalism' },
{ label: 'Persistent vandalism (full)', value: 'pp-vandalism' },
{ label: 'தடைசெய்த பயனரின் பேச்சுப் பக்கம் (முழு)', value: 'pp-usertalk' }
{ label: 'User talk of blocked user (full)', value: 'pp-usertalk' }
]
]
},
},
{
{
label: 'Template protection',
label: 'வார்ப்புருக் காப்பு',
list: [
list: [
{ label: 'கூடுதலாகப் பயன்படுத்தப்படும் வார்ப்புரு', value: 'pp-template' }
{ label: 'Highly visible template (TE)', value: 'pp-template' }
]
]
},
},
{
{
label: 'பகுதிக் காப்பு',
label: 'Extended confirmed protection',
list: [
list: [
{ label: 'பொது (பகுதி)', value: 'pp-semi-protected' },
{ label: 'Arbitration enforcement (ECP)', selected: true, value: 'pp-30-500-arb' },
{ label: 'தொடர்ச்சியான நாசவேலை (பகுதி)', selected: true, value: 'pp-semi-vandalism' },
{ label: 'Persistent vandalism (ECP)', value: 'pp-30-500-vandalism' },
{ label: 'தீங்கிழைக்கும் தொகுப்புகள் (பகுதி)', value: 'pp-semi-disruptive' },
{ label: 'Disruptive editing (ECP)', value: 'pp-30-500-disruptive' },
{ label: 'BLP policy violations (ECP)', value: 'pp-30-500-blp' },
{ label: 'மேற்கோளிடப்படாத உள்ளடக்கம் இணைக்கப்படுகின்றது (பகுதி)', value: 'pp-semi-unsourced' },
{ label: 'Sockpuppetry (ECP)', value: 'pp-30-500-sock' }
{ label: 'வாழும் மனிதர்களின் வாழ்க்கை வரலாற்றுக் கொள்கை மீறல்கள் (பகுதி)', value: 'pp-semi-blp' },
{ label: 'கைப்பாவை (பகுதி)', value: 'pp-semi-sock' },
{ label: 'தடைசெய்த பயனரின் பேச்சுப் பக்கம் (பகுதி)', value: 'pp-semi-usertalk' }
]
]
},
},
{
{
label: 'நகர்த்தல் காப்பு',
label: 'Semi-protection',
list: [
list: [
{ label: 'பொது (நகர்த்தல்)', value: 'pp-move' },
{ label: 'Generic (semi)', value: 'pp-semi-protected' },
{ label: 'பிணக்கு/நகர்த்தற் போர் (நகர்த்தல்)', value: 'pp-move-dispute' },
{ label: 'Persistent vandalism (semi)', selected: true, value: 'pp-semi-vandalism' },
{ label: 'பக்க நகர்த்தல் நாசவேலை (நகர்த்தல்)', value: 'pp-move-vandalism' },
{ label: 'Disruptive editing (semi)', value: 'pp-semi-disruptive' },
{ label: 'கூடுதலாகப் பார்வையிடப்படும் பக்கம் (நகர்த்தல்)', value: 'pp-move-indef' }
{ label: 'Adding unsourced content (semi)', value: 'pp-semi-unsourced' },
{ label: 'BLP policy violations (semi)', value: 'pp-semi-blp' },
{ label: 'Sockpuppetry (semi)', value: 'pp-semi-sock' },
{ label: 'User talk of blocked user (semi)', value: 'pp-semi-usertalk' }
]
},
{
label: 'Pending changes',
list: [
{ label: 'Generic (PC)', value: 'pp-pc-protected' },
{ label: 'Persistent vandalism (PC)', value: 'pp-pc-vandalism' },
{ label: 'Disruptive editing (PC)', value: 'pp-pc-disruptive' },
{ label: 'Adding unsourced content (PC)', value: 'pp-pc-unsourced' },
{ label: 'BLP policy violations (PC)', value: 'pp-pc-blp' }
]
},
{
label: 'Move protection',
list: [
{ label: 'Generic (move)', value: 'pp-move' },
{ label: 'Dispute/move warring (move)', value: 'pp-move-dispute' },
{ label: 'Page-move vandalism (move)', value: 'pp-move-vandalism' },
{ label: 'Highly visible page (move)', value: 'pp-move-indef' }
]
]
}
}
].filter(function(type) {
];
// Filter for templates and flaggedrevs
return (isTemplate || type.label !== 'Template protection') && (hasFlaggedRevs || type.label !== 'Pending changes');
});


Twinkle.protect.protectionTypesCreate = [
Twinkle.protect.protectionTypesCreate = [
{ label: 'காப்பு நீக்கம்', value: 'unprotect' },
{ label: 'Unprotection', value: 'unprotect' },
{
{
label: 'உருவாக்கல் காப்பு',
label: 'Create protection',
list: [
list: [
{ label: 'பொது ({{pp-create}})', value: 'pp-create' },
{ label: 'Generic ({{pp-create}})', value: 'pp-create' },
{ label: 'புண்படுத்தும் பெயர்', value: 'pp-create-offensive' },
{ label: 'Offensive name', value: 'pp-create-offensive' },
{ label: 'தொடர்ச்சியாக மீளவுருவாக்கப்படுகின்றது', selected: true, value: 'pp-create-salt' },
{ label: 'Repeatedly recreated', selected: true, value: 'pp-create-salt' },
{ label: 'அண்மையில் அழித்த வாழும் மனிதரின் வாழ்க்கை வரலாறு', value: 'pp-create-blp' }
{ label: 'Recently deleted BLP', value: 'pp-create-blp' }
]
]
}
}
வரிசை 619: வரிசை 741:


// A page with both regular and PC protection will be assigned its regular
// A page with both regular and PC protection will be assigned its regular
// protection weight plus 2 (for PC1) or 7 (for PC2)
// protection weight plus 2
Twinkle.protect.protectionWeight = {
Twinkle.protect.protectionWeight = {
sysop: 30,
sysop: 40,
templateeditor: 20,
templateeditor: 30,
extendedconfirmed: 20,
flaggedrevs_review: 15, // Pending Changes level 2 protection alone
autoconfirmed: 10,
autoconfirmed: 10,
flaggedrevs_autoconfirmed: 5, // Pending Changes level 1 protection alone
flaggedrevs_autoconfirmed: 5, // Pending Changes protection alone
all: 0,
all: 0,
flaggedrevs_none: 0 // just in case
flaggedrevs_none: 0 // just in case
வரிசை 632: வரிசை 754:
// NOTICE: keep this synched with [[MediaWiki:Protect-dropdown]]
// NOTICE: keep this synched with [[MediaWiki:Protect-dropdown]]
// Also note: stabilize = Pending Changes level
// Also note: stabilize = Pending Changes level
// expiry will override any defaults
Twinkle.protect.protectionPresetsInfo = {
Twinkle.protect.protectionPresetsInfo = {
'pp-protected': {
'pp-protected': {
வரிசை 641: வரிசை 764:
edit: 'sysop',
edit: 'sysop',
move: 'sysop',
move: 'sysop',
reason: '[[WP:PP#Content disputes|Edit warring / content dispute]]'
reason: '[[WP:PP|தொகுப்புப் போர்/உள்ளடக்கப் பிணக்கு]]'
},
},
'pp-vandalism': {
'pp-vandalism': {
edit: 'sysop',
edit: 'sysop',
move: 'sysop',
move: 'sysop',
reason: 'Persistent [[WP:Vandalism|vandalism]]'
reason: 'தொடர்ச்சியான நாசவேலை'
},
},
'pp-usertalk': {
'pp-usertalk': {
edit: 'sysop',
edit: 'sysop',
move: 'sysop',
move: 'sysop',
expiry: 'infinity',
reason: '[[WP:PP|தடைசெய்யப்பட்டுள்ளபோது பயனர் பேச்சுப் பக்கத்தைப் பொருத்தமற்ற வகையில் பயன்படுத்துதல்.]]'
reason: '[[WP:PP#Talk-page protection|Inappropriate use of user talk page while blocked]]'
},
},
'pp-template': {
'pp-template': {
edit: 'sysop',
edit: 'templateeditor',
move: 'sysop',
move: 'templateeditor',
expiry: 'infinity',
reason: 'கூடுதலாகப் பயன்படுத்தப்படும் வார்ப்புரு'
reason: '[[WP:High-risk templates|Highly visible template]]'
},
'pp-30-500-arb': {
edit: 'extendedconfirmed',
move: 'extendedconfirmed',
expiry: 'infinity',
reason: '[[WP:30/500|Arbitration enforcement]]',
template: 'pp-30-500'
},
'pp-30-500-vandalism': {
edit: 'extendedconfirmed',
move: 'extendedconfirmed',
reason: 'Persistent [[WP:Vandalism|vandalism]] from (auto)confirmed accounts',
template: 'pp-30-500'
},
'pp-30-500-disruptive': {
edit: 'extendedconfirmed',
move: 'extendedconfirmed',
reason: 'Persistent [[WP:Disruptive editing|disruptive editing]] from (auto)confirmed accounts',
template: 'pp-30-500'
},
'pp-30-500-blp': {
edit: 'extendedconfirmed',
move: 'extendedconfirmed',
reason: 'Persistent violations of the [[WP:BLP|biographies of living persons policy]] from (auto)confirmed accounts',
template: 'pp-30-500'
},
'pp-30-500-sock': {
edit: 'extendedconfirmed',
move: 'extendedconfirmed',
reason: 'Persistent [[WP:Sock puppetry|sock puppetry]]',
template: 'pp-30-500'
},
},
'pp-semi-vandalism': {
'pp-semi-vandalism': {
edit: 'autoconfirmed',
edit: 'autoconfirmed',
reason: 'Persistent [[WP:Vandalism|vandalism]]',
reason: 'தொடர்ச்சியான நாசவேலை',
template: 'pp-vandalism'
template: 'pp-vandalism'
},
},
'pp-semi-disruptive': {
'pp-semi-disruptive': {
edit: 'autoconfirmed',
edit: 'autoconfirmed',
reason: 'Persistent [[WP:Disruptive editing|disruptive editing]]',
reason: 'தொடர்ச்சியான சீர்குலைக்கும் தொகுப்புகள்',
template: 'pp-protected'
template: 'pp-protected'
},
},
'pp-semi-unsourced': {
'pp-semi-unsourced': {
edit: 'autoconfirmed',
edit: 'autoconfirmed',
reason: 'Persistent addition of [[WP:INTREF|unsourced or poorly sourced content]]',
reason: 'மேற்கோளிடப்படாத அல்லது வறிதாக மேற்கோளிடப்பட்ட உள்ளடக்கம் தொடர்ச்சியாகச் சேர்க்கப்படுதல்.',
template: 'pp-protected'
template: 'pp-protected'
},
},
'pp-semi-blp': {
'pp-semi-blp': {
edit: 'autoconfirmed',
edit: 'autoconfirmed',
reason: 'Violations of the [[WP:BLP|biographies of living persons policy]]',
reason: '[[WP:BLP|வாழும் மனிதர்களின் வாழ்க்கை வரலாற்றுக் கொள்கை]] மீறல்கள்',
template: 'pp-blp'
template: 'pp-blp'
},
},
வரிசை 681: வரிசை 837:
edit: 'autoconfirmed',
edit: 'autoconfirmed',
move: 'autoconfirmed',
move: 'autoconfirmed',
expiry: 'infinity',
reason: '[[WP:PP|தடைசெய்யப்பட்டுள்ளபோது பயனர் பேச்சுப் பக்கத்தைப் பொருத்தமற்ற வகையில் பயன்படுத்துதல்.]]',
reason: '[[WP:PP#Talk-page protection|Inappropriate use of user talk page while blocked]]',
template: 'pp-usertalk'
template: 'pp-usertalk'
},
},
வரிசை 687: வரிசை 844:
edit: 'autoconfirmed',
edit: 'autoconfirmed',
move: 'autoconfirmed',
move: 'autoconfirmed',
expiry: 'infinity',
reason: 'கூடுதலாகப் பயன்படுத்தப்படும் வார்ப்புரு',
reason: '[[WP:High-risk templates|Highly visible template]]',
template: 'pp-template'
template: 'pp-template'
},
},
'pp-semi-sock': {
'pp-semi-sock': {
edit: 'autoconfirmed',
edit: 'autoconfirmed',
reason: 'Persistent [[WP:Sock puppetry|sock puppetry]]',
reason: 'தொடர்ச்சியான [[விக்கிப்பீடியா:கைப்பாவை|கைப்பாவை]]த் தாக்குதல்',
template: 'pp-sock'
template: 'pp-sock'
},
},
வரிசை 699: வரிசை 857:
reason: null,
reason: null,
template: 'pp-protected'
template: 'pp-protected'
},
'pp-pc-vandalism': {
stabilize: 'autoconfirmed', // stabilize = Pending Changes
reason: 'Persistent [[WP:Vandalism|vandalism]]',
template: 'pp-pc'
},
'pp-pc-disruptive': {
stabilize: 'autoconfirmed',
reason: 'Persistent [[WP:Disruptive editing|disruptive editing]]',
template: 'pp-pc'
},
'pp-pc-unsourced': {
stabilize: 'autoconfirmed',
reason: 'Persistent addition of [[WP:INTREF|unsourced or poorly sourced content]]',
template: 'pp-pc'
},
'pp-pc-blp': {
stabilize: 'autoconfirmed',
reason: 'Violations of the [[WP:BLP|biographies of living persons policy]]',
template: 'pp-pc'
},
'pp-pc-protected': {
stabilize: 'autoconfirmed',
reason: null,
template: 'pp-pc'
},
},
'pp-move': {
'pp-move': {
வரிசை 706: வரிசை 889:
'pp-move-dispute': {
'pp-move-dispute': {
move: 'sysop',
move: 'sysop',
reason: '[[WP:PP|நகர்த்தற் போர்]]'
reason: '[[WP:MOVP|Move warring]]'
},
},
'pp-move-vandalism': {
'pp-move-vandalism': {
move: 'sysop',
move: 'sysop',
reason: '[[WP:PP|பக்க நகர்த்தல் நாசவேலை]]'
reason: '[[WP:MOVP|Page-move vandalism]]'
},
},
'pp-move-indef': {
'pp-move-indef': {
move: 'sysop',
move: 'sysop',
expiry: 'infinity',
reason: '[[WP:PP|கூடுதலாகப் பார்வையிடப்படும் பக்கம்]]'
reason: '[[WP:MOVP|Highly visible page]]'
},
},
'unprotect': {
'unprotect': {
வரிசை 726: வரிசை 910:
'pp-create-offensive': {
'pp-create-offensive': {
create: 'sysop',
create: 'sysop',
reason: '[[WP:PP|புண்படுத்தும் பெயர்]]'
reason: '[[WP:SALT|Offensive name]]'
},
},
'pp-create-salt': {
'pp-create-salt': {
create: 'sysop',
create: 'extendedconfirmed',
reason: '[[WP:SALT|Repeatedly recreated]]'
reason: '[[WP:PP|தொடர்ச்சியாக மீளவுருவாக்கப்படுகின்றது]]'
},
},
'pp-create-blp': {
'pp-create-blp': {
create: 'sysop',
create: 'extendedconfirmed',
reason: '[[WP:BLPDEL|Recently deleted BLP]]'
reason: '[[WP:BLP|அண்மையில் அழித்த வாழும் மனிதரின் வாழ்க்கை வரலாறு]]'
},
},
'pp-create': {
'pp-create': {
create: 'sysop',
create: 'extendedconfirmed',
reason: '{{pp-create}}'
reason: '{{pp-create}}'
}
}
வரிசை 744: வரிசை 928:
Twinkle.protect.protectionTags = [
Twinkle.protect.protectionTags = [
{
{
label: 'None (remove existing protection templates)',
label: 'எதுவுமில்லை (ஏற்கனவேயுள்ள காப்பு வார்ப்புருக்களை நீக்குக.)',
value: 'none'
value: 'none'
},
},
{
{
label: 'None (do not remove existing protection templates)',
label: 'எதுவுமில்லை (ஏற்கனவேயுள்ள காப்பு வார்ப்புருக்களை நீக்கவேண்டாம்.)',
value: 'noop'
value: 'noop'
},
},
{
{
label: 'Edit protection templates',
label: 'தொகுத்தற் காப்பு வார்ப்புருக்கள்',
list: [
list: [
{ label: '{{pp-vandalism}}: நாசவேலை', value: 'pp-vandalism' },
{ label: '{{pp-vandalism}}: vandalism', value: 'pp-vandalism' },
{ label: '{{pp-dispute}}: பிணக்கு/தொகுப்புப் போர்', value: 'pp-dispute', selected: true },
{ label: '{{pp-dispute}}: dispute/edit war', value: 'pp-dispute' },
{ label: '{{pp-blp}}: வாழும் மனிதர்களின் வாழ்க்கை வரலாற்றுக் கொள்கை மீறல்கள்', value: 'pp-blp' },
{ label: '{{pp-blp}}: BLP violations', value: 'pp-blp' },
{ label: '{{pp-sock}}: கைப்பாவைத் தாக்குதல்கள்', value: 'pp-sock' },
{ label: '{{pp-sock}}: sockpuppetry', value: 'pp-sock' },
{ label: '{{pp-template}}: கூடுதலாகப் பயன்படுத்தப்படும் வார்ப்புரு', value: 'pp-template' },
{ label: '{{pp-template}}: high-risk template', value: 'pp-template' },
{ label: '{{pp-usertalk}}: தடைசெய்த பயனர் பேச்சு', value: 'pp-usertalk' },
{ label: '{{pp-usertalk}}: blocked user talk', value: 'pp-usertalk' },
{ label: '{{pp-protected}}: பொதுவான காப்பு', value: 'pp-protected' },
{ label: '{{pp-protected}}: general protection', value: 'pp-protected' },
{ label: '{{pp-semi-indef}}: பொதுவான நீண்ட காலப் பகுதிக் காப்பு', value: 'pp-semi-indef' }
{ label: '{{pp-semi-indef}}: general long-term semi-protection', value: 'pp-semi-indef' },
{ label: '{{pp-30-500}}: extended confirmed protection', value: 'pp-30-500' }
]
]
},
},
{
{
label: 'Pending changes templates',
label: 'நகர்த்தற் காப்பு வார்ப்புருக்கள்',
list: [
list: [
{ label: '{{pp-move-dispute}}: பிணக்கு/நகர்த்தற் போர்', value: 'pp-move-dispute' },
{ label: '{{pp-pc}}: pending changes', value: 'pp-pc' }
]
{ label: '{{pp-move-vandalism}}: பக்க நகர்த்தல் நாசவேலை', value: 'pp-move-vandalism' },
},
{ label: '{{pp-move-indef}}: பொதுவான நீண்ட கால', value: 'pp-move-indef' },
{
{ label: '{{pp-move}}: வேறு', value: 'pp-move' }
label: 'Move protection templates',
list: [
{ label: '{{pp-move-dispute}}: dispute/move war', value: 'pp-move-dispute' },
{ label: '{{pp-move-vandalism}}: page-move vandalism', value: 'pp-move-vandalism' },
{ label: '{{pp-move-indef}}: general long-term', value: 'pp-move-indef' },
{ label: '{{pp-move}}: other', value: 'pp-move' }
]
]
}
}
].filter(function(type) {
];
// Filter FlaggedRevs
return hasFlaggedRevs || type.label !== 'Pending changes templates';
});


Twinkle.protect.callback.changePreset = function twinkleprotectCallbackChangePreset(e) {
Twinkle.protect.callback.changePreset = function twinkleprotectCallbackChangePreset(e) {
வரிசை 780: வரிசை 974:
var actiontypes = form.actiontype;
var actiontypes = form.actiontype;
var actiontype;
var actiontype;
for( var i = 0; i < actiontypes.length; i++ )
for (var i = 0; i < actiontypes.length; i++) {
if (!actiontypes[i].checked) {
{
if( !actiontypes[i].checked ) {
continue;
continue;
}
}
வரிசை 791: வரிசை 984:
if (actiontype === 'protect') { // actually protecting the page
if (actiontype === 'protect') { // actually protecting the page
var item = Twinkle.protect.protectionPresetsInfo[form.category.value];
var item = Twinkle.protect.protectionPresetsInfo[form.category.value];

if (mw.config.get('wgArticleId')) {
if (mw.config.get('wgArticleId')) {
if (item.edit) {
if (item.edit) {
வரிசை 812: வரிசை 1,006:
}
}


form.editexpiry.value = form.moveexpiry.value = item.expiry || '2 days';
if (item.stabilize) {

form.pcmodify.checked = true;

Twinkle.protect.formevents.pcmodify({ target: form.pcmodify });
form.pclevel.value = item.stabilize;
if (form.pcmodify) {
if (item.stabilize) {
Twinkle.protect.formevents.pclevel({ target: form.pclevel });
form.pcmodify.checked = true;
} else {
Twinkle.protect.formevents.pcmodify({ target: form.pcmodify });
form.pcmodify.checked = false;
form.pclevel.value = item.stabilize;
Twinkle.protect.formevents.pcmodify({ target: form.pcmodify });
Twinkle.protect.formevents.pclevel({ target: form.pclevel });
} else {
form.pcmodify.checked = false;
Twinkle.protect.formevents.pcmodify({ target: form.pcmodify });
}
form.pcexpiry.value = item.expiry || '1 month';
}
}
} else {
} else {
வரிசை 826: வரிசை 1,026:
Twinkle.protect.formevents.createlevel({ target: form.createlevel });
Twinkle.protect.formevents.createlevel({ target: form.createlevel });
}
}
form.createexpiry.value = item.expiry || 'infinity';
}
}


var reasonField = (actiontype === "protect" ? form.protectReason : form.reason);
var reasonField = actiontype === 'protect' ? form.protectReason : form.reason;
if (item.reason) {
if (item.reason) {
reasonField.value = item.reason;
reasonField.value = item.reason;
வரிசை 835: வரிசை 1,036:
}
}


// sort out tagging options
// sort out tagging options, disabled if nonexistent or lua
if (mw.config.get('wgArticleId')) {
if (mw.config.get('wgArticleId') && mw.config.get('wgPageContentModel') !== 'Scribunto') {
if( form.category.value === 'unprotect' ) {
if (form.category.value === 'unprotect') {
form.tagtype.value = 'none';
form.tagtype.value = 'none';
} else {
} else {
form.tagtype.value = (item.template ? item.template : form.category.value);
form.tagtype.value = item.template ? item.template : form.category.value;
}
}
Twinkle.protect.formevents.tagtype({ target: form.tagtype });
Twinkle.protect.formevents.tagtype({ target: form.tagtype });


// We only have one TE template at the moment, so this
if( /template/.test( form.category.value ) ) {
// should be expanded if more are added (e.g. pp-semi-template)
if (form.category.value === 'pp-template') {
form.noinclude.checked = true;
form.noinclude.checked = true;
} else if (mw.config.get('wgNamespaceNumber') !== 10) {
form.editexpiry.value = form.moveexpiry.value = form.pcexpiry.value = "indefinite";
} else if( mw.config.get('wgNamespaceNumber') !== 10 ) {
form.noinclude.checked = false;
form.noinclude.checked = false;
}
}
வரிசை 853: வரிசை 1,055:


} else { // RPP request
} else { // RPP request
if( form.category.value === 'unprotect' ) {
if (form.category.value === 'unprotect') {
form.expiry.value = '';
form.expiry.value = '';
form.expiry.disabled = true;
form.expiry.disabled = true;
} else {
} else {
form.expiry.value = '';
form.expiry.disabled = false;
form.expiry.disabled = false;
}
}
வரிசை 864: வரிசை 1,067:
Twinkle.protect.callback.evaluate = function twinkleprotectCallbackEvaluate(e) {
Twinkle.protect.callback.evaluate = function twinkleprotectCallbackEvaluate(e) {
var form = e.target;
var form = e.target;
var input = Morebits.quickForm.getInputData(form);

var actiontypes = form.actiontype;
var actiontype;
for( var i = 0; i < actiontypes.length; i++ )
{
if( !actiontypes[i].checked ) {
continue;
}
actiontype = actiontypes[i].values;
break;
}


var tagparams;
var tagparams;
if( actiontype === 'tag' || (actiontype === 'protect' && mw.config.get('wgArticleId')) ) {
if (input.actiontype === 'tag' || (input.actiontype === 'protect' && mw.config.get('wgArticleId') && mw.config.get('wgPageContentModel') !== 'Scribunto')) {
tagparams = {
tagparams = {
tag: form.tagtype.value,
tag: input.tagtype,
reason: ((form.tagtype.value === 'pp-protected' || form.tagtype.value === 'pp-semi-protected' || form.tagtype.value === 'pp-move') && form.protectReason) ? form.protectReason.value : null,
reason: (input.tagtype === 'pp-protected' || input.tagtype === 'pp-semi-protected' || input.tagtype === 'pp-move') && input.protectReason,
small: input.small,
expiry: (actiontype === 'protect') ?
noinclude: input.noinclude
(form.editmodify.checked ? form.editexpiry.value :
(form.movemodify.checked ? form.moveexpiry.value :
(form.pcmodify.checked ? form.pcexpiry.value : null)
)
) : null,
small: form.small.checked,
noinclude: form.noinclude.checked
};
};
}
}


switch (actiontype) {
switch (input.actiontype) {
case 'protect':
case 'protect':
// protect the page
// protect the page

Morebits.wiki.actionCompleted.redirect = mw.config.get('wgPageName');
Morebits.wiki.actionCompleted.redirect = mw.config.get('wgPageName');
Morebits.wiki.actionCompleted.notice = "காப்பு நிறைவு";
Morebits.wiki.actionCompleted.notice = 'Protection complete';


var statusInited = false;
var statusInited = false;
வரிசை 904: வரிசை 1,090:
var allDone = function twinkleprotectCallbackAllDone() {
var allDone = function twinkleprotectCallbackAllDone() {
if (thispage) {
if (thispage) {
thispage.getStatusElement().info("done");
thispage.getStatusElement().info('done');
}
}
if (tagparams) {
if (tagparams) {
வரிசை 910: வரிசை 1,096:
}
}
};
};

var stabilizeValues = {};
if (form.pclevel) {
stabilizeValues = {
pclevel: form.pclevel.value,
pcexpiry: form.pcexpiry.value,
protectReason: form.protectReason.value
};
}


var protectIt = function twinkleprotectCallbackProtectIt(next) {
var protectIt = function twinkleprotectCallbackProtectIt(next) {
thispage = new Morebits.wiki.page(mw.config.get('wgPageName'), "பக்கத்தைக் காக்கின்றது");
thispage = new Morebits.wiki.page(mw.config.get('wgPageName'), 'Protecting page');
if (mw.config.get('wgArticleId')) {
if (mw.config.get('wgArticleId')) {
if (form.editmodify.checked) {
if (input.editmodify) {
thispage.setEditProtection(form.editlevel.value, form.editexpiry.value);
thispage.setEditProtection(input.editlevel, input.editexpiry);
}
}
if (form.movemodify.checked) {
if (input.movemodify) {
// Ensure a level has actually been chosen
thispage.setMoveProtection(form.movelevel.value, form.moveexpiry.value);
if (input.movelevel) {
thispage.setMoveProtection(input.movelevel, input.moveexpiry);
} else {
alert('You must chose a move protection level!');
return;
}
}
}
thispage.setWatchlist(Twinkle.getPref('watchProtectedPages'));
} else {
} else {
thispage.setCreateProtection(form.createlevel.value, form.createexpiry.value);
thispage.setCreateProtection(input.createlevel, input.createexpiry);
thispage.setWatchlist(false);
thispage.setWatchlist(false);
}
}


if (form.protectReason.value) {
if (input.protectReason) {
thispage.setEditSummary(form.protectReason.value);
thispage.setEditSummary(input.protectReason);
} else {
} else {
alert('You must enter a protect reason, which will be inscribed into the protection log.');
alert("காப்புப் பதிகையில் பதிவதற்காக, நீங்கள் ஒரு காரணத்தைக் கட்டாயம் குறிப்பிடவேண்டும்.");
return;
return;
}
}


if (!statusInited) {
if (!statusInited) {
Morebits.simpleWindow.setButtonsEnabled( false );
Morebits.simpleWindow.setButtonsEnabled(false);
Morebits.status.init( form );
Morebits.status.init(form);
statusInited = true;
statusInited = true;
}
}


thispage.setChangeTags(Twinkle.changeTags);
thispage.protect(next);
thispage.protect(next);
};
};
வரிசை 952: வரிசை 1,137:
var stabilizeIt = function twinkleprotectCallbackStabilizeIt() {
var stabilizeIt = function twinkleprotectCallbackStabilizeIt() {
if (thispage) {
if (thispage) {
thispage.getStatusElement().info("done");
thispage.getStatusElement().info('done');
}
}


thispage = new Morebits.wiki.page(mw.config.get('wgPageName'), "Applying pending changes protection");
thispage = new Morebits.wiki.page(mw.config.get('wgPageName'), 'Applying pending changes protection');
thispage.setFlaggedRevs(stabilizeValues.pclevel, stabilizeValues.pcexpiry);
thispage.setFlaggedRevs(input.pclevel, input.pcexpiry);


if (stabilizeValues.protectReason) {
if (input.protectReason) {
thispage.setEditSummary(stabilizeValues.protectReason);
thispage.setEditSummary(input.protectReason + Twinkle.summaryAd); // flaggedrevs tag support: [[phab:T247721]]
} else {
} else {
alert('You must enter a protect reason, which will be inscribed into the protection log.');
alert("காப்புப் பதிகையில் பதிவதற்காக, நீங்கள் ஒரு காரணத்தைக் கட்டாயம் குறிப்பிடவேண்டும்.");
return;
return;
}
}
வரிசை 971: வரிசை 1,156:
}
}


thispage.stabilize(allDone);
thispage.setWatchlist(Twinkle.getPref('watchProtectedPages'));
thispage.stabilize(allDone, function(error) {
if (error.errorCode === 'stabilize_denied') { // [[phab:T234743]]
thispage.getStatusElement().error('Failed trying to modify pending changes settings, likely due to a mediawiki bug. Other actions (tagging or regular protection) may have taken place. Please reload the page and try again.');
}
});
};
};


if ((form.editmodify && form.editmodify.checked) || (form.movemodify && form.movemodify.checked) ||
if (input.editmodify || input.movemodify || !mw.config.get('wgArticleId')) {
if (input.pcmodify) {
!mw.config.get('wgArticleId')) {
if (form.pcmodify && form.pcmodify.checked) {
protectIt(stabilizeIt);
protectIt(stabilizeIt);
} else {
} else {
protectIt(allDone);
protectIt(allDone);
}
}
} else if (form.pcmodify && form.pcmodify.checked) {
} else if (input.pcmodify) {
stabilizeIt();
stabilizeIt();
} else {
} else {
alert("Please give Twinkle something to do! \nIf you just want to tag the page, you can choose the 'Tag page with protection template' option at the top.");
alert("அருள்கூர்ந்து மின்னலிடம் ஒரு பணியை ஒப்படையுங்கள்.! \nநீங்கள் இப்பக்கத்தை அடையாளப்படுத்தவேண்டுமாயின், மேலேயுள்ள 'பக்கத்தில் காப்பு வார்ப்புருவை இணைத்தல்' என்பதைத் தெரிவுசெய்யுங்கள்.");
}
}


வரிசை 992: வரிசை 1,181:
// apply a protection template
// apply a protection template


Morebits.simpleWindow.setButtonsEnabled( false );
Morebits.simpleWindow.setButtonsEnabled(false);
Morebits.status.init( form );
Morebits.status.init(form);


Morebits.wiki.actionCompleted.redirect = mw.config.get('wgPageName');
Morebits.wiki.actionCompleted.redirect = mw.config.get('wgPageName');
Morebits.wiki.actionCompleted.followRedirect = false;
Morebits.wiki.actionCompleted.followRedirect = false;
Morebits.wiki.actionCompleted.notice = "அடையாளப்படுத்தல் நிறைவு";
Morebits.wiki.actionCompleted.notice = 'Tagging complete';


Twinkle.protect.callbacks.taggingPageInitial(tagparams);
Twinkle.protect.callbacks.taggingPageInitial(tagparams);
வரிசை 1,003: வரிசை 1,192:


case 'request':
case 'request':
// file request at RPP
// file request at RFPP
var typename, typereason;
var typename, typereason;
switch( form.category.value ) {
switch (input.category) {
case 'pp-dispute':
case 'pp-dispute':
case 'pp-vandalism':
case 'pp-vandalism':
case 'pp-usertalk':
case 'pp-usertalk':
case 'pp-protected':
case 'pp-protected':
typename = 'முழுக் காப்பு';
typename = 'full protection';
break;
break;
case 'pp-template':
case 'pp-template':
typename = 'வார்ப்புருக் காப்பு';
typename = 'template protection';
break;
case 'pp-30-500-arb':
case 'pp-30-500-vandalism':
case 'pp-30-500-disruptive':
case 'pp-30-500-blp':
case 'pp-30-500-sock':
typename = 'extended confirmed protection';
break;
break;
case 'pp-semi-vandalism':
case 'pp-semi-vandalism':
வரிசை 1,022: வரிசை 1,218:
case 'pp-semi-blp':
case 'pp-semi-blp':
case 'pp-semi-protected':
case 'pp-semi-protected':
typename = 'பகுதிக் காப்பு';
typename = 'semi-protection';
break;
case 'pp-pc-vandalism':
case 'pp-pc-blp':
case 'pp-pc-protected':
case 'pp-pc-unsourced':
case 'pp-pc-disruptive':
typename = 'pending changes';
break;
break;
case 'pp-move':
case 'pp-move':
வரிசை 1,028: வரிசை 1,231:
case 'pp-move-indef':
case 'pp-move-indef':
case 'pp-move-vandalism':
case 'pp-move-vandalism':
typename = 'நகர்த்தற் காப்பு';
typename = 'move protection';
break;
break;
case 'pp-create':
case 'pp-create':
வரிசை 1,034: வரிசை 1,237:
case 'pp-create-blp':
case 'pp-create-blp':
case 'pp-create-salt':
case 'pp-create-salt':
typename = 'உருவாக்கற் காப்பு';
typename = 'create protection';
break;
break;
case 'unprotect':
case 'unprotect':
var admins = $.map(Twinkle.protect.currentProtectionLevels, function(pl) {
/* falls through */
if (!pl.admin || Twinkle.protect.trustedBots.indexOf(pl.admin) !== -1) {
return null;
}
return 'User:' + pl.admin;
});
if (admins.length && !confirm('Have you attempted to contact the protecting admins (' + Morebits.array.uniq(admins).join(', ') + ') first?')) {
return false;
}
// otherwise falls through
default:
default:
typename = 'காப்பு நீக்கம்';
typename = 'unprotection';
break;
break;
}
}
switch (form.category.value) {
switch (input.category) {
case 'pp-dispute':
case 'pp-dispute':
typereason = 'உள்ளடக்கப் பிணக்கு/தொகுப்புப் போர்';
typereason = 'Content dispute/edit warring';
break;
break;
case 'pp-vandalism':
case 'pp-vandalism':
case 'pp-semi-vandalism':
case 'pp-semi-vandalism':
case 'pp-pc-vandalism':
case 'pp-pc-vandalism':
case 'pp-30-500-vandalism':
typereason = 'தொடர்ச்சியான நாசவேலை';
typereason = 'Persistent [[WP:VAND|vandalism]]';
break;
break;
case 'pp-semi-disruptive':
case 'pp-semi-disruptive':
case 'pp-pc-disruptive':
case 'pp-pc-disruptive':
case 'pp-30-500-disruptive':
typereason = 'தொடர்ச்சியான சீர்குலைக்கும் தொகுப்புகள்';
typereason = 'Persistent [[Wikipedia:Disruptive editing|disruptive editing]]';
break;
break;
case 'pp-semi-unsourced':
case 'pp-semi-unsourced':
case 'pp-pc-unsourced':
case 'pp-pc-unsourced':
typereason = 'Persistent addition of [[WP:INTREF|unsourced or poorly sourced content]]';
typereason = 'மேற்கோளிடப்படாத அல்லது வறிதாக மேற்கோளிடப்பட்ட உள்ளடக்கம் தொடர்ச்சியாகச் சேர்க்கப்படுதல்.';
break;
break;
case 'pp-template':
case 'pp-template':
typereason = '[[WP:HIGHRISK|High-risk template]]';
typereason = 'கூடுதலாகப் பயன்படுத்தப்படும் வார்ப்புரு';
break;
case 'pp-30-500-arb':
typereason = '[[WP:30/500|Arbitration enforcement]]';
break;
break;
case 'pp-usertalk':
case 'pp-usertalk':
case 'pp-semi-usertalk':
case 'pp-semi-usertalk':
typereason = 'Inappropriate use of user talk page while blocked';
typereason = 'தடைசெய்யப்பட்டுள்ளபோது பயனர் பேச்சுப் பக்கத்தைப் பொருத்தமற்ற வகையில் பயன்படுத்துதல்.';
break;
break;
case 'pp-semi-sock':
case 'pp-semi-sock':
case 'pp-30-500-sock':
typereason = 'தொடர்ச்சியான கைப்பாவைத் தாக்குதல்';
typereason = 'Persistent [[WP:SOCK|sockpuppetry]]';
break;
break;
case 'pp-semi-blp':
case 'pp-semi-blp':
case 'pp-pc-blp':
case 'pp-pc-blp':
case 'pp-30-500-blp':
typereason = '[[WP:BLP|வாழும் மனிதர்களின் வாழ்க்கை வரலாற்றுக்]] கொள்கை மீறல்கள்';
typereason = '[[WP:BLP|BLP]] policy violations';
break;
break;
case 'pp-move-dispute':
case 'pp-move-dispute':
typereason = 'Page title dispute/move warring';
typereason = 'பக்கத் தலைப்புப் பிணக்கு/நகர்த்தற் போர்';
break;
break;
case 'pp-move-vandalism':
case 'pp-move-vandalism':
typereason = 'பக்க நகர்த்தல் நாசவேலை';
typereason = 'Page-move vandalism';
break;
break;
case 'pp-move-indef':
case 'pp-move-indef':
typereason = 'Highly visible page';
typereason = 'கூடுதலாகப் பார்வையிடப்படும் பக்கம்';
break;
break;
case 'pp-create-offensive':
case 'pp-create-offensive':
typereason = 'புண்படுத்தும் பெயர்';
typereason = 'Offensive name';
break;
break;
case 'pp-create-blp':
case 'pp-create-blp':
typereason = 'அண்மையில் அழித்த [[WP:BLP|வாழும் மனிதரின் வாழ்க்கை வரலாறு]]';
typereason = 'Recently deleted [[WP:BLP|BLP]]';
break;
break;
case 'pp-create-salt':
case 'pp-create-salt':
typereason = 'Repeatedly recreated';
typereason = 'தொடர்ச்சியாக மீளவுருவாக்கப்படுகின்றது';
break;
break;
default:
default:
வரிசை 1,097: வரிசை 1,316:


var reason = typereason;
var reason = typereason;
if( form.reason.value !== '') {
if (input.reason !== '') {
if ( typereason !== '' ) {
if (typereason !== '') {
reason += "\u00A0\u2013 "; // U+00A0 NO-BREAK SPACE; U+2013 EN RULE
reason += '\u00A0\u2013 '; // U+00A0 NO-BREAK SPACE; U+2013 EN RULE
}
}
reason += form.reason.value;
reason += input.reason;
}
}
if( reason !== '' && reason.charAt( reason.length - 1 ) !== '.' ) {
if (reason !== '' && reason.charAt(reason.length - 1) !== '.') {
reason += '.';
reason += '.';
}
}
வரிசை 1,110: வரிசை 1,329:
reason: reason,
reason: reason,
typename: typename,
typename: typename,
category: form.category.value,
category: input.category,
expiry: form.expiry.value
expiry: input.expiry
};
};


Morebits.simpleWindow.setButtonsEnabled( false );
Morebits.simpleWindow.setButtonsEnabled(false);
Morebits.status.init( form );
Morebits.status.init(form);


var rppName = 'Wikipedia:Requests for page protection';
var rppName = 'விக்கிப்பீடியா:பக்கக் காப்புக்கான வேண்டுகோள்கள்';


// Updating data for the action completed event
// Updating data for the action completed event
Morebits.wiki.actionCompleted.redirect = rppName;
Morebits.wiki.actionCompleted.redirect = rppName;
Morebits.wiki.actionCompleted.notice = "பரிந்துரை நிறைவு, உரையாடற் பக்கத்திற்கு இப்போது வழிமாற்றுகின்றது.";
Morebits.wiki.actionCompleted.notice = 'Nomination completed, redirecting now to the discussion page';


var rppPage = new Morebits.wiki.page( rppName, 'பக்கக் காப்பைக் கோருகின்றது.');
var rppPage = new Morebits.wiki.page(rppName, 'Requesting protection of page');
rppPage.setFollowRedirect( true );
rppPage.setFollowRedirect(true);
rppPage.setCallbackParameters( rppparams );
rppPage.setCallbackParameters(rppparams);
rppPage.load( Twinkle.protect.callbacks.fileRequest );
rppPage.load(Twinkle.protect.callbacks.fileRequest);
break;
break;
default:
default:
alert('twinkleprotect: unknown kind of action');
alert("மின்னற் காப்பு: அறியப்படாத செயல்");
break;
break;
}
}
வரிசை 1,135: வரிசை 1,354:


Twinkle.protect.callbacks = {
Twinkle.protect.callbacks = {
taggingPageInitial: function( tagparams ) {
taggingPageInitial: function(tagparams) {
if (tagparams.tag === 'noop') {
if (tagparams.tag === 'noop') {
Morebits.status.info('Applying protection template', 'nothing to do');
Morebits.status.info("காப்பு வார்ப்புருவைச் சேர்க்கின்றது.", "செய்ய எதுவுமில்லை.");
return;
return;
}
}


var protectedPage = new Morebits.wiki.page( mw.config.get('wgPageName'), 'பக்கத்தை அடையாளப்படுத்துகின்றது.');
var protectedPage = new Morebits.wiki.page(mw.config.get('wgPageName'), 'Tagging page');
protectedPage.setCallbackParameters( tagparams );
protectedPage.setCallbackParameters(tagparams);
protectedPage.load( Twinkle.protect.callbacks.taggingPage );
protectedPage.load(Twinkle.protect.callbacks.taggingPage);
},
},
taggingPage: function( protectedPage ) {
taggingPage: function(protectedPage) {
var params = protectedPage.getCallbackParameters();
var params = protectedPage.getCallbackParameters();
var text = protectedPage.getPageText();
var text = protectedPage.getPageText();
வரிசை 1,153: வரிசை 1,372:
var re_result = oldtag_re.exec(text);
var re_result = oldtag_re.exec(text);
if (re_result) {
if (re_result) {
if (params.tag === 'none' || confirm('{{' + re_result[1] + '}} was found on the page. \nClick OK to remove it, or click Cancel to leave it there.')) {
if (confirm("{{" + re_result[1] + "}} பக்கத்தில் கண்டுபிடிக்க்பட்டுள்ளது. \nஅதனை நீக்குவதற்குச் சரி என்பதைச் சொடுக்குங்கள். அல்லது அதனை அவ்வாறே விடுவதற்குக் கைவிடு என்பதைச் சொடுக்குங்கள்.")) {
text = text.replace( oldtag_re, '' );
text = text.replace(oldtag_re, '');
}
}
}
}


if ( params.tag !== 'none' ) {
if (params.tag === 'none') {
summary = 'Removing protection template';
} else {
tag = params.tag;
tag = params.tag;
if( params.reason ) {
if (params.reason) {
tag += '|reason=' + params.reason;
tag += '|reason=' + params.reason;
}
}
if( ['indefinite', 'infinite', 'never', null].indexOf(params.expiry) === -1 ) {
if (params.small) {
tag += '|expiry={{subst:#time:j F Y|' + (/^\s*\d+\s*$/.exec(params.expiry) ? params.expiry : '+' + params.expiry) + '}}';
}
if( params.small ) {
tag += '|small=yes';
tag += '|small=yes';
}
}
}


if (/^\s*#redirect/i.test(text)) { // redirect page
if( params.tag === 'none' ) {
// Only tag if no {{rcat shell}} is found
summary = 'காப்பு வார்ப்புரு நீக்கம்' + Twinkle.getPref('summaryAd');
if (!text.match(/{{(?:redr|this is a redirect|r(?:edirect)?(?:.?cat.*)?[ _]?sh)/i)) {
} else {
text = text.replace(/#REDIRECT ?(\[\[.*?\]\])(.*)/i, '#REDIRECT $1$2\n\n{{' + tag + '}}');
if( params.noinclude ) {
} else {
text = "<noinclude>{{" + tag + "}}</noinclude>" + text;
Morebits.status.info('Redirect category shell present', 'nothing to do');
} else if( Morebits.wiki.isPageRedirect() ) {
return;
text = text + "\n{{" + tag + "}}";
}
} else {
} else {
if (params.noinclude) {
text = "{{" + tag + "}}\n" + text;
tag = '<noinclude>{{' + tag + '}}</noinclude>';
} else {
tag = '{{' + tag + '}}\n';
}

// Insert tag after short description or any hatnotes
var wikipage = new Morebits.wikitext.page(text);
text = wikipage.insertAfterTemplates(tag, Twinkle.hatnoteRegex).getText();
}
}
summary = "சேர்க்கப்பட்டது: {{" + params.tag + "}}" + Twinkle.getPref('summaryAd');
summary = 'Adding {{' + params.tag + '}}';
}
}


protectedPage.setEditSummary( summary );
protectedPage.setEditSummary(summary);
protectedPage.setPageText( text );
protectedPage.setChangeTags(Twinkle.changeTags);
protectedPage.setCreateOption( 'nocreate' );
protectedPage.setWatchlist(Twinkle.getPref('watchPPTaggedPages'));
protectedPage.setPageText(text);
protectedPage.setCreateOption('nocreate');
protectedPage.suppressProtectWarning(); // no need to let admins know they are editing through protection
protectedPage.suppressProtectWarning(); // no need to let admins know they are editing through protection
protectedPage.save();
protectedPage.save();
},
},


fileRequest: function( rppPage ) {
fileRequest: function(rppPage) {


var params = rppPage.getCallbackParameters();
var params = rppPage.getCallbackParameters();
வரிசை 1,197: வரிசை 1,425:
var statusElement = rppPage.getStatusElement();
var statusElement = rppPage.getStatusElement();


var rppRe = new RegExp( '===\\s*(\\[\\[)?\s*:?\s*' + RegExp.escape( Morebits.pageNameNorm, true ) + '\s*(\\]\\])?\\s*===', 'm' );
var rppRe = new RegExp('===\\s*(\\[\\[)?\\s*:?\\s*' + Morebits.string.escapeRegExp(Morebits.pageNameNorm) + '\\s*(\\]\\])?\\s*===', 'm');
var tag = rppRe.exec( text );
var tag = rppRe.exec(text);


var rppLink = document.createElement('a');
var rppLink = document.createElement('a');
rppLink.setAttribute('href', mw.util.getUrl(rppPage.getPageName()) );
rppLink.setAttribute('href', mw.util.getUrl(rppPage.getPageName()));
rppLink.appendChild(document.createTextNode(rppPage.getPageName()));
rppLink.appendChild(document.createTextNode(rppPage.getPageName()));


if ( tag ) {
if (tag) {
statusElement.error( [ 'இப்பக்கத்திற்கு ஏற்கனவே ஒரு காப்பு வேண்டுகோள் இங்கு உள்ளது:', rppLink, ', கைவிடுகின்றது.' ] );
statusElement.error([ 'There is already a protection request for this page at ', rppLink, ', aborting.' ]);
return;
return;
}
}


var newtag = '=== [[:' + Morebits.pageNameNorm + ']] ===\n';
var newtag = '=== [[:' + Morebits.pageNameNorm + ']] ===\n';
if( ( new RegExp( '^' + RegExp.escape( newtag ).replace( /\s+/g, '\\s*' ), 'm' ) ).test( text ) ) {
if (new RegExp('^' + mw.util.escapeRegExp(newtag).replace(/\s+/g, '\\s*'), 'm').test(text)) {
statusElement.error( [ 'இப்பக்கத்திற்கு ஏற்கனவே ஒரு காப்பு வேண்டுகோள் இங்கு உள்ளது:', rppLink, ', கைவிடுகின்றது.' ] );
statusElement.error([ 'There is already a protection request for this page at ', rppLink, ', aborting.' ]);
return;
return;
}
}
newtag += '* {{pagelinks|' + Morebits.pageNameNorm + '}}\n\n';
newtag += '* {{pagelinks|1=' + Morebits.pageNameNorm + '}}\n\n';


var words;
var words;
switch( params.expiry ) {
switch (params.expiry) {
case 'temporary':
case 'temporary':
words = "தற்காலிகம் ";
words = 'Temporary ';
break;
break;
case 'indefinite':
case 'infinity':
words = "முடிவிலி ";
words = 'Indefinite ';
break;
break;
default:
default:
words = "";
words = '';
break;
break;
}
}


words += params.typename;
words += params.typename;


newtag += "'''" + Morebits.string.toUpperCaseFirstChar(words) + ( params.reason !== '' ? ( ":''' " +
newtag += "'''" + Morebits.string.toUpperCaseFirstChar(words) + (params.reason !== '' ? ":''' " +
Morebits.string.formatReasonText(params.reason) ) : ".'''" ) + " ~~~~";
Morebits.string.formatReasonText(params.reason) : ".'''") + ' ~~~~';


// If either protection type results in a increased status, then post it under increase
// If either protection type results in a increased status, then post it under increase
வரிசை 1,244: வரிசை 1,472:
if (stabilizeLevel) {
if (stabilizeLevel) {
if (result) {
if (result) {
if (stabilizeLevel.level === "autoconfirmed") {
if (stabilizeLevel.level === 'autoconfirmed') {
result += 2;
result += 2;
} else if (stabilizeLevel.level === "review") {
result += 7;
}
}
} else {
} else {
result = Twinkle.protect.protectionWeight["flaggedrevs_" + stabilizeLevel];
result = Twinkle.protect.protectionWeight['flaggedrevs_' + stabilizeLevel];
}
}
}
}
வரிசை 1,259: வரிசை 1,485:
var editWeight = computeWeight(Twinkle.protect.currentProtectionLevels.edit &&
var editWeight = computeWeight(Twinkle.protect.currentProtectionLevels.edit &&
Twinkle.protect.currentProtectionLevels.edit.level,
Twinkle.protect.currentProtectionLevels.edit.level,
Twinkle.protect.currentProtectionLevels.stabilize &&
Twinkle.protect.currentProtectionLevels.stabilize &&
Twinkle.protect.currentProtectionLevels.stabilize.level);
Twinkle.protect.currentProtectionLevels.stabilize.level);
if (computeWeight(protInfo.edit, protInfo.stabilize) > editWeight ||
if (computeWeight(protInfo.edit, protInfo.stabilize) > editWeight ||
வரிசை 1,270: வரிசை 1,496:


var reg;
var reg;
if ( increase ) {
if (increase) {
reg = /(\n==\s*Current requests for reduction in protection level\s*==)/;
reg = /(\n==\s*காப்பு நிலையைக் கூட்டுவதற்கான தற்போதைய வேண்டுகோள்கள்\s*==\s*\n\s*\{\{[^\}\}]+\}\}\s*\n)([\s\S]*?)\s*(\n==[^=])/;
} else {
} else {
reg = /(\n==\s*Current requests for edits to a protected page\s*==)/;
reg = /(\n==\s*காப்பு நிலையைக் குறைப்பதற்கான தற்போதைய வேண்டுகோள்கள்\s*==\s*\n\s*\{\{[^\}\}]+\}\}\s*\n)([\s\S]*?)\s*(\n==[^=])/;
}
}

var originalTextLength = text.length;
var originalTextLength = text.length;
text = text.replace( reg, "$1$2\n\n" + newtag + "\n$3");
text = text.replace(reg, '\n' + newtag + '\n$1');
if (text.length === originalTextLength)
if (text.length === originalTextLength) {
{
var linknode = document.createElement('a');
var linknode = document.createElement('a');
linknode.setAttribute("href", mw.util.getUrl("விக்கிப்பீடியா:மின்னல்/பக்கக் காப்புக்கான வேண்டுகோள்களைச் சரிசெய்தல்") );
linknode.setAttribute('href', mw.util.getUrl('Wikipedia:Twinkle/Fixing RPP'));
linknode.appendChild(document.createTextNode('How to fix RPP'));
linknode.appendChild(document.createTextNode('How to fix RPP'));
statusElement.error([ 'Could not find relevant heading on WP:RPP. To fix this problem, please see ', linknode, '.' ]);
statusElement.error( [ 'WP:RPPஇல் தொடர்புடைய தலைப்பைக் கண்டுபிடிக்கமுடியவில்லை. இதனைச் சரிசெய்வதற்கு அருள்கூர்ந்து காண்க: ', linknode, '.' ] );
return;
return;
}
}
statusElement.status( 'Adding new request...' );
statusElement.status('Adding new request...');
rppPage.setEditSummary( "Requesting " + params.typename + (params.typename === "pending changes" ? ' on [[' : ' of [[') +
rppPage.setEditSummary('/* ' + Morebits.pageNameNorm + ' */ Requesting ' + params.typename + (params.typename === 'pending changes' ? ' on [[:' : ' of [[:') +
Morebits.pageNameNorm + ']].' + Twinkle.getPref('summaryAd') );
Morebits.pageNameNorm + ']].');
rppPage.setPageText( text );
rppPage.setChangeTags(Twinkle.changeTags);
rppPage.setCreateOption( 'recreate' );
rppPage.setPageText(text);
rppPage.save();
rppPage.setCreateOption('recreate');
rppPage.save(function() {
// Watch the page being requested
var watchPref = Twinkle.getPref('watchRequestedPages');
// action=watch has no way to rely on user preferences (T262912), so we do it manually.
// The watchdefault pref appears to reliably return '1' (string),
// but that's not consistent among prefs so might as well be "correct"
var watch = watchPref !== 'no' && (watchPref !== 'default' || !!parseInt(mw.user.options.get('watchdefault'), 10));
if (watch) {
var watch_query = {
action: 'watch',
titles: mw.config.get('wgPageName'),
token: mw.user.tokens.get('watchToken')
};
// Only add the expiry if page is unwatched or already temporarily watched
if (Twinkle.protect.watched !== true && watchPref !== 'default' && watchPref !== 'yes') {
watch_query.expiry = watchPref;
}
new Morebits.wiki.api('Adding requested page to watchlist', watch_query).post();
}
});
}
}
};
};

Twinkle.addInitCallback(Twinkle.protect, 'protect');
})(jQuery);
})(jQuery);


// </nowiki>

10:11, 18 பெப்பிரவரி 2021 இல் கடைசித் திருத்தம்

// <nowiki>


(function($) {


/*
 ****************************************
 *** twinkleprotect.js: Protect/RPP module
 ****************************************
 * Mode of invocation:     Tab ("PP"/"RPP")
 * Active on:              Non-special, non-MediaWiki pages
 */

// Note: a lot of code in this module is re-used/called by batchprotect.

Twinkle.protect = function twinkleprotect() {
	if (mw.config.get('wgNamespaceNumber') < 0 || mw.config.get('wgNamespaceNumber') === 8) {
		return;
	}

	Twinkle.addPortletLink(Twinkle.protect.callback, Morebits.userIsSysop ? 'PP' : 'RPP', 'tw-rpp',
		Morebits.userIsSysop ? 'Protect page' : 'Request page protection');
};

Twinkle.protect.callback = function twinkleprotectCallback() {
	var Window = new Morebits.simpleWindow(620, 530);
	Window.setTitle(Morebits.userIsSysop ? 'Apply, request or tag page protection' : 'Request or tag page protection');
	Window.setScriptName('Twinkle');
	Window.addFooterLink('Protection templates', 'Template:Protection templates');
	Window.addFooterLink('Protection policy', 'WP:PROT');
	Window.addFooterLink('Twinkle help', 'WP:TW/DOC#protect');
	Window.addFooterLink('Give feedback', 'WT:TW');

	var form = new Morebits.quickForm(Twinkle.protect.callback.evaluate);
	var actionfield = form.append({
		type: 'field',
		label: 'Type of action'
	});
	if (Morebits.userIsSysop) {
		actionfield.append({
			type: 'radio',
			name: 'actiontype',
			event: Twinkle.protect.callback.changeAction,
			list: [
				{
					label: 'Protect page',
					value: 'protect',
					tooltip: 'Apply actual protection to the page.',
					checked: true
				}
			]
		});
	}
	actionfield.append({
		type: 'radio',
		name: 'actiontype',
		event: Twinkle.protect.callback.changeAction,
		list: [
			{
				label: 'Request page protection',
				value: 'request',
				tooltip: 'If you want to request protection via WP:RPP' + (Morebits.userIsSysop ? ' instead of doing the protection by yourself.' : '.'),
				checked: !Morebits.userIsSysop
			},
			{
				label: 'Tag page with protection template',
				value: 'tag',
				tooltip: 'If the protecting admin forgot to apply a protection template, or you have just protected the page without tagging, you can use this to apply the appropriate protection tag.',
				disabled: mw.config.get('wgArticleId') === 0 || mw.config.get('wgPageContentModel') === 'Scribunto'
			}
		]
	});

	form.append({ type: 'field', label: 'Preset', name: 'field_preset' });
	form.append({ type: 'field', label: '1', name: 'field1' });
	form.append({ type: 'field', label: '2', name: 'field2' });

	form.append({ type: 'submit' });

	var result = form.render();
	Window.setContent(result);
	Window.display();

	// We must init the controls
	var evt = document.createEvent('Event');
	evt.initEvent('change', true, true);
	result.actiontype[0].dispatchEvent(evt);

	// get current protection level asynchronously
	Twinkle.protect.fetchProtectionLevel();
};


// A list of bots who may be the protecting sysop, for whom we shouldn't
// remind the user contact before requesting unprotection (evaluate)
Twinkle.protect.trustedBots = ['MusikBot II', 'TFA Protector Bot'];

// Customizable namespace and FlaggedRevs settings
// In theory it'd be nice to have restrictionlevels defined here,
// but those are only available via a siteinfo query

// mw.loader.getState('ext.flaggedRevs.review') returns null if the
// FlaggedRevs extension is not registered.  Previously, this was done with
// wgFlaggedRevsParams, but after 1.34-wmf4 it is no longer exported if empty
// (https://gerrit.wikimedia.org/r/c/mediawiki/extensions/FlaggedRevs/+/508427)
var hasFlaggedRevs = mw.loader.getState('ext.flaggedRevs.review') &&
// FlaggedRevs only valid in some namespaces, hardcoded until [[phab:T218479]]
(mw.config.get('wgNamespaceNumber') === 0 || mw.config.get('wgNamespaceNumber') === 4);
// Limit template editor; a Twinkle restriction, not a site setting
var isTemplate = mw.config.get('wgNamespaceNumber') === 10 || mw.config.get('wgNamespaceNumber') === 828;


// Contains the current protection level in an object
// Once filled, it will look something like:
// { edit: { level: "sysop", expiry: <some date>, cascade: true }, ... }
Twinkle.protect.currentProtectionLevels = {};

// returns a jQuery Deferred object, usage:
//   Twinkle.protect.fetchProtectingAdmin(apiObject, pageName, protect/stable).done(function(admin_username) { ...code... });
Twinkle.protect.fetchProtectingAdmin = function twinkleprotectFetchProtectingAdmin(api, pageName, protType, logIds) {
	logIds = logIds || [];

	return api.get({
		format: 'json',
		action: 'query',
		list: 'logevents',
		letitle: pageName,
		letype: protType
	}).then(function(data) {
		// don't check log entries that have already been checked (e.g. don't go into an infinite loop!)
		var event = data.query ? $.grep(data.query.logevents, function(le) {
			return $.inArray(le.logid, logIds);
		})[0] : null;
		if (!event) {
			// fail gracefully
			return null;
		} else if (event.action === 'move_prot' || event.action === 'move_stable') {
			return twinkleprotectFetchProtectingAdmin(api, protType === 'protect' ? event.params.oldtitle_title : event.params.oldtitle, protType, logIds.concat(event.logid));
		}
		return event.user;
	});
};

Twinkle.protect.fetchProtectionLevel = function twinkleprotectFetchProtectionLevel() {

	var api = new mw.Api();
	var protectDeferred = api.get({
		format: 'json',
		indexpageids: true,
		action: 'query',
		list: 'logevents',
		letype: 'protect',
		letitle: mw.config.get('wgPageName'),
		prop: hasFlaggedRevs ? 'info|flagged' : 'info',
		inprop: 'protection|watched',
		titles: mw.config.get('wgPageName')
	});
	var stableDeferred = api.get({
		format: 'json',
		action: 'query',
		list: 'logevents',
		letype: 'stable',
		letitle: mw.config.get('wgPageName')
	});

	var earlyDecision = [protectDeferred];
	if (hasFlaggedRevs) {
		earlyDecision.push(stableDeferred);
	}

	$.when.apply($, earlyDecision).done(function(protectData, stableData) {
		// $.when.apply is supposed to take an unknown number of promises
		// via an array, which it does, but the type of data returned varies.
		// If there are two or more deferreds, it returns an array (of objects),
		// but if there's just one deferred, it retuns a simple object.
		// This is annoying.
		protectData = $(protectData).toArray();

		var pageid = protectData[0].query.pageids[0];
		var page = protectData[0].query.pages[pageid];
		var current = {}, adminEditDeferred;

		// Save requested page's watched status for later in case needed when filing request
		Twinkle.protect.watched = page.watchlistexpiry || page.watched === '';

		$.each(page.protection, function(index, protection) {
			// Don't overwrite actual page protection with cascading protection
			if (!protection.source) {
				current[protection.type] = {
					level: protection.level,
					expiry: protection.expiry,
					cascade: protection.cascade === ''
				};
				// logs report last admin who made changes to either edit/move/create protection, regardless if they only modified one of them
				if (!adminEditDeferred) {
					adminEditDeferred = Twinkle.protect.fetchProtectingAdmin(api, mw.config.get('wgPageName'), 'protect');
				}
			} else {
				// Account for the page being covered by cascading protection
				current.cascading = {
					expiry: protection.expiry,
					source: protection.source,
					level: protection.level // should always be sysop, unused
				};
			}
		});

		if (page.flagged) {
			current.stabilize = {
				level: page.flagged.protection_level,
				expiry: page.flagged.protection_expiry
			};
			adminEditDeferred = Twinkle.protect.fetchProtectingAdmin(api, mw.config.get('wgPageName'), 'stable');
		}

		// show the protection level and log info
		Twinkle.protect.hasProtectLog = !!protectData[0].query.logevents.length;
		Twinkle.protect.protectLog = Twinkle.protect.hasProtectLog && protectData[0].query.logevents;
		Twinkle.protect.hasStableLog = hasFlaggedRevs ? !!stableData[0].query.logevents.length : false;
		Twinkle.protect.stableLog = Twinkle.protect.hasStableLog && stableData[0].query.logevents;
		Twinkle.protect.currentProtectionLevels = current;

		if (adminEditDeferred) {
			adminEditDeferred.done(function(admin) {
				if (admin) {
					$.each(['edit', 'move', 'create', 'stabilize', 'cascading'], function(i, type) {
						if (Twinkle.protect.currentProtectionLevels[type]) {
							Twinkle.protect.currentProtectionLevels[type].admin = admin;
						}
					});
				}
				Twinkle.protect.callback.showLogAndCurrentProtectInfo();
			});
		} else {
			Twinkle.protect.callback.showLogAndCurrentProtectInfo();
		}
	});
};

Twinkle.protect.callback.showLogAndCurrentProtectInfo = function twinkleprotectCallbackShowLogAndCurrentProtectInfo() {
	var currentlyProtected = !$.isEmptyObject(Twinkle.protect.currentProtectionLevels);

	if (Twinkle.protect.hasProtectLog || Twinkle.protect.hasStableLog) {
		var $linkMarkup = $('<span>');

		if (Twinkle.protect.hasProtectLog) {
			$linkMarkup.append(
				$('<a target="_blank" href="' + mw.util.getUrl('Special:Log', {action: 'view', page: mw.config.get('wgPageName'), type: 'protect'}) + '">protection log</a>'));
			if (!currentlyProtected || (!Twinkle.protect.currentProtectionLevels.edit && !Twinkle.protect.currentProtectionLevels.move)) {
				var lastProtectAction = Twinkle.protect.protectLog[0];
				if (lastProtectAction.action === 'unprotect') {
					$linkMarkup.append(' (unprotected ' + new Morebits.date(lastProtectAction.timestamp).calendar('utc') + ')');
				} else { // protect or modify
					$linkMarkup.append(' (expired ' + new Morebits.date(lastProtectAction.params.details[0].expiry).calendar('utc') + ')');
				}
			}
			$linkMarkup.append(Twinkle.protect.hasStableLog ? $('<span> &bull; </span>') : null);
		}

		if (Twinkle.protect.hasStableLog) {
			$linkMarkup.append($('<a target="_blank" href="' + mw.util.getUrl('Special:Log', {action: 'view', page: mw.config.get('wgPageName'), type: 'stable'}) + '">pending changes log</a>)'));
			if (!currentlyProtected || !Twinkle.protect.currentProtectionLevels.stabilize) {
				var lastStabilizeAction = Twinkle.protect.stableLog[0];
				if (lastStabilizeAction.action === 'reset') {
					$linkMarkup.append(' (reset ' + new Morebits.date(lastStabilizeAction.timestamp).calendar('utc') + ')');
				} else { // config or modify
					$linkMarkup.append(' (expired ' + new Morebits.date(lastStabilizeAction.params.expiry).calendar('utc') + ')');
				}
			}
		}

		Morebits.status.init($('div[name="hasprotectlog"] span')[0]);
		Morebits.status.warn(
			currentlyProtected ? 'Previous protections' : 'This page has been protected in the past',
			$linkMarkup[0]
		);
	}

	Morebits.status.init($('div[name="currentprot"] span')[0]);
	var protectionNode = [], statusLevel = 'info';

	if (currentlyProtected) {
		$.each(Twinkle.protect.currentProtectionLevels, function(type, settings) {
			var label = type === 'stabilize' ? 'Pending Changes' : Morebits.string.toUpperCaseFirstChar(type);

			if (type === 'cascading') { // Covered by another page
				label = 'Cascading protection ';
				protectionNode.push($('<b>' + label + '</b>')[0]);
				if (settings.source) { // Should by definition exist
					var sourceLink = '<a target="_blank" href="' + mw.util.getUrl(settings.source) + '">' + settings.source + '</a>';
					protectionNode.push($('<span>from ' + sourceLink + '</span>')[0]);
				}
			} else {
				var level = settings.level;
				// Make cascading protection more prominent
				if (settings.cascade) {
					level += ' (cascading)';
				}
				protectionNode.push($('<b>' + label + ': ' + level + '</b>')[0]);
			}

			if (settings.expiry === 'infinity') {
				protectionNode.push(' (indefinite) ');
			} else {
				protectionNode.push(' (expires ' + new Morebits.date(settings.expiry).calendar('utc') + ') ');
			}
			if (settings.admin) {
				var adminLink = '<a target="_blank" href="' + mw.util.getUrl('User talk:' + settings.admin) + '">' + settings.admin + '</a>';
				protectionNode.push($('<span>by ' + adminLink + '</span>')[0]);
			}
			protectionNode.push($('<span> \u2022 </span>')[0]);
		});
		protectionNode = protectionNode.slice(0, -1); // remove the trailing bullet
		statusLevel = 'warn';
	} else {
		protectionNode.push($('<b>no protection</b>')[0]);
	}

	Morebits.status[statusLevel]('Current protection level', protectionNode);
};

Twinkle.protect.callback.changeAction = function twinkleprotectCallbackChangeAction(e) {
	var field_preset;
	var field1;
	var field2;

	switch (e.target.values) {
		case 'protect':
			field_preset = new Morebits.quickForm.element({ type: 'field', label: 'Preset', name: 'field_preset' });
			field_preset.append({
				type: 'select',
				name: 'category',
				label: 'Choose a preset:',
				event: Twinkle.protect.callback.changePreset,
				list: mw.config.get('wgArticleId') ? Twinkle.protect.protectionTypes : Twinkle.protect.protectionTypesCreate
			});

			field2 = new Morebits.quickForm.element({ type: 'field', label: 'Protection options', name: 'field2' });
			field2.append({ type: 'div', name: 'currentprot', label: ' ' });  // holds the current protection level, as filled out by the async callback
			field2.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
			// for existing pages
			if (mw.config.get('wgArticleId')) {
				field2.append({
					type: 'checkbox',
					event: Twinkle.protect.formevents.editmodify,
					list: [
						{
							label: 'Modify edit protection',
							name: 'editmodify',
							tooltip: 'If this is turned off, the edit protection level, and expiry time, will be left as is.',
							checked: true
						}
					]
				});
				field2.append({
					type: 'select',
					name: 'editlevel',
					label: 'Edit protection:',
					event: Twinkle.protect.formevents.editlevel,
					list: Twinkle.protect.protectionLevels.filter(function(level) {
						// Filter TE outside of templates and modules
						return isTemplate || level.value !== 'templateeditor';
					})
				});
				field2.append({
					type: 'select',
					name: 'editexpiry',
					label: 'Expires:',
					event: function(e) {
						if (e.target.value === 'custom') {
							Twinkle.protect.doCustomExpiry(e.target);
						}
					},
					// default expiry selection (2 days) is conditionally set in Twinkle.protect.callback.changePreset
					list: Twinkle.protect.protectionLengths
				});
				field2.append({
					type: 'checkbox',
					event: Twinkle.protect.formevents.movemodify,
					list: [
						{
							label: 'Modify move protection',
							name: 'movemodify',
							tooltip: 'If this is turned off, the move protection level, and expiry time, will be left as is.',
							checked: true
						}
					]
				});
				field2.append({
					type: 'select',
					name: 'movelevel',
					label: 'Move protection:',
					event: Twinkle.protect.formevents.movelevel,
					list: Twinkle.protect.protectionLevels.filter(function(level) {
						// Autoconfirmed is required for a move, redundant
						return level.value !== 'autoconfirmed' && (isTemplate || level.value !== 'templateeditor');
					})
				});
				field2.append({
					type: 'select',
					name: 'moveexpiry',
					label: 'Expires:',
					event: function(e) {
						if (e.target.value === 'custom') {
							Twinkle.protect.doCustomExpiry(e.target);
						}
					},
					// default expiry selection (2 days) is conditionally set in Twinkle.protect.callback.changePreset
					list: Twinkle.protect.protectionLengths
				});
				if (hasFlaggedRevs) {
					field2.append({
						type: 'checkbox',
						event: Twinkle.protect.formevents.pcmodify,
						list: [
							{
								label: 'Modify pending changes protection',
								name: 'pcmodify',
								tooltip: 'If this is turned off, the pending changes level, and expiry time, will be left as is.',
								checked: true
							}
						]
					});
					field2.append({
						type: 'select',
						name: 'pclevel',
						label: 'Pending changes:',
						event: Twinkle.protect.formevents.pclevel,
						list: [
							{ label: 'None', value: 'none' },
							{ label: 'Pending change', value: 'autoconfirmed', selected: true }
						]
					});
					field2.append({
						type: 'select',
						name: 'pcexpiry',
						label: 'Expires:',
						event: function(e) {
							if (e.target.value === 'custom') {
								Twinkle.protect.doCustomExpiry(e.target);
							}
						},
						// default expiry selection (1 month) is conditionally set in Twinkle.protect.callback.changePreset
						list: Twinkle.protect.protectionLengths
					});
				}
			} else {  // for non-existing pages
				field2.append({
					type: 'select',
					name: 'createlevel',
					label: 'Create protection:',
					event: Twinkle.protect.formevents.createlevel,
					list: Twinkle.protect.protectionLevels.filter(function(level) {
						// Filter TE always, and autoconfirmed in mainspace, redundant since WP:ACPERM
						return level.value !== 'templateeditor' && (mw.config.get('wgNamespaceNumber') !== 0 || level.value !== 'autoconfirmed');
					})
				});
				field2.append({
					type: 'select',
					name: 'createexpiry',
					label: 'Expires:',
					event: function(e) {
						if (e.target.value === 'custom') {
							Twinkle.protect.doCustomExpiry(e.target);
						}
					},
					// default expiry selection (indefinite) is conditionally set in Twinkle.protect.callback.changePreset
					list: Twinkle.protect.protectionLengths
				});
			}
			field2.append({
				type: 'textarea',
				name: 'protectReason',
				label: 'Reason (for protection log):'
			});
			if (!mw.config.get('wgArticleId') || mw.config.get('wgPageContentModel') === 'Scribunto') {  // tagging isn't relevant for non-existing or module pages
				break;
			}
			/* falls through */
		case 'tag':
			field1 = new Morebits.quickForm.element({ type: 'field', label: 'Tagging options', name: 'field1' });
			field1.append({ type: 'div', name: 'currentprot', label: ' ' });  // holds the current protection level, as filled out by the async callback
			field1.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
			field1.append({
				type: 'select',
				name: 'tagtype',
				label: 'Choose protection template:',
				list: Twinkle.protect.protectionTags,
				event: Twinkle.protect.formevents.tagtype
			});
			field1.append({
				type: 'checkbox',
				list: [
					{
						name: 'small',
						label: 'Iconify (small=yes)',
						tooltip: 'Will use the |small=yes feature of the template, and only render it as a keylock',
						checked: true
					},
					{
						name: 'noinclude',
						label: 'Wrap protection template with <noinclude>',
						tooltip: 'Will wrap the protection template in &lt;noinclude&gt; tags, so that it won\'t transclude',
						checked: mw.config.get('wgNamespaceNumber') === 10
					}
				]
			});
			break;

		case 'request':
			field_preset = new Morebits.quickForm.element({ type: 'field', label: 'Type of protection', name: 'field_preset' });
			field_preset.append({
				type: 'select',
				name: 'category',
				label: 'Type and reason:',
				event: Twinkle.protect.callback.changePreset,
				list: mw.config.get('wgArticleId') ? Twinkle.protect.protectionTypes : Twinkle.protect.protectionTypesCreate
			});

			field1 = new Morebits.quickForm.element({ type: 'field', label: 'Options', name: 'field1' });
			field1.append({ type: 'div', name: 'currentprot', label: ' ' });  // holds the current protection level, as filled out by the async callback
			field1.append({ type: 'div', name: 'hasprotectlog', label: ' ' });
			field1.append({
				type: 'select',
				name: 'expiry',
				label: 'Duration: ',
				list: [
					{ label: '', selected: true, value: '' },
					{ label: 'Temporary', value: 'temporary' },
					{ label: 'Indefinite', value: 'infinity' }
				]
			});
			field1.append({
				type: 'textarea',
				name: 'reason',
				label: 'Reason: '
			});
			break;
		default:
			alert("Something's afoot in twinkleprotect");
			break;
	}

	var oldfield;

	if (field_preset) {
		oldfield = $(e.target.form).find('fieldset[name="field_preset"]')[0];
		oldfield.parentNode.replaceChild(field_preset.render(), oldfield);
	} else {
		$(e.target.form).find('fieldset[name="field_preset"]').css('display', 'none');
	}
	if (field1) {
		oldfield = $(e.target.form).find('fieldset[name="field1"]')[0];
		oldfield.parentNode.replaceChild(field1.render(), oldfield);
	} else {
		$(e.target.form).find('fieldset[name="field1"]').css('display', 'none');
	}
	if (field2) {
		oldfield = $(e.target.form).find('fieldset[name="field2"]')[0];
		oldfield.parentNode.replaceChild(field2.render(), oldfield);
	} else {
		$(e.target.form).find('fieldset[name="field2"]').css('display', 'none');
	}

	if (e.target.values === 'protect') {
		// fake a change event on the preset dropdown
		var evt = document.createEvent('Event');
		evt.initEvent('change', true, true);
		e.target.form.category.dispatchEvent(evt);

		// reduce vertical height of dialog
		$(e.target.form).find('fieldset[name="field2"] select').parent().css({ display: 'inline-block', marginRight: '0.5em' });
	}

	// re-add protection level and log info, if it's available
	Twinkle.protect.callback.showLogAndCurrentProtectInfo();
};

// NOTE: This function is used by batchprotect as well
Twinkle.protect.formevents = {
	editmodify: function twinkleprotectFormEditmodifyEvent(e) {
		e.target.form.editlevel.disabled = !e.target.checked;
		e.target.form.editexpiry.disabled = !e.target.checked || (e.target.form.editlevel.value === 'all');
		e.target.form.editlevel.style.color = e.target.form.editexpiry.style.color = e.target.checked ? '' : 'transparent';
	},
	editlevel: function twinkleprotectFormEditlevelEvent(e) {
		e.target.form.editexpiry.disabled = e.target.value === 'all';
	},
	movemodify: function twinkleprotectFormMovemodifyEvent(e) {
		// sync move settings with edit settings if applicable
		if (e.target.form.movelevel.disabled && !e.target.form.editlevel.disabled) {
			e.target.form.movelevel.value = e.target.form.editlevel.value;
			e.target.form.moveexpiry.value = e.target.form.editexpiry.value;
		} else if (e.target.form.editlevel.disabled) {
			e.target.form.movelevel.value = 'sysop';
			e.target.form.moveexpiry.value = 'infinity';
		}
		e.target.form.movelevel.disabled = !e.target.checked;
		e.target.form.moveexpiry.disabled = !e.target.checked || (e.target.form.movelevel.value === 'all');
		e.target.form.movelevel.style.color = e.target.form.moveexpiry.style.color = e.target.checked ? '' : 'transparent';
	},
	movelevel: function twinkleprotectFormMovelevelEvent(e) {
		e.target.form.moveexpiry.disabled = e.target.value === 'all';
	},
	pcmodify: function twinkleprotectFormPcmodifyEvent(e) {
		e.target.form.pclevel.disabled = !e.target.checked;
		e.target.form.pcexpiry.disabled = !e.target.checked || (e.target.form.pclevel.value === 'none');
		e.target.form.pclevel.style.color = e.target.form.pcexpiry.style.color = e.target.checked ? '' : 'transparent';
	},
	pclevel: function twinkleprotectFormPclevelEvent(e) {
		e.target.form.pcexpiry.disabled = e.target.value === 'none';
	},
	createlevel: function twinkleprotectFormCreatelevelEvent(e) {
		e.target.form.createexpiry.disabled = e.target.value === 'all';
	},
	tagtype: function twinkleprotectFormTagtypeEvent(e) {
		e.target.form.small.disabled = e.target.form.noinclude.disabled = (e.target.value === 'none') || (e.target.value === 'noop');
	}
};

Twinkle.protect.doCustomExpiry = function twinkleprotectDoCustomExpiry(target) {
	var custom = prompt('Enter a custom expiry time.  \nYou can use relative times, like "1 minute" or "19 days", or absolute timestamps, "yyyymmddhhmm" (e.g. "200602011405" is Feb 1, 2006, at 14:05 UTC).', '');
	if (custom) {
		var option = document.createElement('option');
		option.setAttribute('value', custom);
		option.textContent = custom;
		target.appendChild(option);
		target.value = custom;
	} else {
		target.selectedIndex = 0;
	}
};

// NOTE: This list is used by batchprotect as well
Twinkle.protect.protectionLevels = [
	{ label: 'All', value: 'all' },
	{ label: 'Autoconfirmed', value: 'autoconfirmed' },
	{ label: 'Extended confirmed', value: 'extendedconfirmed' },
	{ label: 'Template editor', value: 'templateeditor' },
	{ label: 'Sysop', value: 'sysop', selected: true }
];

// default expiry selection is conditionally set in Twinkle.protect.callback.changePreset
// NOTE: This list is used by batchprotect as well
Twinkle.protect.protectionLengths = [
	{ label: '1 hour', value: '1 hour' },
	{ label: '2 hours', value: '2 hours' },
	{ label: '3 hours', value: '3 hours' },
	{ label: '6 hours', value: '6 hours' },
	{ label: '12 hours', value: '12 hours' },
	{ label: '1 day', value: '1 day' },
	{ label: '2 days', value: '2 days' },
	{ label: '3 days', value: '3 days' },
	{ label: '4 days', value: '4 days' },
	{ label: '1 week', value: '1 week' },
	{ label: '2 weeks', value: '2 weeks' },
	{ label: '1 month', value: '1 month' },
	{ label: '2 months', value: '2 months' },
	{ label: '3 months', value: '3 months' },
	{ label: '1 year', value: '1 year' },
	{ label: 'indefinite', value: 'infinity' },
	{ label: 'Custom...', value: 'custom' }
];

Twinkle.protect.protectionTypes = [
	{ label: 'Unprotection', value: 'unprotect' },
	{
		label: 'Full protection',
		list: [
			{ label: 'Generic (full)', value: 'pp-protected' },
			{ label: 'Content dispute/edit warring (full)', value: 'pp-dispute' },
			{ label: 'Persistent vandalism (full)', value: 'pp-vandalism' },
			{ label: 'User talk of blocked user (full)', value: 'pp-usertalk' }
		]
	},
	{
		label: 'Template protection',
		list: [
			{ label: 'Highly visible template (TE)', value: 'pp-template' }
		]
	},
	{
		label: 'Extended confirmed protection',
		list: [
			{ label: 'Arbitration enforcement (ECP)', selected: true, value: 'pp-30-500-arb' },
			{ label: 'Persistent vandalism (ECP)', value: 'pp-30-500-vandalism' },
			{ label: 'Disruptive editing (ECP)', value: 'pp-30-500-disruptive' },
			{ label: 'BLP policy violations (ECP)', value: 'pp-30-500-blp' },
			{ label: 'Sockpuppetry (ECP)', value: 'pp-30-500-sock' }
		]
	},
	{
		label: 'Semi-protection',
		list: [
			{ label: 'Generic (semi)', value: 'pp-semi-protected' },
			{ label: 'Persistent vandalism (semi)', selected: true, value: 'pp-semi-vandalism' },
			{ label: 'Disruptive editing (semi)', value: 'pp-semi-disruptive' },
			{ label: 'Adding unsourced content (semi)', value: 'pp-semi-unsourced' },
			{ label: 'BLP policy violations (semi)', value: 'pp-semi-blp' },
			{ label: 'Sockpuppetry (semi)', value: 'pp-semi-sock' },
			{ label: 'User talk of blocked user (semi)', value: 'pp-semi-usertalk' }
		]
	},
	{
		label: 'Pending changes',
		list: [
			{ label: 'Generic (PC)', value: 'pp-pc-protected' },
			{ label: 'Persistent vandalism (PC)', value: 'pp-pc-vandalism' },
			{ label: 'Disruptive editing (PC)', value: 'pp-pc-disruptive' },
			{ label: 'Adding unsourced content (PC)', value: 'pp-pc-unsourced' },
			{ label: 'BLP policy violations (PC)', value: 'pp-pc-blp' }
		]
	},
	{
		label: 'Move protection',
		list: [
			{ label: 'Generic (move)', value: 'pp-move' },
			{ label: 'Dispute/move warring (move)', value: 'pp-move-dispute' },
			{ label: 'Page-move vandalism (move)', value: 'pp-move-vandalism' },
			{ label: 'Highly visible page (move)', value: 'pp-move-indef' }
		]
	}
].filter(function(type) {
	// Filter for templates and flaggedrevs
	return (isTemplate || type.label !== 'Template protection') && (hasFlaggedRevs || type.label !== 'Pending changes');
});

Twinkle.protect.protectionTypesCreate = [
	{ label: 'Unprotection', value: 'unprotect' },
	{
		label: 'Create protection',
		list: [
			{ label: 'Generic ({{pp-create}})', value: 'pp-create' },
			{ label: 'Offensive name', value: 'pp-create-offensive' },
			{ label: 'Repeatedly recreated', selected: true, value: 'pp-create-salt' },
			{ label: 'Recently deleted BLP', value: 'pp-create-blp' }
		]
	}
];

// A page with both regular and PC protection will be assigned its regular
// protection weight plus 2
Twinkle.protect.protectionWeight = {
	sysop: 40,
	templateeditor: 30,
	extendedconfirmed: 20,
	autoconfirmed: 10,
	flaggedrevs_autoconfirmed: 5,  // Pending Changes protection alone
	all: 0,
	flaggedrevs_none: 0  // just in case
};

// NOTICE: keep this synched with [[MediaWiki:Protect-dropdown]]
// Also note: stabilize = Pending Changes level
// expiry will override any defaults
Twinkle.protect.protectionPresetsInfo = {
	'pp-protected': {
		edit: 'sysop',
		move: 'sysop',
		reason: null
	},
	'pp-dispute': {
		edit: 'sysop',
		move: 'sysop',
		reason: '[[WP:PP#Content disputes|Edit warring / content dispute]]'
	},
	'pp-vandalism': {
		edit: 'sysop',
		move: 'sysop',
		reason: 'Persistent [[WP:Vandalism|vandalism]]'
	},
	'pp-usertalk': {
		edit: 'sysop',
		move: 'sysop',
		expiry: 'infinity',
		reason: '[[WP:PP#Talk-page protection|Inappropriate use of user talk page while blocked]]'
	},
	'pp-template': {
		edit: 'templateeditor',
		move: 'templateeditor',
		expiry: 'infinity',
		reason: '[[WP:High-risk templates|Highly visible template]]'
	},
	'pp-30-500-arb': {
		edit: 'extendedconfirmed',
		move: 'extendedconfirmed',
		expiry: 'infinity',
		reason: '[[WP:30/500|Arbitration enforcement]]',
		template: 'pp-30-500'
	},
	'pp-30-500-vandalism': {
		edit: 'extendedconfirmed',
		move: 'extendedconfirmed',
		reason: 'Persistent [[WP:Vandalism|vandalism]] from (auto)confirmed accounts',
		template: 'pp-30-500'
	},
	'pp-30-500-disruptive': {
		edit: 'extendedconfirmed',
		move: 'extendedconfirmed',
		reason: 'Persistent [[WP:Disruptive editing|disruptive editing]] from (auto)confirmed accounts',
		template: 'pp-30-500'
	},
	'pp-30-500-blp': {
		edit: 'extendedconfirmed',
		move: 'extendedconfirmed',
		reason: 'Persistent violations of the [[WP:BLP|biographies of living persons policy]] from (auto)confirmed accounts',
		template: 'pp-30-500'
	},
	'pp-30-500-sock': {
		edit: 'extendedconfirmed',
		move: 'extendedconfirmed',
		reason: 'Persistent [[WP:Sock puppetry|sock puppetry]]',
		template: 'pp-30-500'
	},
	'pp-semi-vandalism': {
		edit: 'autoconfirmed',
		reason: 'Persistent [[WP:Vandalism|vandalism]]',
		template: 'pp-vandalism'
	},
	'pp-semi-disruptive': {
		edit: 'autoconfirmed',
		reason: 'Persistent [[WP:Disruptive editing|disruptive editing]]',
		template: 'pp-protected'
	},
	'pp-semi-unsourced': {
		edit: 'autoconfirmed',
		reason: 'Persistent addition of [[WP:INTREF|unsourced or poorly sourced content]]',
		template: 'pp-protected'
	},
	'pp-semi-blp': {
		edit: 'autoconfirmed',
		reason: 'Violations of the [[WP:BLP|biographies of living persons policy]]',
		template: 'pp-blp'
	},
	'pp-semi-usertalk': {
		edit: 'autoconfirmed',
		move: 'autoconfirmed',
		expiry: 'infinity',
		reason: '[[WP:PP#Talk-page protection|Inappropriate use of user talk page while blocked]]',
		template: 'pp-usertalk'
	},
	'pp-semi-template': {  // removed for now
		edit: 'autoconfirmed',
		move: 'autoconfirmed',
		expiry: 'infinity',
		reason: '[[WP:High-risk templates|Highly visible template]]',
		template: 'pp-template'
	},
	'pp-semi-sock': {
		edit: 'autoconfirmed',
		reason: 'Persistent [[WP:Sock puppetry|sock puppetry]]',
		template: 'pp-sock'
	},
	'pp-semi-protected': {
		edit: 'autoconfirmed',
		reason: null,
		template: 'pp-protected'
	},
	'pp-pc-vandalism': {
		stabilize: 'autoconfirmed',  // stabilize = Pending Changes
		reason: 'Persistent [[WP:Vandalism|vandalism]]',
		template: 'pp-pc'
	},
	'pp-pc-disruptive': {
		stabilize: 'autoconfirmed',
		reason: 'Persistent [[WP:Disruptive editing|disruptive editing]]',
		template: 'pp-pc'
	},
	'pp-pc-unsourced': {
		stabilize: 'autoconfirmed',
		reason: 'Persistent addition of [[WP:INTREF|unsourced or poorly sourced content]]',
		template: 'pp-pc'
	},
	'pp-pc-blp': {
		stabilize: 'autoconfirmed',
		reason: 'Violations of the [[WP:BLP|biographies of living persons policy]]',
		template: 'pp-pc'
	},
	'pp-pc-protected': {
		stabilize: 'autoconfirmed',
		reason: null,
		template: 'pp-pc'
	},
	'pp-move': {
		move: 'sysop',
		reason: null
	},
	'pp-move-dispute': {
		move: 'sysop',
		reason: '[[WP:MOVP|Move warring]]'
	},
	'pp-move-vandalism': {
		move: 'sysop',
		reason: '[[WP:MOVP|Page-move vandalism]]'
	},
	'pp-move-indef': {
		move: 'sysop',
		expiry: 'infinity',
		reason: '[[WP:MOVP|Highly visible page]]'
	},
	'unprotect': {
		edit: 'all',
		move: 'all',
		stabilize: 'none',
		create: 'all',
		reason: null,
		template: 'none'
	},
	'pp-create-offensive': {
		create: 'sysop',
		reason: '[[WP:SALT|Offensive name]]'
	},
	'pp-create-salt': {
		create: 'extendedconfirmed',
		reason: '[[WP:SALT|Repeatedly recreated]]'
	},
	'pp-create-blp': {
		create: 'extendedconfirmed',
		reason: '[[WP:BLPDEL|Recently deleted BLP]]'
	},
	'pp-create': {
		create: 'extendedconfirmed',
		reason: '{{pp-create}}'
	}
};

Twinkle.protect.protectionTags = [
	{
		label: 'None (remove existing protection templates)',
		value: 'none'
	},
	{
		label: 'None (do not remove existing protection templates)',
		value: 'noop'
	},
	{
		label: 'Edit protection templates',
		list: [
			{ label: '{{pp-vandalism}}: vandalism', value: 'pp-vandalism' },
			{ label: '{{pp-dispute}}: dispute/edit war', value: 'pp-dispute' },
			{ label: '{{pp-blp}}: BLP violations', value: 'pp-blp' },
			{ label: '{{pp-sock}}: sockpuppetry', value: 'pp-sock' },
			{ label: '{{pp-template}}: high-risk template', value: 'pp-template' },
			{ label: '{{pp-usertalk}}: blocked user talk', value: 'pp-usertalk' },
			{ label: '{{pp-protected}}: general protection', value: 'pp-protected' },
			{ label: '{{pp-semi-indef}}: general long-term semi-protection', value: 'pp-semi-indef' },
			{ label: '{{pp-30-500}}: extended confirmed protection', value: 'pp-30-500' }
		]
	},
	{
		label: 'Pending changes templates',
		list: [
			{ label: '{{pp-pc}}: pending changes', value: 'pp-pc' }
		]
	},
	{
		label: 'Move protection templates',
		list: [
			{ label: '{{pp-move-dispute}}: dispute/move war', value: 'pp-move-dispute' },
			{ label: '{{pp-move-vandalism}}: page-move vandalism', value: 'pp-move-vandalism' },
			{ label: '{{pp-move-indef}}: general long-term', value: 'pp-move-indef' },
			{ label: '{{pp-move}}: other', value: 'pp-move' }
		]
	}
].filter(function(type) {
	// Filter FlaggedRevs
	return hasFlaggedRevs || type.label !== 'Pending changes templates';
});

Twinkle.protect.callback.changePreset = function twinkleprotectCallbackChangePreset(e) {
	var form = e.target.form;

	var actiontypes = form.actiontype;
	var actiontype;
	for (var i = 0; i < actiontypes.length; i++) {
		if (!actiontypes[i].checked) {
			continue;
		}
		actiontype = actiontypes[i].values;
		break;
	}

	if (actiontype === 'protect') {  // actually protecting the page
		var item = Twinkle.protect.protectionPresetsInfo[form.category.value];

		if (mw.config.get('wgArticleId')) {
			if (item.edit) {
				form.editmodify.checked = true;
				Twinkle.protect.formevents.editmodify({ target: form.editmodify });
				form.editlevel.value = item.edit;
				Twinkle.protect.formevents.editlevel({ target: form.editlevel });
			} else {
				form.editmodify.checked = false;
				Twinkle.protect.formevents.editmodify({ target: form.editmodify });
			}

			if (item.move) {
				form.movemodify.checked = true;
				Twinkle.protect.formevents.movemodify({ target: form.movemodify });
				form.movelevel.value = item.move;
				Twinkle.protect.formevents.movelevel({ target: form.movelevel });
			} else {
				form.movemodify.checked = false;
				Twinkle.protect.formevents.movemodify({ target: form.movemodify });
			}

			form.editexpiry.value = form.moveexpiry.value = item.expiry || '2 days';


			if (form.pcmodify) {
				if (item.stabilize) {
					form.pcmodify.checked = true;
					Twinkle.protect.formevents.pcmodify({ target: form.pcmodify });
					form.pclevel.value = item.stabilize;
					Twinkle.protect.formevents.pclevel({ target: form.pclevel });
				} else {
					form.pcmodify.checked = false;
					Twinkle.protect.formevents.pcmodify({ target: form.pcmodify });
				}
				form.pcexpiry.value = item.expiry || '1 month';
			}
		} else {
			if (item.create) {
				form.createlevel.value = item.create;
				Twinkle.protect.formevents.createlevel({ target: form.createlevel });
			}
			form.createexpiry.value = item.expiry || 'infinity';
		}

		var reasonField = actiontype === 'protect' ? form.protectReason : form.reason;
		if (item.reason) {
			reasonField.value = item.reason;
		} else {
			reasonField.value = '';
		}

		// sort out tagging options, disabled if nonexistent or lua
		if (mw.config.get('wgArticleId') && mw.config.get('wgPageContentModel') !== 'Scribunto') {
			if (form.category.value === 'unprotect') {
				form.tagtype.value = 'none';
			} else {
				form.tagtype.value = item.template ? item.template : form.category.value;
			}
			Twinkle.protect.formevents.tagtype({ target: form.tagtype });

			// We only have one TE template at the moment, so this
			// should be expanded if more are added (e.g. pp-semi-template)
			if (form.category.value === 'pp-template') {
				form.noinclude.checked = true;
			} else if (mw.config.get('wgNamespaceNumber') !== 10) {
				form.noinclude.checked = false;
			}
		}

	} else {  // RPP request
		if (form.category.value === 'unprotect') {
			form.expiry.value = '';
			form.expiry.disabled = true;
		} else {
			form.expiry.value = '';
			form.expiry.disabled = false;
		}
	}
};

Twinkle.protect.callback.evaluate = function twinkleprotectCallbackEvaluate(e) {
	var form = e.target;
	var input = Morebits.quickForm.getInputData(form);

	var tagparams;
	if (input.actiontype === 'tag' || (input.actiontype === 'protect' && mw.config.get('wgArticleId') && mw.config.get('wgPageContentModel') !== 'Scribunto')) {
		tagparams = {
			tag: input.tagtype,
			reason: (input.tagtype === 'pp-protected' || input.tagtype === 'pp-semi-protected' || input.tagtype === 'pp-move') && input.protectReason,
			small: input.small,
			noinclude: input.noinclude
		};
	}

	switch (input.actiontype) {
		case 'protect':
			// protect the page
			Morebits.wiki.actionCompleted.redirect = mw.config.get('wgPageName');
			Morebits.wiki.actionCompleted.notice = 'Protection complete';

			var statusInited = false;
			var thispage;

			var allDone = function twinkleprotectCallbackAllDone() {
				if (thispage) {
					thispage.getStatusElement().info('done');
				}
				if (tagparams) {
					Twinkle.protect.callbacks.taggingPageInitial(tagparams);
				}
			};

			var protectIt = function twinkleprotectCallbackProtectIt(next) {
				thispage = new Morebits.wiki.page(mw.config.get('wgPageName'), 'Protecting page');
				if (mw.config.get('wgArticleId')) {
					if (input.editmodify) {
						thispage.setEditProtection(input.editlevel, input.editexpiry);
					}
					if (input.movemodify) {
						// Ensure a level has actually been chosen
						if (input.movelevel) {
							thispage.setMoveProtection(input.movelevel, input.moveexpiry);
						} else {
							alert('You must chose a move protection level!');
							return;
						}
					}
					thispage.setWatchlist(Twinkle.getPref('watchProtectedPages'));
				} else {
					thispage.setCreateProtection(input.createlevel, input.createexpiry);
					thispage.setWatchlist(false);
				}

				if (input.protectReason) {
					thispage.setEditSummary(input.protectReason);
				} else {
					alert('You must enter a protect reason, which will be inscribed into the protection log.');
					return;
				}

				if (!statusInited) {
					Morebits.simpleWindow.setButtonsEnabled(false);
					Morebits.status.init(form);
					statusInited = true;
				}

				thispage.setChangeTags(Twinkle.changeTags);
				thispage.protect(next);
			};

			var stabilizeIt = function twinkleprotectCallbackStabilizeIt() {
				if (thispage) {
					thispage.getStatusElement().info('done');
				}

				thispage = new Morebits.wiki.page(mw.config.get('wgPageName'), 'Applying pending changes protection');
				thispage.setFlaggedRevs(input.pclevel, input.pcexpiry);

				if (input.protectReason) {
					thispage.setEditSummary(input.protectReason + Twinkle.summaryAd); // flaggedrevs tag support: [[phab:T247721]]
				} else {
					alert('You must enter a protect reason, which will be inscribed into the protection log.');
					return;
				}

				if (!statusInited) {
					Morebits.simpleWindow.setButtonsEnabled(false);
					Morebits.status.init(form);
					statusInited = true;
				}

				thispage.setWatchlist(Twinkle.getPref('watchProtectedPages'));
				thispage.stabilize(allDone, function(error) {
					if (error.errorCode === 'stabilize_denied') { // [[phab:T234743]]
						thispage.getStatusElement().error('Failed trying to modify pending changes settings, likely due to a mediawiki bug. Other actions (tagging or regular protection) may have taken place. Please reload the page and try again.');
					}
				});
			};

			if (input.editmodify || input.movemodify || !mw.config.get('wgArticleId')) {
				if (input.pcmodify) {
					protectIt(stabilizeIt);
				} else {
					protectIt(allDone);
				}
			} else if (input.pcmodify) {
				stabilizeIt();
			} else {
				alert("Please give Twinkle something to do! \nIf you just want to tag the page, you can choose the 'Tag page with protection template' option at the top.");
			}

			break;

		case 'tag':
			// apply a protection template

			Morebits.simpleWindow.setButtonsEnabled(false);
			Morebits.status.init(form);

			Morebits.wiki.actionCompleted.redirect = mw.config.get('wgPageName');
			Morebits.wiki.actionCompleted.followRedirect = false;
			Morebits.wiki.actionCompleted.notice = 'Tagging complete';

			Twinkle.protect.callbacks.taggingPageInitial(tagparams);
			break;

		case 'request':
			// file request at RFPP
			var typename, typereason;
			switch (input.category) {
				case 'pp-dispute':
				case 'pp-vandalism':
				case 'pp-usertalk':
				case 'pp-protected':
					typename = 'full protection';
					break;
				case 'pp-template':
					typename = 'template protection';
					break;
				case 'pp-30-500-arb':
				case 'pp-30-500-vandalism':
				case 'pp-30-500-disruptive':
				case 'pp-30-500-blp':
				case 'pp-30-500-sock':
					typename = 'extended confirmed protection';
					break;
				case 'pp-semi-vandalism':
				case 'pp-semi-disruptive':
				case 'pp-semi-unsourced':
				case 'pp-semi-usertalk':
				case 'pp-semi-sock':
				case 'pp-semi-blp':
				case 'pp-semi-protected':
					typename = 'semi-protection';
					break;
				case 'pp-pc-vandalism':
				case 'pp-pc-blp':
				case 'pp-pc-protected':
				case 'pp-pc-unsourced':
				case 'pp-pc-disruptive':
					typename = 'pending changes';
					break;
				case 'pp-move':
				case 'pp-move-dispute':
				case 'pp-move-indef':
				case 'pp-move-vandalism':
					typename = 'move protection';
					break;
				case 'pp-create':
				case 'pp-create-offensive':
				case 'pp-create-blp':
				case 'pp-create-salt':
					typename = 'create protection';
					break;
				case 'unprotect':
					var admins = $.map(Twinkle.protect.currentProtectionLevels, function(pl) {
						if (!pl.admin || Twinkle.protect.trustedBots.indexOf(pl.admin) !== -1) {
							return null;
						}
						return 'User:' + pl.admin;
					});
					if (admins.length && !confirm('Have you attempted to contact the protecting admins (' + Morebits.array.uniq(admins).join(', ') + ') first?')) {
						return false;
					}
					// otherwise falls through
				default:
					typename = 'unprotection';
					break;
			}
			switch (input.category) {
				case 'pp-dispute':
					typereason = 'Content dispute/edit warring';
					break;
				case 'pp-vandalism':
				case 'pp-semi-vandalism':
				case 'pp-pc-vandalism':
				case 'pp-30-500-vandalism':
					typereason = 'Persistent [[WP:VAND|vandalism]]';
					break;
				case 'pp-semi-disruptive':
				case 'pp-pc-disruptive':
				case 'pp-30-500-disruptive':
					typereason = 'Persistent [[Wikipedia:Disruptive editing|disruptive editing]]';
					break;
				case 'pp-semi-unsourced':
				case 'pp-pc-unsourced':
					typereason = 'Persistent addition of [[WP:INTREF|unsourced or poorly sourced content]]';
					break;
				case 'pp-template':
					typereason = '[[WP:HIGHRISK|High-risk template]]';
					break;
				case 'pp-30-500-arb':
					typereason = '[[WP:30/500|Arbitration enforcement]]';
					break;
				case 'pp-usertalk':
				case 'pp-semi-usertalk':
					typereason = 'Inappropriate use of user talk page while blocked';
					break;
				case 'pp-semi-sock':
				case 'pp-30-500-sock':
					typereason = 'Persistent [[WP:SOCK|sockpuppetry]]';
					break;
				case 'pp-semi-blp':
				case 'pp-pc-blp':
				case 'pp-30-500-blp':
					typereason = '[[WP:BLP|BLP]] policy violations';
					break;
				case 'pp-move-dispute':
					typereason = 'Page title dispute/move warring';
					break;
				case 'pp-move-vandalism':
					typereason = 'Page-move vandalism';
					break;
				case 'pp-move-indef':
					typereason = 'Highly visible page';
					break;
				case 'pp-create-offensive':
					typereason = 'Offensive name';
					break;
				case 'pp-create-blp':
					typereason = 'Recently deleted [[WP:BLP|BLP]]';
					break;
				case 'pp-create-salt':
					typereason = 'Repeatedly recreated';
					break;
				default:
					typereason = '';
					break;
			}

			var reason = typereason;
			if (input.reason !== '') {
				if (typereason !== '') {
					reason += '\u00A0\u2013 ';  // U+00A0 NO-BREAK SPACE; U+2013 EN RULE
				}
				reason += input.reason;
			}
			if (reason !== '' && reason.charAt(reason.length - 1) !== '.') {
				reason += '.';
			}

			var rppparams = {
				reason: reason,
				typename: typename,
				category: input.category,
				expiry: input.expiry
			};

			Morebits.simpleWindow.setButtonsEnabled(false);
			Morebits.status.init(form);

			var rppName = 'Wikipedia:Requests for page protection';

			// Updating data for the action completed event
			Morebits.wiki.actionCompleted.redirect = rppName;
			Morebits.wiki.actionCompleted.notice = 'Nomination completed, redirecting now to the discussion page';

			var rppPage = new Morebits.wiki.page(rppName, 'Requesting protection of page');
			rppPage.setFollowRedirect(true);
			rppPage.setCallbackParameters(rppparams);
			rppPage.load(Twinkle.protect.callbacks.fileRequest);
			break;
		default:
			alert('twinkleprotect: unknown kind of action');
			break;
	}
};

Twinkle.protect.callbacks = {
	taggingPageInitial: function(tagparams) {
		if (tagparams.tag === 'noop') {
			Morebits.status.info('Applying protection template', 'nothing to do');
			return;
		}

		var protectedPage = new Morebits.wiki.page(mw.config.get('wgPageName'), 'Tagging page');
		protectedPage.setCallbackParameters(tagparams);
		protectedPage.load(Twinkle.protect.callbacks.taggingPage);
	},
	taggingPage: function(protectedPage) {
		var params = protectedPage.getCallbackParameters();
		var text = protectedPage.getPageText();
		var tag, summary;

		var oldtag_re = /\s*(?:<noinclude>)?\s*\{\{\s*(pp-[^{}]*?|protected|(?:t|v|s|p-|usertalk-v|usertalk-s|sb|move)protected(?:2)?|protected template|privacy protection)\s*?\}\}\s*(?:<\/noinclude>)?\s*/gi;
		var re_result = oldtag_re.exec(text);
		if (re_result) {
			if (params.tag === 'none' || confirm('{{' + re_result[1] + '}} was found on the page. \nClick OK to remove it, or click Cancel to leave it there.')) {
				text = text.replace(oldtag_re, '');
			}
		}

		if (params.tag === 'none') {
			summary = 'Removing protection template';
		} else {
			tag = params.tag;
			if (params.reason) {
				tag += '|reason=' + params.reason;
			}
			if (params.small) {
				tag += '|small=yes';
			}

			if (/^\s*#redirect/i.test(text)) { // redirect page
				// Only tag if no {{rcat shell}} is found
				if (!text.match(/{{(?:redr|this is a redirect|r(?:edirect)?(?:.?cat.*)?[ _]?sh)/i)) {
					text = text.replace(/#REDIRECT ?(\[\[.*?\]\])(.*)/i, '#REDIRECT $1$2\n\n{{' + tag + '}}');
				} else {
					Morebits.status.info('Redirect category shell present', 'nothing to do');
					return;
				}
			} else {
				if (params.noinclude) {
					tag = '<noinclude>{{' + tag + '}}</noinclude>';
				} else {
					tag = '{{' + tag + '}}\n';
				}

				// Insert tag after short description or any hatnotes
				var wikipage = new Morebits.wikitext.page(text);
				text = wikipage.insertAfterTemplates(tag, Twinkle.hatnoteRegex).getText();
			}
			summary = 'Adding {{' + params.tag + '}}';
		}

		protectedPage.setEditSummary(summary);
		protectedPage.setChangeTags(Twinkle.changeTags);
		protectedPage.setWatchlist(Twinkle.getPref('watchPPTaggedPages'));
		protectedPage.setPageText(text);
		protectedPage.setCreateOption('nocreate');
		protectedPage.suppressProtectWarning(); // no need to let admins know they are editing through protection
		protectedPage.save();
	},

	fileRequest: function(rppPage) {

		var params = rppPage.getCallbackParameters();
		var text = rppPage.getPageText();
		var statusElement = rppPage.getStatusElement();

		var rppRe = new RegExp('===\\s*(\\[\\[)?\\s*:?\\s*' + Morebits.string.escapeRegExp(Morebits.pageNameNorm) + '\\s*(\\]\\])?\\s*===', 'm');
		var tag = rppRe.exec(text);

		var rppLink = document.createElement('a');
		rppLink.setAttribute('href', mw.util.getUrl(rppPage.getPageName()));
		rppLink.appendChild(document.createTextNode(rppPage.getPageName()));

		if (tag) {
			statusElement.error([ 'There is already a protection request for this page at ', rppLink, ', aborting.' ]);
			return;
		}

		var newtag = '=== [[:' + Morebits.pageNameNorm + ']] ===\n';
		if (new RegExp('^' + mw.util.escapeRegExp(newtag).replace(/\s+/g, '\\s*'), 'm').test(text)) {
			statusElement.error([ 'There is already a protection request for this page at ', rppLink, ', aborting.' ]);
			return;
		}
		newtag += '* {{pagelinks|1=' + Morebits.pageNameNorm + '}}\n\n';

		var words;
		switch (params.expiry) {
			case 'temporary':
				words = 'Temporary ';
				break;
			case 'infinity':
				words = 'Indefinite ';
				break;
			default:
				words = '';
				break;
		}

		words += params.typename;

		newtag += "'''" + Morebits.string.toUpperCaseFirstChar(words) + (params.reason !== '' ? ":''' " +
			Morebits.string.formatReasonText(params.reason) : ".'''") + ' ~~~~';

		// If either protection type results in a increased status, then post it under increase
		// else we post it under decrease
		var increase = false;
		var protInfo = Twinkle.protect.protectionPresetsInfo[params.category];

		// function to compute protection weights (see comment at Twinkle.protect.protectionWeight)
		var computeWeight = function(mainLevel, stabilizeLevel) {
			var result = Twinkle.protect.protectionWeight[mainLevel || 'all'];
			if (stabilizeLevel) {
				if (result) {
					if (stabilizeLevel.level === 'autoconfirmed') {
						result += 2;
					}
				} else {
					result = Twinkle.protect.protectionWeight['flaggedrevs_' + stabilizeLevel];
				}
			}
			return result;
		};

		// compare the page's current protection weights with the protection we are requesting
		var editWeight = computeWeight(Twinkle.protect.currentProtectionLevels.edit &&
			Twinkle.protect.currentProtectionLevels.edit.level,
		Twinkle.protect.currentProtectionLevels.stabilize &&
			Twinkle.protect.currentProtectionLevels.stabilize.level);
		if (computeWeight(protInfo.edit, protInfo.stabilize) > editWeight ||
			computeWeight(protInfo.move) > computeWeight(Twinkle.protect.currentProtectionLevels.move &&
			Twinkle.protect.currentProtectionLevels.move.level) ||
			computeWeight(protInfo.create) > computeWeight(Twinkle.protect.currentProtectionLevels.create &&
			Twinkle.protect.currentProtectionLevels.create.level)) {
			increase = true;
		}

		var reg;
		if (increase) {
			reg = /(\n==\s*Current requests for reduction in protection level\s*==)/;
		} else {
			reg = /(\n==\s*Current requests for edits to a protected page\s*==)/;
		}

		var originalTextLength = text.length;
		text = text.replace(reg, '\n' + newtag + '\n$1');
		if (text.length === originalTextLength) {
			var linknode = document.createElement('a');
			linknode.setAttribute('href', mw.util.getUrl('Wikipedia:Twinkle/Fixing RPP'));
			linknode.appendChild(document.createTextNode('How to fix RPP'));
			statusElement.error([ 'Could not find relevant heading on WP:RPP. To fix this problem, please see ', linknode, '.' ]);
			return;
		}
		statusElement.status('Adding new request...');
		rppPage.setEditSummary('/* ' + Morebits.pageNameNorm + ' */ Requesting ' + params.typename + (params.typename === 'pending changes' ? ' on [[:' : ' of [[:') +
			Morebits.pageNameNorm + ']].');
		rppPage.setChangeTags(Twinkle.changeTags);
		rppPage.setPageText(text);
		rppPage.setCreateOption('recreate');
		rppPage.save(function() {
			// Watch the page being requested
			var watchPref = Twinkle.getPref('watchRequestedPages');
			// action=watch has no way to rely on user preferences (T262912), so we do it manually.
			// The watchdefault pref appears to reliably return '1' (string),
			// but that's not consistent among prefs so might as well be "correct"
			var watch = watchPref !== 'no' && (watchPref !== 'default' || !!parseInt(mw.user.options.get('watchdefault'), 10));
			if (watch) {
				var watch_query = {
					action: 'watch',
					titles: mw.config.get('wgPageName'),
					token: mw.user.tokens.get('watchToken')
				};
				// Only add the expiry if page is unwatched or already temporarily watched
				if (Twinkle.protect.watched !== true && watchPref !== 'default' && watchPref !== 'yes') {
					watch_query.expiry = watchPref;
				}
				new Morebits.wiki.api('Adding requested page to watchlist', watch_query).post();
			}
		});
	}
};

Twinkle.addInitCallback(Twinkle.protect, 'protect');
})(jQuery);


// </nowiki>
"https://ta.wikipedia.org/w/index.php?title=மீடியாவிக்கி:Gadget-twinkleprotect.js&oldid=3108523" இலிருந்து மீள்விக்கப்பட்டது