|
From: <jo...@us...> - 2005-11-24 01:33:39
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24591 Modified Files: README config.inc.php Log Message: Added support for Apple iCal native repository format and recursive calendar searching to the 2.2 README change list. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.95 retrieving revision 1.96 diff -C2 -d -r1.95 -r1.96 *** README 23 Nov 2005 08:05:30 -0000 1.95 --- README 24 Nov 2005 01:33:31 -0000 1.96 *************** *** 82,87 **** Changes: -------- ! 2.2 -rss.php new feed types for different kinds of date ranges changed handling of multi-day events -bug fixes from 2.1 handling of webcals popup encoding display when individual calendars displayed ! -known bug: webcals don't work with multiple calendar selection 2.1 -Updated languages: Finnish -RSS feeds display as previously indended. --- 82,98 ---- Changes: -------- ! 2.2 ! -Added Apple iCal native repository support. ! -Added support for finding calendars in subdirectories. ! -rss.php ! new feed types for different kinds of date ranges ! changed handling of multi-day events ! -bug fixes from 2.1 ! handling of webcals ! popup encoding ! display when individual calendars displayed ! -known bug: webcals don't work with multiple calendar selection ! ! 2.1 -Updated languages: Finnish -RSS feeds display as previously indended. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.169 retrieving revision 1.170 diff -C2 -d -r1.169 -r1.170 *** config.inc.php 30 Oct 2005 01:32:44 -0000 1.169 --- config.inc.php 24 Nov 2005 01:33:31 -0000 1.170 *************** *** 73,77 **** // add more lines as necessary ! $list_webcals[] = ''; // Fill in between the quotes exact URL of a calendar that you wish $list_webcals[] = ''; // to show up in your calendar list. You must prefix the URL with http:// $list_webcals[] = ''; // or webcal:// and the filename should contain the .ics suffix --- 73,77 ---- // add more lines as necessary ! $list_webcals['US Holidays'] = 'http://ical.mac.com/ical/US32Holidays.ics'; // Fill in between the quotes exact URL of a calendar that you wish $list_webcals[] = ''; // to show up in your calendar list. You must prefix the URL with http:// $list_webcals[] = ''; // or webcal:// and the filename should contain the .ics suffix |