From: <cl...@us...> - 2004-05-16 07:06:21
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17475/templates/default Modified Files: default.css month_medium.tpl year.tpl Log Message: Year XHTML validation. Index: default.css =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/default.css,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** default.css 16 May 2004 05:39:26 -0000 1.17 --- default.css 16 May 2004 07:05:41 -0000 1.18 *************** *** 62,65 **** --- 62,68 ---- .monthoff { background-color: #F2F2F2; height: 105px; width: 105px; text-align: left; vertical-align: top; } .monthon { background-color: #F2F9FF; height: 105px; width: 105px; text-align: left; vertical-align: top; } + .yearreg { background-color: #fff; height: 30px; width: 30px; text-align: left; vertical-align: top; } + .yearoff { background-color: #F2F2F2; height: 30px; width: 30px; text-align: left; vertical-align: top; } + .yearon { background-color: #F2F9FF; height: 30px; width: 30px; text-align: left; vertical-align: top; } .montheventtop { background-image: url(images/side_bg.gif); border-top: 1px solid #A1A5A9; } .montheventline { border-right: 1px dotted #A1A5A9; } Index: month_medium.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/month_medium.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** month_medium.tpl 5 Feb 2004 07:06:11 -0000 1.4 --- month_medium.tpl 16 May 2004 07:05:41 -0000 1.5 *************** *** 12,26 **** </tr> <!-- loop monthweeks on --> ! <tr height="30"> <!-- loop monthdays on --> <!-- switch notthismonth on --> ! <td width="30" height="30" align="right" valign="top" class="monthoff" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#F2F2F2'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate=20031228'"> ! <div align="right" valign="top" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> </td> <!-- switch notthismonth off --> <!-- switch istoday on --> ! <td width="30" height="30" align="right" valign="top" class="monthreg" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#FFFFFF'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate=20040101'"> ! <div align="right" valign="top" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> ! <div align="center" valign="top"> {ALLDAY} {EVENT} --- 12,26 ---- </tr> <!-- loop monthweeks on --> ! <tr> <!-- loop monthdays on --> <!-- switch notthismonth on --> ! <td class="yearoff" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#F2F2F2'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate={DAYLINK}'"> ! <div align="right" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> </td> <!-- switch notthismonth off --> <!-- switch istoday on --> ! <td class="yearreg" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#FFFFFF'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate={DAYLINK}'"> ! <div align="right" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> ! <div align="center"> {ALLDAY} {EVENT} *************** *** 29,35 **** <!-- switch istoday off --> <!-- switch ismonth on --> ! <td width="30" height="30" align="right" valign="top" class="monthreg" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#FFFFFF'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate=20040101'"> ! <div align="right" valign="top" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> ! <div align="center" valign="top"> {ALLDAY} {EVENT} --- 29,35 ---- <!-- switch istoday off --> <!-- switch ismonth on --> ! <td class="yearreg" onmouseover="this.style.backgroundColor='#DDDDDD'" onmouseout="this.style.backgroundColor='#FFFFFF'" onclick="window.location.href='day.php?cal=all_calendars_combined971&getdate={DAYLINK}'"> ! <div align="right" class="V9"><a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a></div> ! <div align="center"> {ALLDAY} {EVENT} Index: year.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/year.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** year.tpl 15 May 2004 02:42:17 -0000 1.5 --- year.tpl 16 May 2004 07:05:41 -0000 1.6 *************** *** 15,19 **** <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="styles/silver/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> </td> ! <td align="center" width="10%" class="navback" nowrap valign="middle"> <font class="H20">{THIS_YEAR}</font> </td> --- 15,19 ---- <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="styles/silver/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> </td> ! <td align="center" width="10%" class="navback" nowrap="nowrap" valign="middle"> <font class="H20">{THIS_YEAR}</font> </td> |