User:Ale jrb/Scripts/userhist.js
Appearance
< User:Ale jrb | Scripts
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
![]() | Documentation for this user script can be added at User:Ale jrb/Scripts/userhist. |
function userHistMain() {
var me = this;
this.displayBox = function() {
var box = document.createElement('input');
box.setAttribute('id', 'userhist-isolate');
box.setAttribute('type', 'text');
box.setAttribute('width', '200px');
var button = document.createElement('input');
button.setAttribute('type', 'button');
button.setAttribute('value', 'isolate history');
if (button.addEventListener) {
button.addEventListener('click', function() { userHist.getUserHist(document.getElementById('userhist-isolate').value); }, false);
}
else
{
button.attachEvent('onclick', function() { userHist.getUserHist(document.getElementById('userhist-isolate').value); });
}
var span = document.createElement('span');
span.setAttribute('style','margin-left: 20px;');
span.appendChild(box);
span.appendChild(button);
document.getElementById('mw-history-search').appendChild(span);
}
this.getUserHist = function(user) {
var api = 'http://en.wikipedia.org/w/api.php';
if (typeof user == 'undefined') return false;
if (!user) return false;
user = user.replace(/ /g, '_');
user = user.replace(/User:/g, '');
// remove useless interface
var histPar = document.getElementById('mw-history-compare');
histPar.innerHTML = 'loading edits...';
var apiLink = '?action=query&format=xml&prop=revisions&titles='+wgPageName+'&rvprop=ids|timestamp|flags|comment|user|size&rvlimit=500&rvuser='+user+'';
this.req = new wa_ajaxcall();
this.req.requestUrl = api + apiLink;
this.req.get (function() {
userHist.data = userHist.req.response;
userHist.showUserHist();
return true;
});
}
this.showUserHist = function() {
var data = this.data;
if (data.getElementsByTagName('rev').length <= 0) {
this.showError('That user has not edited this page');
return false;
}
// get output
var output = [];
for (var i = 0; i < data.getElementsByTagName('rev').length; i ++) {
var dataset = data.getElementsByTagName('rev')[i];
output[i] = [];
output[i][0] = dataset.getAttribute('revid'); // oldid
output[i][1] = dataset.getAttribute('user'); // user
output[i][2] = dataset.getAttribute('timestamp'); // timestamp
output[i][3] = dataset.getAttribute('comment'); // comment
output[i][4] = dataset.getAttribute('size'); // size
output[i][5] = dataset.getAttribute('minor'); // minor
}
// build our own interface
var newInt = '<ul id="pagehistory">';
var url = 'http://en.wikipedia.org/w/index.php?title='+wgPageName;
for (var i = 0; i < output.length; i ++) {
var timestamp = me.convertTimestamp(output[i][2]);
var comment = me.parseComment(output[i][3]);
if (output[i][5] != null) { var m = '<span class="minor">m</span> '; } else { var m = ''; }
newInt = newInt + '<li class="">(<a href="'+url+'&oldid='+output[i][0]+'&diff=cur">cur</a>) (<a href="'+url+'&oldid='+output[i][0]+'&diff=prev">prev</a>) <span style="padding-left: 5px;"><a href="'+url+'&oldid='+output[i][0]+'">'+timestamp+'</a></span> <span class="history-user"><a href="/wiki/User:'+output[i][1]+'">'+output[i][1]+'</a></span> '+m+'<span class="history-size">('+output[i][4]+' bytes)</span> '+comment+'</li>';
}
newInt += '</ul>';
var histPar = document.getElementById('mw-history-compare');
histPar.innerHTML = newInt;
}
this.showError = function(error) {
alert(error);
}
this.convertTimestamp = function(timestamp) {
var regTest = /([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})Z/g;
regTest.lastIndex = 0;
time = regTest.exec(timestamp);
if (time == null) return 'failed to parse timestamp';
var d = new Date();
var hourOffset = (d.getTimezoneOffset() / 60) * -1;
var h = parseInt(time[4], 10) + hourOffset;
if (h < 10) h = '0' + h;
var months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
var month = parseInt(time[2], 10);
var newStamp = h + ':' + time[5] + ', ' + time[3] + ' ' + months[month-1] + ' ' + time[1];
return newStamp;
}
this.parseComment = function(comment) {
if (comment == null) return '';
comment = comment.replace('/*', '<span class="autocomment">→');
comment = comment.replace('*/', '</span>');
comment = comment.replace(/\[\[(.+?)(#.+?)?(?:\|(.+?))\]\]/g, "<a href=\"/wiki/$1$2\" title=\"$3\">$3</a>");
comment = comment.replace(/\[\[(.+?)(#.+?)?\]\]/g, "<a href=\"/wiki/$1$2\" title=\"$1\">$1</a>");
comment = '(<span class="comment">' + comment + '</span>)';
return comment;
}
this.init = function() {
if ( wgAction == 'history' ) {
me.displayBox();
}
}
}
importScript('User:Ale_jrb/Scripts/waLib.js');
var userHist = new userHistMain();
hookEvent('load', userHist.init);