Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1:/tmp/cvs-serv719
Modified Files:
config.inc.php month.php
Log Message:
Major changes in BYDAY monthly support, added new stuffs to readme and
added new calendar to test and fix.
Index: config.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v
retrieving revision 1.106
retrieving revision 1.107
diff -C2 -d -r1.106 -r1.107
*** config.inc.php 15 Sep 2003 03:04:47 -0000 1.106
--- config.inc.php 15 Sep 2003 06:28:50 -0000 1.107
***************
*** 31,35 ****
// Yes/No questions --- 'yes' means Yes, anything else means no. 'yes' must be lowercase.
! $save_parsed_cals = 'yes'; // Recommended 'yes'. Saves a copy of the cal in /tmp after it's been parsed. Improves performence.
$use_sessions = 'no'; // This has not yet been implemented.
$display_custom_goto = 'no'; // In the 'Jump To' box, display the custom 'go to day' box.
--- 31,35 ----
// Yes/No questions --- 'yes' means Yes, anything else means no. 'yes' must be lowercase.
! $save_parsed_cals = 'no'; // Recommended 'yes'. Saves a copy of the cal in /tmp after it's been parsed. Improves performence.
$use_sessions = 'no'; // This has not yet been implemented.
$display_custom_goto = 'no'; // In the 'Jump To' box, display the custom 'go to day' box.
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.95
retrieving revision 1.96
diff -C2 -d -r1.95 -r1.96
*** month.php 15 Sep 2003 00:26:16 -0000 1.95
--- month.php 15 Sep 2003 06:28:50 -0000 1.96
***************
*** 127,132 ****
}
if ($i == 0) echo '<tr height="105">';
- echo '<td valign="top" align="left" '.$bgclass.' width="105" height="105">';
if (isset($master_array[("$daylink")])) {
echo '<div align="right"><font class="G10"><a class="psf" href="day.php?cal='.$cal.'&getdate='.$daylink.'">'.$day.'</a></font></div>';
echo '<div align="left">';
--- 127,132 ----
}
if ($i == 0) echo '<tr height="105">';
if (isset($master_array[("$daylink")])) {
+ echo '<td valign="top" align="left" '.$bgclass.' width="105" height="105">';
echo '<div align="right"><font class="G10"><a class="psf" href="day.php?cal='.$cal.'&getdate='.$daylink.'">'.$day.'</a></font></div>';
echo '<div align="left">';
***************
*** 163,167 ****
} else {
echo '<td align="center" valign="top" '.$bgclass.' width="105" height="105">';
! echo '<a class="psf" href="day.php?cal='.$cal.'&getdate='.$daylink.'">'.$day.'</a>';
echo '</td>';
}
--- 163,167 ----
} else {
echo '<td align="center" valign="top" '.$bgclass.' width="105" height="105">';
! echo '<div align="right"><font class="G10"><a class="psf" href="day.php?cal='.$cal.'&getdate='.$daylink.'">'.$day.'</a></font></div>';
echo '</td>';
}
|