From: <cl...@us...> - 2005-09-14 20:45:04
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28924 Modified Files: day.php month.php week.php Log Message: Multiple calendar selection patch. Needs formatting. Index: day.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v retrieving revision 1.123 retrieving revision 1.124 diff -C2 -d -r1.123 -r1.124 *** day.php 13 Apr 2005 15:00:49 -0000 1.123 --- day.php 14 Sep 2005 20:44:55 -0000 1.124 *************** *** 35,38 **** --- 35,39 ---- $list_jumps = list_jumps(); $list_calcolors = list_calcolors(); + $list_icals_pick = display_ical_list(availableCalendars($username, $password, $ALL_CALENDARS_COMBINED), TRUE); // login/logout *************** *** 59,63 **** 'getdate' => $getdate, 'cpath' => $cpath, ! 'calendar_name' => $calendar_name, 'current_view' => $current_view, 'display_date' => $display_date, --- 60,64 ---- 'getdate' => $getdate, 'cpath' => $cpath, ! 'calendar_name' => (is_array($calendar_name) ? "Multiple" : $calendar_name), 'current_view' => $current_view, 'display_date' => $display_date, *************** *** 77,80 **** --- 78,82 ---- 'logout_querys' => $logout_querys, 'list_icals' => $list_icals, + 'list_icals_pick' => $list_icals_pick, 'list_years' => $list_years, 'list_months' => $list_months, Index: month.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -d -r1.130 -r1.131 *** month.php 13 Apr 2005 15:03:50 -0000 1.130 --- month.php 14 Sep 2005 20:44:55 -0000 1.131 *************** *** 49,52 **** --- 49,53 ---- $list_jumps = list_jumps(); $list_calcolors = list_calcolors(); + $list_icals_pick = display_ical_list(availableCalendars($username, $password, $ALL_CALENDARS_COMBINED), TRUE); $page = new Page(BASE.'templates/'.$template.'/month.tpl'); *************** *** 73,77 **** 'rss_valid' => '', 'show_search' => $show_search, - 'show_search' => $show_search, 'next_month' => $next_month, 'prev_month' => $prev_month, --- 74,77 ---- *************** *** 80,83 **** --- 80,84 ---- 'list_jumps' => $list_jumps, 'list_icals' => $list_icals, + 'list_icals_pick' => $list_icals_pick, 'list_years' => $list_years, 'list_months' => $list_months, Index: week.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v retrieving revision 1.121 retrieving revision 1.122 diff -C2 -d -r1.121 -r1.122 *** week.php 13 Apr 2005 15:03:53 -0000 1.121 --- week.php 14 Sep 2005 20:44:55 -0000 1.122 *************** *** 37,40 **** --- 37,41 ---- $list_jumps = list_jumps(); $list_calcolors = list_calcolors(); + $list_icals_pick = display_ical_list(availableCalendars($username, $password, $ALL_CALENDARS_COMBINED), TRUE); // login/logout *************** *** 81,84 **** --- 82,86 ---- 'logout_querys' => $logout_querys, 'list_icals' => $list_icals, + 'list_icals_pick' => $list_icals_pick, 'list_years' => $list_years, 'list_months' => $list_months, |