In today's world,
User:Phantomsteve/xfdrelist.js is a topic that has gained great relevance in various areas. From the personal to the professional level,
User:Phantomsteve/xfdrelist.js has captured the attention of many due to its multiple implications and consequences. Over time, it has become clear that
User:Phantomsteve/xfdrelist.js is a determining factor in people's lives, as it influences their decision-making, behavior and general well-being. This is why it is of great importance to thoroughly understand this phenomenon and analyze its different dimensions in order to adequately address it. In this article, we will further explore the impact of
User:Phantomsteve/xfdrelist.js in different contexts and seek to offer strategies and recommendations to address it effectively.
//this helps automate xfD relisting (apart from AfDs, which is covered by CloseAFD)
//based on ]
//written by ] based on ] by ]
function autoxfd_relist() {
var f = document.editform, t = f.wpTextbox1;
if (t.value.length > 0) {
t.value += '\n';
}
t.value += "{"+"{subst:" + "relist" + "|~" + "~" + "~" + "~}}";
var nonadmin = " (])";
if (typeof mw.config.get('wgUserGroups') == "object" && mw.config.get('wgUserGroups')) {
for ( var g = 0; g < mw.config.get('wgUserGroups').length; ++g ) {
if ( mw.config.get('wgUserGroups') == "sysop" ) {
nonadmin = "";
break;
}
}
}
f.wpSummary.value = "Relisting debate" + nonadmin;
}
function autoxfd_relist_add_tabs() {
// Only add for pages with the right string somewhere in the title
if (document.title.indexOf("Editing Wikipedia:Templates for discussion/") != -1) {
mw.util.addPortletLink('p-cactions', 'javascript:autoxfd_relist()', "relist");
}
if (document.title.indexOf("Editing Wikipedia:Files for deletion/") != -1) {
mw.util.addPortletLink('p-cactions', 'javascript:autoxfd_relist()', "relist");
}
if (document.title.indexOf("Editing Wikipedia:Categories for discussion/") != -1) {
mw.util.addPortletLink('p-cactions', 'javascript:autoxfd_relist()', "relist");
}
if (document.title.indexOf("Editing Wikipedia:Redirects for discussion/") != -1) {
mw.util.addPortletLink('p-cactions', 'javascript:autoxfd_relist()', "relist");
}
if (document.title.indexOf("Editing Wikipedia:Miscellany for deletion/") != -1) {
mw.util.addPortletLink('p-cactions', 'javascript:autoxfd_relist()', "relist");
}
}
addOnloadHook(autoxfd_relist_add_tabs);
//end xfD relisting script
//