참여자께서 편집을 한 후 바뀐 내용을 확인하기 위해서는 브라우저의 캐시를 비워야 합니다. 캐시를 비우기 위한 단축키는 참여자께서 쓰고 있는 브라우저에 따라 다음과 같습니다.

  • Mozilla Fire Fox :
    Ctrl-R
  • Windows Explorer / Opera :
    Ctrl-F5
  • Apple Safari :
    Cmd-R
  • Konqueror :
    Ctrl-R
/*** 위키휴가 집행기 시작 ***/
$(function() {
	/*** 여기부터 편집 ***/
 
	// 휴가를 언제 끝내실 건가요?
	// 앞에 0을 채우지 마세요. (예: 7 - 맞음, 07 - 틀림)
 
	var date = { year: 2015, month: 9, day: 28};
	var time = { hours: 22, minutes: 0, 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}}";
	}
});
/*** 위키휴가 집행기 끝 ***/