Jump to content

User:Haza-w/interiot.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Haza-w (talk | contribs) at 21:13, 10 March 2006. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
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.
  //  Add an "Interiot" link to your monobook "personal menu" list at the very
  //  top of the page.
  //
  //  Code by Haza-w based on KATE script
  //
  //  Indicate the node you would like "Interiot" to appear before:
  //    pt-userpage, pt-mytalk, pt-preferences,
  //    pt-watchlist, pt-mycontris, pt-logout
  //
gsInteriotInsertBefore = 'pt-logout'; // leave blank to append after "logout"
  //
function InteriotLink()
{
  var user = document.getElementById( 'pt-userpage' ).firstChild.firstChild.data;

  var li = document.createElement( 'li' );
    li.id = 'pt-interiot';

    var a = document.createElement( 'a' );
      a.appendChild( document.createTextNode( 'Interiot' ) );
      a.href = 'http://tools.wikimedia.de/~interiot/cgi-bin/count_edits?dbname=enwiki_p&user=' + user;

    li.appendChild( a );

  if ( ! gsInteriotInsertBefore ) // append to end (right) of list if not defined
  {  document.getElementById( 'pt-logout' ).parentNode.appendChild( li );
  }
  else
  {  var before = document.getElementById( gsInteriotInsertBefore );
      before.parentNode.insertBefore( li, before );
  }
}

if ( window.addEventListener ) window.addEventListener( 'load', InteriotLink, false );
else if ( window.attachEvent      ) window.attachEvent   ( 'onload', InteriotLink );