From: <cl...@us...> - 2003-11-24 01:36:18
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv8107 Modified Files: config.inc.php Log Message: Added publish on/off switch. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.128 retrieving revision 1.129 diff -C2 -d -r1.128 -r1.129 *** config.inc.php 24 Nov 2003 01:29:17 -0000 1.128 --- config.inc.php 24 Nov 2003 01:36:15 -0000 1.129 *************** *** 40,49 **** $enable_rss = 'yes'; // Enable RSS access to your calendars (good thing). $enable_publishing = 'no'; // Enable webdav style publishing to your calendar's folder. READ calendars/publish.php before using! ! $show_search = 'yes'; // Show the search box in the sidebar. $allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies. $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 = 'no'; // Set to yes to prompt for login to unlock calendars. // Administration settings --- 40,50 ---- $enable_rss = 'yes'; // Enable RSS access to your calendars (good thing). $enable_publishing = 'no'; // Enable webdav style publishing to your calendar's folder. READ calendars/publish.php before using! ! $show_search = 'yes'; // Show the search box in the sidebar. $allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies. $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 = 'no'; // Set to yes to prompt for login to unlock calendars. + $phpicalendar_publishing = ''; // Set to '1' to enable remote webdav style publish. See 'calendars/publish.php' for complete information; // Administration settings |