User:Protez/monobook.js
Appearance
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. |
The accompanying .css page for this skin is at User:Protez/monobook.css. |
var xmlhttp=false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
// JScript gives us Conditional compilation, we can cope with old IE versions.
// and security blocked creation of the objects.
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}
function updateRfetch(response) {
var subHeading = document.getElementById('siteSub');
// alert(response);
subHeading.innerHTML = subHeading.innerHTML + response;
}
function rfetch(title) {
var url = 'http://wiki.varbitrage.com/wikipedia.php?override=true&title='+encodeURI(title);
xmlhttp.open("GET", url, true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {updateRfetch(xmlhttp.responseText);}
}
xmlhttp.send(null);
}
function subHeading() {
// firstHeading
var firstHeading = document.getElementsByClassName('firstHeading')[0];
// title
var subHeading = document.getElementById('siteSub');
var text = subHeading.innerHTML;
// + plus sign is a stub character for closing bracket
// var title = text.match(/\[\[([^]+]*?)\]\]/)[1];
var title = firstHeading.innerHTML;
subHeading.innerHTML = "<a href=\"http://wiki.varbitrage.com/index.php?title="+title+"\">Varbitrage.com MediaWiki Article</a> (<a href=\"http://wiki.varbitrage.com/index.php?title="+title+"&action=edit\">edit</a>, <a href=\"javascript:rfetch('"+title+"')\">rfetch</a>, <a href='http://wiki.varbitrage.com/wikipedia.php?override=true&title="+encodeURI(title)+"'>rfetch_href</a>)";
}
hookEvent('load', subHeading);