Jump to content

User:Userscripts/Editcount link/source.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Karl Dickman (talk | contribs) at 06:06, 8 December 2006 (try this fix). 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.
if(skin=="standard") {
  function CountLinkClassicSkin() {
                //      This is tricky, as there are so few tag-IDs to assist us.
                //      The link will be placed right after the "User (Talk)" links at top.

        var td = document.getElementById( 'topbar' ).getElementsByTagName( 'td' )[ 2 ];
        var user = td.getElementsByTagName( 'a' )[ 0 ];
        var name = user.firstChild.nodeValue;
        var loc = td.getElementsByTagName( 'br' )[ 0 ]; // insert before this

        var count = document.createElement( 'a' );
                count.appendChild( document.createTextNode( 'Count' ) );
                count.href = 'http://tools.wikimedia.de/~essjay/edit_count/Count.php?username=' + name + '&submit=Count'

        td.insertBefore( document.createTextNode( ' (' ), loc );
        td.insertBefore( count, loc );
        td.insertBefore( document.createTextNode( ')' ), loc );
  }
  if ( window.addEventListener ) window.addEventListener( 'load', CountLinkClassicSkin, false );
  else if ( window.attachEvent ) window.attachEvent( 'onload', CountLinkClassicSkin );
}

if(skin=="monobook") {
 alert("You are using monobook skin");
 gsKateInsertBefore = 'pt-mycontris'; // leave blank to append after "logout"

 function KateLink()
 {
   var user = document.getElementById( 'pt-userpage').firstChild.firstChild.data;
 
   var li = document.createElement( 'li' );
   li.id = 'pt-kate';
 
   var a = document.createElement( 'a' );
   a.appendChild( document.createTextNode( 'Count contributions' ) ); // eh, the css makes the text lowercase
   a.href = 'http://tools.wikimedia.de/~kate/cgi-bin/count_edits?dbname=enwiki&user=' + user;
 
   li.appendChild( a );
 
   if ( ! gsKateInsertBefore ) // append to end (right) of list
   {
      document.getElementById( 'pt-logout' ).parentNode.appendChild( li );
   }
   else
   {
       var before = document.getElementById( gsKateInsertBefore );
       before.appendChild( li, before );
   }
 }
 if ( window.addEventListener ) window.addEventListener( 'load', KateLink, false );
 else if ( window.attachEvent ) window.attachEvent( 'onload', KateLink );
}