You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(5) |
Feb
(25) |
Mar
(18) |
Apr
|
May
(26) |
Jun
(14) |
Jul
(1) |
Aug
(5) |
Sep
(82) |
Oct
(3) |
Nov
(130) |
Dec
(9) |
2004 |
Jan
(4) |
Feb
(62) |
Mar
|
Apr
(3) |
May
(100) |
Jun
|
Jul
(6) |
Aug
(49) |
Sep
(33) |
Oct
(47) |
Nov
(2) |
Dec
(1) |
2005 |
Jan
|
Feb
(4) |
Mar
(1) |
Apr
(8) |
May
(17) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(26) |
Oct
(18) |
Nov
(37) |
Dec
(14) |
2006 |
Jan
(2) |
Feb
(18) |
Mar
(34) |
Apr
(52) |
May
(7) |
Jun
(3) |
Jul
(2) |
Aug
(10) |
Sep
|
Oct
|
Nov
(18) |
Dec
(4) |
2007 |
Jan
|
Feb
(7) |
Mar
(7) |
Apr
(6) |
May
(52) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(15) |
Nov
|
Dec
(1) |
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(250) |
2009 |
Jan
(35) |
Feb
(45) |
Mar
|
Apr
(4) |
May
(35) |
Jun
(13) |
Jul
(49) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(11) |
2010 |
Jan
(3) |
Feb
(30) |
Mar
|
Apr
(35) |
May
(12) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
From: <cl...@us...> - 2004-01-20 03:46:50
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv19877 Modified Files: README Log Message: Small fix for dtend before 1970. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** README 18 Dec 2003 05:46:56 -0000 1.58 --- README 20 Jan 2004 03:46:47 -0000 1.59 *************** *** 88,92 **** -------- 1.1 ! -Fixed a bug with HTTP authentication 1.0 --- 88,94 ---- -------- 1.1 ! -Fixed a bug with HTTP authentication. ! -Fixed a bug with multiple timezones in the same calendar. ! -Added workarounds for dates prior to 1970. 1.0 |
From: <cl...@us...> - 2004-01-08 23:51:22
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv10943/functions Modified Files: ical_parser.php Log Message: Fix for DTEND incorrectly remembering Timezones across events. Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.142 retrieving revision 1.143 diff -C2 -d -r1.142 -r1.143 *** ical_parser.php 18 Dec 2003 06:22:22 -0000 1.142 --- ical_parser.php 8 Jan 2004 23:51:18 -0000 1.143 *************** *** 899,903 **** $end_date = date('Ymd', $end_unixtime); $end_time = date('Hi', $end_unixtime); ! unset($server_offset_tmp); } --- 899,903 ---- $end_date = date('Ymd', $end_unixtime); $end_time = date('Hi', $end_unixtime); ! unset($server_offset_tmp, $offset_tmp, $tz_dtend); } |
From: <cl...@us...> - 2003-12-18 06:22:25
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv7530/functions Modified Files: ical_parser.php Log Message: Revert. Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.141 retrieving revision 1.142 diff -C2 -d -r1.141 -r1.142 *** ical_parser.php 18 Dec 2003 06:16:16 -0000 1.141 --- ical_parser.php 18 Dec 2003 06:22:22 -0000 1.142 *************** *** 108,122 **** $attendee = array(); $organizer = array(); - $url = ''; - $display_end_tmp = ''; - $status = ''; - $class = ''; - $vtodo_priority = ''; - $completed_date = ''; - $completed_time = ''; - $description = ''; - $due_date = ''; - $due_time = ''; - $allday_end = ''; unset( --- 108,111 ---- |
From: <cl...@us...> - 2003-12-18 06:16:19
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv6861/functions Modified Files: ical_parser.php Log Message: Init'd more variables. Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.140 retrieving revision 1.141 diff -C2 -d -r1.140 -r1.141 *** ical_parser.php 18 Dec 2003 06:06:18 -0000 1.140 --- ical_parser.php 18 Dec 2003 06:16:16 -0000 1.141 *************** *** 110,113 **** --- 110,122 ---- $url = ''; $display_end_tmp = ''; + $status = ''; + $class = ''; + $vtodo_priority = ''; + $completed_date = ''; + $completed_time = ''; + $description = ''; + $due_date = ''; + $due_time = ''; + $allday_end = ''; unset( |
From: <cl...@us...> - 2003-12-18 06:08:46
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv5959/functions Modified Files: init.inc.php Log Message: Index: init.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init.inc.php,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** init.inc.php 18 Dec 2003 06:06:18 -0000 1.55 --- init.inc.php 18 Dec 2003 06:08:43 -0000 1.56 *************** *** 7,11 **** // uncomment when developing, comment for shipping version ! error_reporting (E_ERROR | E_WARNING | E_PARSE | E_NOTICE); // Older versions of PHP do not define $_SERVER. Define it here instead. --- 7,11 ---- // uncomment when developing, comment for shipping version ! // error_reporting (E_ERROR | E_WARNING | E_PARSE); // Older versions of PHP do not define $_SERVER. Define it here instead. *************** *** 22,26 **** include_once(BASE.'functions/error.php'); include_once(BASE.'functions/calendar_functions.php'); - $filename = ''; if (isset($HTTP_COOKIE_VARS['phpicalendar'])) { $phpicalendar = unserialize(stripslashes($HTTP_COOKIE_VARS['phpicalendar'])); --- 22,25 ---- |
From: <cl...@us...> - 2003-12-18 06:06:21
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv5577/functions Modified Files: ical_parser.php init.inc.php Log Message: Added a fix for dates before 1969 and initd some variables for E_ALL. Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.139 retrieving revision 1.140 diff -C2 -d -r1.139 -r1.140 *** ical_parser.php 2 Dec 2003 17:31:28 -0000 1.139 --- ical_parser.php 18 Dec 2003 06:06:18 -0000 1.140 *************** *** 108,111 **** --- 108,113 ---- $attendee = array(); $organizer = array(); + $url = ''; + $display_end_tmp = ''; unset( *************** *** 867,870 **** --- 869,877 ---- $field = ereg_replace(';VALUE=DATE-TIME', '', $field); if (preg_match("/^DTEND;VALUE=DATE/i", $field)) { + ereg ('([0-9]{4})([0-9]{2})([0-9]{2})', $data, $dtend_check); + if ($dtstart_check[1] < 1969) { + $dtstart_check[1] = '1990'; + $data = $dtend_check[1].$dtend_check[2].$dtend_check[3]; + } $allday_end = $data; } else { Index: init.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init.inc.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** init.inc.php 26 Nov 2003 01:01:33 -0000 1.54 --- init.inc.php 18 Dec 2003 06:06:18 -0000 1.55 *************** *** 7,11 **** // uncomment when developing, comment for shipping version ! // error_reporting (E_ERROR | E_WARNING | E_PARSE); // Older versions of PHP do not define $_SERVER. Define it here instead. --- 7,11 ---- // uncomment when developing, comment for shipping version ! error_reporting (E_ERROR | E_WARNING | E_PARSE | E_NOTICE); // Older versions of PHP do not define $_SERVER. Define it here instead. *************** *** 22,25 **** --- 22,26 ---- include_once(BASE.'functions/error.php'); include_once(BASE.'functions/calendar_functions.php'); + $filename = ''; if (isset($HTTP_COOKIE_VARS['phpicalendar'])) { $phpicalendar = unserialize(stripslashes($HTTP_COOKIE_VARS['phpicalendar'])); |
From: <cl...@us...> - 2003-12-18 05:46:59
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv2671 Modified Files: README config.inc.php Log Message: Fixed a bug where HTTP was being used, even if turned off in config. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** README 30 Nov 2003 18:38:48 -0000 1.57 --- README 18 Dec 2003 05:46:56 -0000 1.58 *************** *** 87,90 **** --- 87,93 ---- Changes: -------- + 1.1 + -Fixed a bug with HTTP authentication + 1.0 -Added return false to popups Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.134 retrieving revision 1.135 diff -C2 -d -r1.134 -r1.135 *** config.inc.php 26 Nov 2003 01:44:21 -0000 1.134 --- config.inc.php 18 Dec 2003 05:46:56 -0000 1.135 *************** *** 1,5 **** <?php ! // Configuration file for PHP iCalendar 1.0 // // To set values, change the text between the single quotes --- 1,5 ---- <?php ! // Configuration file for PHP iCalendar 1.1 // // To set values, change the text between the single quotes |
From: <cl...@us...> - 2003-12-18 05:46:59
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv2671/functions Modified Files: calendar_functions.php Log Message: Fixed a bug where HTTP was being used, even if turned off in config. Index: calendar_functions.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/calendar_functions.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** calendar_functions.php 24 Nov 2003 04:05:37 -0000 1.2 --- calendar_functions.php 18 Dec 2003 05:46:56 -0000 1.3 *************** *** 22,26 **** // Grab any HTTP authentication. unset($http_user); ! if (isset($_SERVER['PHP_AUTH_USER'])) { $http_user = $_SERVER['PHP_AUTH_USER']; } --- 22,26 ---- // Grab any HTTP authentication. unset($http_user); ! if ((isset($_SERVER['PHP_AUTH_USER'])) && ($allow_login == 'yes')) { $http_user = $_SERVER['PHP_AUTH_USER']; } |
From: <cl...@us...> - 2003-12-02 17:31:31
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv31095/includes Modified Files: header.inc.php Log Message: Corrected calname in parser to display correct calname from the file, not the filename. Not a big issue. Index: header.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/header.inc.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** header.inc.php 26 Nov 2003 01:42:40 -0000 1.8 --- header.inc.php 2 Dec 2003 17:31:28 -0000 1.9 *************** *** 1,2 **** --- 1,4 ---- + <? if (isset($master_array['calendar_name'])) $calendar_name = $master_array['calendar_name']; ?> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd"> |
From: <cl...@us...> - 2003-12-02 17:31:31
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv31095/functions Modified Files: ical_parser.php Log Message: Corrected calname in parser to display correct calname from the file, not the filename. Not a big issue. Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.138 retrieving revision 1.139 diff -C2 -d -r1.138 -r1.139 *** ical_parser.php 30 Nov 2003 01:13:53 -0000 1.138 --- ical_parser.php 2 Dec 2003 17:31:28 -0000 1.139 *************** *** 980,985 **** break; case 'X-WR-CALNAME': ! $calendar_name = $data; ! $master_array['calendar_name'] = $calendar_name; break; case 'X-WR-TIMEZONE': --- 980,985 ---- break; case 'X-WR-CALNAME': ! $actual_calname = $data; ! $master_array['calendar_name'] = $actual_calname; break; case 'X-WR-TIMEZONE': *************** *** 1007,1016 **** } break; - // Attendee support only testing in Apple iCal 1.0.2 case 'ATTENDEE': $field = ereg_replace("ATTENDEE;CN=", "", $field); $data = ereg_replace ("mailto:", "", $data); $attendee[] = array ('name' => $field, 'email' => $data); - #print_r($attendee); break; case 'ORGANIZER': --- 1007,1014 ---- |
From: <cl...@us...> - 2003-12-02 17:31:30
|
Update of /cvsroot/phpicalendar/phpicalendar/calendars In directory sc8-pr-cvs1:/tmp/cvs-serv31095/calendars Modified Files: Home.ics Log Message: Corrected calname in parser to display correct calname from the file, not the filename. Not a big issue. Index: Home.ics =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/calendars/Home.ics,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Home.ics 21 Sep 2003 17:13:45 -0000 1.12 --- Home.ics 2 Dec 2003 17:31:27 -0000 1.13 *************** *** 4,8 **** METHOD:PUBLISH PRODID:-//Apple Computer\, Inc//iCal 1.0//EN ! X-WR-CALNAME;VALUE=TEXT:Home X-WR-RELCALID;VALUE=TEXT:99732F9A-92C7-11D7-A4A2-000A95690022 VERSION:2.0 --- 4,8 ---- METHOD:PUBLISH PRODID:-//Apple Computer\, Inc//iCal 1.0//EN ! X-WR-CALNAME;VALUE=TEXT:Home 1234 X-WR-RELCALID;VALUE=TEXT:99732F9A-92C7-11D7-A4A2-000A95690022 VERSION:2.0 |
From: <cl...@us...> - 2003-11-30 18:38:52
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv3769/includes Modified Files: event.php footer.inc.php Log Message: Fixed attendees in popup, changed footer to 1.0 Index: event.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** event.php 25 Nov 2003 22:13:56 -0000 1.20 --- event.php 30 Nov 2003 18:38:48 -0000 1.21 *************** *** 52,56 **** $i++; } ! $attendees = substr($attendees,0,-2); $display .= '<br>'; } --- 52,56 ---- $i++; } ! $display .= substr($attendees,0,-2); $display .= '<br>'; } Index: footer.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/footer.inc.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** footer.inc.php 26 Nov 2003 00:52:51 -0000 1.13 --- footer.inc.php 30 Nov 2003 18:38:48 -0000 1.14 *************** *** 1,5 **** <?php ! echo "<center class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 1.0 RC-2</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; --- 1,5 ---- <?php ! echo "<center class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 1.0</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; |
From: <cl...@us...> - 2003-11-30 18:38:52
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv3769 Modified Files: README Log Message: Fixed attendees in popup, changed footer to 1.0 Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** README 26 Nov 2003 00:52:51 -0000 1.56 --- README 30 Nov 2003 18:38:48 -0000 1.57 *************** *** 87,90 **** --- 87,94 ---- Changes: -------- + 1.0 + -Added return false to popups + -Added workaround for improperly set DTSTART dates. + 1.0 RC-2 -Fixed all reported bugs. |
From: <cl...@us...> - 2003-11-30 01:22:34
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv9568/functions Modified Files: date_functions.php Log Message: Added return false to javascript popups Index: date_functions.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/date_functions.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** date_functions.php 21 Nov 2003 07:29:08 -0000 1.19 --- date_functions.php 30 Nov 2003 01:22:31 -0000 1.20 *************** *** 199,203 **** END; ! echo '<a class="'.$link_class.'" href="#" onclick="openEventWindow('.$popup_data_index.');">'; $popup_data_index++; } else { --- 199,203 ---- END; ! echo '<a class="'.$link_class.'" href="#" onclick="openEventWindow('.$popup_data_index.'); return false;">'; $popup_data_index++; } else { |
From: <cl...@us...> - 2003-11-30 01:13:58
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv7968/functions Modified Files: ical_parser.php Log Message: Added a condition to DTSTART that will check to see if an hour/minute is set, and if not defaults to VALUE=DATE param. Mostly for sloppy vevent writers. Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.137 retrieving revision 1.138 diff -C2 -d -r1.137 -r1.138 *** ical_parser.php 27 Nov 2003 08:41:50 -0000 1.137 --- ical_parser.php 30 Nov 2003 01:13:53 -0000 1.138 *************** *** 812,816 **** $data = ereg_replace('Z', '', $data); $field = ereg_replace(';VALUE=DATE-TIME', '', $field); ! if (preg_match("/^DTSTART;VALUE=DATE/i", $field)) { ereg ('([0-9]{4})([0-9]{2})([0-9]{2})', $data, $dtstart_check); if ($dtstart_check[1] < 1969) { --- 812,816 ---- $data = ereg_replace('Z', '', $data); $field = ereg_replace(';VALUE=DATE-TIME', '', $field); ! if ((preg_match("/^DTSTART;VALUE=DATE/i", $field)) || (ereg ('^([0-9]{4})([0-9]{2})([0-9]{2})$', $data))) { ereg ('([0-9]{4})([0-9]{2})([0-9]{2})', $data, $dtstart_check); if ($dtstart_check[1] < 1969) { |
From: <cl...@us...> - 2003-11-27 08:41:53
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv16070/functions Modified Files: ical_parser.php Log Message: Changed ical_parser to write events that start and span past mArray's end point, but writes them only up to the end point, and not past. Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.136 retrieving revision 1.137 diff -C2 -d -r1.136 -r1.137 *** ical_parser.php 25 Nov 2003 22:13:56 -0000 1.136 --- ical_parser.php 27 Nov 2003 08:41:50 -0000 1.137 *************** *** 227,232 **** $end = strtotime('+1 day', $start); } ! if (($end > $mArray_begin) && ($end < $mArray_end)) { ! while ($start != $end) { $start_date2 = date('Ymd', $start); $master_array[($start_date2)][('-1')][$uid]= array ('event_text' => $summary, 'description' => $description, 'calnumber' => $calnumber, 'calname' => $actual_calname ); --- 227,233 ---- $end = strtotime('+1 day', $start); } ! // Changed for 1.0, basically write out the entire event if it starts while the array is written. ! if ($start < $mArray_end) { ! while (($start != $end) && ($start < $mArray_end)) { $start_date2 = date('Ymd', $start); $master_array[($start_date2)][('-1')][$uid]= array ('event_text' => $summary, 'description' => $description, 'calnumber' => $calnumber, 'calname' => $actual_calname ); |
From: <cl...@us...> - 2003-11-26 01:44:25
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv18708 Modified Files: config.inc.php Log Message: Revert back to normal. Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.133 retrieving revision 1.134 diff -C2 -d -r1.133 -r1.134 *** config.inc.php 26 Nov 2003 01:42:40 -0000 1.133 --- config.inc.php 26 Nov 2003 01:44:21 -0000 1.134 *************** *** 43,47 **** $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. ! $allow_login = 'n0'; // Set to yes to prompt for login to unlock calendars. // Webdav style publishing --- 43,47 ---- $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. ! $allow_login = 'no'; // Set to yes to prompt for login to unlock calendars. // Webdav style publishing *************** *** 49,53 **** // Administration settings ! $allow_admin = 'yes'; // Set to yes to allow the admin page - remember to change the default password if using 'internal' as the $auth_method $auth_method = 'ftp'; // Valid values are: 'ftp', 'internal', or 'none'. 'ftp' uses the ftp server's username and password as well as ftp commands to delete and copy files. 'internal' uses $auth_internal_username and $auth_internal_password defined below - CHANGE the password. 'none' uses NO authentication - meant to be used with another form of authentication such as http basic. $auth_internal_username = 'admin'; // Only used if $auth_method='internal'. The username for the administrator. --- 49,53 ---- // Administration settings ! $allow_admin = 'no'; // Set to yes to allow the admin page - remember to change the default password if using 'internal' as the $auth_method $auth_method = 'ftp'; // Valid values are: 'ftp', 'internal', or 'none'. 'ftp' uses the ftp server's username and password as well as ftp commands to delete and copy files. 'internal' uses $auth_internal_username and $auth_internal_password defined below - CHANGE the password. 'none' uses NO authentication - meant to be used with another form of authentication such as http basic. $auth_internal_username = 'admin'; // Only used if $auth_method='internal'. The username for the administrator. |
From: <cl...@us...> - 2003-11-26 01:42:43
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv18380/includes Modified Files: header.inc.php Log Message: Fixes. Index: header.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/header.inc.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** header.inc.php 20 Nov 2003 05:18:38 -0000 1.7 --- header.inc.php 26 Nov 2003 01:42:40 -0000 1.8 *************** *** 4,8 **** <head> <meta http-equiv="content-type" content="text/html;charset=UTF-8"> ! <title><?php echo "$calendar_name - $display_date"; ?></title> <link rel="stylesheet" type="text/css" href="<?php echo BASE."styles/$style_sheet/default.css"; ?>"> <?php --- 4,8 ---- <head> <meta http-equiv="content-type" content="text/html;charset=UTF-8"> ! <title><?php echo $calendar_name; ?><?php if ($display_date != '') echo " - $display_date"; ?></title> <link rel="stylesheet" type="text/css" href="<?php echo BASE."styles/$style_sheet/default.css"; ?>"> <?php |
From: <cl...@us...> - 2003-11-26 01:42:43
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv18380 Modified Files: admin.php config.inc.php Log Message: Fixes. Index: admin.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/admin.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** admin.php 25 Nov 2003 21:50:13 -0000 1.9 --- admin.php 26 Nov 2003 01:42:40 -0000 1.10 *************** *** 41,44 **** --- 41,46 ---- } } + + $calendar_name = $admin_header_lang; include (BASE.'includes/header.inc.php'); Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.132 retrieving revision 1.133 diff -C2 -d -r1.132 -r1.133 *** config.inc.php 24 Nov 2003 04:23:52 -0000 1.132 --- config.inc.php 26 Nov 2003 01:42:40 -0000 1.133 *************** *** 30,35 **** // Yes/No questions --- 'yes' means Yes, anything else means no. 'yes' must be lowercase. ! $save_parsed_cals = 'yes'; // Recommended 'yes'. Saves a copy of the cal in /tmp after it's been parsed. Improves performence. ! $use_sessions = 'no'; // This has not yet been implemented. $display_custom_goto = 'no'; // In the 'Jump To' box, display the custom 'go to day' box. $display_ical_list = 'yes'; // In the 'Jump To' box, display the pop-up menu with the list of all calendars in the $calendar_path directory. --- 30,34 ---- // Yes/No questions --- 'yes' means Yes, anything else means no. 'yes' must be lowercase. ! $save_parsed_cals = 'yes'; // Recommended 'yes'. Saves a copy of the cal in /tmp after it's been parsed. Improves performence. $display_custom_goto = 'no'; // In the 'Jump To' box, display the custom 'go to day' box. $display_ical_list = 'yes'; // In the 'Jump To' box, display the pop-up menu with the list of all calendars in the $calendar_path directory. *************** *** 44,48 **** $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. ! $allow_login = 'no'; // Set to yes to prompt for login to unlock calendars. // Webdav style publishing --- 43,47 ---- $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. ! $allow_login = 'n0'; // Set to yes to prompt for login to unlock calendars. // Webdav style publishing *************** *** 50,54 **** // Administration settings ! $allow_admin = 'no'; // Set to yes to allow the admin page - remember to change the default password if using 'internal' as the $auth_method $auth_method = 'ftp'; // Valid values are: 'ftp', 'internal', or 'none'. 'ftp' uses the ftp server's username and password as well as ftp commands to delete and copy files. 'internal' uses $auth_internal_username and $auth_internal_password defined below - CHANGE the password. 'none' uses NO authentication - meant to be used with another form of authentication such as http basic. $auth_internal_username = 'admin'; // Only used if $auth_method='internal'. The username for the administrator. --- 49,53 ---- // Administration settings ! $allow_admin = 'yes'; // Set to yes to allow the admin page - remember to change the default password if using 'internal' as the $auth_method $auth_method = 'ftp'; // Valid values are: 'ftp', 'internal', or 'none'. 'ftp' uses the ftp server's username and password as well as ftp commands to delete and copy files. 'internal' uses $auth_internal_username and $auth_internal_password defined below - CHANGE the password. 'none' uses NO authentication - meant to be used with another form of authentication such as http basic. $auth_internal_username = 'admin'; // Only used if $auth_method='internal'. The username for the administrator. |
From: <jo...@us...> - 2003-11-26 01:01:37
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv10170/functions Modified Files: init.inc.php Log Message: Fix to use older predefined variables for compatibility with PHP < 4.1.0. Corrected logic for detecting an invalid login. Index: init.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init.inc.php,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** init.inc.php 26 Nov 2003 00:45:45 -0000 1.53 --- init.inc.php 26 Nov 2003 01:01:33 -0000 1.54 *************** *** 56,63 **** // Grab the action (login or logout). ! $action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : ''; // Check to make sure the username and password is valid. ! if (!key_exists("$username:$password", $locked_map)) { // Don't login, instead logout. $action = 'logout'; --- 56,65 ---- // Grab the action (login or logout). ! if (isset($HTTP_GET_VARS['action'])) $action = $HTTP_GET_VARS['action']; ! else if (isset($HTTP_POST_VARS['action'])) $action = $HTTP_POST_VARS['action']; ! else $action = ''; // Check to make sure the username and password is valid. ! if ($action == 'login' && !key_exists("$username:$password", $locked_map)) { // Don't login, instead logout. $action = 'logout'; |
From: <cl...@us...> - 2003-11-26 00:52:54
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv8733/includes Modified Files: footer.inc.php Log Message: Updated for 1.0 RC-2. Index: footer.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/footer.inc.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** footer.inc.php 24 Nov 2003 01:44:48 -0000 1.12 --- footer.inc.php 26 Nov 2003 00:52:51 -0000 1.13 *************** *** 1,5 **** <?php ! echo "<center class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 1.0 RC-1</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; --- 1,5 ---- <?php ! echo "<center class=\"V9\"><br>$powered_by_lang <a class=\"psf\" href=\"http://phpicalendar.sourceforge.net/nuke/\">PHP iCalendar 1.0 RC-2</a>"; if ($enable_rss == 'yes') { echo "<br>\n"; |
From: <cl...@us...> - 2003-11-26 00:52:54
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv8733 Modified Files: README Log Message: Updated for 1.0 RC-2. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** README 24 Nov 2003 03:15:57 -0000 1.55 --- README 26 Nov 2003 00:52:51 -0000 1.56 *************** *** 87,90 **** --- 87,95 ---- Changes: -------- + 1.0 RC-2 + -Fixed all reported bugs. + -Added failed login dialog for config authentication. + -RSS and Admin pages do not fail parsing. + 1.0 RC-1 -Fixed all reported bugs. |
From: <cl...@us...> - 2003-11-26 00:45:49
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory sc8-pr-cvs1:/tmp/cvs-serv6875/functions Modified Files: init.inc.php Log Message: Commented out for 1.0 RC-2 Index: init.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init.inc.php,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** init.inc.php 25 Nov 2003 22:13:56 -0000 1.52 --- init.inc.php 26 Nov 2003 00:45:45 -0000 1.53 *************** *** 7,11 **** // uncomment when developing, comment for shipping version ! error_reporting (E_ERROR | E_WARNING | E_PARSE); // Older versions of PHP do not define $_SERVER. Define it here instead. --- 7,11 ---- // uncomment when developing, comment for shipping version ! // error_reporting (E_ERROR | E_WARNING | E_PARSE); // Older versions of PHP do not define $_SERVER. Define it here instead. |
From: <cl...@us...> - 2003-11-26 00:02:54
|
Update of /cvsroot/phpicalendar/phpicalendar/rss In directory sc8-pr-cvs1:/tmp/cvs-serv31229/rss Modified Files: index.php Log Message: changed to include_once Index: index.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/rss/index.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** index.php 22 Nov 2003 21:16:11 -0000 1.21 --- index.php 26 Nov 2003 00:02:49 -0000 1.22 *************** *** 3,7 **** define('BASE','../'); include(BASE.'functions/ical_parser.php'); ! include(BASE.'functions/calendar_functions.php'); $default_path = 'http://'.$HTTP_SERVER_VARS['SERVER_NAME'].substr($HTTP_SERVER_VARS['PHP_SELF'],0,strpos($HTTP_SERVER_VARS['PHP_SELF'], '/rss/')); if (isset($HTTP_SERVER_VARS['HTTP_REFERER']) && $HTTP_SERVER_VARS['HTTP_REFERER'] != '') { --- 3,7 ---- define('BASE','../'); include(BASE.'functions/ical_parser.php'); ! include_once(BASE.'functions/calendar_functions.php'); $default_path = 'http://'.$HTTP_SERVER_VARS['SERVER_NAME'].substr($HTTP_SERVER_VARS['PHP_SELF'],0,strpos($HTTP_SERVER_VARS['PHP_SELF'], '/rss/')); if (isset($HTTP_SERVER_VARS['HTTP_REFERER']) && $HTTP_SERVER_VARS['HTTP_REFERER'] != '') { |
From: <cl...@us...> - 2003-11-25 22:32:26
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv11372/includes Modified Files: login.php Log Message: Removed $ Index: login.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/login.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** login.php 25 Nov 2003 22:13:57 -0000 1.7 --- login.php 25 Nov 2003 22:32:22 -0000 1.8 *************** *** 38,42 **** <tr> <td>{$password_lang}:</td> ! <td><input class="login_style" type="$password" size="8" name="password"></td> </tr> <tr> --- 38,42 ---- <tr> <td>{$password_lang}:</td> ! <td><input class="login_style" type="password" size="8" name="password"></td> </tr> <tr> |