From: <cl...@us...> - 2003-11-23 19:53:33
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv6554 Modified Files: config.inc.php Log Message: Tightened up login.php with less html, removed unneeded things from config and list_icals. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.124 retrieving revision 1.125 diff -C2 -d -r1.124 -r1.125 *** config.inc.php 22 Nov 2003 21:16:10 -0000 1.124 --- config.inc.php 23 Nov 2003 19:53:29 -0000 1.125 *************** *** 47,52 **** $printview_default = 'no'; // Set print view as the default view. day, week, and month only supported views for $default_view (listed well above). $show_todos = 'yes'; // Show your todo list on the side of day and week view. ! $show_completed = 'yes'; // Show completed todos on your todo list. ! $show_login = 'no'; // Set to yes to prompt for login to unlock calendars. // Administration settings --- 47,52 ---- $printview_default = 'no'; // Set print view as the default view. day, week, and month only supported views for $default_view (listed well above). $show_todos = 'yes'; // Show your todo list on the side of day and week view. ! $show_completed = 'no'; // Show completed todos on your todo list. ! $show_login = 'yes'; // Set to yes to prompt for login to unlock calendars. // Administration settings *************** *** 70,74 **** // add more lines as necessary ! $locked_cals[] = ''; // Fill in-between the quotes the names of the calendars you wish to hide $locked_cals[] = ''; // unless unlocked by a username/password login. This should be the $locked_cals[] = ''; // exact calendar filename without the .ics suffix. --- 70,74 ---- // add more lines as necessary ! $locked_cals[] = 'Home'; // Fill in-between the quotes the names of the calendars you wish to hide $locked_cals[] = ''; // unless unlocked by a username/password login. This should be the $locked_cals[] = ''; // exact calendar filename without the .ics suffix. *************** *** 76,80 **** // add more lines as necessary ! $locked_map[] = ''; // Map username:password accounts to locked calendars that should be $locked_map[] = ''; // unlocked if logged in. Calendar names should be the same as what is $locked_map[] = ''; // listed in the $locked_cals, again without the .ics suffix. --- 76,80 ---- // add more lines as necessary ! $locked_map['celittle:simboo2'] = array('Home'); // Map username:password accounts to locked calendars that should be $locked_map[] = ''; // unlocked if logged in. Calendar names should be the same as what is $locked_map[] = ''; // listed in the $locked_cals, again without the .ics suffix. *************** *** 82,91 **** // add more lines as necessary ! $color_cals[] = 'silver'; // Fill in between the quotes the colors you want to display ! $color_cals[] = 'red'; // multiple calendars in. ! $color_cals[] = 'orange'; // The first color will be used if no color is selected. ! $color_cals[] = 'grey'; // ! $color_cals[] = 'green'; // ! $color_cals[] = 'tan'; // ! // add more lines as necessary ?> --- 82,85 ---- // add more lines as necessary ! ?> |