From: <par...@us...> - 2009-07-07 14:48:32
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30611 Modified Files: README default_config.php month.php print.php year.php Log Message: HTML/CSS template rewrites, nice-title integration, XSS fixes, version bump Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.116 retrieving revision 1.117 diff -C2 -d -r1.116 -r1.117 *** README 30 Jan 2009 20:49:25 -0000 1.116 --- README 7 Jul 2009 14:48:28 -0000 1.117 *************** *** 89,93 **** Changes: -------- ! 2.31 Fix events ending at midnight bug in day view Fix publish.php for 2.3 config system add option to hide location in month view --- 89,110 ---- Changes: -------- ! 2.4 ! Event information displayed with Nice Titles ! More ICS input sanitizing ! Better display of tabs/line breaks in calendar events ! Many updates to included templates; HTML fixes, better CSS support ! Webcal caching now works like local calendar caching (with save_parsed_cals enabled) ! Updates to Czech and French translations ! Fixes for attendee/organizer parsing and email address hyperlinking ! Fixes for Print View ! Fix setting time format in preferences page ! Fix default calendar selections in listbox picker ! Fix timezone DST calculation with all-day events ! Fix dates before 1970 ! Fixed bugs with ALL_CALENDARS_COMBINED and saving parsed calendars (using wrong file name) ! Better handling of URLs and email addresses in event descriptions (also strip "blocked" protocols, added by some mail servers) ! ! 2.31 ! Fix events ending at midnight bug in day view Fix publish.php for 2.3 config system add option to hide location in month view *************** *** 96,100 **** Make multiline descriptions display with line breaks in event popup Fix German language file ! 2.3 Major changes to recurrence handling Added more languages Added login to month view --- 113,118 ---- Make multiline descriptions display with line breaks in event popup Fix German language file ! 2.3 ! Major changes to recurrence handling Added more languages Added login to month view Index: default_config.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/default_config.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** default_config.php 19 Jun 2009 20:39:46 -0000 1.22 --- default_config.php 7 Jul 2009 14:48:28 -0000 1.23 *************** *** 3,8 **** private static $instance; private function __construct(){ ! $this->phpicalendar_version = '2.32alpha'; ! // Configuration file for PHP iCalendar 2.32 // // To set values, change the text between the single quotes --- 3,8 ---- private static $instance; private function __construct(){ ! $this->phpicalendar_version = '2.4alpha'; ! // Configuration file for PHP iCalendar 2.4 // // To set values, change the text between the single quotes Index: month.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v retrieving revision 1.153 retrieving revision 1.154 diff -C2 -d -r1.153 -r1.154 *** month.php 22 Jun 2009 14:31:03 -0000 1.153 --- month.php 7 Jul 2009 14:48:28 -0000 1.154 *************** *** 85,89 **** --- 85,91 ---- 'rss_valid' => '', 'show_search' => $phpiCal_config->show_search, + 'next_day' => $tomorrows_date, 'next_month' => $next_month, + 'prev_day' => $yesterdays_date, 'prev_month' => $prev_month, 'show_goto' => '', *************** *** 111,114 **** --- 113,118 ---- 'l_jump' => $lang['l_jump'], 'l_todo' => $lang['l_todo'], + 'l_prev' => $lang['l_prev'], + 'l_next' => $lang['l_next'], 'l_day' => $lang['l_day'], 'l_week' => $lang['l_week'], *************** *** 149,157 **** $page->nomonthbottom($page); } - $page->draw_subscribe($page); $page->output(); - - ?> --- 153,159 ---- $page->nomonthbottom($page); } + $page->draw_subscribe($page); $page->output(); ?> Index: print.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/print.php,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** print.php 28 Dec 2008 00:46:49 -0000 1.43 --- print.php 7 Jul 2009 14:48:28 -0000 1.44 *************** *** 1,4 **** <?php ! define('BASE', './'); $current_view ='print'; require_once(BASE.'functions/date_functions.php'); --- 1,4 ---- <?php ! if (!defined('BASE')) define('BASE', './'); $current_view ='print'; require_once(BASE.'functions/date_functions.php'); Index: year.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/year.php,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** year.php 29 Dec 2008 08:20:52 -0000 1.52 --- year.php 7 Jul 2009 14:48:28 -0000 1.53 *************** *** 15,19 **** $prev_year = date ("Ymd", $prev_year); ! $sidebar_date = localizeDate($dateFormat_day, strtotime($getdate)); // For the side months --- 15,19 ---- $prev_year = date ("Ymd", $prev_year); ! $sidebar_date = localizeDate($dateFormat_week_list, strtotime($getdate)); // For the side months *************** *** 70,74 **** 'rss_valid' => '', 'todo_available' => '', - 'event_js' => '', 'this_year' => $this_year, 'next_day' => @$next_day, --- 70,73 ---- *************** *** 100,103 **** --- 99,104 ---- 'l_jump' => $lang['l_jump'], 'l_todo' => $lang['l_todo'], + 'l_prev' => $lang['l_prev'], + 'l_next' => $lang['l_next'], 'l_day' => $lang['l_day'], 'l_week' => $lang['l_week'], |