aboutsummaryrefslogtreecommitdiffstats
path: root/config.inc.php
diff options
context:
space:
mode:
authorjwangen <jwangen>2002-10-05 07:10:10 +0000
committerjwangen <jwangen>2002-10-05 07:10:10 +0000
commit0d9dd6372798c485234bcb071d797843eb43094f (patch)
treecda31d766017ede39b672f6036c90ab9bcb37b2a /config.inc.php
parent305ebf2eed3fda0fc8df67d73d89781d8455d181 (diff)
downloadphpicalendar-0d9dd6372798c485234bcb071d797843eb43094f.tar.gz
phpicalendar-0d9dd6372798c485234bcb071d797843eb43094f.tar.bz2
phpicalendar-0d9dd6372798c485234bcb071d797843eb43094f.zip
Added saving parsed cals to a file for quicker processing.
Prepared language files for translation.
Diffstat (limited to 'config.inc.php')
-rw-r--r--config.inc.php34
1 files changed, 20 insertions, 14 deletions
diff --git a/config.inc.php b/config.inc.php
index 45cb61b..173dac3 100644
--- a/config.inc.php
+++ b/config.inc.php
@@ -1,29 +1,35 @@
<?php
+// Configuration file for PHP iCalendar 0.6
+//
+// To set values, change the text between the single quotes
+// Follow instructions to the right for detailed information
+
$style_sheet = 'silver'; // Themes support
-$calendar_path = './calendars'; // path to directory with calendars
-$default_view = 'day'; // default view for calendars = 'day', 'week', 'month'
-$default_cal = 'Home'; // exact filename of calendar without .ics
-$language = 'english'; // Language support - 'English', 'Polish', 'German', 'French', 'Dutch', 'Danish', 'Italian', 'Japanese', 'Norwegian'
+$calendar_path = './calendars'; // Path to directory with calendars
+$default_view = 'day'; // Default view for calendars = 'day', 'week', 'month'
+$default_cal = 'Home'; // Exact filename of calendar without .ics
+$language = 'english'; // Language support - 'English', 'Polish', 'German', 'French', 'Dutch', 'Danish', 'Italian', 'Japanese', 'Norwegian', 'Spanish'
$week_start_day = 'sunday'; // Day of the week your week starts on
$day_start = '0700'; // Start time for day grid
-$gridLength = '15'; // grid distance in minutes for day view, multiples of 15 preferred
-$month_event_lines = '1'; // number of lines to wrap each event title in month view, 0 means display all lines.
-$tomorrows_events_lines = '1'; // number of lines to wrap each event title in the 'Tommorrow's events' box, 0 means display all lines.
+$gridLength = '15'; // Grid distance in minutes for day view, multiples of 15 preferred
+$month_event_lines = '1'; // Number of lines to wrap each event title in month view, 0 means display all lines.
+$tomorrows_events_lines = '1'; // Number of lines to wrap each event title in the 'Tommorrow's events' box, 0 means display all lines.
// Yes/No questions --- 'yes' means Yes, anything else means no. 'yes' must be lowercase.
-$use_sessions = 'yes'; // For speedy performance on web servers, not good for localhost use. This has not yet been implemented.
-$display_custom_goto = 'no'; // in the 'Jump To' box, display the custom 'go to day' box.
-$display_ical_list = 'yes'; // in the 'Jump To' box, display the pop-up menu with the list of all calendars in the $calendar_path directory.
-$allow_webcals = 'yes'; // Allow http:// and webcal:// prefixed URLs to be used as the $cal for remote viewing of "subscribe-able" calendars. This does not have to be enabled to allow specific ones below.
+$save_parsed_cals = 'yes'; // Recommended 'yes'. Saves a copy of the cal in /tmp after it's been parsed. Improves performence.
+$use_sessions = 'yes'; // This has not yet been implemented.
+$display_custom_goto = 'no'; // In the 'Jump To' box, display the custom 'go to day' box.
+$display_ical_list = 'yes'; // In the 'Jump To' box, display the pop-up menu with the list of all calendars in the $calendar_path directory.
+$allow_webcals = 'no'; // Allow http:// and webcal:// prefixed URLs to be used as the $cal for remote viewing of "subscribe-able" calendars. This does not have to be enabled to allow specific ones below.
-$blacklisted_cals[] = ''; // fill in between the quotes the name of the calendars
+$blacklisted_cals[] = ''; // Fill in between the quotes the name of the calendars
$blacklisted_cals[] = ''; // you wish to 'blacklist' or that you don't want to show up in your calendar
$blacklisted_cals[] = ''; // list. This should be the exact calendar filename without .ics
-$blacklisted_cals[] = ''; // The parser will *not* parse any cal that is in this list (it will not be Web accessible)
+$blacklisted_cals[] = ''; // the parser will *not* parse any cal that is in this list (it will not be Web accessible)
// add more lines as necessary
-$list_webcals[] = ''; // fill in between the quotes exact URL of a calendar that you wish
+$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
$list_webcals[] = ''; // $allow_webcals does *not* need to be "yes" for these to show up and work

© 2014-2024 Faster IT GmbH | imprint | privacy policy