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 13:44, 27 January 2006 (New interiot script). 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.
// <pre><nowiki>

  //  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 where you would like "Interiot" to appear after:
  //    pt-userpage, pt-mytalk, pt-preferences,
  //    pt-watchlist, pt-mycontris, pt-logout
  //
gsInteriotInsertAfter = 'pt-mycontris'; // 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 ( ! gsInteriotInsertAfter ) // append to end (right) of list if not defined
  {  document.getElementById( 'pt-logout' ).parentNode.appendChild( li );
  }
  else
  {  var before = document.getElementById( gsInteriotInsertAfter );
      before.appendChild( li, before );
  }
}
   if ( window.addEventListener ) window.addEventListener( 'load', InteriotLink, false );
else if ( window.attachEvent      ) window.attachEvent   ( 'onload', InteriotLink );

// </nowiki></pre>