From: <cl...@us...> - 2004-02-03 23:04:58
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19290 Modified Files: README day.php month.php Log Message: Removed unneeded files, tweeked templates, added legend for multiple calendars. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.61 retrieving revision 1.62 diff -C2 -d -r1.61 -r1.62 *** README 26 Jan 2004 18:48:43 -0000 1.61 --- README 3 Feb 2004 23:02:09 -0000 1.62 *************** *** 10,14 **** clean manner with day, week, month, and year navigation. It is available in 13 languages and includes support for printing, searching and RSS news feeds. ! If you need a Calendar applicaion, please check the 'Calendar Links' section of our website. Contact: --- 10,15 ---- clean manner with day, week, month, and year navigation. It is available in 13 languages and includes support for printing, searching and RSS news feeds. ! If you need a Calendar application (for creating calendar files), please check ! the 'Supported Calendar Applications' section of the README. Contact: Index: day.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v retrieving revision 1.104 retrieving revision 1.105 diff -C2 -d -r1.104 -r1.105 *** day.php 3 Feb 2004 06:22:29 -0000 1.104 --- day.php 3 Feb 2004 23:02:09 -0000 1.105 *************** *** 11,14 **** --- 11,15 ---- $current_view = 'day'; require_once(BASE.'functions/ical_parser.php'); + require_once(BASE.'functions/list_functions.php'); require_once(BASE.'functions/template.php'); if ($minical_view == 'current') $minical_view = 'day'; *************** *** 29,32 **** --- 30,35 ---- $list_months = list_months(); $list_weeks = list_weeks(); + $list_jumps = list_jumps(); + $list_calcolors = list_calcolors(); $page = new Page(BASE.'templates/'.$template.'/DAY.tpl'); *************** *** 55,58 **** --- 58,63 ---- 'list_months' => $list_months, 'list_weeks' => $list_weeks, + 'list_jumps' => $list_jumps, + 'legend' => $list_calcolors, 'style_select' => $style_select )); Index: month.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v retrieving revision 1.114 retrieving revision 1.115 diff -C2 -d -r1.114 -r1.115 *** month.php 3 Feb 2004 06:22:29 -0000 1.114 --- month.php 3 Feb 2004 23:02:10 -0000 1.115 *************** *** 1,5 **** <?php define('BASE', './'); ! include_once(BASE.'functions/ical_parser.php'); require_once(BASE.'functions/template.php'); $current_view = "month"; --- 1,6 ---- <?php define('BASE', './'); ! require_once(BASE.'functions/ical_parser.php'); ! require_once(BASE.'functions/list_functions.php'); require_once(BASE.'functions/template.php'); $current_view = "month"; *************** *** 44,47 **** --- 45,50 ---- $list_months = list_months(); $list_weeks = list_weeks(); + $list_jumps = list_jumps(); + $list_calcolors = list_calcolors(); $page = new Page(BASE.'templates/'.$template.'/month.tpl'); *************** *** 66,73 **** --- 69,78 ---- 'show_goto' => '', 'is_logged_in' => '', + 'list_jumps' => $list_jumps, 'list_icals' => $list_icals, 'list_years' => $list_years, 'list_months' => $list_months, 'list_weeks' => $list_weeks, + 'legend' => $list_calcolors, 'style_select' => $style_select )); |