User:Kiteretsu/Wikibreak-enforcer. js: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
Infinityboy7 changed the content model of the page User:Infinityboy7/Wikibreak-enforcer. js from "wikitext" to "JavaScript": This JavaScript Tag: content model change |
+ Tag: Reverted |
||
Line 8: | Line 8: | ||
// no leading zeroes. (example: 9 - correct, 09 - incorrect) |
// no leading zeroes. (example: 9 - correct, 09 - incorrect) |
||
var date = { year: |
var date = { year: 2024, month: 6, day: 03}; |
||
var time = { hours: |
var time = { hours: 24, minutes: 59, seconds: 01 }; |
||
/*** Stop editing here ***/ |
/*** Stop editing here ***/ |
Revision as of 13:55, 2 June 2024
/*** BEGIN WIKIBREAK ENFORCER ***/
$(document).ready(function()
{
/*** Start editing here ***/
// When you want to end your break?
// no leading zeroes. (example: 9 - correct, 09 - incorrect)
var date = { year: 2024, month: 6, day: 03};
var time = { hours: 24, minutes: 59, seconds: 01 };
/*** Stop editing here ***/
var currentDate = new Date();
var enforcedBreakEnd = new Date(
date.year,date.month-1,date.day,time.hours,time.minutes,time.seconds);
if (currentDate <= enforcedBreakEnd)
{
alert("Enforced wikibreak until "+enforcedBreakEnd.toLocaleString()
+ "\n(now is "+currentDate.toLocaleString()+")\n\nBye!");
mw.loader.using(["mediawiki.api", "mediawiki.user"]).then(function ()
{
new mw.Api().post(
{
action: 'logout',
token: mw.user.tokens.get('csrfToken')
}).done(function (data)
{
location = "//" + location.host + "/w/index.php?title="
+ "Special:Userlogin&returnto=Main_Page";
}).fail(function ()
{
console.log("logout failed")
});
});
}
});
/*** END WIKIBREAK ENFORCER ***/