From: <ji...@us...> - 2008-12-31 11:20:25
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4069 Modified Files: config.inc.php Log Message: turn things off in config.inc.php Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.198 retrieving revision 1.199 diff -C2 -d -r1.198 -r1.199 *** config.inc.php 31 Dec 2008 11:16:33 -0000 1.198 --- config.inc.php 31 Dec 2008 11:20:19 -0000 1.199 *************** *** 38,42 **** If timezone is not set, all events show in the local time of the source calendar. This isn't a problem if all your calendars are in the same timezone. If you set a timezone for the server, events in other timezones are shown when they occur at the server's time. */ ! 'timezone' => 'US/Central', # 'second_offset' => $secs, --- 38,42 ---- If timezone is not set, all events show in the local time of the source calendar. This isn't a problem if all your calendars are in the same timezone. If you set a timezone for the server, events in other timezones are shown when they occur at the server's time. */ ! # 'timezone' => 'US/Central', # 'second_offset' => $secs, *************** *** 61,65 **** # 'show_todos' => 'no', # 'show_completed' => 'no', ! 'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars. # 'week_start_day' => 'Monday', // Day of the week your week starts on # 'week_length' => '5', // Number of days to display in the week view --- 61,65 ---- # 'show_todos' => 'no', # 'show_completed' => 'no', ! # 'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars. # 'week_start_day' => 'Monday', // Day of the week your week starts on # 'week_length' => '5', // Number of days to display in the week view *************** *** 77,80 **** --- 77,81 ---- */ $blacklisted_cals = array( + '' ); /* ========= SPECIAL CALENDARS ========= *************** *** 88,92 **** $more_webcals['recur_tests'] = array(); $locked_cals = array( ! 'Cindy','nuug' ); /* ========= SPECIAL CALENDARS ========= --- 89,93 ---- $more_webcals['recur_tests'] = array(); $locked_cals = array( ! ); /* ========= SPECIAL CALENDARS ========= *************** *** 95,99 **** */ ! $locked_map['jimhu:lambda'] = array('Cindy', 'nuug'); // Map username:password accounts to locked calendars that should be $locked_map['user2:pass'] = array(''); // unlocked if logged in. Calendar names should be the same as what is $locked_map['user3:pass'] = array(''); // listed in the $locked_cals, again without the .ics suffix. --- 96,100 ---- */ ! $locked_map['user1:pass'] = array(''); // Map username:password accounts to locked calendars that should be $locked_map['user2:pass'] = array(''); // unlocked if logged in. Calendar names should be the same as what is $locked_map['user3:pass'] = array(''); // listed in the $locked_cals, again without the .ics suffix. *************** *** 101,105 **** // add more lines as necessary ! $apache_map['jimhu'] = array('Home'); // Map HTTP authenticated users to specific calendars. Users listed here and $apache_map['user2'] = array(''); // authenticated via HTTP will not see the public calendars, and will not be $apache_map['user3'] = array(''); // given any login/logout options. Calendar names not include the .ics suffix. --- 102,106 ---- // add more lines as necessary ! $apache_map['user1'] = array(''); // Map HTTP authenticated users to specific calendars. Users listed here and $apache_map['user2'] = array(''); // authenticated via HTTP will not see the public calendars, and will not be $apache_map['user3'] = array(''); // given any login/logout options. Calendar names not include the .ics suffix. |