User:L^BPub/monobook.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
![]() | The accompanying .css page for this skin can be added at User:L^BPub/monobook.css. |
importScript('User:Persian Poet Gal/vandal.js');
importScript('User:Ioeth/friendly.js');
// install [[User:Cacycle/wikEd]] in-browser text editor
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
+ '&action=raw&ctype=text/javascript"></script>');
importScript('Wikipedia:WikiProject User scripts/Scripts/Force edit summary alternative');
importScript('User:TheJosh/Scripts/NewPagePatrol.js');
npp_enabled = false;
npp_num_pages = 10;
npp_refresh = 5;
importScript('User:TheJosh/Scripts/RecentChangesPatrol.js');
rcp_enabled = false;
rcp_num_pages = 10;
rcp_refresh = 5;
$(function() {
if (wgTitle.indexOf("/") != -1 || document.title.indexOf("- History -") != -1) //no subpages or history
return;
if (wgCanonicalNamespace == "User" || wgCanonicalNamespace == "User_talk") {
var username = encodeURIComponent( wgTitle );
addPortletLink("p-cactions", wgServer + "/wiki/Special:Contributions/" + username, "Contribs", "ca-contrib", "User contributions");
addPortletLink("p-cactions", "http://tools.wikimedia.de/~interiot/cgi-bin/Tool1/wannabe_kate?username=" + username + "&site=en.wikipedia.org", "Edit count", "ca-editcount", "Edit count from Interiot's Tool1");
addPortletLink("p-cactions", wgServer + "/w/index.php?title=Special:Log&type=move&user=" + username, "Page moves", "ca-pagemoves", "Page moves by this user");
addPortletLink("p-cactions", wgServer + "/w/index.php?title=Special:Log&type=block&page=User:" + username, "Blocks received", "ca-blog", "Blocks received by this user");
addPortletLink("p-cactions", wgServer + "/w/index.php?title=Special:Prefixindex&from=" + username + "&namespace=2", "Userspace", "", "List of pages in this user's userspace");
addPortletLink("p-cactions", wgServer + "/w/index.php?title=Special:Log&type=block&user=" + username, "Blocks given", "", "Blocks by this user");
addPortletLink("p-cactions", wgServer + "/w/index.php?title=Special:Log&type=protect&user=" + username, "Protections", "", "Protections by this user");
addPortletLink("p-cactions", wgServer + "/w/index.php?title=Special:Log&type=delete&user=" + username, "Deletions", "", "Deletions by this user");
}
});
if (wgNamespaceNumber >= 0)
$(function(){
var pCactions = document.getElementById('p-cactions');
if (!pCactions) return;
var caMain = pCactions.getElementsByTagName('li')[0];
var caTalk = document.getElementById('ca-talk');
var caEdit = document.getElementById('ca-edit');
if (!caEdit) caEdit = document.getElementById('ca-viewsource');
var caHistory = document.getElementById('ca-history');
if (!caMain || !caTalk || !caEdit || !caHistory) return;
var el_move, el_create, id2;
if (wgNamespaceNumber % 2) { //talk space
el_move = caTalk; el_create = caMain; id2 = '';
} else {
el_move = caMain; el_create = caTalk; id2 = 'discussion';
}
caEdit.firstChild.innerHTML = 'edit';
caHistory.firstChild.innerHTML = 'hist';
el_move.parentNode.insertBefore(caHistory, el_move.nextSibling);
el_move.parentNode.insertBefore(caEdit, el_move.nextSibling);
var href = el_create.firstChild.getAttribute('href', 2);
if (el_create.className.indexOf('new') < 0){
addPortletLink('p-cactions', href + '?action=history', 'hist',
'ca-history-'+id2, id2+' history', '', el_create.nextSibling);
addPortletLink('p-cactions', href + '?action=edit', 'edit',
'ca-edit-'+id2, 'Edit '+id2, '', el_create.nextSibling);
}
caMain.style.marginRight = '0.3em';
caTalk.style.marginRight = '0.3em';
caTalk.style.marginLeft = '1.6em';
})
$(function() {
if (wgTitle.indexOf("/") != -1 || document.title.indexOf("- History -") != -1) //no subpages or history
return;
if (wgCanonicalNamespace == "User" || wgCanonicalNamespace == "User_talk") {
var username = encodeURIComponent( wgTitle );
addPortletLink("p-cactions", wgServer + "/wiki/Special:Contributions/" + username, "contribs", "ca-contrib", "User contributions");
addPortletLink("p-cactions", "http://tools.wikimedia.de/~interiot/cgi-bin/Tool1/wannabe_kate?username=" + username + "&site=en.wikipedia.org", "count", "ca-editcount", "Edit count from Interiot's Tool1");
addPortletLink("p-cactions", "http://www.math.ucla.edu/~aoleg/wp/rfa/edit_summary.cgi?user=" + username + "&site=en.wikipedia.org", "Summary", "ca-summary", "Edit Summary");
}
});
function addSumLink() {
var ntitle2 = document.getElementById("mw-diff-ntitle2")
if (!ntitle2) return;
var rbnode = getElementsByClassName(document.getElementById("mw-diff-ntitle2"), "span", "mw-rollback-link");
if (rbnode.length != 0)
addRollbackSummaryLink(rbnode[0]);
}
function confirmRollback() {
var url = this.href;
var user = url.match(/[?&]from=([^&]*)/);
if (!user) return;
var user = decodeURIComponent(user[1].replace("+", " "));
var summary = prompt("Enter a summary to use for rollback.\n\nLeave blank to use the default. $user will be replaced with \"" + user + "\".", "")
if (summary == undefined)
return false;
else if (summary == "")
return true;
this.href += "&summary=" + encodeURIComponent(summary.replace(/\$user/g, user));
return true;
};
function addRollbackSummaryLink(rbnode) {
var rblink = rbnode.getElementsByTagName("a")[0]
var alink = rblink.cloneNode(true);
alink.className = ""; //don't confuse other scripts
alink.firstChild.nodeValue = "sum";
alink.onclick = confirmRollback;
rbnode.insertBefore(alink, rblink.nextSibling);
rbnode.insertBefore(document.createTextNode("|"), alink);
}
$(addSumLink);
importScript('User:MarkS/extraeditbuttons.js');
importScript('User:TheDJ/Gadget-HotCat.js');
if (wgNamespaceNumber >= 0)
$(function(){
var pCactions = document.getElementById('p-cactions');
if (!pCactions) return;
var caMain = pCactions.getElementsByTagName('li')[0];
var caTalk = document.getElementById('ca-talk');
var caEdit = document.getElementById('ca-edit');
if (!caEdit) caEdit = document.getElementById('ca-viewsource');
var caHistory = document.getElementById('ca-history');
if (!caMain || !caTalk || !caEdit || !caHistory) return;
var el_move, el_create, id2;
if (wgNamespaceNumber % 2) { //talk space
el_move = caTalk; el_create = caMain; id2 = '';
} else {
el_move = caMain; el_create = caTalk; id2 = 'discussion';
}
caEdit.firstChild.innerHTML = 'edit';
caHistory.firstChild.innerHTML = 'hist';
el_move.parentNode.insertBefore(caHistory, el_move.nextSibling);
el_move.parentNode.insertBefore(caEdit, el_move.nextSibling);
var href = el_create.firstChild.getAttribute('href', 2);
if (el_create.className.indexOf('new') < 0){
addPortletLink('p-cactions', href + '?action=history', 'hist',
'ca-history-'+id2, id2+' history', '', el_create.nextSibling);
addPortletLink('p-cactions', href + '?action=edit', 'edit',
'ca-edit-'+id2, 'Edit '+id2, '', el_create.nextSibling);
}
caMain.style.marginRight = '0.3em';
caTalk.style.marginRight = '0.3em';
caTalk.style.marginLeft = '1.6em';
})
$(function (){
var N = 250; // <<== CHANGE TO YOUR LIKING
var x = document.getElementById('ca-history');
if(!x) return;
x.getElementsByTagName('a')[0].href += "&limit=" + N;
});
function fixCompare()
{
var histForm=document.getElementsByTagName("form")[0];
var finalButton=document.getElementById("historysubmit");
if(!finalButton || finalButton == null)
return;
var firstButton=histForm.getElementsByTagName("input")[1];
histForm.removeChild(finalButton);
histForm.removeChild(firstButton);
var compareLink=document.createElement("a");
var genLink = wgServer + wgScript + "?title=" + histForm.title.value + "&diff=" + histForm.diff[0].value + "&oldid=" + histForm.oldid[1].value;
compareLink.setAttribute("href", genLink);
compareLink.appendChild(document.createTextNode("Compare selected versions"));
histForm.insertBefore(compareLink, document.getElementById("pagehistory"));
var endLink=compareLink.cloneNode(true);
histForm.appendChild(endLink);
var diffList=document.getElementById("pagehistory");
diffList.setAttribute("onchange", "updateCompare()");
}
function updateCompare()
{
var histForm=document.getElementsByTagName("form")[0];
var diffList=document.getElementById("pagehistory");
var compareLink=diffList.previousSibling;
var endLink=diffList.nextSibling;
var oldInd=-1;
var i=0;
while(oldInd==-1 & i<histForm.oldid.length)
{
if(histForm.oldid[i].checked)
oldInd=i;
i++;
}
var diffInd=-1;
var j=0;
while(diffInd==-1 & j<histForm.diff.length)
{
if(histForm.diff[j].checked)
diffInd=j;
j++;
}
var genLink = wgServer + wgScript + "?title=" + histForm.title.value + "&diff=" + histForm.diff[diffInd].value + "&oldid=" + histForm.oldid[oldInd].value;
compareLink.setAttribute("href", genLink);
endLink.setAttribute("href", genLink);
}
if(window.location.href.indexOf("action=history")!=-1)
$(fixCompare);
function addForceSummary()
{
if(!/&action=edit/.test(window.location.href) && !/&action=submit/.test(window.location.href)) return;
if(/§ion=new/.test(window.location.href)) return;
if(!document.forms.editform) return;
document.forms.editform.wpSave.onclick = forceSummary;
// The second invocation of this will cause extra annoyance if there is no edit summary present. If there *is* an edit summary, the dialog box will not appear.
document.forms.editform.wpSave.onfocus = forceSummary;
}
function forceSummary()
{
if(!document.forms.editform.wpSummary.value.replace(/^(?:\/\\*.*\\*\/)? *(.*) *$/,'$1'))
{
var r = prompt('Are you sure you want to submit without adding a summary?\nTo add a summary, type it in the box below:','[[User Talk:Flyingidiot|(fi)]]');
if(r == null) { return false; }
document.forms.editform.wpSummary.value = r;
}
return true;
}
$(addForceSummary);
/*split user warnings and deletions <nowiki>*/
function getUserName() {
switch (wgCanonicalNamespace) {
case 'User':
/*<![CDATA[*/
addButton('/media/wikipedia/commons/3/33/Button_exclamation.png','delete your own user page','{{','}}','subst:user:flyingidiot/2','mw-editbutton-media');
/*]]>*/;
break
case 'User_talk':
/*<![CDATA[*/
addButton('/media/wikipedia/commons/f/fc/Important-2.svg','autobio','
==[[:{{PAGENAME}}--',']]==
The article you created at [[',']] was listed for deletion as ''An article about a real person that does not assert the importance or significance of its subject'', criterion 7 in the [[Wikipedia:Criteria for speedy deletion#Articles|criteria for speedy deletion]] Articles section. It appears to be about you, please do not create articles about yourself.
If you would like to show some information about yourself, use [[Special:MyPage|your user space]] instead, but follow the [[Wikipedia:User_page#What_can_I_not_have_on_my_user_page.3F|userpage rules.]] [[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC)
','Article','mw-editbutton-media');
addButton('/media/wikipedia/commons/4/44/Warn1.png','First User Warning Vandal','[[File:Information.svg|25px|alt=Information icon]] Hello, I'm [[User:Ladsgroup|Ladsgroup]]. I wanted to let you know that one or more of [[Special:Contributions/L^BPub|your recent contributions]] to [[:',']] have been undone because they did not appear constructive. If you would like to experiment, please use the [[Wikipedia:Sandbox|sandbox]]. If you have any questions, you can ask for assistance at the [[Wikipedia:Teahouse|Teahouse]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z186}}<!-- Template:uw-vandalism1 -->','Article','mw-editbutton-media');
addButton('/media/wikipedia/commons/e/e4/Warn2.png','Second User Warning Vandal','[[File:Information orange.svg|25px|alt=Information icon]] Please refrain from making unconstructive edits to Wikipedia, as you did at [[:',']]. Your edits appear to constitute [[Wikipedia:Vandalism|vandalism]] and have been [[Help:Reverting|reverted]]. If you would like to experiment, please use the [[Wikipedia:Sandbox|sandbox]]. Repeated vandalism may result in the [[Wikipedia:Blocking policy|loss of editing privileges]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z187}}<!-- Template:uw-vandalism2 -->','article','mw-editbutton-math');
addButton('/media/wikipedia/commons/8/84/Warn3.png','Third User Warning Vandal','[[File:Nuvola apps important.svg|25px|alt=Warning icon]] Please stop your [[Wikipedia:Disruptive editing|disruptive editing]]. If you continue to [[Wikipedia:Vandalism|vandalize]] Wikipedia, as you did at [[:',']], you may be [[Wikipedia:Blocking policy|blocked from editing]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z188}}<!-- Template:uw-vandalism3 -->','Article','mw-editbutton-nowiki');
addButton('/media/wikipedia/commons/b/bd/Warn4.png','Final User Warning Vandal','[[File:Stop hand nuvola.svg|30px|alt=Stop icon]] You may be '''[[Wikipedia:Blocking policy|blocked from editing]] without further warning''' the next time you [[Wikipedia:Vandalism|vandalize]] Wikipedia, as you did at [[:',']]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z189}}<!-- Template:uw-vandalism4 -->','article','mw-editbutton-nowiki');
addButton('/media/wikipedia/commons/7/76/Testwarn1.png','testpage userwarn 1','[[File:Information.svg|25px|alt=Information icon]] Hello, I'm [[User:Ladsgroup|Ladsgroup]]. An edit that you recently made to [[:',']] seemed to be a test and has been [[Help:Reverting|reverted]]. If you want to practice editing, please use the [[Wikipedia:Sandbox|sandbox]]. If you think a mistake was made, or if you have any questions, you can leave me a message on [[User talk:Ladsgroup|my talk page]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z191}}<!-- Template:uw-test1 -->','Article','mw-editbutton-signature');
addButton('/media/wikipedia/commons/0/03/Testwarn2.png','testpage userwarn 2','[[File:Information orange.svg|25px|alt=Information icon]] Please refrain from making test edits in Wikipedia pages, such as those you made to [[:',']], even if you intend to fix them later. Your edits have been [[Help:Reverting|reverted]]. If you would like to experiment again, please use the [[Wikipedia:Sandbox|sandbox]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z192}}<!-- Template:uw-test2 -->','Article','mw-editbutton-signature');
addButton('/media/wikipedia/commons/7/72/Testwarn3.png','testpage userwarn 3','[[Image:Ambox warning pn.svg|25px|alt=|link=]] Please stop making test edits to Wikipedia, as you did to [[:',']]. It is considered [[Wikipedia:Vandalism|vandalism]], which, under Wikipedia policy, can lead to '''[[Wikipedia:Blocking policy|being blocked from editing]]'''. If you would like to experiment again, please use the [[Wikipedia:Sandbox|sandbox]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z193}}<!-- Template:uw-test3 -->','Article','mw-editbutton-signature');
addButton('/media/wikipedia/commons/9/9d/Testwarn4.png','testpage userwarn 4','[[File:Stop hand nuvola.svg|30px|alt=Stop icon]] You may be '''[[Wikipedia:Blocking policy|blocked from editing]] without further warning''' the next time you [[Wikipedia:Vandalism|vandalize]] Wikipedia, as you did at [[:',']]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z189}}<!-- Template:uw-vandalism4 -->','Article','mw-editbutton-signature');
addButton('/media/wikipedia/commons/4/48/Deletewarn1.png','Userwarn delete 1','[[File:Information.svg|25px|alt=Information icon]] Hello, I'm [[User:Ladsgroup|Ladsgroup]]. I noticed that you recently removed content from [[:',']] without adequately explaining why. In the future, it would be helpful to others if you described your changes to Wikipedia with an accurate [[Help:Edit summary|edit summary]]. If this was a mistake, don't worry; the removed content has been restored. If you would like to experiment, please use the [[Wikipedia:Sandbox|sandbox]]. If you think I made a mistake, or if you have any questions, you can leave me a message on [[User_talk:Ladsgroup|my talk page]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC)<!-- Template:uw-delete1 -->','Article','mw-editbutton-table');
addButton('/media/wikipedia/commons/7/7d/Deletewarn2.png','Userwarn delete 2','[[File:Information orange.svg|25px|alt=Information icon]] Please do not remove content or templates from pages on Wikipedia, as you did to [[:',']], without giving a valid reason for the removal in the [[Help:Edit summary|edit summary]]. Your content removal does not appear to be constructive and has been [[Help:Reverting|reverted]]. If you only meant to make a test edit, please use the [[Wikipedia:Sandbox|sandbox]] for that. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC)<!-- Template:uw-delete2 -->','Article','mw-editbutton-table');
addButton('/media/wikipedia/commons/0/07/Deletewarn3.png','Userwarn delete 3','[[File:Nuvola apps important.svg|25px|alt=Warning icon]] Please stop your [[Wikipedia:Disruptive editing|disruptive editing]]. If you continue to blank out or remove portions of page content, templates, or other materials from Wikipedia without adequate explanation, as you did at [[:',']], you may be [[Wikipedia:Blocking policy|blocked from editing]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC)<!-- Template:uw-delete3 -->','Article','mw-editbutton-table');
addButton('/media/wikipedia/commons/f/f4/Deletewarn4.png','Userwarn delete 4','[[File:Stop hand nuvola.svg|30px|alt=Stop icon]] You may be '''[[Wikipedia:Blocking policy|blocked from editing]] without further warning''' the next time you remove or blank page content or templates from Wikipedia without giving a valid reason for the removal in the [[Help:Edit summary|edit summary]], as you did at [[:',']]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC)<!-- Template:uw-delete4 -->','Article','mw-editbutton-table');
addButton('/media/wikipedia/commons/c/cd/Warncreate1.png','Userwarn create nonsense 1','[[File:Information.svg|25px|alt=Information icon]] Welcome to Wikipedia. A page you recently created, [[:',']], may not conform to some of Wikipedia's [[Wikipedia:List of policies|guidelines]] for new pages, so it will be [[Wikipedia:Deletion policy|removed]] shortly (if it hasn't been already). Please use the [[Wikipedia:Sandbox|sandbox]] for any tests, and consider using the [[Wikipedia:Article wizard|Article Wizard]]. For more information about creating articles, you may want to read [[Wikipedia:Your first article|Your first article]]. You may also want to read our [[Wikipedia:Introduction|introduction page]] to learn more about contributing. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z43}}<!-- Template:uw-create1 -->','Article','mw-editbutton-table');
addButton('/media/wikipedia/commons/0/01/Warncreate2.png','Userwarn create nonsense 2','[[File:Information orange.svg|25px|alt=Information icon]] Please refrain from introducing inappropriate pages, such as [[:',']], to Wikipedia, as doing so is not in accordance with our [[Wikipedia:List of policies|policies]]. For more information about creating articles, you may want to read [[Wikipedia:Your first article]]; you might also consider using the [[Wikipedia:Article wizard2.0|Article Wizard]]. If you would like to experiment, please use the [[Wikipedia:Sandbox|sandbox]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z44}}<!-- Template:uw-create2 -->','Article','mw-editbutton-table');
addButton('/media/wikipedia/commons/0/09/Warncreate3.png','Userwarn create nonsense 3','[[File:Nuvola apps important.svg|25px|alt=Warning icon]] Please stop your [[Wikipedia:Disruptive editing|disruptive editing]]. If you continue to introduce [[WP:List of policies|inappropriate pages]] to Wikipedia, as you did at [[:',']], you may be [[Wikipedia:Blocking policy|blocked from editing]]. If you need guidance on how to create appropriate pages, try using the [[Wikipedia:Article wizard2.0|Article Wizard]]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z45}}<!-- Template:uw-create3 -->','Article','mw-editbutton-link');
addButton('/media/wikipedia/commons/0/00/Warncreate4.png','Userwarn create nonsense 4','[[File:Stop hand nuvola.svg|30px|alt=Stop icon]] You may be '''[[Wikipedia:Blocking policy|blocked from editing]] without further warning''' the next time you create an [[WP:List of policies|inappropriate page]], as you did at [[:',']]. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC){{Z46}}<!-- Template:uw-create4 -->','Article','mw-editbutton-link');/*]]>*/;
addButton('/media/wikipedia/commons/a/a4/Spam1.png','spam userwarn 1','[[File:Information.svg|25px|alt=Information icon]] Hello, I'm [[User:Ladsgroup|Ladsgroup]]. I wanted to let you know that one or more external links you added to [[:',']] have been removed because they seemed to be inappropriate for an encyclopedia. If you think I made a mistake, or if you have any questions, you can leave me a message on [[User_talk:Ladsgroup|my talk page]], or take a look at our [[Wikipedia:External links|guidelines]] about links. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC) [[Category:User talk pages with Uw-spam1 notices|{{PAGENAME}}]]<!-- Template:uw-spam1 -->','Article','mw-editbutton-signature');
addButton('/media/wikipedia/commons/2/27/Spam2.png','spam userwarn 2','[[File:Information orange.svg|25px|alt=Information icon]] Please do not add inappropriate [[Wikipedia:External links|external links]] to Wikipedia, as you did to [[:',']]. [[Wikipedia:What Wikipedia is not#LINK|Wikipedia is not a collection of links]], nor should it be used for advertising or promotion. Inappropriate links include, but are not limited to, links to personal websites, links to websites with which you are affiliated (whether as a link in article text, or a citation in an article), and links that attract visitors to a website or promote a product. See [[Wikipedia:External links|the external links guideline]] and [[Wikipedia:Spam|spam guideline]] for further explanations. Because Wikipedia uses the [[nofollow]] attribute value, its external links are disregarded by most search engines. If you feel the link should be added to the page, please discuss it on the associated talk page rather than re-adding it. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC)[[Category:User talk pages with Uw-spam2 notices|{{PAGENAME}}]]<!-- Template:uw-spam2 -->','Article','mw-editbutton-signature');
addButton('/media/wikipedia/commons/0/02/Spam3.png','spam userwarn 3','[[File:Nuvola apps important.svg|25px|alt=Warning icon]] Please stop your [[Wikipedia:Disruptive editing|disruptive editing]]. If you continue to add inappropriate [[Wikipedia:External links|external links]] to Wikipedia, as you did at [[:',']], you may be [[Wikipedia:Blocking policy|blocked from editing]]. It is considered [[Wikipedia:Spam|spamming]] and [[Wikipedia:What Wikipedia is not#ADVERTISING|Wikipedia is not a vehicle for advertising or promotion]]. Because Wikipedia uses [[nofollow]] tags, additions of links to Wikipedia will not alter search engine rankings. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC)[[Category:User talk pages with Uw-spam3 notices|{{PAGENAME}}]]<!-- Template:uw-spam3 -->','Article','mw-editbutton-signature');
addButton('/media/wikipedia/commons/f/fb/Spam4.png','spam userwarn 4','[[File:Stop hand nuvola.svg|30px|alt=Stop icon]] You may be '''[[Wikipedia:Blocking policy|blocked from editing]] without further warning''' the next time you insert a [[Wikipedia:Spam|spam]] link, as you did at [[:',']]. Persistent spammers may have their websites [[Wikipedia:Spam blacklist|blacklisted]], preventing anyone from linking to them from all [[FoundationSite:our-work/wikimedia-projects|Wikimedia sites]] as well as potentially being penalized by search engines. --[[user:Ladsgroup|Ladsgroup]]<sup>[[User talk:Ladsgroup|overleg]]</sup> 11:40, 6 February 2021 (UTC)[[Category:User talk pages with Uw-spam4 notices|{{PAGENAME}}]]<!-- Template:uw-spam4 -->','Article','mw-editbutton-signature');
break
default:
/*<![CDATA[*/
addButton('/media/wikipedia/commons/3/33/Button_exclamation.png','FIdeletion','{{user:Flyingidiot/del|','}}','|','mw-editbutton-media');
addButton('/media/wikipedia/commons/3/3d/ButtonSpam.png','Delete spam','{{','}}','Db-spam','mw-editbutton-bold');
addButton('/media/wikipedia/commons/c/ca/NonsenseDelete.png','Delete nonsense','{{','}}','Db-nonsense','mw-editbutton-italic');
addButton('/media/wikipedia/commons/2/28/Nonnotable.png','Delete unnotable','{{','}}','db-bio','mw-editbutton-link');
addButton('/media/wikipedia/commons/6/62/Button_stop.png','Delete for a special reason','{{db','}}','|','Reason','mw-editbutton-extlink');
addButton('/media/wikipedia/commons/e/e2/Button_contexto.png','Delete empty or no context','{{','}}','db-nocontext','mw-editbutton-headline');
addButton('/media/wikipedia/commons/3/3b/Button_crocs.png','Delete attack page','{{','}}','db-attack','mw-editbutton-image');
addButton('/media/wikipedia/commons/c/cc/Bouton_Vandale2.png','Delete blanked','{{','}}','db-blankcsd','mw-editbutton-image');
addButton('http://commons.wikimedia.org/wiki/Image:Wiki_test.GIF','Delete test','{{','}}','db-test','mw-editbutton-image');
addButton('/media/wikipedia/commons/6/62/Button_desambig.png','Disambiguate the page','{{disambig','}}','','mw-editbutton-hr');
/*]]>*/;
}
}
$(getUserName());
importScript('User:Tim_Laqua/Scripts/formatRecentChanges.js');
importScript('Wikipedia:WikiProject User scripts/Scripts/Add LI menu');importStylesheet('Wikipedia:WikiProject User scripts/Scripts/Add LI menu/css');
importScript('User:S/tags.js');
importScript('User:Krimpet/CH2.js');
var wma_settings =
{
height : 400,
width : 700
}
function lowerNoPunct(s)
{
return s.toLowerCase().split('.').join('').split(',').join('').split(':').join('').split(';').join('').split('+').join('');
}
$(function() {
if(wgNamespaceNumber==0) return; //avoid article space, generally speaking
var vs=
"/media/wikipedia/commons/thumb/9/94/Symbol_support_vote.svg/15px-Symbol_support_vote.svg.png#"+
"/media/wikipedia/commons/thumb/d/d0/Symbol_keep_vote.svg/15px-Symbol_keep_vote.svg.png#"+
"/media/wikipedia/commons/thumb/7/7f/Symbol_oppose_vote.svg/15px-Symbol_oppose_vote.svg.png#"+
"/media/wikipedia/commons/thumb/8/89/Symbol_delete_vote.svg/15px-Symbol_delete_vote.svg.png#"+
"/media/wikipedia/commons/thumb/8/89/Symbol_neutral_vote.svg/15px-Symbol_neutral_vote.svg.png#"+
"/media/wikipedia/commons/thumb/b/b0/Symbol_merge_vote.svg/15px-Symbol_merge_vote.svg.png#"+
"/media/wikipedia/commons/thumb/5/50/Symbol_move_vote.svg/15px-Symbol_move_vote.svg.png#"+
"/media/wikipedia/commons/thumb/0/0c/Symbol_redirect_vote.svg/15px-Symbol_redirect_vote.svg.png#"+
"/media/wikipedia/commons/thumb/b/ba/Symbol_opinion_vote.svg/15px-Symbol_opinion_vote.svg.png#"+
"/media/wikipedia/commons/thumb/e/e0/Symbol_comment_vote.svg/15px-Symbol_comment_vote.svg.png#"+
"/media/wikipedia/commons/thumb/f/f6/Symbol_unsupport_vote.svg/15px-Symbol_unsupport_vote.svg.png#"+
"/media/wikipedia/commons/thumb/e/e0/Symbol_question.svg/15px-Symbol_question.svg.png#"+
"/media/wikipedia/commons/thumb/a/aa/Symbol_divide_vote.svg/15px-Symbol_divide_vote.svg.png#"+
"/media/wikipedia/commons/thumb/5/54/Symbol_wait.svg/15px-Symbol_wait.svg.png#"+
"/media/wikipedia/commons/thumb/b/bc/Face-grin.svg/15px-Face-grin.svg.png#"+
"/media/wikipedia/commons/thumb/c/c5/Symbol_support2_vote.svg/15px-Symbol_support2_vote.svg.png#"+
"/media/wikipedia/commons/thumb/3/3b/Symbol_no_support_vote.svg/15px-Symbol_no_support_vote.svg.png";
var vt=vs.split("#");
var la=new Array();
la['support']=0; la['endorse']=0;
la['keep']=1;
la['oppose']=2; la['overturn']=2; la['object']=2;
la['delete']=3;
la['neutral']=4;
la['merge']=5; la['upmerge']=5;
la['move']=6; la['rename']=6; la['userfy']=6; la['transwiki']=6;
la['redirect']=7;
la['opinion']=8; la['relist']=8; la['subst']=8; la['salt']=8; la['change']=8; la['list']=8;
// Note that icon 8 on the list is often used for debate-specific !votes
la['comment']=9; la['update']=9; la['note']=9;
la['delist']=10;
la['question']=11;
la['split']=12;
la['wait']=13;
la['bjaodn']=14;
la['undelete']=15; la['restore']=15;
la['close']=16;
var btc=document.body.getElementsByTagName("B");
i=btc.length;
while(i--)
{
var j,k;
j=btc[i].innerHTML.split("<").join(" ").split(">").join(" ").split("/").join(" ").split(" ");
k=0;
var x="";
while(k<j.length)
{
if(lowerNoPunct(j[k])=="don't"||lowerNoPunct(j[k])=='not'
||lowerNoPunct(j[k])=='no'||lowerNoPunct(j[k])=='without') break;
var l=la[lowerNoPunct(j[k])];
if(l!=undefined)
{
x+="<IMG SRC='"+vt[l]+"' /> "
}
k++;
}
if(x!="") btc[i].innerHTML=x+btc[i].innerHTML;
}
});
importScript('User:AWeenieMan/furme.js');
importScript('User:Cameltrader/Advisor.js');
importScript('User:Ioeth/friendly.js');