From: <cl...@us...> - 2003-09-16 05:38:39
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv2036 Modified Files: config.inc.php day.php Log Message: Finally fixed the jumpto's to not have space around them. Also cleaned up the HTML footprint to be slimmer. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.107 retrieving revision 1.108 diff -C2 -d -r1.107 -r1.108 *** config.inc.php 15 Sep 2003 06:28:50 -0000 1.107 --- config.inc.php 16 Sep 2003 05:38:33 -0000 1.108 *************** *** 1,5 **** <?php ! // Configuration file for PHP iCalendar 0.9.2 // // To set values, change the text between the single quotes --- 1,5 ---- <?php ! // Configuration file for PHP iCalendar 0.9.4 // // To set values, change the text between the single quotes *************** *** 40,44 **** $daysofweek_dayview = 'no'; // Display the days of the week in day.php view. $enable_rss = 'yes'; // Enable RSS access to your calendars (good thing). ! $show_search = 'yes'; // Show the search box in the sidebar. $header_always = 'yes'; // Set to yes to have header on print.php $allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies. --- 40,44 ---- $daysofweek_dayview = 'no'; // Display the days of the week in day.php view. $enable_rss = 'yes'; // Enable RSS access to your calendars (good thing). ! $show_search = 'no'; // Show the search box in the sidebar. $header_always = 'yes'; // Set to yes to have header on print.php $allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies. Index: day.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v retrieving revision 1.93 retrieving revision 1.94 diff -C2 -d -r1.93 -r1.94 *** day.php 14 Sep 2003 21:01:34 -0000 1.93 --- day.php 16 Sep 2003 05:38:33 -0000 1.94 *************** *** 54,59 **** <?php // if RSS is enabled, set the RSS auto-discovery link ! if ($enable_rss == 'yes') ! { echo "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"".$default_path."/rss/rss.php?cal=".$cal."&rssview=day\">"; } --- 54,58 ---- <?php // if RSS is enabled, set the RSS auto-discovery link ! if ($enable_rss == 'yes') { echo "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"".$default_path."/rss/rss.php?cal=".$cal."&rssview=day\">"; } *************** *** 314,319 **** </table> </td> ! <td width="20"><img src="images/spacer.gif" width="20" height="1" alt=" "></td> ! <td width="160" valign="top"> <?php include (BASE.'includes/sidebar.php'); ?> <?php include (BASE.'includes/footer.inc.php'); ?> --- 313,318 ---- </table> </td> ! <td width="10"><img src="images/spacer.gif" width="10" height="1" alt=" "></td> ! <td width="170" valign="top"> <?php include (BASE.'includes/sidebar.php'); ?> <?php include (BASE.'includes/footer.inc.php'); ?> |