Jump to content

User:Psylabs/monobook.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Psylabs (talk | contribs) at 17:01, 30 March 2010 (Created page with 'importScript("User:GregU/randomlink.js"); addOnloadHook( function() { // Other special cases are "Special:RecentChangesLinked" and "Special:Contributions" add...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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.
importScript("User:GregU/randomlink.js");
 
addOnloadHook( function()
{
  // Other special cases are "Special:RecentChangesLinked" and "Special:Contributions"
  addPortletLink('p-navigation', 'javascript:randomLink("Special:WhatLinksHere")',
                 'Random back-link', 'n-randomback', 'Random page that links here');
 
  addPortletLink('p-navigation', 'javascript:randomLink("Special:AllPages",4)',
                 'Random page', 'n-randompage2', 'Load a random article, the slow way');
 
  // Ignore most of the top and bottom meta links on WP:FA
  randomlink_exclude = /^Wikipedia:|^Portal:|^(Lists?|Outline|Library) of|^(Deaths in )?20\d\d$/;
 
  addPortletLink('p-navigation', 'javascript:randomLink("Wikipedia:Featured articles")',
                 'Featured article', 'n-randomfa', 'Pick a random featured article');
 
  vgcats = "Top|High|Mid|Low|Low|Low|Low|Low|Low|Low|NA|Unknown";
  vgcats = vgcats.replace(/\w+/g, "Category:$&-importance video game articles");
 
  addPortletLink('p-navigation', 'javascript:randomlink_paged=1;randomLink(vgcats)',
                 'Video game article', 'n-randomvg', 'Random article in WikiProject Video games');
 
  // WhatLinksHere is probably a better way to find all articles in a WikiProject
  bblist = "Special:WhatLinksHere/Template:WikiProject_Baseball?namespace=1&hidelinks=1&limit=250";
 
  addPortletLink('p-navigation', 'javascript:randomlink_paged=1;randomlink_maxfrom=24000000;randomLink(bblist)',
                 'Baseball article', 'n-randombb', 'Random article in WikiProject Baseball');
});