User:Xaradnam/monobook.js: Difference between revisions
Appearance
Content deleted Content added
m Tweak |
m mv to common.js |
||
(47 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
// <nowiki> |
|||
// Section subscribe |
|||
CurPg=mw.config.get('wgPageName'); // Current page name |
|||
CurNSnum=mw.config.get('wgNamespaceNumber'); |
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 printValue(txt, val) |
|||
{$('body').append('<center><h4><tt>' + txt + ': ' + val + ' </tt></h4></center>');} |
|||
$('#mw-content-text .mw-redirect').after(function() { |
|||
// ========= DISPLAY AT BOTTOM (OR TOP) OF PAGE ========== |
|||
return this.href.indexOf('redirect=no') !== -1 || this.href.indexOf('action=') !== -1 || this.href.indexOf('diff=') !== -1 ? '' |
|||
function showTxt(txt,top) |
|||
: '<a href="' + |
|||
{ |
|||
this.href + |
|||
line='<h4 style="text-align:center;"><tt>'+txt+'</tt></h4>'; |
|||
(this.href.includes('?') ? '&' : '?') + |
|||
if (top) $('body').prepend(line); |
|||
'redirect=no" title="' + |
|||
else $('body').append(line); |
|||
(this.title || this.href) + |
|||
} |
|||
' (no redirect)"><span style="color:#534e8a"><sup> Я</sup></span></a>'; |
|||
}); |
|||
// a convenient way to display test values |
|||
}); |
|||
if (CurPg=="User:Xaradnam/monobook.js") |
|||
{ |
|||
showTxt("This is "+CurPg, 1); |
|||
} |
|||
//================================================== |
|||
if (CurPg=="User:Xaradnam/monobook.js") printValue("CurPg", CurPg); |
|||
DiffOnly = { |
|||
watchlist: true, |
|||
diff: false |
|||
} |
|||
importScript('User:Mr. Stradivarius/gadgets/DiffOnly.js'); |
|||
importScript('User:Theleekycauldron/DYKViews.js'); |
|||
// ======== SHOW {{Unsigned}} AT BOTTOM OF DIFF TALK+ PAGES ========= |
|||
// For potential unsigned comments on talk, WP, template (for DYK noms) |
|||
// Works with any of the four Wiki date formats available in Prefs |
|||
if (mw.config.get('wgDiffNewId') && (CurNSnum%2==1||CurNSnum==4||CurNSnum==10)) |
|||
{ |
|||
const month=[]; |
|||
month["Jan"]="January"; month["Feb"]="February"; month["Mar"]="March"; |
|||
month["Apr"]="April"; month["May"]="May"; month["Jun"]="June"; |
|||
month["Jul"]="July"; month["Aug"]="August"; month["Sep"]="September"; |
|||
month["Oct"]="October"; month["Nov"]="November"; month["Dec"]="December"; |
|||
usr=document.getElementById('mw-diff-ntitle2').firstChild.firstChild.firstChild.nodeValue; |
|||
rev=document.getElementById('mw-diff-ntitle1').firstChild.firstChild.firstChild.nodeValue; |
|||
showTxt("rev=" + rev); |
|||
//Change 09:31, October 25, 2021 to format Apple accepts: October 25, 2021 09:31 |
|||
badrev=rev.replace(/(Latest )?Revision as of (..:..), (.*)/i, "$2, $3"); |
|||
showTxt("badrev=" + badrev); |
|||
var badts = new Date(badrev); |
|||
showTxt("badts=" + badts); |
|||
goodrev=rev.replace(/(Latest )?Revision as of (..:..), (.*)/i, "$3 $2"); |
|||
showTxt("goodrev=" + goodrev); |
|||
var ts = new Date(goodrev); |
|||
showTxt("ts=" + ts); |
|||
ts=ts.toUTCString(); |
|||
showTxt("ts2=" + ts); |
|||
badts=badts.toUTCString(); |
|||
showTxt("badts2=" + badts); |
|||
mth=ts.substr(8, 3); |
|||
//UTCtime: Sat, 06 Feb 2021 17 : 42 :00 GMT → 09:42, 6 February 2021 (UTC) |
|||
ts=ts.replace(/..., (\d+) (...) (\d+) (\d+):(\d+).*/, "$4:$5, $1 $2 $3 (UTC)"); |
|||
ts=ts.replace(mth, month[mth]).replace(", 0", ", "); |
|||
showTxt("{{subst:Unsigned|" + usr + "|" + ts + "}}"); |
|||
} |
|||
var ts1= new Date("13:01 October 25, 2021"); //debugging for iPad |
|||
showTxt("ts1=" + ts1); //debugging for iPad |
|||
var ts2= new Date("October 25, 2021 13:01"); //debugging for iPad |
|||
showTxt("ts2=" + ts2); //debugging for iPad |
|||
var ts3= new Date("Oct 25, 2021 13:01"); //debugging for iPad |
|||
showTxt("ts3=" + ts3); //debugging for iPad |
|||
var ts4= new Date("Oct 25 2021 13:01"); //debugging for iPad |
|||
showTxt("ts4=" + ts4); //debugging for iPad |
|||
var ts5= new Date("13:01 10-25-2021"); //debugging for iPad |
|||
showTxt("ts5=" + ts5); //debugging for iPad |
|||
importScript('User:Shubinator/DYKcheck.js'); |
|||
importScript('user:theleekycauldron/DYK promoter.js'); |
|||
// </nowiki> |
Latest revision as of 23:21, 31 August 2022
// <nowiki>
CurPg=mw.config.get('wgPageName'); // Current page name
CurNSnum=mw.config.get('wgNamespaceNumber');
//==================================================
function printValue(txt, val)
{$('body').append('<center><h4><tt>' + txt + ': ' + val + ' </tt></h4></center>');}
// ========= DISPLAY AT BOTTOM (OR TOP) OF PAGE ==========
function showTxt(txt,top)
{
line='<h4 style="text-align:center;"><tt>'+txt+'</tt></h4>';
if (top) $('body').prepend(line);
else $('body').append(line);
}
// a convenient way to display test values
if (CurPg=="User:Xaradnam/monobook.js")
{
showTxt("This is "+CurPg, 1);
}
//==================================================
if (CurPg=="User:Xaradnam/monobook.js") printValue("CurPg", CurPg);
DiffOnly = {
watchlist: true,
diff: false
}
importScript('User:Mr. Stradivarius/gadgets/DiffOnly.js');
importScript('User:Theleekycauldron/DYKViews.js');
// ======== SHOW {{Unsigned}} AT BOTTOM OF DIFF TALK+ PAGES =========
// For potential unsigned comments on talk, WP, template (for DYK noms)
// Works with any of the four Wiki date formats available in Prefs
if (mw.config.get('wgDiffNewId') && (CurNSnum%2==1||CurNSnum==4||CurNSnum==10))
{
const month=[];
month["Jan"]="January"; month["Feb"]="February"; month["Mar"]="March";
month["Apr"]="April"; month["May"]="May"; month["Jun"]="June";
month["Jul"]="July"; month["Aug"]="August"; month["Sep"]="September";
month["Oct"]="October"; month["Nov"]="November"; month["Dec"]="December";
usr=document.getElementById('mw-diff-ntitle2').firstChild.firstChild.firstChild.nodeValue;
rev=document.getElementById('mw-diff-ntitle1').firstChild.firstChild.firstChild.nodeValue;
showTxt("rev=" + rev);
//Change 09:31, October 25, 2021 to format Apple accepts: October 25, 2021 09:31
badrev=rev.replace(/(Latest )?Revision as of (..:..), (.*)/i, "$2, $3");
showTxt("badrev=" + badrev);
var badts = new Date(badrev);
showTxt("badts=" + badts);
goodrev=rev.replace(/(Latest )?Revision as of (..:..), (.*)/i, "$3 $2");
showTxt("goodrev=" + goodrev);
var ts = new Date(goodrev);
showTxt("ts=" + ts);
ts=ts.toUTCString();
showTxt("ts2=" + ts);
badts=badts.toUTCString();
showTxt("badts2=" + badts);
mth=ts.substr(8, 3);
//UTCtime: Sat, 06 Feb 2021 17 : 42 :00 GMT → 09:42, 6 February 2021 (UTC)
ts=ts.replace(/..., (\d+) (...) (\d+) (\d+):(\d+).*/, "$4:$5, $1 $2 $3 (UTC)");
ts=ts.replace(mth, month[mth]).replace(", 0", ", ");
showTxt("{{subst:Unsigned|" + usr + "|" + ts + "}}");
}
var ts1= new Date("13:01 October 25, 2021"); //debugging for iPad
showTxt("ts1=" + ts1); //debugging for iPad
var ts2= new Date("October 25, 2021 13:01"); //debugging for iPad
showTxt("ts2=" + ts2); //debugging for iPad
var ts3= new Date("Oct 25, 2021 13:01"); //debugging for iPad
showTxt("ts3=" + ts3); //debugging for iPad
var ts4= new Date("Oct 25 2021 13:01"); //debugging for iPad
showTxt("ts4=" + ts4); //debugging for iPad
var ts5= new Date("13:01 10-25-2021"); //debugging for iPad
showTxt("ts5=" + ts5); //debugging for iPad
importScript('User:Shubinator/DYKcheck.js');
importScript('user:theleekycauldron/DYK promoter.js');
// </nowiki>