பயனர்:Kiran Gopi/useredits.js
குறிப்பு - சேமித்த பின்னர், நீங்கள் செய்த மாற்றங்களைக் காண்பதற்கு உங்கள் உலவியின் இடைமாற்று அகற்றப்பட வேண்டும்.
- மொஸில்லா பயர்பாக்ஸ் / சபாரி: Shift+Reload, அல்லது Ctrl-F5 அல்லது Ctrl-R (⌘-R Mac ல்)
- கூகிள் குரோம் Ctrl-Shift-R அழுத்தவும். (⌘-Shift-R Mac ல்) ;
- இண்டர்நெட் எக்ஸ்ப்ளோரர்: Ctrl-Refresh அல்லது Ctrl-F5 ஐ அழுத்தவும்.
- ஒபேரா: Tools → Preferences இல் இடைமாற்றை அகற்றவும்;
// <pre>
function liveEditCounter(username)
{
var xhr;
var headingBkUp = document.getElementById("firstHeading").innerHTML;
try { xhr = new XMLHttpRequest(); }
catch(e)
{
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange = function()
{
if(xhr.readyState == 4)
{
if(xhr.status == 200 || xhr.status == 0) {
var jsonOutput = eval('(' + xhr.responseText + ')');
document.getElementById("firstHeading").innerHTML = headingBkUp + " (Edits: " +
jsonOutput.query.users[0].editcount + ")";
}
}
};
xhr.open('GET', "http://ta.wikipedia.org/w/api.php?action=query&list=users&ususers="+username+"&usprop=editcount&format=json", true);
xhr.send(null);
document.getElementById("firstHeading").innerHTML = headingBkUp +
" <img src='http://upload.wikimedia.org/wikipedia/commons/d/de/Ajax-loader.gif' />";
}
function OpenContributions()
{
window.location = "http://ta.wikipedia.org/wiki/சிறப்பு:Contributions/" + encodeURIComponent( wgTitle );
}
$(function() {
if (wgTitle.indexOf("/") != -1 || document.title.indexOf("- History -") != -1) //no subpages or history
return;
if (wgCanonicalNamespace == "User" || wgCanonicalNamespace == "User_talk") {
var username = encodeURIComponent( wgTitle );
liveEditCounter(username);
mw.util.addPortletLink( 'p-cactions', "javascript:OpenContributions()", "Contributions", "Contribs", "பயனர் பங்களிப்புக்கள்", "");
}
});
//<pre>