User:Jarry1250/vector.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 is at User:Jarry1250/vector.css. |
importScript('User:Splarka/ajaxfilemove.js');
importScript('User:John254/mass rollback.js')
importScript('User:Anomie/linkclassifier.js'); // Linkback: [[User:Anomie/linkclassifier.js]]
importScript('Wikipedia:AutoEd/complete.js');
importScript('User:Shubinator/DYKcheck.js'); //DYKcheck tool
//importScript('User:Jarry1250/rfaform.js'); //RFA form tool
var delLog_timeformat = 2;
importScript('User:Mr.Z-man/delLog.js');
importScript('User:Mr.Z-man/closeAFD.js');
importScript('User:Mr.Z-man/hideClosedAFD.js');
popupFixDabs=true;
popupAdminLinks=true;
importScript('User:X!/userrights.js');
importScript('User:AWeenieMan/furme.js');//Fair use rational
importScript('User:GregU/familytree.js');
importScript('User:Jarry1250/ajaxsendcomment.js')
importScript('User:Ale_jrb/Scripts/csdhelper.js'); //[[User:Ale_jrb/Scripts]]
//Below script is not mine.
function unwatchlinks() {
aitchone = document.getElementById('firstHeading').firstChild.nodeValue;
switch(aitchone){
case 'My watchlist':
lists=document.getElementsByTagName('ul');
for (i=0;i<lists.length;i++) {
if (lists[i].hasAttribute('class')) {
if (lists[i].getAttribute('class')=='special') {//It's a day's watchlist.
items=lists[i].childNodes;//li elements and whitespace
for (j=items.length-1;j>-1;j--) {
if (items[j].nodeType>1) continue;//li elements, not whitespace
difflink=items[j].firstChild;
while (difflink.nodeType>1) difflink=difflink.nextSibling;//first element sub the li
diffurl=difflink.getAttribute('href');// /w/index.php?title=TITLE&OTHERPARAMS if not a log entry
if (diffurl.indexOf('/wiki/')) {//not a log entry
title=diffurl.split('=')[1];
title=title.split('&')[0];//pagename of the watchlist item
newurl='/wiki/'+title+'?action=unwatch';
anch=document.createElement('a');
anch.setAttribute('href',newurl);
anch.appendChild(document.createTextNode('-'));
items[j].insertBefore(anch,difflink);
spacer=document.createTextNode(') (');
items[j].insertBefore(spacer,difflink);
}//end if indexOf
}//end for j
}//end if special
}//end if hasAttr
};//end for i
break;//case 'My watchlist'
case 'Recent changes':
strongs=document.getElementsByTagName('strong');
for (i=0;i<strongs.length;i++) {
strong=strongs[i];
if (strong.getAttribute('class')=='mw-watched') {//page is on watchlist
children=strong.childNodes;//a element and whitespace
for (j=0;j<children.length;j++) {
if (children[j].nodeType>1) continue;//elements only, so a element
pageurl=children[j].getAttribute('href');// /wiki/TITLE
unwatchurl=pageurl+'?action=unwatch';
anch=document.createElement('a');
anch.setAttribute('href',unwatchurl);
anch.appendChild(document.createTextNode('(unwatch)'));
strong.parentNode.insertBefore(anch,strong);
spacer=document.createTextNode(' ');
strong.parentNode.insertBefore(spacer,strong);
break;//for j, don't look at subsequent whitespace
}//end for j
}//end if mw-watched
}//end for i
break;//case 'Recent changes'
}//end switch
};//end function
addOnloadHook(unwatchlinks);