]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Sidebar/templates/calendar.tmpl
Allow bold, italics or underlined for numbers
[SourceForge/phpwiki.git] / themes / Sidebar / templates / calendar.tmpl
1 <div id="calendar"></div>
2 <?php echo JavaScript('
3 function dateChanged(calendar) {
4    if (calendar.dateClicked) {
5       var y = calendar.date.getFullYear();
6       var m = calendar.date.getMonth() + 1;     // integer, 0..11
7       var d = calendar.date.getDate();      // integer, 1..31
8       m = m < 10 ? "0" + m : m;
9       d = d < 10 ? "0" + d : d;
10       window.location = "' . WikiUrl($WikiTheme->calendarBase(),0,1) . SUBPAGE_SEPARATOR . '" + y + "-" + m + "-" + d;
11     }
12 };
13 Calendar.setup({flat : "calendar", flatCallback : dateChanged, setDateStatusFunc : dateStatusFunc, weekNumbers : false})') ?>