User:Xaradnam/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:Xaradnam/monobook.css. |
CurPg=mw.config.get('wgPageName'); // Current page name
//==================================================
function printValue(txt, val)
{$('body').append("<center><h4><tt>" + txt + ": " + val + " </tt></h4></center>");}
//==================================================
printValue("CurPg", CurPg);
//==================================================
// Add {{Unsigned}} to bottom of diff pages with user and time filled in
//if (mw.config.get('wgRevisionId'))
{
const months=[];
months["Jan"]="January"; months["Feb"]="February"; months["Mar"]="March";
months["Apr"]="April"; months["May"]="May"; months["Jun"]="June";
months["Jul"]="July"; months["Aug"]="August"; months["Sep"]="September";
months["Oct"]="October"; months["Nov"]="November"; months["Dec"]="December";
// user=document.getElementById('mw-diff-ntitle2').firstChild.firstChild.firstChild.nodeValue;
// ts=document.getElementById('mw-diff-ntitle1').firstChild.firstChild.firstChild.nodeValue.replace(/(Latest )?Revision as of /i, "");
username="Somebody"; /////////////////////
wpts = "16:42, 6 February 2021"; ///////////////////
wpts=wpts.replace(",", "");
var ts = new Date(wpts);
ts=ts.toUTCString();
mth=ts.substr(8, 3);
//UTCtime: Sat, 06 Feb 2021 17 : 42 :00 GMT -> WP 09:42, 6 February 2021 (UTC)
ts=ts.replace(/..., (\d+) (...) (\d+) (\d+):(\d+).*/, "$4:$5, $1 $2 $3 (UTC)");
ts=ts.replace(mth, months[mth]);
ts=ts.replace(", 0", ", ");
printValue("ts", "<!-- Template:Unsigned --><span class="autosigned" style="font-size:85%;">— Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[User:"+username+"|"+username+"]] ([[User talk:"+username+"#top|talk]] • [[Special:Contributions/"+username+"|contribs]]) "+ts+" (UTC)</span>"); ////////////////////
}
//==================================================
// Section subscribe
CurNSnum=mw.config.get('wgNamespaceNumber');
if (CurNSnum%2==1||CurNSnum==4)
{mw.util.addPortletLink(
'p-tb',
mw.config.get('wgScript')+'?title='+mw.config.get('wgPageName')+'&dtenable=1',
'Section subscribe'
);}
//==================================================
// Add unredirected link next to redirects; from [[User:BrandonXLF/NoRedirect.js]]
$(function() {
$('#mw-content-text .mw-redirect').after(function() {
return this.href.indexOf('redirect=no') !== -1 || this.href.indexOf('action=') !== -1 || this.href.indexOf('diff=') !== -1 ? ''
: '<a href="' +
this.href +
(this.href.includes('?') ? '&' : '?') +
'redirect=no" title="' +
(this.title || this.href) +
' (redirect pg)"><span style="color:#534e8a"><sup> Я</sup></span></a>';
});
});
// ======== ADD DIFF INFO TO BOTTOM OF PAGE WHEN APPLICABLE =========
$.when( $.ready, mw.loader.using(["mediawiki.util"]) ).then( function () {
var suffix = mw.config.get("wgDiffNewId");
if (suffix) {
if (document.getElementsByClassName("diff-multi").length ||
CurPg === "Special:ComparePages") {
suffix = mw.config.get("wgDiffOldId") + "/" + suffix;
}
$('body').append("<center><h4><tt>[[Special:Diff/" + suffix + "|diff]]</tt></h4></center>");
} else {
var oldidMatch = mw.util.getParamValue("oldid");
if(oldidMatch) {
$('body').append("<center><h4><tt>[[Special:Permalink/" + oldidMatch + "|permalink]]</tt></h4></center>");
}
}
} );
//==================================================
importScript('User:Shubinator/DYKcheck.js');