Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29968
Modified Files:
README config.inc.php
Log Message:
Updated.
Index: README
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/README,v
retrieving revision 1.77
retrieving revision 1.78
diff -C2 -d -r1.77 -r1.78
*** README 3 Sep 2004 22:36:00 -0000 1.77
--- README 5 Sep 2004 17:21:22 -0000 1.78
***************
*** 41,49 ****
http://phpicalendar.net/forums/
! Supported Calendar Applications:
--------------------------------
! PHP iCalendar does not edit calendars, instead it supports any calendar
! application that can generate valid IETF 2445 files (.ics).
! Some of the supported applications are:
- Apple iCal
--- 41,49 ----
http://phpicalendar.net/forums/
! Creating calendars and events:
--------------------------------
! PHP iCalendar DOES NOT create or edit calendars (or events). Instead it
! provides a way to view calendars from applications that generate valid
! IETF 2445 files (.ics). Some of the supported applications are:
- Apple iCal
***************
*** 80,89 ****
COPYING for more information about our license.
- Older Browser Support:
- ----------------------
- Starting with 0.9.4, PHP iCalendar is moving away from supporting 4.x browsers.
- If you still need support for these browers, 0.9.3 is still available for
- download.
-
Changes:
--------
--- 80,83 ----
Index: config.inc.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v
retrieving revision 1.152
retrieving revision 1.153
diff -C2 -d -r1.152 -r1.153
*** config.inc.php 3 Sep 2004 21:51:33 -0000 1.152
--- config.inc.php 5 Sep 2004 17:21:22 -0000 1.153
***************
*** 20,26 ****
$allday_week_lines = '1'; // Number of lines to wrap each event title in all-day events in week view, 0 means display all lines.
$week_events_lines = '1'; // Number of lines to wrap each event title in the 'Tommorrow's events' box, 0 means display all lines.
! $timezone = ''; // Set timezone. Read TIMEZONES file for more information
$calendar_path = ''; // Leave this blank on most installs, place your full path to calendars if they are outside the phpicalendar folder.
! $second_offset = '0'; // The time in seconds between your time and your server's time.
$bleed_time = ''; // This allows events past midnight to just be displayed on the starting date, only good up to 24 hours. Range from '0000' to '2359', or '-1' for no bleed time. Is automatically set to $day_start if left blank.
$cookie_uri = ''; // The HTTP URL to the PHP iCalendar directory, ie. http://www.example.com/phpicalendar -- AUTO SETTING -- Only set if you are having cookie issues.
--- 20,26 ----
$allday_week_lines = '1'; // Number of lines to wrap each event title in all-day events in week view, 0 means display all lines.
$week_events_lines = '1'; // Number of lines to wrap each event title in the 'Tommorrow's events' box, 0 means display all lines.
! $timezone = 'US/Pacific'; // Set timezone. Read TIMEZONES file for more information
$calendar_path = ''; // Leave this blank on most installs, place your full path to calendars if they are outside the phpicalendar folder.
! $second_offset = '3600'; // The time in seconds between your time and your server's time.
$bleed_time = ''; // This allows events past midnight to just be displayed on the starting date, only good up to 24 hours. Range from '0000' to '2359', or '-1' for no bleed time. Is automatically set to $day_start if left blank.
$cookie_uri = ''; // The HTTP URL to the PHP iCalendar directory, ie. http://www.example.com/phpicalendar -- AUTO SETTING -- Only set if you are having cookie issues.
|