Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

speedy: add {{Db-x3}} #2063

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions modules/twinkleconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Twinkle.config.commonSets = {
u1: 'U1', u2: 'U2', u5: 'U5',
f1: 'F1', f2: 'F2', f3: 'F3', f7: 'F7', f8: 'F8', f9: 'F9',
c1: 'C1', c4: 'C4',
r2: 'R2', r3: 'R3', r4: 'R4'
r2: 'R2', r3: 'R3', r4: 'R4', x3: 'X3'
},
csdCriteriaDisplayOrder: [
'db',
Expand All @@ -45,7 +45,7 @@ Twinkle.config.commonSets = {
'u1', 'u2', 'u5',
'f1', 'f2', 'f3', 'f7', 'f8', 'f9',
'c1', 'c4',
'r2', 'r3', 'r4'
'r2', 'r3', 'r4', 'x3'
],
csdCriteriaNotification: {
db: 'Custom rationale ({{db}})',
Expand All @@ -55,7 +55,7 @@ Twinkle.config.commonSets = {
u5: 'U5',
f1: 'F1', f2: 'F2', f3: 'F3', f7: 'F7', f9: 'F9',
c1: 'C1',
r2: 'R2', r3: 'R3', r4: 'R4'
r2: 'R2', r3: 'R3', r4: 'R4', x3: 'X3'
},
csdCriteriaNotificationDisplayOrder: [
'db',
Expand All @@ -64,7 +64,7 @@ Twinkle.config.commonSets = {
'u5',
'f1', 'f2', 'f3', 'f7', 'f9',
'c1',
'r2', 'r3', 'r4'
'r2', 'r3', 'r4', 'x3'
],
csdAndImageDeletionCriteria: {
db: 'Custom rationale ({{db}})',
Expand All @@ -73,7 +73,7 @@ Twinkle.config.commonSets = {
u1: 'U1', u2: 'U2', u5: 'U5',
f1: 'F1', f2: 'F2', f3: 'F3', f4: 'F4', f5: 'F5', f6: 'F6', f7: 'F7', f8: 'F8', f9: 'F9', f11: 'F11',
c1: 'C1', c4: 'C4',
r2: 'R2', r3: 'R3', r4: 'R4'
r2: 'R2', r3: 'R3', r4: 'R4', x3: 'X3'
},
csdAndImageDeletionCriteriaDisplayOrder: [
'db',
Expand All @@ -82,7 +82,7 @@ Twinkle.config.commonSets = {
'u1', 'u2', 'u5',
'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f11',
'c1', 'c4',
'r2', 'r3', 'r4'
'r2', 'r3', 'r4', 'x3'
],
namespacesNoSpecial: {
0: 'Article',
Expand Down
6 changes: 6 additions & 0 deletions modules/twinklespeedy.js
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,11 @@ Twinkle.speedy.redirectList = [
value: 'redirnone',
tooltip: 'This excludes any page that is useful to the project, and in particular: deletion discussions that are not logged elsewhere, user and user talk pages, talk page archives, plausible redirects that can be changed to valid targets, and file pages or talk pages for files that exist on Wikimedia Commons.',
hideWhenMultiple: true
},
{
label: 'X3: Redirects with no space before a parenthetical disambiguation',
value: 'x3',
tooltip: 'This excludes terms that can plausibly be searched for without spaces, or if the redirect contains substantive page history (e.g. from a merge).'
}
];

Expand Down Expand Up @@ -1035,6 +1040,7 @@ Twinkle.speedy.normalizeHash = {
rediruser: 'r2',
redirtypo: 'r3',
redircom: 'r4',
x3: 'x3',
redundantimage: 'f1',
noimage: 'f2',
fpcfail: 'f2',
Expand Down
Loading