User:Ajaxfiore/vector.js: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Ajaxfiore (talk | contribs)
m ending enforcer
Ajaxfiore (talk | contribs)
break
Line 7: Line 7:
// no leading zeroes. (example: 7 - correct, 07 - incorrect)
// no leading zeroes. (example: 7 - correct, 07 - incorrect)
var date = { year: 2014, month: 2, day: 15};
var date = { year: 2015, month: 3, day: 1};
var time = { hours: 12, minutes: 12, seconds: 12 };
var time = { hours: 12, minutes: 12, seconds: 12 };

Revision as of 17:48, 25 January 2015

/*** BEGIN WIKIBREAK ENFORCER ***/
addOnloadHook(function() {
 
	/*** Start editing here ***/
 
	// When you want to end your break?
	// no leading zeroes. (example: 7 - correct, 07 - incorrect)
 
	var date = { year: 2015, month: 3, day: 1};
	var time = { hours: 12, minutes: 12, seconds: 12 };
 
	/*** 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!");
		location = "//"+location.host+"/w/index.php?title="
			+ "Special:Userlogout&returnto=Main_Page";
	}
});
/*** END WIKIBREAK ENFORCER ***/