From: <cl...@us...> - 2004-08-08 01:47:26
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30765 Modified Files: README config.inc.php Log Message: Added webcal caching. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** README 22 Jul 2004 02:25:41 -0000 1.67 --- README 8 Aug 2004 01:47:17 -0000 1.68 *************** *** 42,47 **** Supported Calendar Applications: -------------------------------- ! PHP iCalendar supports any calendar application that can generate ! valid IETF 2445 files (.ics). Some of the supported applications are: - Apple iCal --- 42,48 ---- Supported Calendar Applications: -------------------------------- ! PHP iCalendar does not edit calendars, instead it supports any calendar ! application that can generate valid IETF 2445 files (.ics). ! Some of the supported applications are: - Apple iCal *************** *** 102,105 **** --- 103,107 ---- -YEARLY repeating events display better. -All Calendars Combined can now be cached for greater performance. + -Webcals can be cached for greater performance. -Parsing engine now twice as fast. -Various bug fixes. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.148 retrieving revision 1.149 diff -C2 -d -r1.148 -r1.149 *** config.inc.php 5 Aug 2004 20:41:18 -0000 1.148 --- config.inc.php 8 Aug 2004 01:47:17 -0000 1.149 *************** *** 44,50 **** // Calendar Caching (decreases page load times) $save_parsed_cals = 'no'; // Saves a copy of the cal in /tmp after it's been parsed. Improves performence. - $save_parsed_webcals = 'no'; // Saves a copy of the webcal in /tmp after it's been parsed. Improves performence. $tmp_dir = '/tmp'; // The temporary directory on your system (/tmp is fine for UNIXes including Mac OS X). Any php-writable folder works. ! $webcal_hours = '24'; // Number of hours to cache webcals. // Webdav style publishing --- 44,49 ---- // Calendar Caching (decreases page load times) $save_parsed_cals = 'no'; // Saves a copy of the cal in /tmp after it's been parsed. Improves performence. $tmp_dir = '/tmp'; // The temporary directory on your system (/tmp is fine for UNIXes including Mac OS X). Any php-writable folder works. ! $webcal_hours = '24'; // Number of hours to cache webcals. Setting to '0' will always re-parse webcals. // Webdav style publishing |