Revision as of 03:34, 23 October 2009 view sourceRadiopathy (talk | contribs)Extended confirmed users18,609 edits ←Blanked the page← Previous edit |
Revision as of 03:26, 30 October 2009 view source Radiopathy (talk | contribs)Extended confirmed users18,609 editsNo edit summaryNext edit → |
Line 1: |
Line 1: |
|
|
/*** 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: 2010, month: 4, day: 29}; |
|
|
var time = { hours: 0, minutes: 0, seconds: 0 }; |
|
|
|
|
|
/*** 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 = "http://"+location.host+"/search/?title=" |
|
|
+ "Special:Userlogout&returnto=Main_Page"; |
|
|
} |
|
|
}); |
|
|
/*** END WIKIBREAK ENFORCER ***/ |