User:King of Hearts/closecfd.js

// closecfd.js - written by User:King of Hearts, modified from

// Wikipedia:WikiProject User scripts/Scripts/CloseAFD.js by User:Johnleemk

// and User:Lifebaka/closedrv.js by User:Lifebaka

function autocfd_result()

{

var close = prompt("Result of debate?")

var f = document.editform, t = f.wpTextbox1;

t.value = t.value.split(' ====').join(' ====' + '\n' + '{{subst:' + 'cfd top' + '|1=' + '\ + '\ + '\ + close + '\ + '\ + '\ + '.}}' + ' ~~' + '~~');

t.value += "{{subst:" + "cfd bottom" + "}}";

f.wpSummary.value += "Closing debate; result was " + close;

}

function autocfd_add_cfd_tabs()

{

// Only add for pages with the right string somewhere in the title

if ((document.title.indexOf("Editing Wikipedia:Categories for discussion/Log/") != -1) && (document.title.indexOf("(section)") != -1))

{

mw.util.addPortletLink('p-cactions', 'javascript:autocfd_result()', "close");

}

}

addOnloadHook(autocfd_add_cfd_tabs);