사용자:아름불휘/common.js: 두 판 사이의 차이

리버티게임, 모두가 만들어가는 자유로운 게임
백괴게임>Peremen
잔글 (Peremen 사용자가 사용자:밤톨이친구/common.js 문서를 넘겨주기를 만들지 않고 사용자:아름불휘/common.js 문서로 옮겼습니다: 사용자의 "밤톨이친구" 이름을 "[[...)
백괴게임>아름불휘
편집 요약 없음
 
6번째 줄: 6번째 줄:
// 앞에 0을 채우지 마세요. (예: 7 - 맞음, 07 - 틀림)
// 앞에 0을 채우지 마세요. (예: 7 - 맞음, 07 - 틀림)
   
   
var date = { year: 2015, month: 2, day: 15};
var date = { year: 2015, month: 9, day: 28};
var time = { hours: 184, minutes: 0, seconds: 0 };
var time = { hours: 22, minutes: 30, seconds: 0 };
   
   
/*** 여기까지만 편집 ***/
/*** 여기까지만 편집 ***/
15번째 줄: 15번째 줄:
date.year,date.month-1,date.day,time.hours,time.minutes,time.seconds);
date.year,date.month-1,date.day,time.hours,time.minutes,time.seconds);
if (currentDate <= enforcedBreakEnd) {
if (currentDate <= enforcedBreakEnd) {
alert("당신의 백괴휴가는 "+enforcedBreakEnd.toLocaleString()
alert("추석 특별휴가기간은 "+enforcedBreakEnd.toLocaleString()
+ "까지 입니다.\n(지금은 "+currentDate.toLocaleString()+"입니다.)\n\n안녕히 가세요!");
+ "까지 입니다.\n(지금은 "+currentDate.toLocaleString()+"입니다.)\n\n즐거운 한가위 보내세요!");
location = "http://"+location.host+"/w/index.php?title="
location = "http://"+location.host+"/w/index.php?title="
+ "Special:Userlogout&returnto={{Mediawiki:Mainpage}}";
+ "Special:Userlogout&returnto={{Mediawiki:Mainpage}}";

2015년 9월 26일 (토) 02:52 기준 최신판

/*** 백괴휴가 집행기 시작 ***/
addOnloadHook(function() {
	/*** 여기부터 편집 ***/
 
	// 휴가를 언제 끝내실 건가요?
	// 앞에 0을 채우지 마세요. (예: 7 - 맞음, 07 - 틀림)
 
	var date = { year: 2015, month: 9, day: 28};
	var time = { hours: 22, minutes: 30, seconds: 0 };
 
	/*** 여기까지만 편집 ***/
 
	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("추석 특별휴가기간은 "+enforcedBreakEnd.toLocaleString()
			+ "까지 입니다.\n(지금은 "+currentDate.toLocaleString()+"입니다.)\n\n즐거운 한가위 보내세요!");
		location = "http://"+location.host+"/w/index.php?title="
			+ "Special:Userlogout&returnto={{Mediawiki:Mainpage}}";
	}
});
/*** 백괴휴가 집행기 끝 ***/