Update of /cvsroot/phpicalendar/phpicalendar
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7815
Modified Files:
config.inc.php default_config.php
Log Message:
add download event to event popup
Index: config.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v
retrieving revision 1.199
retrieving revision 1.200
diff -C2 -d -r1.199 -r1.200
*** config.inc.php 31 Dec 2008 11:20:19 -0000 1.199
--- config.inc.php 2 Jan 2009 07:12:12 -0000 1.200
***************
*** 66,69 ****
--- 66,84 ----
# 'day_start' => '0600', // Start time for day grid
# 'day_end' => '2000', // End time for day grid
+ # 'event_download' => 'yes',
+
+
+ /* ========= CALENDAR PUBLISHING =========
+
+ This section is not needed if your calendars directory is accessible via WebDAV or CalDAV. These settings
+ control the publish.php script provided in the calendars directory. For more information, please see that
+ file.
+ */
+
+ 'phpicalendar_publishing'=> 1,
+
+
+
+
);
Index: default_config.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/default_config.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** default_config.php 31 Dec 2008 11:16:33 -0000 1.16
--- default_config.php 2 Jan 2009 07:12:12 -0000 1.17
***************
*** 3,7 ****
private static $instance;
private function __construct(){
! $this->phpicalendar_version = '2.31rc2';
// Configuration file for PHP iCalendar 2.25rc1
//
--- 3,7 ----
private static $instance;
private function __construct(){
! $this->phpicalendar_version = '2.31rc3';
// Configuration file for PHP iCalendar 2.25rc1
//
***************
*** 48,51 ****
--- 48,52 ----
$this->show_todos = 'yes'; // Show your todo list on the side of day and week view.
$this->show_completed = 'yes'; // Show completed todos on your todo list.
+ $this->event_download = 'no'; // Show completed todos on your todo list.
$this->allow_login = 'no'; // Set to yes to prompt for login to unlock calendars.
$this->login_cookies = 'no'; // Set to yes to store authentication information via (unencrypted) cookies. Set to no to use sessions.
|