From: <cl...@us...> - 2004-08-08 05:55:29
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24648 Modified Files: config.inc.php Log Message: Cleaned up calendar colors and added error message for caching. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.149 retrieving revision 1.150 diff -C2 -d -r1.149 -r1.150 *** config.inc.php 8 Aug 2004 01:47:17 -0000 1.149 --- config.inc.php 8 Aug 2004 05:55:17 -0000 1.150 *************** *** 58,61 **** --- 58,68 ---- $ftp_calendar_path = ''; // Only used if $auth_method='ftp'. The full path to the calendar directory on the ftp server. If = '', will attempt to deduce the path based on $calendar_path, but may not be accurate depending on ftp server config. + // Calendar colors + // + // You can increase the number of unique colors by adding additional images (monthdot_n.gif) + // and in the css file (default.css) classes .alldaybg_n, .eventbg_n and .eventbg2_n + // Colors will rotate to double the number listed below. (That's 14 colors, 2 calendars per color). + $unique_colors = '7'; + $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 |