User:Kernigh/monobook.js

From RogueBasin
< User:Kernigh
Revision as of 04:08, 20 August 2006 by Kernigh (talk | contribs) (Minor script fixes.)
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// <pre>

/*
 * Monobook script of Kernigh at RogueBasin - public domain
 */

// workaround - MediaWiki 1.3.9 is too old to have this function
function addOnloadHook( hook ) {
  if( window.addEventListener )
    window.addEventListener( "load", hook, false );
}

// load a script from some MediaWiki
function loadScript( wikiPhp, file ) {
  document.write('<script type="text/javascript" src="' +
    wikiPhp + '?title=' + file + '&action=raw' +
    '&ctype=text/javascript&dontcountme=s"></script>');
}

// tagline.js config
scr = new Object();
scr.wikiUrl = "http://roguebasin.roguelikedevelopment.org/index.php?title=";
scr.wikiPhp = "http://roguebasin.roguelikedevelopment.org/index.php";

// wikialink.js config
function wikiabuttons() {
  addwb( "action", "wikihack", "nethack.wikia.com/wiki/", "" );
}

<!-- Hotlinks! These should be in my cache because I visit wikia.com often. -->
loadScript( "http://www.wikia.com/index.php", "User:Kernigh/tagline.js" );
loadScript( "http://www.wikia.com/index.php", "User:Kernigh/wikialink.js" );

// </pre>