Skip to content

Instantly share code, notes, and snippets.

Created December 9, 2012 00:51
Show Gist options
  • Save anonymous/4242795 to your computer and use it in GitHub Desktop.
Save anonymous/4242795 to your computer and use it in GitHub Desktop.
Yet another Articles for creation helper script v4.1.16b3 development package
Current bugs:
*BLP wizard is acting weird and not adding living=yes correctly (the fact that it's not quality rated is my fault, I forgot): <http://en.wikipedia.org/w/index.php?title=Talk:Corey_William_Large&oldid=521930608>
*Occasionally script "crashes" when accepting, causing templates not to be removed correctly: <http://en.wikipedia.org/w/index.php?title=Corey_William_Large&diff=521930584&oldid=521919429>
*Script also seems to crash while reviewing categories, but all edits are completed (reported by Legoktm): <http://commons.wikimedia.org/wiki/File:AFCH_bug3.png>
*Ghost submissions appear while reviewing categories (reported by Legoktm): <http://commons.wikimedia.org/wiki/File:AFCH_bug_1.png> (actual submission: <http://commons.wikimedia.org/wiki/File:AFCH_bug2.png>)
*Notice if an article is categorized or not and automatic tagging (requested by the others): <http://en.wikipedia.org/wiki/Wikipedia_talk:WikiProject_Articles_for_creation#Uncategorized>
*Commentary bug still occurs when marking under review, however it is fixed for standalone commenting
////////////////////////////////////////////
// Yet another AfC helper script
// v.4.1.16b2
////////////////////////////////////////////
// Documentation: <http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Articles_for_creation/Helper_script>
// Release notes: <http://en.wikipedia.org/wiki/Wikipedia:WikiProject_Articles_for_creation/Helper_script/Changelog>
// Bug reporting: <http://en.wikipedia.org/wiki/Wikipedia_talk:WikiProject_Articles_for_creation>
////////////////////////////////////////////
// Release notes:
// Major cleanup of the code
// Preparation for FFU stuff
// BLP "wizard" to automate talk page tagging
// Enabled review tab on all pages in userspace
// Improvements to cleanup functionality
// Updated interface
// Rewrote canned decline comment interface
// Rewrote AfC/R declining to be easier to use
// Change to displayed notice when using an incompatible browser
// Bug fixes
// Removed Herobrine
////////////////////////////////////////////
//<nowiki>
// This script fixes jQuery errors that cause v4.1.15.0 and earlier to have a broken interface
importScript('User:Timotheus Canens/displaymessage.js');
if((wgPageName.indexOf('Wikipedia:Articles_for_creation') != -1)||(wgPageName.indexOf('Wikipedia_talk:Articles_for_creation') != -1)||(wgPageName.indexOf('Wikipedia:Files_for_Upload') != -1)||(wgPageName.indexOf('User:*') != -1)) {
var afcHelper_advert = ' ([[WP:AFCH|AFCH]])';
var pagetext ='';
function afcHelper_escapeHtmlChars(original){
return original
.replace(/&/g, "&amp;")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;")
.replace(/'/g, "&#039;");
}
if (wgPageName.indexOf('Wikipedia:Articles_for_creation/Redirects') != -1) {
var afcHelper_PageName = wgPageName.replace(/_/g, ' ');
var afcHelper_RedirectSubmissions = new Array();
var afcHelper_RedirectSections = new Array();
var afcHelper_numTotal = 0;
var afcHelper_Redirect_AJAXnumber = 0;
var afcHelper_Submissions = new Array();
var afcHelper_redirectDecline_reasonhash = {
'exists': 'The redirect you suggested already exists on Wikipedia',
'blank': 'We cannot accept blank submissions. Please format your submission as directed by the wizard, and make sure it has both a title and a target',
'notarget': ' A redirect cannot be created unless the target is an existing article. Either you have not specified the target, or the target does not exist. Please format your submission as directed by the wizard, and make sure it has both a title and a target',
'unlikely': 'The title you suggested seems unlikely. Could you provide a source showing that it is a commonly used alternate name?',
'nosource': 'You have not given a source to prove your request is valid',
'notredirect': 'This request is not a redirect request, please use the [[WP:WIZ|article wizard]] to file this request',
'custom': ''
};
var afcHelper_categoryDecline_reasonhash = {
'exists': 'The category you suggested already exists on Wikipedia',
'blank': 'We cannot accept empty submissions. Please format your submission as directed by the wizard, and make sure it has both a title and a list of pages that could be filed in this category',
'unlikely': 'It seems unlikely that there are enough pages to support this category. Every category on Wikipedia must have at least one page filed in it (barring maintenance categories)',
'notcategory': 'This request is not a category request, please use the [[WP:WIZ|article wizard]] to file this request',
'custom': ''
};
var afcHelper_otherDecline_reasonhash = {
'notother': 'This request is not a category or redirect request',
'custom': ''
};
function afcHelper_redirect_init(){
afcHelper_RedirectSubmissions = new Array();
afcHelper_RedirectSections = new Array();
afcHelper_numTotal = 0;
pagetext = afcHelper_getPageText(afcHelper_PageName, false);
// let the parsing begin.
// first, strip out the parts before the first section.
var section_re = /==[^=]*==/;
pagetext = pagetext.substring(pagetext.search(section_re));
// now parse it into sections.
section_re = /==[^=]*==/g;
var section_headers = pagetext.match(section_re);
for(var i = 0; i < section_headers.length; i++){
var section_start = pagetext.indexOf(section_headers[i]);
var section_text = pagetext.substring(section_start);
if(i < section_headers.length-1){
var section_end = section_text.substring(section_headers[i].length).indexOf(section_headers[i+1]) + section_headers[i].length;
section_text = section_text.substring(0, section_end);
}
afcHelper_RedirectSections.push(section_text);
}
// parse the sections.
for(var i = 0; i < afcHelper_RedirectSections.length; i++){
var closed = /\{\{\s*afc(?!\s+comment)/i.test(afcHelper_RedirectSections[i]);
if(!closed){
// parse.
var header = afcHelper_RedirectSections[i].match(section_re)[0];
if(header.search(/Redirect request/i) != -1){
//var wikilink_re = /\[\[(\s*[^=]*)*\]\]/g;
var wikilink_re = /\[\[[^\[\]]+\]\]/g; //using old code for now, dunno who changed it or why...
var links = header.match(wikilink_re);
if(!links) continue;
for(var j = 0; j < links.length; j++){
links[j]=links[j].replace(/[\[\]]/g, '');
if(links[j].charAt(0) == ':')
links[j] = links[j].substring(1);
}
var re = /Target of redirect:\s*\[\[([^\[\]]*)\]\]/i;
re.test(afcHelper_RedirectSections[i]);
var to = RegExp.$1;
if(!to){to='';}
var submission = {
type: 'redirect',
from: new Array(),
section: i,
to: to,
title: to
};
for(var j = 0; j < links.length; j++){
var sub = {
type: 'redirect',
to: to,
id: afcHelper_numTotal,
title: links[j],
action: ''
};
submission.from.push(sub);
afcHelper_Submissions.push(sub);
afcHelper_numTotal++;
}
afcHelper_RedirectSubmissions.push(submission);
}
else if(header.search(/Category request/i) != -1){
var wikilink_re = /\[\[[^\[\]]+\]\]/g;
var links = header.match(wikilink_re);
if(!links) continue;
// figure out the parent category.
var idx = afcHelper_RedirectSections[i].substring(header.length).search(/\[\[\s*:\s*(Category:[^\]\[]*)\]\]/i);
var parent = '';
if(idx != -1)
parent = RegExp.$1;
parent = parent.replace(/:\s*/g, ':');
for(var j = 0; j < links.length; j++){
links[j]=links[j].replace(/[\[\]]/g, '');
links[j]=links[j].replace(/Category\s*:\s*/gi, 'Category:');
if(links[j].charAt(0) == ':')
links[j] = links[j].substring(1);
var submission = {
type: 'category',
title: links[j],
section: i,
id: afcHelper_numTotal,
action: '',
parent: parent
};
afcHelper_numTotal++;
afcHelper_RedirectSubmissions.push(submission);
afcHelper_Submissions.push(submission);
}
afcHelper_RedirectSubmissions.push(submission);
}
else{
var sub = {
type: 'other',
to: header,
id: afcHelper_numTotal,
title: header,
action: 'decline'
};
afcHelper_Submissions.push(sub);
afcHelper_numTotal++;
afcHelper_RedirectSubmissions.push(submission);
}
}
}
var text = '<h3>Reviewing AFC redirect requests</h3>';
// now layout the text.
var afcHelper_Redirect_empty=1;
for(var k = 0; k < afcHelper_RedirectSubmissions.length; k++){
text += '<ul>';
if(afcHelper_RedirectSubmissions[k].type == 'redirect'){
text += '<li>Redirect(s) to ';
if((typeof(afcHelper_RedirectSubmissions[k].to) == 'undefined')||(afcHelper_RedirectSubmissions[k].to=='')){
text+='<b>Empty target \#'+afcHelper_Redirect_empty+'</b>: <ul>';
afcHelper_Redirect_empty++;
}
else{
text+='<a href="' + wgArticlePath.replace("$1", encodeURIComponent(afcHelper_RedirectSubmissions[k].to)) + '">' + afcHelper_RedirectSubmissions[k].to + '</a>: <ul>';
}
var afcHelper_Redirect_empty = 1;
for(var l = 0; l < afcHelper_RedirectSubmissions[k].from.length; l++){
var from = afcHelper_RedirectSubmissions[k].from[l];
if((from.title == '')||(from.title == ' ')){
text+='<li><b>From empty source \#'+afcHelper_Redirect_empty+'</b>';
afcHelper_Redirect_empty++;
}
else{
text += '<li>From: <a href="' + wgArticlePath.replace("$1", encodeURIComponent(from.title)) + '">' + from.title + '</a>';
}
text +='<br/><label for="afcHelper_redirect_action_'+ from.id+'">Action: </label>'
+ afcHelper_generateSelect('afcHelper_redirect_action_'+ from.id,
[{ label: 'Accept', value: 'accept' },
{ label: 'Decline', value: 'decline' },
{ label: 'Comment', value: 'comment' },
{ label: 'None', selected : true, value: 'none' }
], 'afcHelper_redirect_onActionChange(' + from.id + ')')
+ '<div id="afcHelper_redirect_extra_' + from.id + '"></div></li>';
}
text += '</ul></li>';
}
else{
text += '<li>Category submission: '+ afcHelper_RedirectSubmissions[k].title;
text += '<br/> <label for="afcHelper_redirect_action_'+ afcHelper_RedirectSubmissions[k].id+'">Action: </label>'
+ afcHelper_generateSelect('afcHelper_redirect_action_'+ afcHelper_RedirectSubmissions[k].id,
[{ label: 'Accept', value: 'accept' },
{ label: 'Decline', value: 'decline' },
{ label: 'Comment', value: 'comment' },
{ label: 'None', selected : true, value: 'none' }
], 'afcHelper_redirect_onActionChange(' + afcHelper_RedirectSubmissions[k].id + ')')
+ '<div id="afcHelper_redirect_extra_' + afcHelper_RedirectSubmissions[k].id + '"></div></li>';
}
text += '</ul>';
}
text += '<input type="button" id="afcHelper_redirect_done_button" name="afcHelper_redirect_done_button" value="Done" onclick="afcHelper_redirect_performActions()" />';
displayMessage(text);
for(i=0; i < afcHelper_RedirectSubmissions.length; i++){
if(afcHelper_RedirectSubmissions[i].to=='')
$('afcHelper_redirect_action_'+ afcHelper_RedirectSubmissions[i].id).val('decline').attr("selected", "selected");
}
}
function afcHelper_redirect_onActionChange(id){
var extra = document.getElementById("afcHelper_redirect_extra_" + id);
var selectValue = document.getElementById("afcHelper_redirect_action_"+id).value;
if(selectValue == 'none')
extra.innerHTML = '';
else if(selectValue == 'accept'){
if(afcHelper_Submissions[id].type == 'redirect'){
extra.innerHTML = '<label for="afcHelper_redirect_from_' + id + '">From: </label><input type="text" '+
'name="afcHelper_redirect_from_' + id + '" id="afcHelper_redirect_from_' + id + '" value="'
+ afcHelper_escapeHtmlChars(afcHelper_Submissions[id].title) + '" />';
extra.innerHTML += '&nbsp;<label for="afcHelper_redirect_to_' + id + '">To: </label><input type="text" '+
'name="afcHelper_redirect_to_' + id + '" id="afcHelper_redirect_to_' + id + '" value="'
+ afcHelper_escapeHtmlChars(afcHelper_Submissions[id].to) + '" />';
extra.innerHTML += '<label for="afcHelper_redirect_append_'+ id +'">Template to append: </label>'
+ afcHelper_generateSelect('afcHelper_redirect_append_'+
id, [
{ label: 'Alternative name', value: 'R from alternative name' },
{ label: 'Alternative language', value: 'R from alternative language' },
{ label: 'Alternative spelling', value: 'R from alternative spelling' },
{ label: 'Redirect to section', value: 'R to section' },
{ label: 'Redirect to Disambiguation page', value: 'R to disambiguation page' },
{ label: 'Redirect to title with diacritics', value: 'R from title with diacritics'},
{ label: 'CamelCase Redirect', value: 'R from CamelCase'},
{ label: 'Redirect from initialism', value: 'R from initialism' },
{ label: 'Redirect from misspelling', value: 'R from misspelling' },
{ label: 'Other (prompt when editing)', value: 'custom' },
{ label: 'Do not add a template', selected : true, value: 'none' }
]);
}
else{
extra.innerHTML = '<label for="afcHelper_redirect_name_' + id + '">name: </label><input type="text" '+
'name="afcHelper_redirect_name_' + id + '" id="afcHelper_redirect_name_' + id + '" value="'
+ afcHelper_escapeHtmlChars(afcHelper_Submissions[id].title) + '" />';
extra.innerHTML += '<label for="afcHelper_redirect_parent_' + id +'">Parent category:</label>'
+ '<input type="text" id="afcHelper_redirect_parent_' + id +'" name="afcHelper_redirect_parent_' + id +
'" value="' + afcHelper_escapeHtmlChars(afcHelper_Submissions[id].parent) + '" />';
}
extra.innerHTML += '<label for="afcHelper_redirect_comment_' + id +'">Comment:</label>'
+ '<input type="text" id="afcHelper_redirect_comment_' + id +'" name="afcHelper_redirect_comment_' + id +'"/>';
} else if(selectValue == 'decline'){
if(afcHelper_Submissions[id].type == 'redirect'){
extra.innerHTML = '<label for="afcHelper_redirect_decline_'+ id +'">Reason for decline: </label>'
+ afcHelper_generateSelect('afcHelper_redirect_decline_'+
id, [
{ label: 'Already exists', value: 'exists' },
{ label: 'Blank request', value: 'blank' },
{ label: 'No valid source specified', value: 'nosource' },
{ label: 'No valid target specified', value: 'notarget' },
{ label: 'Unlikely search term', value: 'unlikely' },
{ label: 'Not a redirect request', value: 'notredirect' },
{ label: 'Custom reason (enter in comment box)', selected : true, value: 'custom' }
]);
}
else {
extra.innerHTML = '<label for="afcHelper_redirect_decline_'+ id +'">Reason for decline: </label>'
+ afcHelper_generateSelect('afcHelper_redirect_decline_'+
id, [
{ label: 'Already exists', value: 'exists' },
{ label: 'Blank request', value: 'blank' },
{ label: 'Unlikely category', value: 'unlikely' },
{ label: 'Not a category request', value: 'notcategory' },
{ label: 'Custom - reason below', selected : true, value: 'custom' }
]);
}
extra.innerHTML += '<label for="afcHelper_redirect_comment_' + id +'">Comment:</label>'
+ '<input type="text" id="afcHelper_redirect_comment_' + id +'" name="afcHelper_redirect_comment_' + id +'"/>';
} else{
extra.innerHTML = '<label for="afcHelper_redirect_comment_' + id +'">Comment:</label>'
+ '<input type="text" id="afcHelper_redirect_comment_' + id +'" name="afcHelper_redirect_comment_' + id +'"/>';
}
}
function afcHelper_redirect_performActions(){
// Load all of the data.
for(var i = 0; i < afcHelper_Submissions.length; i++){
var action = document.getElementById("afcHelper_redirect_action_" + i).value;
afcHelper_Submissions[i].action = action;
if(action == 'none')
continue;
if(action == 'accept'){
if(afcHelper_Submissions[i].type == 'redirect'){
afcHelper_Submissions[i].title = document.getElementById("afcHelper_redirect_from_" + i).value;
afcHelper_Submissions[i].to = document.getElementById("afcHelper_redirect_to_" + i).value;
afcHelper_Submissions[i].append = document.getElementById("afcHelper_redirect_append_" + i).value;
if(afcHelper_Submissions[i].append == 'custom'){
afcHelper_Submissions[i].append = prompt("Please enter the template to append for " + afcHelper_Submissions[i].title
+ ". Do not include the curly brackets.");
}
if(afcHelper_Submissions[i].append == 'none' || afcHelper_Submissions[i].append == null)
afcHelper_Submissions[i].append = '';
else
afcHelper_Submissions[i].append = '\{\{' + afcHelper_Submissions[i].append + '\}\}';
}
else{
afcHelper_Submissions[i].title = document.getElementById("afcHelper_redirect_name_" + i).value;
afcHelper_Submissions[i].parent = document.getElementById("afcHelper_redirect_parent_" + i).value;
}
}
else if (action == 'decline'){
afcHelper_Submissions[i].reason = document.getElementById('afcHelper_redirect_decline_' + i).value;
}
afcHelper_Submissions[i].comment = document.getElementById("afcHelper_redirect_comment_" + i).value;
}
// Data loaded. Show progress screen and get edit token and WP:AFC/R page text.
displayMessage('<ul id="afcHelper_status"></ul><ul id="afcHelper_finish"></ul>');
document.getElementById('afcHelper_finish').innerHTML += '<span id="afcHelper_finished_wrapper"><span id="afcHelper_finished_main" style="display:none"><li id="afcHelper_done"><b>Done (<a href="'+ wgArticlePath.replace("$1", encodeURI(afcHelper_PageName))+'?action=purge" title="'+afcHelper_PageName+'">Reload page</a>)</b></li></span></span>';
var token = afcHelper_getToken(true);
pagetext = afcHelper_getPageText(afcHelper_PageName, true);
var totalaccept = 0;
var totaldecline = 0;
var totalcomment = 0;
// traverse the submissions and locate the relevant sections.
for(var i = 0; i < afcHelper_RedirectSubmissions.length; i++){
var sub = afcHelper_RedirectSubmissions[i];
if(pagetext.indexOf(afcHelper_RedirectSections[sub.section]) == -1){
// Someone has modified the section in the mean time. Skip.
document.getElementById('afcHelper_status').innerHTML += '<li>Skipping ' + sub.title + ': Cannot find section. Perhaps it was modified in the mean time?</li>';
continue;
}
var text = afcHelper_RedirectSections[sub.section];
var startindex = pagetext.indexOf(afcHelper_RedirectSections[sub.section]);
var endindex = startindex + text.length;
// First deal with cats. These are easy.
if(sub.type == 'category'){
if(sub.action == 'accept'){
var cattext = '<!--Created by WP:AFC -->';
if(sub.parent != '' )
cattext = '\[\['+ sub.parent + '\]\]';
afcHelper_editPage(sub.title, cattext, token, 'Created via \[\[WP:AFC|Articles for creation\]\] (\[\[WP:WPAFC|you can help!\]\])', true);
var talktext = '\{\{subst:WPAFC/article|class=Cat\}\}';
var talktitle = sub.title.replace(/Category:/gi, 'Category talk:');
afcHelper_editPage(talktitle, talktext, token, 'Placing [[WP:AFC]] project banner', true);
var header = text.match(/==[^=]*==/)[0];
text = header + "\n\{\{AfC-c|a\}\}\n" + text.substring(header.length);
if(sub.comment != '')
text += '\n*\{\{subst:afc category|accept|2=' + sub.comment +'\}\} \~\~\~\~\n';
else
text += '\n*\{\{subst:afc category\}\} \~\~\~\~\n';
text += '\{\{AfC-c|b\}\}\n';
totalaccept ++;
}
else if (sub.action == 'decline'){
var header = text.match(/==[^=]*==/)[0];
var reason = afcHelper_categoryDecline_reasonhash[sub.reason];
if(reason == '')
reason = sub.comment;
else if (sub.comment != '')
reason = reason + ': ' + sub.comment;
if(reason == ''){
document.getElementById('afcHelper_status').innerHTML += '<li>Skipping ' + sub.title + ': No decline reason specified.</li>';
continue;
}
text = header + "\n\{\{AfC-c|d\}\}\n" + text.substring(header.length);
if(sub.comment == '')
text += '\n*\{\{subst:afc category|' + sub.reason +'\}\} \~\~\~\~\n';
else
text += '\n*\{\{subst:afc category|decline|2=' + reason +'\}\} \~\~\~\~\n';
text += '\{\{AfC-c|b\}\}\n';
totaldecline++;
}
else if (sub.action == 'comment'){
if(sub.comment != '')
text += '\n\{\{afc comment|1=' + sub.comment +'\~\~\~\~\}\}\n';
totalcomment++;
}
}
else {
// redirects......
var acceptcomment = '';
var declinecomment = '';
var othercomment = '';
var acceptcount = 0, declinecount = 0, commentcount = 0, hascomment = false;
for(var j = 0; j < sub.from.length; j++){
var redirect = sub.from[j];
if(redirect.action == 'accept'){
var redirecttext = '#REDIRECT \[\[' + redirect.to + '\]\]\n' + redirect.append;
afcHelper_editPage(redirect.title, redirecttext, token, 'Created via \[\[WP:AFC|Articles for creation\]\] (\[\[WP:WPAFC|you can help!\]\])', true);
var talktext = '\{\{subst:WPAFC/redirect\}\}';
var talktitle = 'Talk:' + redirect.title;
afcHelper_editPage(talktitle, talktext, token, 'Placing [[WP:AFC]] project banner', true);
acceptcomment += redirect.title + " &rarr; " + redirect.to;
if(redirect.comment != ''){
acceptcomment += ': ' + redirect.comment + '; ';
hascomment = true;
} else
acceptcomment += '; ';
acceptcount ++;
}
else if (redirect.action == 'decline'){
var reason = afcHelper_redirectDecline_reasonhash[redirect.reason];
if(reason == '')
reason = redirect.comment;
else if (redirect.comment != '')
reason = reason + ': ' + redirect.comment;
if(reason == ''){
document.getElementById('afcHelper_status').innerHTML += '<li>Skipping ' + redirect.title + ': No decline reason specified.</li>';
continue;
}
declinecomment += redirect.title + " &rarr; " + redirect.to + ": " + reason + "; ";
declinecount ++;
}
else if (redirect.action == 'comment'){
othercomment += redirect.title + ": " + redirect.comment + ", ";
commentcount ++;
}
}
var reason = '';
if(acceptcount > 0)
reason += '\n*\{\{subst:afc redirect|accept|2=' + acceptcomment + ' Thank you for your contributions to Wikipedia!\}\} \~\~\~\~';
if (declinecount > 0)
reason += '\n*\{\{subst:afc redirect|decline|2=' + declinecomment + '\}\} \~\~\~\~';
if(commentcount > 0)
reason += '\n*\{\{afc comment|1=' + othercomment + '\~\~\~\~\}\}';
reason += '\n';
if(!hascomment && acceptcount == sub.from.length){
if(acceptcount > 1)
reason = '\n*\{\{subst:afc redirect|all\}\} \~\~\~\~\n';
else
reason = '\n*\{\{subst:afc redirect\}\} \~\~\~\~\n';
}
if(acceptcount + declinecount + commentcount > 0){
if(acceptcount + declinecount == sub.from.length){
// Every request disposed of. Close.
var header = text.match(/==[^=]*==/)[0];
if(acceptcount > declinecount)
text = header + "\n\{\{AfC-c|a\}\}\n" + text.substring(header.length);
else
text = header + "\n\{\{AfC-c|d\}\}\n" + text.substring(header.length);
text += reason;
text += '\{\{AfC-c|b\}\}\n';
}
else
text += reason +'\n';
}
totalaccept += acceptcount;
totaldecline += declinecount;
totalcomment += commentcount;
}
pagetext = pagetext.substring(0, startindex) + text + pagetext.substring(endindex);
}
var summary = "Updating submission status:";
if(totalaccept > 0)
summary += " accepting " + totalaccept + " request" + (totalaccept > 1 ? 's' : '');
if(totaldecline > 0){
if(totalaccept > 0)
summary += ',';
summary += " declining " + totaldecline + " request" + (totaldecline > 1 ? 's' : '');
}
if(totalcomment > 0){
if(totalaccept > 0 || totaldecline > 0)
summary += ',';
summary += " commenting on " + totalcomment + " request" + (totalcomment > 1 ? 's' : '');
}
afcHelper_editPage(afcHelper_PageName, pagetext, token, summary, false);
document.getElementById('afcHelper_finished_main').style.display = '';
}
function afcHelper_redirect_addLink() {
addPortletLink("p-cactions", "javascript:afcHelper_redirect_init()", "Review", "ca-afcHelper", "Review");
}
addOnloadHook(afcHelper_redirect_addLink);
}
else if (wgPageName.indexOf('Wikipedia:Articles_for_creation/') != -1 || wgPageName.indexOf('Wikipedia_talk:Articles_for_creation/') != -1) {
var afcHelper_PageName = wgPageName.replace(/_/g, ' ');
var afcHelper_AJAXnumber = 0;
var afcHelper_submissionTitle = wgTitle.replace(/Articles for creation\//g, '');
var afcHelper_reasonhash = {
'v': 'submission is unsourced or contains only unreliable sources',
'ilc': 'submission is a BLP with inadequate inline citation',
'blank': 'submission is blank',
'lang': 'submission is not in English',
'cv': 'submission is a copyright violation',
'exists': 'submission already exists in main space',
'dup': 'submission is a duplicate of another submission',
'redirect': 'submission is a redirect request',
'test': 'submission is a test edit',
'news': 'submission appears to be a news report of a single event',
'dict': 'submission is a dictionary definition',
'joke': 'submission appears to be a joke',
'blp': 'submission does not conform to BLP',
'neo': 'submission is a neologism',
'npov': 'submission is not written from a neutral point of view',
'adv': 'submission is written like an advertisement',
'context': 'submission provides insufficient context',
'mergeto': 'submission is too short but can be merged',
'plot': 'submission is a plot summary',
'essay': 'submission reads like an essay',
'not': 'submission is covered by WP:NOT',
'nn': 'subject appears to be non-notable',
'web': 'subject appears to be non-notable web content',
'prof': 'subject appears to be a non-notable academic',
'athlete': 'subject appears to be a non-notable athlete',
'music': 'subject appears to be a non-notable musical performer or work',
'film': 'subject appears to be a non-notable film',
'corp': 'subject appears to be a non-notable company or organization',
'bio': 'subject appears to be a non-notable person',
'reason': ''
};
function afcHelper_init() {
if (!wfSupportsAjax()) {
displayMessage('<span style="color:red; font-size:120%">Uh oh. Your browser appears to be too old to handle this script or does not support AJAX. Please use the latest version of Mozilla Firefox, Apple Safari, or Opera for the best results. Sorry about that.</span>');
return;
}
form = '<div id="afcHelper_initialform">';
form += afcHelper_blanking();
form +='<h3>Reviewing '+afcHelper_PageName+'</h3>'+
'<input type="button" id="afcHelper_accept_button" name="afcHelper_accept_button" value="Accept" onclick="afcHelper_prompt(\'accept\')" style="border-radius:3px; background-color:#adfcad" />'+
'<input type="button" id="afcHelper_decline_button" name="afcHelper_decline_button" value="Decline" onclick="afcHelper_prompt(\'decline\')" style="border-radius:3px; background-color:#ffcdd5" />'+
'<input type="button" id="afcHelper_comment_button" name="afcHelper_comment_button" value="Comment" onclick="afcHelper_prompt(\'comment\')" style="border-radius:3px; background-color:#f3eba3" />'+
'<input type="button" id="afcHelper_mark_button" name="afcHelper_mark_button" value="Mark as reviewing" onclick="afcHelper_prompt(\'mark\')" style="border-radius:3px; background-color:#b1dae8" />'+
'<input type="button" id="afcHelper_misc_button" name="afcHelper_misc_button" value="Other options" onclick="afcHelper_prompt(\'misc\')" style="border-radius:3px; background-color:#d2d3cc" />'+
'<div id="afcHelper_extra"></div>';
displayMessage(form);
}
function afcHelper_prompt(type) {
if(type == 'accept'){
var text = '<h3>Accepting '+afcHelper_PageName+'</h3>'+
'<label for="afcHelper_movetarget">Move submission to: </label><input type="text" id="afcHelper_movetarget" name="afcHelper_movetarget" value="' +afcHelper_escapeHtmlChars(afcHelper_submissionTitle) +'" />'+
'<br /><label for="afcHelper_assessment">Assessment (optional): </label>';
var assessmentSelect = afcHelper_generateSelect("afcHelper_assessment",
[{ label: 'B-class', value: 'B' },
{ label: 'C-class', value: 'C' },
{ label: 'Start-class', value: 'start' },
{ label: 'Stub-class', value: 'stub' },
{ label: 'List-class', value: 'list' },
{ label: 'Disambig-class', value: 'disambig' },
{ label: 'Redirect-class', value: 'redirect' },
{ label: 'Portal-class', value: 'portal' },
{ label: 'Disambig-class', value: 'disambig' },
{ label: 'Project-class', value: 'project' },
{ label: 'Template-class', value: 'template' },
{ label: 'NA-class', value: 'na' },
{ label: 'None', selected : true, value: '' }
], null);
text += assessmentSelect;
text += '<br /><label for="afcHelper_pagePrepend">Prepend to page (optional, e.g. maintain boxes, etc.): </label><textarea rows="3" cols="60" name="afcHelper_pagePrepend" id="afcHelper_pagePrepend"></textarea>'+
'<br /><label for="afcHelper_pageAppend">Append to page (optional, e.g. categories, stub-tags, etc.): </label><textarea rows="3" cols="60" name="afcHelper_pageAppend" id="afcHelper_pageAppend"></textarea>'+
'<br /><label for="afcHelper_talkAppend">Append to talk page (optional, e.g. WikiProjects, &#123;&#123;reqphoto&#125;&#125;, &#123;&#123;reqinfobox&#125;&#125;): </label><textarea rows="3" cols="60" name="afcHelper_talkAppend" id="afcHelper_talkAppend"></textarea>'+
'<br /><label for="afcHelper_biography">Is the article a biography? </label><input type="checkbox" name="afcHelper_biography" id="afcHelper_biography" onchange=afcHelper_trigger(\'afcHelper_biography_blp\') />'+
'<div id="afcHelper_biography_blp" name="afcHelper_biography_blp" style="display:none"><br /><label for="afcHelper_dateofbirth">Date of birth (if known/given, e.g. <i>November 2</i>)? </label><input type="text" id="afcHelper_dateofbirth" name="afcHelper_dateofbirth" />'+
'<br /><label for="afcHelper_yearofbirth">Year of birth (if known/given)? </label><input type="text" id="afcHelper_yearofbirth" name="afcHelper_yearofbirth" />'+
'<br /><label for="afcHelper_listas">Surname, Name (if known/given, e.g. <i>Bush, George Walker</i>)? </label><input type="text" id="afcHelper_listas" name="afcHelper_listas" />'+
'<br /><label for="afcHelper_shortdescription">A very short description (two words) about the person, see also <a href="'+wgArticlePath.replace("$1", 'Wikipedia:Persondata#Short_description')+'" title="Wikipedia:Persondata#Short_description" target="_blank">Wikipedia:Persondata</a>: </label><input type="text" id="afcHelper_shortdescription" name="afcHelper_shortdescription" />'+
'<br /><label for="afcHelper_alternativesname">Alternative names: </label><input type="text" id="afcHelper_alternativesname" name="afcHelper_alternativesname" />'+
'<br /><label for="afcHelper_placeofbirth">The place of birth (if known): </label><input type="text" id="afcHelper_placeofbirth" name="afcHelper_placeofbirth" />'+
'<br /><label for="afcHelper_biography_blp">About a living person? </label>'+
afcHelper_generateSelect('afcHelper_biography_blp',
[{ label: 'Living', value: 'live' },
{ label: 'Dead', value: 'dead' },
{ label: 'Unknown', selected : true, value: 'unknown' }
], "afcHelper_onChange(this)") +
'</div><div id="afcHelper_extra_inline" name="afcHelper_extra_inline"></div>'+
'<br/><input type="button" id="afcHelper_prompt_button" name="afcHelper_prompt_button" value="Accept and publish to mainspace" onclick="afcHelper_act(\'accept\')" style="border-radius:3px; background-color:#adfcad" />';
document.getElementById('afcHelper_extra').innerHTML = text;
}
else if(type == 'decline'){
var text = '<h3>Declining '+afcHelper_PageName+'</h3>'+
'<label for="afcHelper_reason">Reason for ' + type + ': </label>';
var reasonSelect = afcHelper_generateSelect("afcHelper_reason",
// Duplicate articles
[{ label: 'exists - Submission is duplicated by another article already in mainspace', value: 'exists' },
{ label: 'dup - Submission is duplicated by another article already submitted and in AfC space', value: 'dup' },
// Test edits
{ label: 'blank - Submission is blank', value: 'blank' },
{ label: 'test - Submission appears to be a test edit (please ensure that it is not a test of a tool before declining)', value: 'test' },
// BLP
{ label: 'blp - Blatant violation of BLP policies (immediately blank and mark for deletion)', value: 'blp' },
{ label: 'ilc - BLP does not meet minimum inline citation requirements (WP:MINREF)', value: 'ilc' },
// Merging
{ label: 'mergeto - Submission should be merged into another article (type a comment with a link to the article below in the comment box)', value: 'mergeto' },
// Blatant [[WP:NOT]] violations
{ label: 'joke - Submission appears to be a joke', value: 'joke' },
{ label: 'not - Submission is covered under "What Wikipedia is not"', value: 'not' },
// Prose issues
{ label: 'lang - Submission is not in English', value: 'lang' },
{ label: 'cv - Submission is a copyright violation (blank the article, enter links in the box below, and mark for deletion)', value: 'cv' },
{ label: 'redirect - Submission is a redirect request', value: 'redirect' },
{ label: 'news - Submission appears to be a news story of a single event', value: 'news' },
{ label: 'dict - Submission is a dictionary definition', value: 'dict' },
{ label: 'plot - Submission consists mostly of a plot summary', value: 'plot' },
{ label: 'adv - Submission reads like an advertisement', value: 'adv' },
{ label: 'context - Submission provides insufficient context', value: 'context' },
{ label: 'essay - Submission reads like an essay', value: 'essay' },
{ label: 'npov - Submission does not read in an encyclopedic tone', value: 'npov' },
// Notability
{ label: 'neo - Submission is about a neologisim that does not meet notability guidelines', value: 'neo' },
{ label: 'web - Submission is about web content does not meet notability guidelines', value: 'web' },
{ label: 'prof - Submission is about a professor does not meet notability guidelines', value: 'prof' },
{ label: 'athlete - Submission is about an athlete does not meet notability guidelines', value: 'athlete' },
{ label: 'music - Submission is about a musician or musical work does not meet notability guidelines', value: 'music' },
{ label: 'film - Submission is about a film does not meet notability guidelines', value: 'film' },
{ label: 'corp - Submission is about a company or organization does not meet notability guidelines', value: 'corp' },
{ label: 'bio - Submission is about a person does not meet notability guidelines', value: 'bio' },
{ label: 'nn - Submission does not meet general notability guidelines (use a more specific reason if possible)', value: 'nn' },
// Sourcing
{ label: 'v - Submission is improperly sourced', value: 'v' },
// Custom
{ label: 'Select a reason for declining', selected : true, value: 'reason' }
], "afcHelper_onChange(this)");
text += reasonSelect;
text += '<br /><label for="afcHelper_comments">Additional comments (optional, signature is automatically added): </label><textarea rows="3" cols="60" name="afcHelper_comments" id="afcHelper_comments"></textarea>'+
'<label for="afcHelper_blank">Blank the submission (replace the content with {{<a href="'+wgArticlePath.replace("$1", 'Template:Afc_cleared')+'" title="Template:Afc cleared" target="_blank">afc cleared</a>}}):</label><input type="checkbox" name="afcHelper_blank" id="afcHelper_blank" onchange=afcHelper_trigger(\'afcHelper_extra_afccleared\') /><br/><div id="afcHelper_extra_afccleared" name="afcHelper_extra_afccleared" style="display:none"><label for="afcHelper_afccleared">Trigger the \'csd\' parameter and nominate the submission for CSD? (replace the content with {{<a href="'+wgArticlePath.replace("$1", 'Template:Afc_cleared')+'" title="Template:Afc cleared" target="_blank">afc cleared|csd</a>}}):</label><input type="checkbox" name="afcHelper_blank_csd" id="afcHelper_blank_csd" checked="checked" /><br/></div>' +
'<label for="afcHelper_notify">Notify author:</label><input type="checkbox" onchange=afcHelper_trigger(\'afcHelper_notify_Teahouse\') name="afcHelper_notify" id="afcHelper_notify" checked="checked" /><br/>' +
'<div id="afcHelper_notify_Teahouse"><label for="afcHelper_notify_Teahouse">Notify author about <a href="'+wgArticlePath.replace("$1", 'Wikipedia:Teahouse')+'" title="Wikipedia:Teahouse" target="_blank">Wikipedia:Teahouse</a> <small>(works only in combination with the normal notification)</small>:</label><input type="checkbox" name="afcHelper_Teahouse" id="afcHelper_Teahouse" /><br/></div><div id="afcHelper_extra_inline" name="afcHelper_extra_inline"></div><input type="button" id="afcHelper_prompt_button" name="afcHelper_prompt_button" value="Decline" onclick="afcHelper_act(\'decline\')" style="border-radius:3px; background-color:#ffcdd5" />';
document.getElementById('afcHelper_extra').innerHTML = text;
}
else if(type == 'misc'){
var text = '<h3>Other options for '+afcHelper_PageName+'</h3>'+
'<input type="button" id="afcHelper_cleanup_button" name="afcHelper_cleanup_button" value="Clean the submission" onclick="afcHelper_act(\'cleanup\')" style="border-radius:3px; background-color:#d2d3cc" />'+
// '<input type="button" disabled="true" id="afcHelper_resubmit_button" name="afcHelper_resubmit_button" value="Resubmit" onclick="afcHelper_prompt(\'resubmit\')" style="border-radius:3px; background-color:#f3eba3" />'+
// '<input type="button" disabled="true" id="afcHelper_resubmit2_button" name="afcHelper_resubmit2_button" value="Mark as draft submission" onclick="afcHelper_prompt(\'resubmit2\')" style="border-radius:3px; background-color:#d2d3cc" />';
// '<input type="button" disabled="true" id="afcHelper_about_button" name="afcHelper_resubmit2_button" value="About AFCH" onclick="afcHelper_prompt(\'about\')" style="border-radius:3px; background-color:white" />';
'<div id="afcHelper_extra"></div>';
document.getElementById('afcHelper_extra').innerHTML = text;
}
else if(type == 'resubmit'){
var text = '<br /><br /><h3>Place a submission template on '+afcHelper_PageName+'</h3><br />'+
'<label for="afcHelper_first_submitter">Submitter is the page creator: </label><input type="checkbox" name="afcHelper_first_submitter" id="afcHelper_first_submitter" /><br/>' +
'<label for="afcHelper_blank_submitter">Without any submitter: </label><input type="checkbox" name="afcHelper_blank_submitter" id="afcHelper_blank_submitter" /><br/>' +
'<label for="afcHelper_custom_submitter">With any particular submitter: </label><textarea rows="3" cols="60" name="afcHelper_custom_submitter" id="afcHelper_custom_submitter"></textarea>'+
'<input type="button" id="afcHelper_resubmit_button" name="afcHelper_resubmit2_button" value="Placing a draft template" onclick="afcHelper_act(\'resubmit\')" />';
document.getElementById('afcHelper_extra').innerHTML += text;
}
else if(type == 'mark'){
var text = '<h3>Marking submission ' +afcHelper_PageName+'for reviewing</h3>'+
'<br /><label for="afcHelper_comments">Additional comment (signature is automatically added): </label><textarea rows="3" cols="60" name="afcHelper_comments" id="afcHelper_comments"></textarea><br/><input type="button" id="afcHelper_prompt_button" style="padding:.2em .6em; border:1px solid; border-color:#aaa #555 #555 #aaa; border-radius:3px; background-color:#b1dae8" name="afcHelper_prompt_button" value="Place under review" onclick="afcHelper_act(\'mark\')" />';
document.getElementById('afcHelper_extra').innerHTML = text;
}
else if(type == 'comment'){
var text = '<h3>Commenting on ' +afcHelper_PageName+' </h3>'+
'<br /><label for="afcHelper_comments">Comment (signature is automatically added): </label><textarea rows="3" cols="60" name="afcHelper_comments" id="afcHelper_comments"></textarea><br/><input type="button" id="afcHelper_prompt_button" name="afcHelper_prompt_button" value="Add comment" onclick="afcHelper_act(\'comment\')" style="border-radius:3px; background-color:#f3eba3" />';
document.getElementById('afcHelper_extra').innerHTML = text;
}
}
function afcHelper_act(action) {
if(action == 'accept'){
var newtitle = document.getElementById("afcHelper_movetarget").value;
var assessment = document.getElementById("afcHelper_assessment").value;
var pagePrepend = document.getElementById("afcHelper_pagePrepend").value;
var pageAppend = document.getElementById("afcHelper_pageAppend").value;
var talkAppend = document.getElementById("afcHelper_talkAppend").value;
var biography = document.getElementById("afcHelper_biography").checked;
if (biography){
var living = document.getElementById("afcHelper_biography_blp").value; //dropdown menu
var yearofbirth = document.getElementById("afcHelper_yearofbirth").value;
var dateofbirth = document.getElementById("afcHelper_dateofbirth").value;
var listas = document.getElementById("afcHelper_listas").value;
var shortdescription = document.getElementById("afcHelper_shortdescription").value;
var alternativesname = document.getElementById("afcHelper_alternativesname").value;
var placeofbirth = document.getElementById("afcHelper_placeofbirth").value;
var placeofdeath = '';
var yearofdeath ='';
var dateofdeath ='';
if(living=='dead'){
yearofdeath = document.getElementById("afcHelper_yearofdeath").value;
dateofdeath = document.getElementById("afcHelper_dateofdeath").value;
placeofdeath = document.getElementById("afcHelper_placeofdeath").value;
}
}
displayMessage('<ul id="afcHelper_status"></ul><ul id="afcHelper_finish"></ul>');
document.getElementById('afcHelper_finish').innerHTML += '<span id="afcHelper_finished_wrapper"><span id="afcHelper_finished_main" style="display:none"><li id="afcHelper_done"><b>Done (<a href="'+wgArticlePath.replace("$1", encodeURI(afcHelper_PageName))+'?action=purge" title="'+afcHelper_PageName+'">Reload page</a>)</b></li></span></span>';
var token = afcHelper_getToken(true);
var callback = function(){
var username ='';
// clean up page
var afc_re = /\{\{\s*afc submission\s*\|(?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
if(afc_re.test(pagetext)){
var afctemplate = afc_re.exec(pagetext)[0];
var author_re = /\|\s*u=\s*[^\|]*\|/i;
if(author_re.test(afctemplate)){
var user = author_re.exec(afctemplate)[0];
username = user.split(/=/)[1];
username = username.replace(/\|/g,'');
var usertext = afcHelper_getPageText("User talk:"+username, true);
usertext += "\n== Your submission at \[\[WP:AFC|Articles for creation\]\] ==";
usertext += "\n\{\{subst:afc talk|1=" + newtitle + "|class=" + assessment + "|sig=yes\}\}";
afcHelper_editPage("User talk:"+username, usertext, token, 'Your submission at \[\[WP:AFC|Articles for creation\]\]', false);
}
}
var recenttext = afcHelper_getPageText("Wikipedia:Articles for creation/recent", true);
var newentry = "\{\{afc contrib|" + assessment + "|" + newtitle + "|" + username +"\}\}\n";
var lastentry = recenttext.toLowerCase().lastIndexOf("\{\{afc contrib");
var firstentry = recenttext.toLowerCase().indexOf("\{\{afc contrib");
recenttext = recenttext.substring(0, lastentry);
recenttext = recenttext.substring(0, firstentry) + newentry + recenttext.substring(firstentry);
afcHelper_editPage("Wikipedia:Articles for creation/recent", recenttext, token, 'Updating recent AFC creations' , false);
var talktext = "\{\{talkheader\}\}\n";
if(biography){
talktext += "\{\{WikiProject Biography|living=";
if(living=='living')
talktext += "yes\}\}";
else if(living=='dead')
talktext += "no\}\}";
talktext += "|class=" + assessment + "|listas=" + listas + "\}\}";
}
talktext +="\n\{\{subst:WPAFC/article|class=" + assessment + "\}\}\n"+talkAppend;
var testtemplate = /Template:/i;
var testcat = /Category:/i;
var testwp = /Wikipedia:/i;
var testportal = /Portal:/i;
var newtalktitle;
if(testtemplate.test(newtitle)){
newtalktitle = newtitle.replace(/Template:/i, '');
newtalktitle = 'Template talk:'+newtalktitle;}
else if(testcat.test(newtitle)){
newtalktitle = newtitle.replace(/Category:/i, '');
newtalktitle = 'Category talk:'+newtalktitle;}
else if(testwp.test(newtitle)){
newtalktitle = newtitle.replace(/Wikipedia:/i, '');
newtalktitle = 'Wikipedia talk:'+newtalktitle;}
else if(testportal.test(newtitle)){
newtalktitle = newtitle.replace(/Portal:/i, '');
newtalktitle = 'Portal talk:'+newtalktitle;}
else
newtalktitle = 'Talk:'+newtitle;
afcHelper_editPage(newtalktitle, talktext, token, 'Placing [[WP:AFC]] project banner', false);
while(afc_re.test(pagetext)){
var startindex = pagetext.search(afc_re);
var template = afc_re.exec(pagetext)[0];
var endindex = startindex + template.length;
pagetext = pagetext.substring(0, startindex) + pagetext.substring(endindex);
}
var cmt_re = /\{\{\s*afc comment\s*\|(?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
while(cmt_re.test(pagetext)){
var startindex = text.search(cmt_re);
var template = cmt_re.exec(pagetext)[0];
var endindex = startindex + template.length;
pagetext = pagetext.substring(0, startindex) + pagetext.substring(endindex);
}
var afcindex = pagetext.search(/\{\{afc/i);
while (afcindex != -1){
var endindex = pagetext.indexOf("\}\}", afcindex + 2);
pagetext = pagetext.substring(0,afcindex) + pagetext.substring(endindex+2);
afcindex = pagetext.search(/\{\{afc/i);
}
if(pagetext.indexOf("\<\!--- Important, do not remove this line before article has been created. ---\>") != -1){
var startindex = pagetext.indexOf("\<\!--- Important, do not remove this line before article has been created. ---\>");
var endindex = pagetext.indexOf(">", startindex);
pagetext = pagetext.substring(0, startindex) + pagetext.substring(endindex+1);
}
// Uncomment cats (after the cleanup commented them)
pagetext = pagetext.replace(/\[\[:Category/gi, "\[\[Category");
// [[Template:L]]
var templatel='\n';
if(biography){
templatel = '\n\{\{Persondata\n| NAME ='+listas+
'\n| ALTERNATIVE NAMES = '+alternativesname+
'\n| SHORT DESCRIPTION = '+shortdescription+
'\n| DATE OF BIRTH = '+dateofbirth+ ', '+yearofbirth+
'\n| PLACE OF BIRTH = '+placeofbirth+
'\n| DATE OF DEATH = '+dateofdeath+ ', '+yearofdeath+
'\n| PLACE OF DEATH = '+placeofdeath+'\n\}\}'
templatel+='\n\{\{subst:L|';
if(yearofbirth=='')
templatel+='MISSING|';
else
templatel+=yearofbirth+'|';
if(living=='dead'){
if(yearofdeath=='')
templatel+='MISSING|';
else
templatel+=yearofdeath+'|';
}
else{
templatel+='LIVING|';
}
templatel+='|'+listas+'\}\}\n';
}
pagetext = pagePrepend + '\n' + pagetext + templatel + pageAppend;
afcHelper_editPage(newtitle, pagetext, token, "Cleanup following [[WP:AFC]] creation", false);
};
afcHelper_movePage(afcHelper_PageName, newtitle, token, 'Created via \[\[WP:AFC|Articles for creation\]\] (\[\[WP:WPAFC|you can help!\]\])' , callback);
}
else if(action == 'decline'){
var code = document.getElementById("afcHelper_reason").value;
var reasontext = afcHelper_reasonhash[code];
var customreason = document.getElementById("afcHelper_comments").value;
var append = false;
var keep = false;
var blank = document.getElementById("afcHelper_blank").checked;
var blank_csd = document.getElementById("afcHelper_blank_csd").checked;
var notify = document.getElementById("afcHelper_notify").checked;
var teahouse = document.getElementById("afcHelper_Teahouse").checked;
var extra = '';
if(code == 'cv' || code == 'dup' || code == 'mergeto' || code == 'exists' || code == 'lang' || code == 'plot'){
extra = document.getElementById("afcHelper_extra_inlinebox").value;
}
if(extra == null){
return;
}
displayMessage('<ul id="afcHelper_status"></ul><ul id="afcHelper_finish"></ul>');
document.getElementById('afcHelper_finish').innerHTML += '<span id="afcHelper_finished_wrapper"><span id="afcHelper_finished_main" style="display:none"><li id="afcHelper_done"><b>Done (<a href="'+wgArticlePath.replace("$1", encodeURI(afcHelper_PageName))+'?action=purge" title="'+afcHelper_PageName+'">Reload page</a>)</b></li></span></span>';
var token = afcHelper_getToken(true);
// Find the first pending submission or marked as review on the page.
var afc_re = /\{\{\s*afc submission\s*\|\s*[||h|r](?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
if( !afc_re.test(pagetext) ) {
alert( "Unable to locate AFC submission template, aborting..." );
return;
}
//TEMP: removing after cleanup works
var afctemplate = afc_re.exec(pagetext)[0];
//moving the first hit to the top
pagetext=pagetext.replace(afctemplate, '');
pagetext=afctemplate+pagetext;
//TEMP END: removing after cleanup works
var notifytemplate = "afc decline";
if(code == 'reason' && customreason == ''){
alert("You must enter a reason!");
return;
}
var startindex = pagetext.indexOf(afctemplate);
var endindex = startindex + afctemplate.length;
//data is always between the first pipe and the one before the timestamp.
var firstpipe = afctemplate.indexOf('|');
var endpipe = afctemplate.indexOf('|ts');
var newtemplate = afctemplate.substring(0, firstpipe);
var summary = '';
var newcomment = '';
// overwrite any reason that was there.
newtemplate += '|d|'+code;
if(code == 'reason'){
newtemplate += '|3=' + customreason;
}
else if(extra != ''){
newtemplate += '|3=' + extra;
}
newtemplate += '|declinets=\{\{subst:CURRENTTIMESTAMP\}\}|decliner=\{\{subst:REVISIONUSER\}\}'+afctemplate.substring(endpipe);
if(code != 'reason' && customreason != ''){
newcomment = "*\{\{afc comment|1=" + customreason + " \~\~\~\~\}\}";
}
summary = "Declining submission";
if(code == 'reason')
summary += ': see comment therein';
else
summary += ': ' + reasontext;
if(notify){
var author_re = /\|\s*u=\s*[^\|]*\|/i;
if(author_re.test(afctemplate)){
var user = author_re.exec(afctemplate)[0];
var username = user.split(/=/)[1];
username = username.replace(/[\|]/g,'');
if(username!='Example')
{
var usertext = afcHelper_getPageText("User talk:"+username, true);
var reason = 'Your submission at \[\[Wikipedia:Articles for creation|Articles for creation\]\]';
usertext += "\n== Your submission at \[\[Wikipedia:Articles for creation|Articles for creation\]\] ==";
usertext += "\n\{\{subst:" + notifytemplate + "|1=" + afcHelper_submissionTitle;
if(code == 'cv')
usertext += "|cv=yes";
usertext += "|sig=yes\}\}";
if(teahouse){
document.getElementById('afcHelper_status').innerHTML += '<div id="afcHelper_get_teahouse"></div>';
document.getElementById('afcHelper_get_teahouse').innerHTML = '<li id="afcHelper_get_teahouse">Checking for existing Teahouse Invitation for <a href="'+wgArticlePath.replace("$1", encodeURI('User talk:'+username))+'" title="User talk:'+username+'">User talk:'+username+'</a></li>';
var req = sajax_init_object();
var params = "action=query&prop=categories&format=json&indexpageids=1&titles=User_talk:" + encodeURIComponent(username);
req.open("POST", wgScriptPath + "/api.php", false);
req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
req.setRequestHeader("Content-length", params.length);
req.setRequestHeader("Connection", "close");
req.send(params);
var response = eval('(' + req.responseText + ')');
var pageid = response['query']['pageids'][0];
var foundTH=0;
if (pageid!="-1"){
var pagecats = new Array ();
pagecats = response['query']['pages'][pageid]['categories'];
if(typeof pagecats != 'undefined'){
for(var i = 0; i < pagecats.length; i++){
if (pagecats[i].title == ("Category:Wikipedia users who received a Teahouse invitation*")){
foundTH=1;
break;
}
}
}
}
if(foundTH==0){
document.getElementById('afcHelper_get_teahouse').innerHTML = '<li id="afcHelper_get_teahouse">Sent <a href="'+wgArticlePath.replace("$1", encodeURI('User talk:'+username))+'" title="User talk:'+username+'">User talk:'+username+'</a> an invitation.</li>';
usertext += "\n\n\n\{\{subst:Wikipedia:Teahouse/AFC_invitation\}\}";
reason += '; adding invitation for the \[\[Wikipedia:Teahouse|Teahouse\]\]!'
}
else{
document.getElementById('afcHelper_get_teahouse').innerHTML = '<a href="'+wgArticlePath.replace("$1", encodeURI('User talk:'+username))+'" title="User talk:'+username+'">'+username+'</a> already has an invitation.';
}
delete req;
}
}//end TH stuff
afcHelper_editPage("User talk:"+username, usertext, token, reason, false);
}//exclude [[User:Example]]
}
if(!blank){
var containComment = 0;
//var containComment = (pagetext.indexOf('----') != -1);
containComment = pagetext.indexOf('----');
if(newcomment != ''){
if(containComment!=0)
pagetext = pagetext.substring(0, startindex) + newtemplate + '\n' + newcomment + '\n----\n'+ pagetext.substring(endindex);
else{
pagetext = pagetext.substring(0, startindex) + newtemplate + pagetext.substring(endindex);
var idx = pagetext.indexOf('----');
pagetext = pagetext.substring(0, idx) + newcomment +'\n' + pagetext.substring(idx);
}
}
else
pagetext = pagetext.substring(0, startindex) + newtemplate + pagetext.substring(endindex);
}
else{
pagetext = newtemplate + '\n' + newcomment + '\n\{\{afc cleared';
if(blank_csd)
pagetext+="\|csd\}\}";
else
pagetext+="\}\}";
}
//first remove the multiple pending templates, otherwise one isn't recognized
pagetext = pagetext.replace(/\{\{\s*afc submission\s*\|\s*[||h|r](?:\{\{[^{}]*\}\}|[^}{])*\}\}/i, "");
afcHelper_editPage(afcHelper_PageName, pagetext, token, summary, false);
}
else if(action == 'comment'){
var comment = document.getElementById("afcHelper_comments").value;
displayMessage('<ul id="afcHelper_status"></ul><ul id="afcHelper_finish"></ul>');
document.getElementById('afcHelper_finish').innerHTML += '<span id="afcHelper_finished_wrapper"><span id="afcHelper_finished_main" style="display:none"><li id="afcHelper_done"><b>Done (<a href="'+wgArticlePath.replace("$1", encodeURI(afcHelper_PageName))+'?action=purge" title="'+afcHelper_PageName+'">Reload page</a>)</b></li></span></span>';
var token = afcHelper_getToken(true);
var containComment = 0;
//var containComment = (pagetext.indexOf('----') != -1);
containComment = pagetext.indexOf('----');
if(containComment == -1)
containComment = 0;
var newComment = "\{\{afc comment|1=" + comment + "\~\~\~\~\}\}";
if(comment != ''){
if(!containComment){
var afc_re = /\{\{\s*afc submission\s*\|\s*[||h|r|d](?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
if(!afc_re.test(pagetext)){
alert( "Unable to locate AFC submission template, aborting..." );
return;
}
var afctemplate = afc_re.exec(pagetext)[0];
var endindex = pagetext.indexOf(afctemplate) + afctemplate.length;
pagetext = pagetext.substring(0, endindex) + '\n' + newComment + '\n----\n'+ pagetext.substring(endindex);
}
else{
var idx = pagetext.indexOf('----');
if(idx != -1)
pagetext = pagetext.substring(0, idx) + newComment +'\n' + pagetext.substring(idx);
else{
var afc_re = /\{\{\s*afc submission\s*\|\s*[||h|r|d](?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
if(!afc_re.test(pagetext)){
alert( "Unable to locate AFC submission template, aborting..." );
return;
}
var afctemplate = afc_re.exec(pagetext)[0];
var endindex = pagetext.indexOf(afctemplate) + afctemplate.length;
pagetext = pagetext.substring(0, endindex) + '\n' + newComment + '\n----\n'+ pagetext.substring(endindex);
}
}
afcHelper_editPage(afcHelper_PageName, pagetext, token, "Commenting on [[WP:AFC|Articles for creation]] submission", false);
}
}
else if(action == 'mark'){
var comment = document.getElementById("afcHelper_comments").value;
displayMessage('<ul id="afcHelper_status"></ul><ul id="afcHelper_finish"></ul>');
document.getElementById('afcHelper_finish').innerHTML += '<span id="afcHelper_finished_wrapper"><span id="afcHelper_finished_main" style="display:none"><li id="afcHelper_done"><b>Done (<a href="'+wgArticlePath.replace("$1", encodeURI(afcHelper_PageName))+'?action=purge" title="'+afcHelper_PageName+'">Reload page</a>)</b></li></span></span>';
var token = afcHelper_getToken(true);
var containComment = (text.indexOf('----') != -1);
var newComment = "\{\{afc comment|1=" + comment + "\~\~\~\~\}\}";
if(comment != ''){
if(!containComment){
var afc_re = /\{\{\s*afc submission\s*\|\s*[||h|r|d](?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
if(!afc_re.test(pagetext)){
alert( "Unable to locate AFC submission template, aborting..." );
return;
}
var afctemplate = afc_re.exec(pagetext)[0];
var endindex = pagetext.indexOf(afctemplate) + afctemplate.length;
pagetext = pagetext.substring(0, endindex) + '\n' + newComment + '\n----\n'+ pagetext.substring(endindex);
}
else{
var idx = pagetext.indexOf('----');
pagetext = pagetext.substring(0, idx) + newComment +'\n' + pagetext.substring(idx);
}
}
var afc_re = /\{\{\s*afc submission\s*\|\s*[||h](?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
if(!afc_re.test(pagetext)){
alert( "Unable to locate AFC submission template, aborting..." );
return;
}
var afctemplate = afc_re.exec(pagetext)[0];
var firstpipe = afctemplate.indexOf('|');
var endpipe = afctemplate.indexOf('|ts');
var newTemplate = afctemplate.substring(0, firstpipe);
newTemplate += '|r||';
newTemplate += afctemplate.substring(endpipe);
var startindex = pagetext.indexOf(afctemplate);
var endindex = pagetext.indexOf(afctemplate) + afctemplate.length;
pagetext = pagetext.substring(0, startindex) + newTemplate + pagetext.substring(endindex);
afcHelper_editPage(afcHelper_PageName, pagetext, token, "Marking [[WP:AFC|Articles for creation]] submission as being reviewed", false);
}
else if(action == 'cleanup'){
displayMessage('<ul id="afcHelper_status"></ul><ul id="afcHelper_finish"></ul>');
document.getElementById('afcHelper_finish').innerHTML += '<span id="afcHelper_finished_wrapper"><span id="afcHelper_finished_main" style="display:none"><li id="afcHelper_done"><b>Done (<a href="'+wgArticlePath.replace("$1", encodeURI(afcHelper_PageName))+'?action=purge" title="'+afcHelper_PageName+'">Reload page</a>)</b></li></span></span>';
var token = afcHelper_getToken(true);
var text = afcHelper_getPageText(afcHelper_PageName, true);
if(text==pagetext)
document.getElementById('afcHelper_finish').innerHTML += '<span id="afcHelper_finished_wrapper"><span id="afcHelper_finished_main><li id="afcHelper_done"><b>This submission is already cleaned. Nothing changed. (<a href="'+wgArticlePath.replace("$1", encodeURI(afcHelper_PageName))+'?action=purge" title="'+afcHelper_PageName+'">Reload page</a>)</b></li></span></span>';
else
afcHelper_editPage(afcHelper_PageName, pagetext, token, "Cleaning the [[WP:AFC|Articles for creation]] submission.", false);
}
document.getElementById('afcHelper_finished_main').style.display = '';
}
function afcHelper_movePage(oldtitle, newtitle, token, summary, callback){
summary += afcHelper_advert;
document.getElementById('afcHelper_finished_wrapper').innerHTML = '<span id="afcHelper_AJAX_finished_'+afcHelper_AJAXnumber+'" style="display:none">' + document.getElementById('afcHelper_finished_wrapper').innerHTML + '</span>';
var func_id = afcHelper_AJAXnumber;
afcHelper_AJAXnumber++;
document.getElementById('afcHelper_status').innerHTML += '<li id="afcHelper_move'+escape(oldtitle)+'">Moving <a href="'+wgArticlePath.replace("$1", encodeURI(oldtitle))+'" title="'+oldtitle+'">'+oldtitle+'</a> to <a href="'+wgArticlePath.replace("$1", encodeURI(newtitle))+'" title="'+newtitle+'">'+newtitle+'</a></li>';
var req = sajax_init_object();
var params = "action=move&format=json&token="+encodeURIComponent(token)+"&from="+encodeURIComponent(oldtitle) +"&to="+encodeURIComponent(newtitle)+"&reason="+encodeURIComponent(summary);
url = wgScriptPath + "/api.php";
req.open("POST", url, true);
req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
req.setRequestHeader("Content-length", params.length);
req.setRequestHeader("Connection", "close");
req.onreadystatechange = function() {
if(req.readyState == 4 && req.status == 200) {
var error = true;
response = eval('(' + req.responseText + ')');
try {
if (typeof(response['move']) != "undefined") {
document.getElementById('afcHelper_move'+escape(oldtitle)).innerHTML = 'Moved <a href="'+wgArticlePath.replace("$1", encodeURI(oldtitle))+'" title="'+oldtitle+'">'+oldtitle+'</a>';
error = false;
} else {
document.getElementById('afcHelper_move'+escape(oldtitle)).innerHTML = '<div style="color:red"><b>Move failed on <a href="'+wgArticlePath.replace("$1", encodeURI(oldtitle))+'" title="'+oldtitle+'">'+oldtitle+'</a></b></div>. Error info:' +response['error']['code'] + ' : ' + response['error']['info'];
}
}
catch(err) {
document.getElementById('afcHelper_move'+escape(oldtitle)).innerHTML = '<div style="color:red"><b>Move failed on <a href="'+wgArticlePath.replace("$1", encodeURI(oldtitle))+'" title="'+oldtitle+'">'+oldtitle+'</a></b></div>';
}
if(!error){
if(callback != null)
callback();
}
document.getElementById('afcHelper_AJAX_finished_'+func_id).style.display = '';
delete req;
}
};
req.send(params);
}
function afcHelper_addLink() {
addPortletLink("p-cactions", "javascript:afcHelper_init()", "Review", "ca-afcHelper", "Review");
}
function afcHelper_onChange(select){
var value = select.options[select.selectedIndex].value;
if(value=='cv')
document.getElementById("afcHelper_extra_inline").innerHTML='<label for="afcHelper_extra">Please enter the URL if available: </label><input type="text" id="afcHelper_extra_inlinebox" name="afcHelper_extra_inlinebox" value="http://" />';
else if(value=='dup')
document.getElementById("afcHelper_extra_inline").innerHTML='<label for="afcHelper_extra_inline">Please enter the title of the duplicate submission, if possible. Do not enter the prefix (e.g., John Doe): </label><input type="text" id="afcHelper_extra_inlinebox" name="afcHelper_extra_inlinebox" value="" />';
else if(value=='mergeto')
document.getElementById("afcHelper_extra_inline").innerHTML='<label for="afcHelper_extra_inline">Please enter the title of the article to merge to, if possible: </label><input type="text" id="afcHelper_extra_inlinebox" name="afcHelper_extra_inlinebox" value="" />';
else if(value=='lang')
document.getElementById("afcHelper_extra_inline").innerHTML='<label for="afcHelper_extra_inline">Please enter the language the article is written in, if possible/known (e.g. German): </label><input type="text" id="afcHelper_extra_inlinebox" name="afcHelper_extra_inlinebox" value="" />';
else if(value=='exists')
document.getElementById("afcHelper_extra_inline").innerHTML='<label for="afcHelper_extra_inline">Please enter the title of the existing article, if possible: </label><input type="text" id="afcHelper_extra_inlinebox" name="afcHelper_extra_inlinebox" value="" />';
else if(value=='plot')
document.getElementById("afcHelper_extra_inline").innerHTML='<label for="afcHelper_extra_inline">Please enter the title of the existing article on the fiction, if there is one: </label><input type="text" id="afcHelper_extra_inlinebox" name="afcHelper_extra_inlinebox" value="" />';
//AFC accepting dropdown of BLPs
//else if(value=='living')
// document.getElementById("afcHelper_extra_inline").innerHTML='';
else if(value=='dead')
document.getElementById("afcHelper_extra_inline").innerHTML='<label for="afcHelper_placeofdeath">Place of death (if known/given)? </label><input type="text" id="afcHelper_placeofdeath" name="afcHelper_placeofdeath" /><br /><label for="afcHelper_yearofdeath">Year of death (if known/given)? </label><input type="text" id="afcHelper_yearofdeath" name="afcHelper_yearofdeath" /><br /><label for="afcHelper_dateofdeath">Date of death (if known/given; Month Day, e.g. <i>September 3</i>)? </label><input type="text" id="afcHelper_dateofdeath" name="afcHelper_dateofdeath" />';
//else if(value=='unkown')
// document.getElementById("afcHelper_extra_inline").innerHTML='';
else
document.getElementById("afcHelper_extra_inline").innerHTML='';
if(value == 'blp' || value == 'cv'){
document.getElementById("afcHelper_blank").setAttribute("checked", "checked");
afcHelper_trigger("afcHelper_extra_afccleared");
}
else if ((value!='living')||(value!='unknown')||(value!='dead'))
return;
else
document.getElementById("afcHelper_blank").removeAttribute("checked");
}
function afcHelper_cleanup(text)
{
//Commenting out cats
text = text.replace(/\[\[Category:/gi, "\[\[:Category:");
//Wikilink correction
text = text.replace(/\[{1,2}https?:\/\/(secure.wikimedia.org\/wikipedia\/en\/wiki|en.wikipedia.org\/wiki|enwp.org)\/([^\s\|]+)(\s|\|)?([^\]]*)\]{1,2}/gi, "\[\[$2|$4\]\]");
//KISS: for the case at the end of the url is a <ref> it detects all < symbols and stops there
text = text.replace(/https?:\/\/(secure.wikimedia.org\/wikipedia\/en\/wiki|en.wikipedia.org\/wiki|enwp.org)\/([^\s\<]+)/gi, "\[\[$2\]\]");
//remove boldings and big-tags from headlines; ignore level 1 headlines for not breaking URLs and other stuff!
text = text.replace(/[\s\n]*(={2,})\s*(?:\s*<big>|\s*''')*\s*(.*?)\s*(?:\s*<\/big>|\s*''')*\s*?(={2,})[\n\s]*/gi, "\n\n$1 $2 $1\n\n");
//Wikilink correct part #2
//text = text.replace(/\[\[\s*((?:\[\[[^\[\]]*\]\]|[^\]\[])*)\|\s*((?:\[\[[^\[\]]*\]\]|[^\]\[])*)\s*\]\]/gi, "then...\[\[$1\]\]");
// Remove all unneeded HTML comments and wizards stuff
text = text.replace("* \[http\:\/\/www.example.com\/ example.com\]", "");
text = text.replace(/'''Subject of my article''' is.../ig, "");
text = text.replace(/\<\!--- Carry on from here, and delete this comment. ---\>/ig, "");
text = text.replace(/\<\!-- EDIT BELOW THIS LINE --\>/ig, "");
text = text.replace(/\<\!--- Categories ---\>/gi, '');
text = text.replace(/\<\!--- After listing your sources please cite them using inline citations and place them after the information they cite. Please see \[\[Wikipedia:REFB\]\] for instructions on how to add citations. ---\>/ig, "");
text = text.replace(/\<\!--Please don't change anything and press save --\>/ig, "");
text = text.replace(/\<\!-- Please leave this line alone! --\>/ig, "");
text = text.replace(/\<\!--- Important, do not remove this line before article has been created. ---\>/ig, "");
text = text.replace(/\<\!-- This will add a notice to the bottom of the page and won't blank it! The new template which says that your draft is waiting for a review will appear at the bottom; simply ignore the old \(grey\) drafted templates and the old \(red\) decline templates. A bot will update your article submission. Until then, please don't change anything in this text box and press "Save page". --\>/ig, "");
text = text.replace(/== Request review at \[\[WP:AFC\]\] ==\n/ig, "");
// Remove {{userspacedraft}}, {{userspace draft}}, {{user sandbox}}
text = text.replace(/\{\{(userspacedraft|userspace draft|user sandbox)(?:\{\{[^{}]*\}\}|[^}{])*\}\}/ig, "");
text = text.replace(/---[-]+/ig, "");
var afc_re = /\{\{\s*afc submission\s*\|\s*[||h|r](?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
var afc_alt = /\{\{\s*afc submission\s*\|\s*[^t](?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
var afc_all = /\{\{\s*afc submission\s*\|\s*(?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
var afc_comment = /\{\{\s*afc comment(?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
// Remove all draft templates
if(afc_alt.test(text))
text = text.replace(/\{\{\s*afc submission\s*\|\s*t(?:\{\{[^{}]*\}\}|[^}{])*\}\}/ig, "");
// Find the first pending submission or marked as review on the page.
var temp = text;
//Remove any duplicate open review requests before saving the page (only affects open requests)
//find the first pending template and remove it, if one was removed too much, revert the last removal
while(afc_re.test(text)){
temp = text;
text = text.replace(/\{\{\s*afc submission\s*\|\s*[||h|r](?:\{\{[^{}]*\}\}|[^}{])*\}\}/i, "");
if(!afc_re.test(text)){
text=temp;
break;
}
}
//create an array, strip the submission templates, then AFC comments and then add them back to the page, add then ----
var submissiontemplates=new Array();
var commentstemplates=new Array();
while(afc_all.test(text)){
submissiontemplates.push(afc_all.exec(text));
text=text.replace(afc_all.exec(text), "");
}
while(afc_comment.test(text)){
commentstemplates.push(afc_comment.exec(text));
text=text.replace(afc_comment.exec(text), "");
}
//removal of unnecessary new lines, stars, "-", and whitespaces at the top of the page
text = text.replace(/[*\n\s-]*/m, "");
//adding back the submission templates and comment templates
if(commentstemplates.length>0){
text = '----\n'+text;
for((i=commentstemplates.length-1);i>=0;i--)
text=commentstemplates[i]+'\n\n'+text;
}
if(submissiontemplates.length>0){
for((i=submissiontemplates.length-1);i>=0;i--){
if(i==(submissiontemplates.length-1))
text=submissiontemplates[i]+'\n'+text;
else if(i>=0){
var find_shrinked=/\|\s*small\s*=\s*yes/gi;
if(find_shrinked.test(submissiontemplates[i])){
text=submissiontemplates[i]+text;
}
else{
var temp=submissiontemplates[i].toString();
var templength=temp.length - 2;
temp=temp.slice(0, templength);
text=temp+'\|small=yes\}\}'+text;
}
}
}
}
return text;
}
addOnloadHook(afcHelper_addLink);
}
function afcHelper_generateSelect(title, options, onchange){
var text = '<select name="' + title + '" id="' + title +'" ';
if(onchange != null)
text += 'onchange = "' + onchange + '" ';
text+= '>';
for(var i = 0; i < options.length; i ++){
var o = options[i];
text += '<option value="' + afcHelper_escapeHtmlChars(o.value) + '" ';
if(o.selected)
text += 'selected="selected" ';
text += '>' + o.label + '</option>';
}
text += "</select>";
return text;
}
function afcHelper_blanking(){
pagetext = afcHelper_getPageText(afcHelper_PageName, false);
pagetext = afcHelper_cleanup(pagetext);
//test for AFC submission templates with not enough parameter
//Nmespaces WP (4) and WT (5)
//var afc_alltemplates= /\{\{\s*afc submission(?:\{\{[^\{\}]*\}\}|[^\}\{])*\}\}/i;
//afc_all=text.match(afc_alltemplates);
//longer than 30 characters, but commonly added to the source code
texttest = pagetext.replace(/\<\!-- Bot generated title --\>/gi, "");
texttest = texttest.replace(/\<\!-- See Wikipedia\:WikiProject Musicians --\>/gi, "");
texttest = texttest.replace(/\<\!-- Only for images narrower than 220 pixels --\>/gi, "");
texttest = texttest.replace(/\<\!-- Metadata\: see \[\[Wikipedia\:Persondata\]\]. --\>/gi, "");
var recomment = /(\<\!--)([^((\<\!--)|(--\>))]*)(--\>)*/gim;
var errormsg ='';
// test if too long (30+ characters) HTML comments are still in the page text
if(recomment.test(texttest)){
var testmatch=texttest.match(recomment);
for(var i=0;i<testmatch.length;i++)
{
if(testmatch[i].length>34){
if(errormsg == '')
errormsg = '<h3><div style="color:red">Please check the source code! This page contains one or more long (30+ characters) HTML comment! (please report false positives)</div></h3><br/>';
errormsg += 'The hidden text is: <i>'+testmatch[i].slice(4)+'</i><br/>';
}
}
}
// count <ref> and </ref> and check if it fits
// Special thanks to [[User:Betacommand]] for KISS
var rerefbegin = /\<\s*ref\s*(name\s*=|group\s*=)*\s*[^\/]*>/ig;
var rerefend = /\<\/\s*ref\s*\>/ig;
refbegin=texttest.match(rerefbegin);
refend=texttest.match(rerefend);
if(refbegin){//Firefox workaround!
if(refend){//Firefox workaround!
if(refbegin.length!=refend.length){
errormsg += '<h3><div style="color:red">Please check the source code! This page contains unclosed &lt;ref&gt; tags!</div></h3>';
}
}
else{
errormsg += '<h3><div style="color:red">Please check the source code! This page contains not the same amount of &lt;ref&gt; and &lt;/ref&gt; tags!</div></h3>';
}
}
// test if <ref> foo <ref> on the page and place the markup on the box
var rerefdouble = /\<\s*ref\s*(name\s*=|group\s*=)*\s*[^\/]*\>?(\<\s*[^\/]*\s*ref\s*(name\s*=|group\s*=)*)/ig;
var refdouble=texttest.match(rerefdouble);
if(refdouble){
errormsg +='The script found following bad lines:<br/><i>';
for(i=0;i<refdouble.length;i++)
errormsg +=afcHelper_escapeHtmlChars(refdouble[i].toString())+'&gt;<br/>';
errormsg+='</i>';
}
return errormsg;
}
function afcHelper_getToken(show){
if(show)
document.getElementById('afcHelper_status').innerHTML += '<li id="afcHelper_gettoken">Getting token</li>';
var req = sajax_init_object();
req.open("GET", wgScriptPath + "/api.php?action=query&prop=info&indexpageids=1&intoken=edit&format=json&titles="+encodeURIComponent(afcHelper_PageName), false);
req.send(null);
var response = eval('(' + req.responseText + ')');
pageid = response['query']['pageids'][0];
token = response['query']['pages'][pageid]['edittoken'];
delete req;
if(show)
document.getElementById('afcHelper_gettoken').innerHTML = 'Got token';
return token;
}
function afcHelper_getPageText(title, show) {
if(show)
document.getElementById('afcHelper_status').innerHTML += '<li id="afcHelper_get'+escape(title)+'">Getting <a href="'+wgArticlePath.replace("$1", encodeURI(title))+'" title="'+title+'">'+title+'</a></li>';
var req = sajax_init_object();
var params = "action=query&prop=revisions&rvprop=content&format=json&indexpageids=1&titles="+encodeURIComponent(title);
req.open("POST", wgScriptPath + "/api.php", false);
req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
req.setRequestHeader("Content-length", params.length);
req.setRequestHeader("Connection", "close");
req.send(params);
var response = eval('(' + req.responseText + ')');
pageid = response['query']['pageids'][0];
if(pageid == "-1"){
if(show)
document.getElementById('afcHelper_get'+escape(title)).innerHTML = '<a class="new" href="'+wgArticlePath.replace("$1", encodeURI(title))+'" title="'+title+'">'+title+'</a> does not exist';
delete req;
return '';
}
var newtext = response['query']['pages'][pageid]['revisions'][0]['*'];
delete req;
if(show)
document.getElementById('afcHelper_get'+escape(title)).innerHTML = 'Got <a href="'+wgArticlePath.replace("$1", encodeURI(title))+'" title="'+title+'">'+title+'</a>';
return newtext;
}
function afcHelper_editPage(title, newtext, token, summary, createonly) {
summary += afcHelper_advert;
document.getElementById('afcHelper_finished_wrapper').innerHTML = '<span id="afcHelper_AJAX_finished_'+afcHelper_AJAXnumber+'" style="display:none">' + document.getElementById('afcHelper_finished_wrapper').innerHTML + '</span>';
var func_id = afcHelper_AJAXnumber;
afcHelper_AJAXnumber++;
document.getElementById('afcHelper_status').innerHTML += '<li id="afcHelper_edit'+escape(title)+'">Editing <a href="'+wgArticlePath.replace("$1", encodeURI(title))+'" title="'+title+'">'+title+'</a></li>';
var req = sajax_init_object();
var params = "action=edit&format=json&token="+encodeURIComponent(token)+"&title="+encodeURIComponent(title)+"&text="+encodeURIComponent(newtext)+"&notminor=1&summary="+encodeURIComponent(summary);
if(createonly)
params += "&createonly=1";
url = wgScriptPath + "/api.php";
req.open("POST", url, true);
req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
req.setRequestHeader("Content-length", params.length);
req.setRequestHeader("Connection", "close");
req.onreadystatechange = function() {
if(req.readyState == 4 && req.status == 200) {
response = eval('(' + req.responseText + ')');
try {
if (response['edit']['result'] == "Success") {
document.getElementById('afcHelper_edit'+escape(title)).innerHTML = 'Saved <a href="'+wgArticlePath.replace("$1", encodeURI(title))+'" title="'+title+'">'+title+'</a>';
} else {
document.getElementById('afcHelper_edit'+escape(title)).innerHTML = '<div style="color:red"><b>Edit failed on <a href="'+wgArticlePath.replace("$1", encodeURI(title))+'" title="'+title+'">'+title+'</a></b></div>. Error info:' +response['error']['code'] + ' : ' + response['error']['info'];
}
}
catch(err) {
document.getElementById('afcHelper_edit'+escape(title)).innerHTML = '<div style="color:red"><b>Edit failed on <a href="'+wgArticlePath.replace("$1", encodeURI(title))+'" title="'+title+'">'+title+'</a></b></div>';
}
document.getElementById('afcHelper_AJAX_finished_'+func_id).style.display = '';
delete req;
}
};
req.send(params);
}
//function to add afc cleared (csd) checkbox if afc cleared is checked
function afcHelper_trigger(type){
var e = document.getElementById(type);
e.style.display = ((e.style.display!='none') ? 'none' : 'block');
}
//function to disable checkboxes or textfields; not used at the moment, will be used maybe later
//function afcHelper_trigger(){
// if(afcHelper_optional_replace.checked){
// afcHelper_reason.disabled=false;
// }else{
// afcHelper_reason.disabled=true;
// }
//}
}
//</nowiki>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment