";
for (0..6) {
# 1~9는 01~09로 만듦
($temp_month, $temp_day) = ($mon + 1, $mday);
$temp_month = "0".$temp_month if ($temp_month < 10);
$temp_day = "0".$temp_day if ($temp_day < 10);
$cal_page = ($year + 1900)."-".($temp_month)."-".($temp_day);
$cal_result = $mday;
$span_style = "";
if (($year == $this_year) && ($mon == $this_month) && ($mday == $this_day)) {
$td_class = "calendartoday";
$span_style = "text-decoration: underline; ";
} else {
$td_class = "calendar";
}
# 해당 날짜에 포스트가 있는 경우
my ($page, $pagename) = ("", "");
if ($tocitems =~ /^\[\[(.+?)(\|.*)?\]\] $cal_page$/m) {
($page, $pagename) = ($1, $1);
$page =~ s|^/|$toc_mainpage/|;
$page = &FreeToNormal($page);
$span_style .= "font-weight: bold; text-decoration: underline; ";
$wday = 7;
# 현재 보는 페이지에 해당하는 날짜인 경우
if ($page eq $OpenPageName) {
$td_class .= "thispage";
}
}
if ($cal_month != ($mon+1)) {
$span_style .= "font-size: 0.9em; ";
}
$result .= ""
.(($page)?"":"")
.""
.$cal_result
.""
.(($page)?"":"")
." | ";
$cal_time += (60 * 60 * 24);
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($cal_time);
}
$result .= "
";
# 4 또는 5 줄로 끝낼 수 있으면 끝냄
last if (($mon+1 > $cal_month) || ($year+1900 > $cal_year));
}
$result .= "