In this article, we are going to address the topic of
User:RPellessier/standard.js, which is of great relevance today.
User:RPellessier/standard.js is a topic that has generated great discussion and debate in different areas, from the academic field to the social field. Its importance lies in the impact it has on people's lives and on society in general. Through this article, we will delve into the key aspects of
User:RPellessier/standard.js, exploring its origins, its evolution over time and its influence in various areas. Furthermore, we will analyze the possible future implications that
User:RPellessier/standard.js may have on our daily lives, as well as the possible solutions and alternatives that may arise to address this issue effectively.
// Add a "Kate" link to your monobook "personal menu" list at the very
// top of the page.
//
// Indicate where you would like "Kate" to appear:
// pt-userpage, pt-mytalk, pt-preferences,
// pt-watchlist, pt-mycontris, pt-logout
//
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( 'Kate' ) ); // 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 );
// This version is for users of the ''classic'' skin, where it can be added to
// ]. The script places a 'Kate' link immediately following
// your "User (Talk)" links at the top of the classic skin layout.
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' );
var user = td.getElementsByTagName( 'a' );
var name = user.firstChild.nodeValue;
var loc = td.getElementsByTagName( 'br' ); // 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 );