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.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/** * Optional component for metadata script ([[User:Pyrospirit/metadata.js]]). * This script adds a link to the toolbox. When clicked, the script finds the * assessment of all articles linked from the current article and colors the * links accordingly. */if(typeofassessment!=='undefined'){assessment.links={/** * Add a link to the toolbox in the sidebar. Clicking the link runs the * script. */addToolboxLink:functionaddToolboxLink(){vardesc='Find the assessment of all articles linked and color the links';mw.util.addPortletLink('p-tb','javascript:assessment.links.assessLinks()','Assess links','t-assess-article-links',desc);},/** * Find the assessment data for all links on the page, and color each * link accordingly. Requests are only sent one at a time. */assessLinks:functionassessLinks(){// Script-specific CSS rulesimportStylesheet('User:Pyrospirit/metadata/assesslinks.css');this.linkList=document.getElementById('bodyContent').getElementsByTagName('a');// Start the first requestthis.assessSingleLink(0);},/** * Assess the link with the given index from the link list. * @param {Number} linkIndex - the index of the link element to be assessed */assessSingleLink:functionassessSingleLink(linkIndex){if(linkIndex>=this.linkList.length)return;varel=this.linkList[linkIndex],url=this.getRequestLink(el.href),that=this;if(url){assessment.ajaxMain(url,function(){that.modifyLink.apply(that,arguments);},linkIndex);}else{// Continue to next linkthis.assessSingleLink(linkIndex+1);}},/** * Given the href attribute of a link, finds and returns the talk page URL * associated with it. Returns nothing for external or non-mainspace links. * @param {String} href - the href attribute of the element to be assessed * @return {String} url - the URL containing the assessment data */getRequestLink:functiongetRequestLink(href){varlocalUrl=mw.config.get('wgServer')+mw.config.get('wgArticlePath').replace('$1',''),url;if(href.replace(/#.*/,'')!=document.___location.href&&RegExp('^'+localUrl).test(href)){if(!/^[a-z]+([_ ]talk)?:[^_ ]/i.test(href.replace(localUrl,''))){url=href.replace('?','&').replace('\/wiki\/','\/w\/index.php?title=Talk:')+'&action=raw§ion=0';}elseif(/^Talk:[^_ ]/i.test(href.replace(localUrl,''))){url=href.replace('?','&').replace('\/wiki\/','\/w\/index.php?title=')+'&action=raw§ion=0';}returnurl;}},/** * The callback function for requests that are sent out. When the request * is ready, parses the assessment data, colors the link, and starts the * next request. * @param {Object} request - an AJAX GET request containing assessment data * @param {Number} index - the index of the element being assessed */modifyLink:functionmodifyLink(request,index){if(request.readyState==4){varassess={rating:'none',pageLink:[null,null],extra:[],activeReview:null};// Only do stuff with the request if it has a 200 status codeif(request.status==200){assess.rating=assessment.getRating(request.responseText);}varnewClass=assessment.talkAssess(assess).newClass;this.linkList[index].className+=' assess-wikilink '+newClass;// Start next requestthis.assessSingleLink(index+1);}}};// Add the toolbox link when the page loads$(function(){assessment.links.addToolboxLink.call(assessment.links);});}