_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Phantomsteve/xfdrelist.js

In today's world, User:Phantomsteve/xfdrelist.js has taken a central role in various areas of daily life. From politics to technology, entertainment and culture, User:Phantomsteve/xfdrelist.js has managed to capture the attention of countless people around the world. Its importance and influence has been consolidated over time, becoming a topic of general interest that leaves no one indifferent. In this article, we will seek to delve into the most relevant aspects of User:Phantomsteve/xfdrelist.js, analyzing its impact and development in different contexts. Dare to enter the fascinating world of User:Phantomsteve/xfdrelist.js and discover everything it has to offer.
//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
 
//