From fc81f9ebde033c58f729f392dba7914112d40720 Mon Sep 17 00:00:00 2001 From: Wesley Miaw Date: Sun, 30 Oct 2005 01:32:44 +0000 Subject: Added support for recursively searching for calendars in your $calendar_path and the new iCal calendar repository structure. The calendars are still referenced by calendar name, so all URLs are unchanged. Refactored the date parsing code out of ical_parser.php and into date_functions.php. Minor logic changes to the parser to correctly populate the TODO date and time values. Refactored the calendar name code into a new getCalendarName() function, since calendar names may no longer be determined solely by filename if using an iCal repository. Template code updated to match. Added calls to stripslashes() for calendar text data, such as the summaries and descriptions. Also put stripslashes() into people data, since people's names may contain escaped characters. --- config.inc.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.inc.php') diff --git a/config.inc.php b/config.inc.php index 048b18b..a3c7517 100644 --- a/config.inc.php +++ b/config.inc.php @@ -39,6 +39,8 @@ $show_todos = 'yes'; // Show your todo list on the side of day and week vie $show_completed = 'yes'; // Show completed todos on your todo list. $allow_login = 'no'; // Set to yes to prompt for login to unlock calendars. $login_cookies = 'no'; // Set to yes to store authentication information via (unencrypted) cookies. Set to no to use sessions. +$support_ical = 'no'; // Set to yes to support the Apple iCal calendar database structure. +$recursive_path = 'no'; // Set to yes to recurse into subdirectories of the calendar path. // 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. -- cgit v1.2.3