Jump to content

User:It's-is-not-a-genitive/standard.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by It's-is-not-a-genitive (talk | contribs) at 01:33, 7 January 2006. 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.
function KateLinkClassicSkin()
{
                //      This is tricky, as there are so few tag-IDs to assist us.
                //      I'm placing Kate 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 kate = document.createElement( 'a' );
                kate.appendChild( document.createTextNode( 'Kate' ) );
                kate.href = 'http://tools.wikimedia.de/~kate/cgi-bin/count_edits?dbname=enwiki&user=' + name;

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