Jump to content

User:Zabshk/common.js: Difference between revisions

Script is working, moved to wikimedia.
mNo edit summary
(Script is working, moved to wikimedia.)
Line 1:
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Zabshk/heading-icons.js&action=raw&ctype=text/javascript');
mw.loader.load('https://meta.wikimedia.org/w/index.php?title=User:Zabshk/globaleditcounter.js&action=raw&ctype=text/javascript');
 
// Original version:
// - QuickEditCounter script by [[:pl:User:ChP94]]
// - Released under the [http://www.gnu.org/licenses/gpl.txt GNU Public License (GPL)]
//Modified by [[:pl:User:Beau]] and then by [[:pl:User:Zabshk]]
 
window.qecGadget = {
version: 9,
 
init: function() {
if ( mw.config.get( 'wgNamespaceNumber' ) != 2 && mw.config.get( 'wgNamespaceNumber' ) != 3 ) {
return;
}
 
if ( mw.util.getParamValue('printable') == 'yes' ) {
return;
}
 
this.username = mw.config.get( 'wgTitle' ).replace(/\/.*$/, '');
 
var that = this;
var request = {
action: 'query',
list: 'users',
usprop: 'editcount',
format: 'json',
ususers: this.username,
requestid: new Date().getTime()
};
var globalrequest = {
action: 'query',
meta: 'globaluserinfo',
guiprop: 'editcount',
format: 'json',
guiuser: this.username,
requestid: new Date().getTime()
};
jQuery.getJSON( mw.util.wikiScript( 'api' ), globalrequest, function(global) {
jQuery(document).ready(function() {
if (global) {
jQuery.getJSON( mw.util.wikiScript( 'api' ), request, function(result) {
if (result) {
that.showResults(result, global);
}
});
}
});
});
 
},
showResults: function(data, gdata) {
data = data.query.users[0];
gdata = gdata.query.globaluserinfo;
if (!data || data.name != this.username || data.invalid != null || data.editcount === undefined)
return;
if (!gdata || data.name != this.username || data.invalid != null || data.editcount === undefined)
return;
 
var firstHeading;
var headers = document.getElementsByTagName( 'h1' );
 
for ( var i = 0; i < headers.length; i++ ) {
var header = headers[i];
if(header.className == "firstHeading" || header.id == "firstHeading" || header.className == "pagetitle") {
firstHeading = header; break;
}
}
 
if( !firstHeading ) {
firstHeading = document.getElementById("section-0");
}
 
if( !firstHeading ) {
return;
}
 
var html = 'This user made';
html += ' <font color="#2B60DE">' + data.editcount + '</font> local edits and <font color="#F70D1A">' + gdata.editcount + '</font> total edits.';
 
var div = document.createElement("div");
div.style.cssText = "font-size:0.5em;line-height:1em";
div.className = 'plainlinks';
div.innerHTML = html;
 
if ( mw.config.get( 'skin' ) == 'modern' ) {
div.style.marginLeft = "10px";
div.style.display = "inline-block";
}
 
firstHeading.appendChild(div);
}
};
 
qecGadget.init();
0

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.