From: <cl...@us...> - 2003-11-24 03:16:00
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv22524 Modified Files: README config.inc.php preferences.php Log Message: Updated for 1.0 RC-1 Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** README 24 Nov 2003 01:44:48 -0000 1.54 --- README 24 Nov 2003 03:15:57 -0000 1.55 *************** *** 89,93 **** 1.0 RC-1 -Fixed all reported bugs. ! -Event popup now displays calendar name. -Event popup now supports more than 1024 characters. -Subscribe and download links now work again. --- 89,93 ---- 1.0 RC-1 -Fixed all reported bugs. ! -Event and Todo popup now displays calendar name. -Event popup now supports more than 1024 characters. -Subscribe and download links now work again. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.129 retrieving revision 1.130 diff -C2 -d -r1.129 -r1.130 *** config.inc.php 24 Nov 2003 01:36:15 -0000 1.129 --- config.inc.php 24 Nov 2003 03:15:57 -0000 1.130 *************** *** 30,34 **** // 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. --- 30,34 ---- // 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. *************** *** 39,43 **** $daysofweek_dayview = 'no'; // Display the days of the week in day.php view. $enable_rss = 'yes'; // Enable RSS access to your calendars (good thing). - $enable_publishing = 'no'; // Enable webdav style publishing to your calendar's folder. READ calendars/publish.php before using! $show_search = 'yes'; // Show the search box in the sidebar. $allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies. --- 39,42 ---- *************** *** 46,49 **** --- 45,50 ---- $show_completed = 'no'; // Show completed todos on your todo list. $show_login = 'no'; // Set to yes to prompt for login to unlock calendars. + + // Webdav style publishing $phpicalendar_publishing = ''; // Set to '1' to enable remote webdav style publish. See 'calendars/publish.php' for complete information; Index: preferences.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/preferences.php,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** preferences.php 22 Nov 2003 21:16:10 -0000 1.35 --- preferences.php 24 Nov 2003 03:15:57 -0000 1.36 *************** *** 3,7 **** define('BASE','./'); include(BASE.'functions/ical_parser.php'); - include(BASE.'functions/calendar_functions.php'); $display_date = $preferences_lang; --- 3,6 ---- *************** *** 159,163 **** // print "<select name=\"cookie_calendar\" class=\"query_style\">\n"; ! $filelist = availableCalendarNames($username, $password, $ALL_CALENDARS_COMBINED); foreach ($filelist as $file) { $cal_filename_tmp = substr($file,0,-4); --- 158,169 ---- // print "<select name=\"cookie_calendar\" class=\"query_style\">\n"; ! $dir_handle = @opendir($calendar_path) or die(error(sprintf($error_path_lang, $calendar_path), $cal_filename)); ! $filelist = array(); ! while ($file = readdir($dir_handle)) { ! if (preg_match("/^[^.].+\.ics$/", $file)) { ! array_push($filelist, $file); ! } ! } ! natcasesort($filelist); foreach ($filelist as $file) { $cal_filename_tmp = substr($file,0,-4); |