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: <ji...@us...> - 2009-01-02 07:12:18
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7815/functions Modified Files: ical_parser.php init.inc.php Log Message: add download event to event popup Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.239 retrieving revision 1.240 diff -C2 -d -r1.239 -r1.240 *** ical_parser.php 29 Dec 2008 06:33:45 -0000 1.239 --- ical_parser.php 2 Jan 2009 07:12:12 -0000 1.240 *************** *** 127,131 **** } $line = trim(stripslashes($line)); - switch ($line) { case 'BEGIN:VFREEBUSY': --- 127,130 ---- *************** *** 151,154 **** --- 150,154 ---- $geo = ''; $type = ''; + $other = ''; $wkst = 'MO'; *************** *** 441,444 **** --- 441,446 ---- $url = $data; break; + default: + if(strpos(':',$data) > 1) $other .= $data; } } Index: init.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init.inc.php,v retrieving revision 1.120 retrieving revision 1.121 diff -C2 -d -r1.120 -r1.121 *** init.inc.php 28 Dec 2008 19:30:41 -0000 1.120 --- init.inc.php 2 Jan 2009 07:12:12 -0000 1.121 *************** *** 1,6 **** --- 1,10 ---- <?php + # require php 5 $php_started = getmicrotime(); # define BASE if (!defined('BASE')) define('BASE', './'); + if (phpversion() < '5.1'){ + die (phpversion()." detected. php 5.1 or higher required for this version.\n\n" ); + } include_once(BASE.'functions/init/sanitize.php'); include_once(BASE.'functions/init/set_error_reporting.php'); *************** *** 12,17 **** include_once(BASE.'functions/userauth_functions.php'); - # require php 5 - if (phpversion() < '5.1') die (error(sprintf($lang['l_php_version_required'],phpversion()) ) ); // Grab the action (login or logout). $action = ''; --- 16,19 ---- |
From: <ji...@us...> - 2009-01-02 07:12:18
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7815/templates/default Modified Files: event.tpl Log Message: add download event to event popup Index: event.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/event.tpl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** event.tpl 26 Dec 2008 16:59:10 -0000 1.11 --- event.tpl 2 Jan 2009 07:12:12 -0000 1.12 *************** *** 36,39 **** --- 36,42 ---- <b>{L_URL}</b>: {URL}<br /> <!-- switch url off --> + <!-- switch event download on --> + {EVENT_DOWNLOAD}<br /> + <!-- switch event download off --> </p> </div> |
From: <ji...@us...> - 2009-01-01 18:33:50
|
Update of /cvsroot/phpicalendar/phpicalendar/calendars In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2920 Modified Files: publish.php Log Message: fix publish.php for new config system Index: publish.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/calendars/publish.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** publish.php 18 May 2007 20:47:21 -0000 1.8 --- publish.php 1 Jan 2009 18:33:42 -0000 1.9 *************** *** 4,8 **** Extension to PHP iCalendar for supporting publishing from Apple iCal Date: 11.12.2003 ! Author: Dietrich Ayala Copyright 2003 Dietrich Ayala --- 4,8 ---- Extension to PHP iCalendar for supporting publishing from Apple iCal Date: 11.12.2003 ! Authors: Dietrich Ayala, Jo Rhett, Jim Hu Copyright 2003 Dietrich Ayala *************** *** 62,66 **** Hints: ! 1. PHP 4.3.0 or greater is required 2. Your version of php and apache MUST support $_SERVER['PATH_INFO'] 3. Depending on your web server environment, you may need to set safe_mode = Off --- 62,66 ---- Hints: ! 1. PHP 5.1.0 or greater is required 2. Your version of php and apache MUST support $_SERVER['PATH_INFO'] 3. Depending on your web server environment, you may need to set safe_mode = Off *************** *** 73,89 **** */ // include PHP iCalendar configuration variables ! include('../config.inc.php'); // set calendar path, or just use current directory...make sure there's a trailing slash ! if (isset($calendar_path) && $calendar_path != '') { ! if (substr($calendar_path, -1, 1) !='/') $calendar_path = $calendar_path.'/'; } else { $calendar_path = ''; } - // allow/disallow publishing - - $phpicalendar_publishing = isset($phpicalendar_publishing) ? $phpicalendar_publishing : 0; - define( 'PHPICALENDAR_PUBLISHING', $phpicalendar_publishing ); // toggle logging --- 73,97 ---- */ + define('BASE', '../'); // include PHP iCalendar configuration variables ! include_once(BASE.'functions/init.inc.php'); ! ! // allow/disallow publishing ! $phpicalendar_publishing = isset($phpiCal_config->phpicalendar_publishing) ? $phpiCal_config->phpicalendar_publishing : 0; ! define( 'PHPICALENDAR_PUBLISHING', $phpicalendar_publishing ); ! // only allow publishing if explicitly enabled ! if(PHPICALENDAR_PUBLISHING != 1) { ! header('WWW-Authenticate: Basic realm="ERROR: Calendar Publishing is disabled on this server"'); ! header('HTTP/1.1 401 Unauthorized'); ! echo 'Calendar Publishing is disabled on this server!'; ! exit; ! } // set calendar path, or just use current directory...make sure there's a trailing slash ! if (isset($phpiCal_config->calendar_path) && $phpiCal_config->calendar_path != '') { ! if (substr($phpiCal_config->calendar_path, -1, 1) !='/') $calendar_path = $calendar_path.'/'; } else { $calendar_path = ''; } // toggle logging *************** *** 100,104 **** // Require authentication if (!isset($_SERVER['REMOTE_USER'])) { - // Require authentication if (isset($_SERVER['HTTP_AUTHORIZATION'])) { --- 108,111 ---- *************** *** 106,110 **** = explode( ':', base64_decode( substr($_SERVER['HTTP_AUTHORIZATION'], 6) ) ); } - if (!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="phpICalendar"'); --- 113,116 ---- *************** *** 113,117 **** exit; } else { ! if ($_SERVER['PHP_AUTH_USER'] != $auth_internal_username || $_SERVER['PHP_AUTH_PW'] != $auth_internal_password) { header('WWW-Authenticate: Basic realm="phpICalendar"'); header('HTTP/1.1 401 Unauthorized'); --- 119,123 ---- exit; } else { ! if ($_SERVER['PHP_AUTH_USER'] != $phpiCal_config->auth_internal_username || $_SERVER['PHP_AUTH_PW'] != $phpiCal_config->auth_internal_password) { header('WWW-Authenticate: Basic realm="phpICalendar"'); header('HTTP/1.1 401 Unauthorized'); *************** *** 122,240 **** } ! // only allow publishing if explicitly enabled ! if(PHPICALENDAR_PUBLISHING != 1) { ! header('WWW-Authenticate: Basic realm="ERROR: Calendar Publishing is disabled on this server"'); ! header('HTTP/1.1 401 Unauthorized'); ! echo 'You must be authorized!'; ! exit; ! } ! ! // unpublishing ! if($_SERVER['REQUEST_METHOD'] == 'DELETE') { ! // get calendar filename ! $calendar_file = $calendar_path.substr($_SERVER['REQUEST_URI'] , ( strrpos($_SERVER['REQUEST_URI'], '/') + 1) ) ; ! ! $calendar_file = urldecode($calendar_file); ! ! logmsg('received request to delete '.$calendar_file); ! ! // remove calendar file ! if(!unlink($calendar_file)) ! { ! logmsg('unable to delete the calendar file'); ! } ! else ! { ! logmsg('deleted'); ! } ! return; ! } ! ! // publishing ! elseif($_SERVER['REQUEST_METHOD'] == 'PUT'){ ! logmsg('PUT request'); ! ! // get calendar data ! if($datain = fopen('php://input','r')){ ! while(!@feof($datain)){ ! $data .= fgets($datain,4096); } ! ! @fclose($datain); ! }else{ ! logmsg('unable to read input data'); ! } ! ! if(isset($data)){ ! if (isset($_SERVER['PATH_INFO'])) { ! preg_match("/\/([\w\-\.\+ ]*).ics/i",$_SERVER['PATH_INFO'],$matches); ! $calendar_name = urldecode($matches[1]); } ! ! // If we don't have it from path info, use the supplied calendar name ! if( ! isset($calendar_name) ) { ! ! $cal_arr = explode("\n",$data); ! ! foreach($cal_arr as $k => $v){ ! if(strstr($v,'X-WR-CALNAME:')){ ! $arr = explode(':',$v); ! $calendar_name = trim($arr[1]); ! break; } } ! } ! ! logmsg('Received request to update: ' . $calendar_name); ! ! // Remove any invalid characters from the filename ! $calendar_name = preg_replace( "/[^\w\.\- ]/", '', $calendar_name ); ! ! if( ( ! isset($calendar_name) ) || ( $calendar_name == '' ) ) { ! header('HTTP/1.1 401 Invalid calendar name'); ! header('WWW-Authenticate: Basic realm="ERROR: Invalid calendar name."'); ! echo 'Invalid calendar name.'; ! } ! ! // If we don't have a name, assume default ! $calendar_name = isset($calendar_name) ? $calendar_name : 'default'; ! ! logmsg('Updating calendar: ' . $calendar_name); ! ! // If this is Apple iCal, an event with a blank summary is private - mark as such ! if( preg_match( "/Apple.*iCal/", $_SERVER['HTTP_USER_AGENT'] ) ) { ! $data = preg_replace( ! "/^\s*SUMMARY:\s*$/m", ! "SUMMARY: **PRIVATE**\nCLASS:PRIVATE", ! $data ! ); ! } ! // write to file ! if($dataout = fopen($calendar_path.$calendar_name.'.ics','w+')){ ! fputs($dataout, $data, strlen($data) ); ! @fclose($dataout); ! }else{ ! logmsg( 'could not open file '.$calendar_path.$calendar_name.'.ics' ); } ! } ! else { ! logmsg('PUT ERROR - No data supplied.'); ! } ! } ! elseif ($_SERVER['REQUEST_METHOD'] == 'GET') { ! if (isset($_SERVER['PATH_INFO'])) { ! preg_match("/\/([ A-Za-z0-9._]*).ics/i",$_SERVER['PATH_INFO'],$matches); ! $icsfile = urldecode($matches[1]); ! ! // get calendar data ! if (file_exists($calendar_path . $icsfile . '.ics') && ! is_readable($calendar_path . $icsfile . '.ics') && ! is_file($calendar_path . $icsfile . '.ics') ! ) { ! echo file_get_contents($calendar_path . $icsfile . '.ics'); ! logmsg('downloaded calendar ' . $icsfile); } - } } --- 128,219 ---- } ! switch ($_SERVER['REQUEST_METHOD']){ ! // unpublishing ! case 'DELETE': ! // get calendar filename ! $calendar_file = $calendar_path.substr($_SERVER['REQUEST_URI'] , ( strrpos($_SERVER['REQUEST_URI'], '/') + 1) ) ; ! $calendar_file = urldecode($calendar_file); ! logmsg('received request to delete '.$calendar_file); ! // remove calendar file ! if(!unlink($calendar_file)){ ! logmsg('unable to delete the calendar file'); ! }else{ ! logmsg('deleted'); } ! break; ! // publishing ! case 'PUT': ! logmsg('PUT request'); ! // get calendar data ! # php://input allows you to read raw POST data ! if($datain = fopen('php://input','r')){ ! while(!@feof($datain)){ ! $data .= fgets($datain,4096); ! } ! @fclose($datain); ! }else{ ! logmsg('unable to read input data'); } ! if(isset($data)){ ! if (isset($_SERVER['PATH_INFO'])) { ! preg_match("/\/([\w\-\.\+ ]*).ics/i",$_SERVER['PATH_INFO'],$matches); ! $calendar_name = urldecode($matches[1]); ! } ! // If we don't have it from path info, use the supplied calendar name ! if( ! isset($calendar_name) ) { ! $cal_arr = explode("\n",$data); ! foreach($cal_arr as $k => $v){ ! if(strstr($v,'X-WR-CALNAME:')){ ! $arr = explode(':',$v); ! $calendar_name = trim($arr[1]); ! break; ! } } } ! logmsg('Received request to update: ' . $calendar_name); ! // Remove any invalid characters from the filename ! $calendar_name = preg_replace( "/[^\w\.\- ]/", '', $calendar_name ); ! if( ( ! isset($calendar_name) ) || ( $calendar_name == '' ) ) { ! header('HTTP/1.1 401 Invalid calendar name'); ! header('WWW-Authenticate: Basic realm="ERROR: Invalid calendar name."'); ! echo 'Invalid calendar name.'; ! } ! // If we don't have a name, assume default ! $calendar_name = isset($calendar_name) ? $calendar_name : 'default'; ! logmsg('Updating calendar: ' . $calendar_name); ! // If this is Apple iCal, an event with a blank summary is private - mark as such ! if( preg_match( "/Apple.*iCal/", $_SERVER['HTTP_USER_AGENT'] ) ) { ! $data = preg_replace( ! "/^\s*SUMMARY:\s*$/m", ! "SUMMARY: **PRIVATE**\nCLASS:PRIVATE", ! $data ! ); ! } ! // write to file ! if($dataout = fopen($calendar_path.$calendar_name.'.ics','w+')){ ! fputs($dataout, $data, strlen($data) ); ! @fclose($dataout); ! }else{ ! logmsg( 'could not open file '.$calendar_path.$calendar_name.'.ics' ); ! } ! }else { ! logmsg('PUT ERROR - No data supplied.'); } ! break; ! case 'GET': ! if (isset($_SERVER['PATH_INFO'])) { ! preg_match("/\/([ A-Za-z0-9._]*).ics/i",$_SERVER['PATH_INFO'],$matches); ! $icsfile = urldecode($matches[1]); ! ! // get calendar data ! if (file_exists($calendar_path . $icsfile . '.ics') && ! is_readable($calendar_path . $icsfile . '.ics') && ! is_file($calendar_path . $icsfile . '.ics') ! ) { ! echo file_get_contents($calendar_path . $icsfile . '.ics'); ! logmsg('downloaded calendar ' . $icsfile); ! } } } *************** *** 257,264 **** $user = $_SERVER['REMOTE_USER']; ! $logline = date('Y-m-d H:i:s ') . $_SERVER['REMOTE_ADDR'] . ' ' . $user . ' ' . ${str} . "\n"; fputs($logfile, $logline, strlen($logline) ); } } ! ?> --- 236,243 ---- $user = $_SERVER['REMOTE_USER']; ! $logline = date('Y-m-d H:i:s ') . $_SERVER['REMOTE_ADDR'] . ' ' . $user . ' ' . $str . "\n"; fputs($logfile, $logline, strlen($logline) ); } } ! ?> \ No newline at end of file |
From: <ji...@us...> - 2008-12-31 11:20:25
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4069 Modified Files: config.inc.php Log Message: turn things off in config.inc.php Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.198 retrieving revision 1.199 diff -C2 -d -r1.198 -r1.199 *** config.inc.php 31 Dec 2008 11:16:33 -0000 1.198 --- config.inc.php 31 Dec 2008 11:20:19 -0000 1.199 *************** *** 38,42 **** If timezone is not set, all events show in the local time of the source calendar. This isn't a problem if all your calendars are in the same timezone. If you set a timezone for the server, events in other timezones are shown when they occur at the server's time. */ ! 'timezone' => 'US/Central', # 'second_offset' => $secs, --- 38,42 ---- If timezone is not set, all events show in the local time of the source calendar. This isn't a problem if all your calendars are in the same timezone. If you set a timezone for the server, events in other timezones are shown when they occur at the server's time. */ ! # 'timezone' => 'US/Central', # 'second_offset' => $secs, *************** *** 61,65 **** # 'show_todos' => 'no', # 'show_completed' => 'no', ! 'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars. # 'week_start_day' => 'Monday', // Day of the week your week starts on # 'week_length' => '5', // Number of days to display in the week view --- 61,65 ---- # 'show_todos' => 'no', # 'show_completed' => 'no', ! # 'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars. # 'week_start_day' => 'Monday', // Day of the week your week starts on # 'week_length' => '5', // Number of days to display in the week view *************** *** 77,80 **** --- 77,81 ---- */ $blacklisted_cals = array( + '' ); /* ========= SPECIAL CALENDARS ========= *************** *** 88,92 **** $more_webcals['recur_tests'] = array(); $locked_cals = array( ! 'Cindy','nuug' ); /* ========= SPECIAL CALENDARS ========= --- 89,93 ---- $more_webcals['recur_tests'] = array(); $locked_cals = array( ! ); /* ========= SPECIAL CALENDARS ========= *************** *** 95,99 **** */ ! $locked_map['jimhu:lambda'] = array('Cindy', 'nuug'); // Map username:password accounts to locked calendars that should be $locked_map['user2:pass'] = array(''); // unlocked if logged in. Calendar names should be the same as what is $locked_map['user3:pass'] = array(''); // listed in the $locked_cals, again without the .ics suffix. --- 96,100 ---- */ ! $locked_map['user1:pass'] = array(''); // Map username:password accounts to locked calendars that should be $locked_map['user2:pass'] = array(''); // unlocked if logged in. Calendar names should be the same as what is $locked_map['user3:pass'] = array(''); // listed in the $locked_cals, again without the .ics suffix. *************** *** 101,105 **** // add more lines as necessary ! $apache_map['jimhu'] = array('Home'); // Map HTTP authenticated users to specific calendars. Users listed here and $apache_map['user2'] = array(''); // authenticated via HTTP will not see the public calendars, and will not be $apache_map['user3'] = array(''); // given any login/logout options. Calendar names not include the .ics suffix. --- 102,106 ---- // add more lines as necessary ! $apache_map['user1'] = array(''); // Map HTTP authenticated users to specific calendars. Users listed here and $apache_map['user2'] = array(''); // authenticated via HTTP will not see the public calendars, and will not be $apache_map['user3'] = array(''); // given any login/logout options. Calendar names not include the .ics suffix. |
From: <ji...@us...> - 2008-12-31 11:18:17
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3970/includes Removed Files: login.php Log Message: bump remove unused (?) includes/login.php --- login.php DELETED --- |
From: <ji...@us...> - 2008-12-31 11:16:45
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3861 Modified Files: config.inc.php default_config.php Log Message: bump version to 2.31rc2 Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.197 retrieving revision 1.198 diff -C2 -d -r1.197 -r1.198 *** config.inc.php 31 Dec 2008 07:23:54 -0000 1.197 --- config.inc.php 31 Dec 2008 11:16:33 -0000 1.198 *************** *** 57,65 **** # 'minical_view' => 'current', // Where do the mini-calendars go when clicked?' => 'day', 'week', 'month', 'current' # 'allow_preferences' => 'no', ! 'month_locations' => 'no', # 'show_search' => 'yes', # 'show_todos' => 'no', # 'show_completed' => 'no', ! # 'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars. # 'week_start_day' => 'Monday', // Day of the week your week starts on # 'week_length' => '5', // Number of days to display in the week view --- 57,65 ---- # 'minical_view' => 'current', // Where do the mini-calendars go when clicked?' => 'day', 'week', 'month', 'current' # 'allow_preferences' => 'no', ! # 'month_locations' => 'no', # 'show_search' => 'yes', # 'show_todos' => 'no', # 'show_completed' => 'no', ! 'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars. # 'week_start_day' => 'Monday', // Day of the week your week starts on # 'week_length' => '5', // Number of days to display in the week view *************** *** 77,81 **** */ $blacklisted_cals = array( - '' ); /* ========= SPECIAL CALENDARS ========= --- 77,80 ---- *************** *** 85,93 **** */ $list_webcals = array( ! 'webcal://dimer.tamu.edu/calendars/seminars/Biochem.ics' ); $more_webcals['recur_tests'] = array(); $locked_cals = array( ! ); /* ========= SPECIAL CALENDARS ========= --- 84,92 ---- */ $list_webcals = array( ! # 'webcal://dimer.tamu.edu/calendars/seminars/Biochem.ics' ); $more_webcals['recur_tests'] = array(); $locked_cals = array( ! 'Cindy','nuug' ); /* ========= SPECIAL CALENDARS ========= *************** *** 96,100 **** */ ! $locked_map['user1:pass'] = array(''); // Map username:password accounts to locked calendars that should be $locked_map['user2:pass'] = array(''); // unlocked if logged in. Calendar names should be the same as what is $locked_map['user3:pass'] = array(''); // listed in the $locked_cals, again without the .ics suffix. --- 95,99 ---- */ ! $locked_map['jimhu:lambda'] = array('Cindy', 'nuug'); // Map username:password accounts to locked calendars that should be $locked_map['user2:pass'] = array(''); // unlocked if logged in. Calendar names should be the same as what is $locked_map['user3:pass'] = array(''); // listed in the $locked_cals, again without the .ics suffix. *************** *** 102,106 **** // add more lines as necessary ! $apache_map['user1'] = array(''); // Map HTTP authenticated users to specific calendars. Users listed here and $apache_map['user2'] = array(''); // authenticated via HTTP will not see the public calendars, and will not be $apache_map['user3'] = array(''); // given any login/logout options. Calendar names not include the .ics suffix. --- 101,105 ---- // add more lines as necessary ! $apache_map['jimhu'] = array('Home'); // Map HTTP authenticated users to specific calendars. Users listed here and $apache_map['user2'] = array(''); // authenticated via HTTP will not see the public calendars, and will not be $apache_map['user3'] = array(''); // given any login/logout options. Calendar names not include the .ics suffix. Index: default_config.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/default_config.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** default_config.php 31 Dec 2008 07:23:54 -0000 1.15 --- default_config.php 31 Dec 2008 11:16:33 -0000 1.16 *************** *** 3,7 **** private static $instance; private function __construct(){ ! $this->phpicalendar_version = '2.31rc1'; // Configuration file for PHP iCalendar 2.25rc1 // --- 3,7 ---- private static $instance; private function __construct(){ ! $this->phpicalendar_version = '2.31rc2'; // Configuration file for PHP iCalendar 2.25rc1 // |
From: <ji...@us...> - 2008-12-31 11:16:45
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/init In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3861/functions/init Modified Files: configs.php Log Message: bump version to 2.31rc2 Index: configs.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/configs.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** configs.php 31 Dec 2008 07:14:35 -0000 1.10 --- configs.php 31 Dec 2008 11:16:34 -0000 1.11 *************** *** 57,61 **** if (isset($phpicalendar['cookie_timeformat']) && $phpicalendar['cookie_timeformat'] !=''){ $timeFormat = $phpicalendar['cookie_timeformat']; - echo "here $timeFormat<pre>";print_r($phpicalendar); switch($timeFormat){ case 'h:i': --- 57,60 ---- |
From: <ji...@us...> - 2008-12-31 11:16:40
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3861/functions Modified Files: calendar_functions.php userauth_functions.php Log Message: bump version to 2.31rc2 Index: calendar_functions.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/calendar_functions.php,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** calendar_functions.php 29 Dec 2008 06:57:09 -0000 1.34 --- calendar_functions.php 31 Dec 2008 11:16:34 -0000 1.35 *************** *** 15,19 **** // Import globals. global $list_webcals, $blacklisted_cals, $locked_cals, $locked_map, $apache_map, $lang, $_SERVER, $phpiCal_config; - // Create the list of available calendars. $calendars = array(); --- 15,18 ---- *************** *** 30,34 **** $unlocked_cals = $locked_map["$username:$password"]; } - // Make a local copy of the requested calendars. if (!is_array($cal_filename)) --- 29,32 ---- *************** *** 102,109 **** // Make sure the file is real. if (!is_file($file)) continue; ! // Make sure the file ends in .ics. ! if (!preg_match("/^.*\.ics$/i", $file)) continue; // Make sure this is not a blacklisted calendar. ! $cal_name = getCalendarName($file); if (in_array($cal_name, $blacklisted_cals)) continue; // If HTTP authenticated, make sure this calendar is available --- 100,107 ---- // Make sure the file is real. if (!is_file($file)) continue; ! // Remove any php files. ! if (preg_match("/^.*\.php$/i", $file)) continue; // Make sure this is not a blacklisted calendar. ! $cal_name = getCalendarName($file); if (in_array($cal_name, $blacklisted_cals)) continue; // If HTTP authenticated, make sure this calendar is available Index: userauth_functions.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/userauth_functions.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** userauth_functions.php 19 Dec 2008 21:15:53 -0000 1.7 --- userauth_functions.php 31 Dec 2008 11:16:34 -0000 1.8 *************** *** 44,49 **** // indicate that the login is invalid. function user_login() { ! global $_COOKIE, $_GET, $_POST, $_SERVER, $phpiCal_config; ! global $login_cookies, $cookie_uri, $locked_map; // Initialize return values. --- 44,48 ---- // indicate that the login is invalid. function user_login() { ! global $phpiCal_config, $locked_map; // Initialize return values. *************** *** 57,67 **** // Look for a login cookie. ! if ($login_cookies == 'yes' && ! isset($_COOKIE['phpicalendar_login'])) ! { $login_cookie = unserialize(stripslashes($_COOKIE['phpicalendar_login'])); ! if (isset($login_cookie['username']) && ! isset($login_cookie['password'])) ! { $username = $login_cookie['username']; $password = $login_cookie['password']; --- 56,62 ---- // Look for a login cookie. ! if ($phpiCal_config->login_cookies == 'yes' && isset($_COOKIE['phpicalendar_login'])){ $login_cookie = unserialize(stripslashes($_COOKIE['phpicalendar_login'])); ! if (isset($login_cookie['username']) && isset($login_cookie['password'])){ $username = $login_cookie['username']; $password = $login_cookie['password']; *************** *** 70,81 **** // Look for session authentication. ! if ($login_cookies != 'yes') { if (!session_id()) { session_start(); ! setcookie(session_name(), session_id(), time()+(60*60*24*7*12*10), '/', $cookie_uri, 0); } ! if (isset($_SESSION['username']) && ! isset($_SESSION['password'])) ! { $username = $_SESSION['username']; $password = $_SESSION['password']; --- 65,74 ---- // Look for session authentication. ! if ($phpiCal_config->login_cookies != 'yes') { if (!session_id()) { session_start(); ! setcookie(session_name(), session_id(), time()+(60*60*24*7*12*10), '/', $phpiCal_config->cookie_uri, 0); } ! if (isset($_SESSION['username'], $_SESSION['password'])){ $username = $_SESSION['username']; $password = $_SESSION['password']; *************** *** 84,95 **** // Look for a new username and password. ! if (isset($_GET['username']) && ! isset($_GET['password'])) ! { ! $username = $_GET['username']; ! $password = $_GET['password']; ! } else if (isset($_POST['username']) && ! isset($_POST['password'])) ! { $username = $_POST['username']; $password = $_POST['password']; --- 77,87 ---- // Look for a new username and password. ! # Should only take these from post? ! # if (isset($_GET['username'], $_GET['password'])){ ! # $username = $_GET['username']; ! # $password = $_GET['password']; ! # } else ! ! if (isset($_POST['username'], $_POST['password'])){ $username = $_POST['username']; $password = $_POST['password']; *************** *** 121,134 **** // Returns an empty username and password. function user_logout() { ! global $login_cookies, $cookie_uri, $phpiCal_config; // Clear the login cookie or session authentication values. ! if ($login_cookies == 'yes') { ! setcookie('phpicalendar_login', '', time()-(60*60*24*7), '/', $cookie_uri, 0); } else { // Check if the session has already been started. if (!session_id()) { session_start(); ! setcookie(session_name(), session_id(), time()+(60*60*24*7*12*10), '/', $cookie_uri, 0); } --- 113,126 ---- // Returns an empty username and password. function user_logout() { ! global $phpiCal_config; // Clear the login cookie or session authentication values. ! if ($phpiCal_config->login_cookies == 'yes') { ! setcookie('phpicalendar_login', '', time()-(60*60*24*7), '/', $phpiCal_config->cookie_uri, 0); } else { // Check if the session has already been started. if (!session_id()) { session_start(); ! setcookie(session_name(), session_id(), time()+(60*60*24*7*12*10), '/', $phpiCal_config->cookie_uri, 0); } |
From: <ji...@us...> - 2008-12-31 11:16:39
|
Update of /cvsroot/phpicalendar/phpicalendar/calendars In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3861/calendars Modified Files: test.ics Log Message: bump version to 2.31rc2 Index: test.ics =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/calendars/test.ics,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** test.ics 30 Dec 2008 03:48:13 -0000 1.15 --- test.ics 31 Dec 2008 11:16:34 -0000 1.16 *************** *** 109,111 **** --- 109,122 ---- END:VEVENT + BEGIN:VTODO + UID:5e852d2a-f45f-11d8-943c-856dabf76260 + SUMMARY:Check into salary deductions for union dues + STATUS:NEEDS-ACTION + CLASS:PRIVATE + X-MOZILLA-ALARM-DEFAULT-LENGTH:0 + DTSTART:20011130T000000 + DUE:20101130T000000 + DTSTAMP:20040822T171851Z + END:VTODO + END:VCALENDAR |
From: <ji...@us...> - 2008-12-31 07:24:08
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25112/functions Modified Files: template.php Log Message: option to hide location in month view (feature request 1880571) Index: template.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/template.php,v retrieving revision 1.112 retrieving revision 1.113 diff -C2 -d -r1.112 -r1.113 *** template.php 30 Dec 2008 03:48:13 -0000 1.112 --- template.php 31 Dec 2008 07:23:54 -0000 1.113 *************** *** 971,975 **** $switch['ALLDAY'] .= '<div class="V10"><img src="templates/'.$phpiCal_config->template.'/images/monthdot_'.$event_calno.'.gif" alt="" width="9" height="9" border="0" />'; $switch['ALLDAY'] .= openevent($daylink, $cal_time, $uid, $val, $phpiCal_config->month_event_lines, 15, 'psf'); ! $switch['ALLDAY'] .= (isset($val['location']) && $val['location'] != '') ? $val['location']."<br />" : ''; $switch['ALLDAY'] .= '</div>'; } else { --- 971,975 ---- $switch['ALLDAY'] .= '<div class="V10"><img src="templates/'.$phpiCal_config->template.'/images/monthdot_'.$event_calno.'.gif" alt="" width="9" height="9" border="0" />'; $switch['ALLDAY'] .= openevent($daylink, $cal_time, $uid, $val, $phpiCal_config->month_event_lines, 15, 'psf'); ! $switch['ALLDAY'] .= (isset($val['location']) && $val['location'] != '' && $phpiCal_config->month_locations == 'yes') ? $val['location']."<br />" : ''; $switch['ALLDAY'] .= '</div>'; } else { *************** *** 981,985 **** $switch['EVENT'] .= '<div class="V9"><img src="templates/'.$phpiCal_config->template.'/images/monthdot_'.$event_calno.'.gif" alt="" width="9" height="9" border="0" />'; $switch['EVENT'] .= openevent($daylink, $cal_time, $uid, $val, $phpiCal_config->month_event_lines, 10, 'ps3', "$start2 ").''; ! $switch['EVENT'] .= (isset($val['location']) && $val['location'] != '') ? "<br />".$val['location']."<br />" : ''; $switch['EVENT'] .= '</div>'; } else { --- 981,985 ---- $switch['EVENT'] .= '<div class="V9"><img src="templates/'.$phpiCal_config->template.'/images/monthdot_'.$event_calno.'.gif" alt="" width="9" height="9" border="0" />'; $switch['EVENT'] .= openevent($daylink, $cal_time, $uid, $val, $phpiCal_config->month_event_lines, 10, 'ps3', "$start2 ").''; ! $switch['EVENT'] .= (isset($val['location']) && $val['location'] != '' && $phpiCal_config->month_locations == 'yes') ? "<br />".$val['location']."<br />" : ''; $switch['EVENT'] .= '</div>'; } else { |
From: <ji...@us...> - 2008-12-31 07:24:01
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25112 Modified Files: config.inc.php default_config.php Log Message: option to hide location in month view (feature request 1880571) Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.196 retrieving revision 1.197 diff -C2 -d -r1.196 -r1.197 *** config.inc.php 28 Dec 2008 11:55:43 -0000 1.196 --- config.inc.php 31 Dec 2008 07:23:54 -0000 1.197 *************** *** 52,64 **** # 'default_cal' => 'US Holidays', // Exact filename of calendar without .ics. # 'template' => 'green'; // Template support: change this to have a different "skin" for your installation. ! # 'default_view' => 'year', // Default view for calendars' => 'day', 'week', 'month', 'year' # 'printview_default' => 'yes', // Set print view as the default view. Uses'default_view (listed above). # 'gridLength' => 10, // Grid size in day and week views. Allowed values are 1,2,3,4,10,12,15,20,30,60. Default is 15 # 'minical_view' => 'current', // Where do the mini-calendars go when clicked?' => 'day', 'week', 'month', 'current' # 'allow_preferences' => 'no', # 'show_search' => 'yes', # 'show_todos' => 'no', # 'show_completed' => 'no', ! 'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars. # 'week_start_day' => 'Monday', // Day of the week your week starts on # 'week_length' => '5', // Number of days to display in the week view --- 52,65 ---- # 'default_cal' => 'US Holidays', // Exact filename of calendar without .ics. # 'template' => 'green'; // Template support: change this to have a different "skin" for your installation. ! # 'default_view' => 'year', // Default view for calendars' => 'day', 'week', 'month', 'year' # 'printview_default' => 'yes', // Set print view as the default view. Uses'default_view (listed above). # 'gridLength' => 10, // Grid size in day and week views. Allowed values are 1,2,3,4,10,12,15,20,30,60. Default is 15 # 'minical_view' => 'current', // Where do the mini-calendars go when clicked?' => 'day', 'week', 'month', 'current' # 'allow_preferences' => 'no', + 'month_locations' => 'no', # 'show_search' => 'yes', # 'show_todos' => 'no', # 'show_completed' => 'no', ! # 'allow_login' => 'yes', // Set to yes to prompt for login to unlock calendars. # 'week_start_day' => 'Monday', // Day of the week your week starts on # 'week_length' => '5', // Number of days to display in the week view Index: default_config.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/default_config.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** default_config.php 30 Dec 2008 03:48:12 -0000 1.14 --- default_config.php 31 Dec 2008 07:23:54 -0000 1.15 *************** *** 39,42 **** --- 39,43 ---- // Yes/No questions --- 'yes' means Yes, anything else means no. 'yes' must be lowercase. $this->allow_webcals = 'no'; // Allow http:// and webcal:// prefixed URLs to be used as the $this->cal for remote viewing of "subscribe-able" calendars. This does not have to be enabled to allow specific ones below. + $this->month_locations = 'yes'; // Display location in the month view. $this->this_months_events = 'yes'; // Display "This month's events" at the bottom off the month page. $this->enable_rss = 'yes'; // Enable RSS access to your calendars (good thing). |
From: <ji...@us...> - 2008-12-31 07:14:41
|
Update of /cvsroot/phpicalendar/phpicalendar/languages In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24812/languages Modified Files: bulgarian.inc.php english.inc.php Log Message: timeFormat select in preferences (feature request 1401779) Index: bulgarian.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/bulgarian.inc.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** bulgarian.inc.php 16 May 2007 23:35:25 -0000 1.1 --- bulgarian.inc.php 31 Dec 2008 07:14:35 -0000 1.2 *************** *** 167,172 **** // For time formatting, check out: http://www.php.net/manual/en/function.date.php ! $timeFormat = 'G:I'; ! $timeFormat_small = 'G:I'; // For date formatting, see note below --- 167,172 ---- // For time formatting, check out: http://www.php.net/manual/en/function.date.php ! $timeFormat = 'G:i'; ! $timeFormat_small = 'G:i'; // For date formatting, see note below Index: english.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/languages/english.inc.php,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** english.inc.php 29 Dec 2008 06:00:42 -0000 1.71 --- english.inc.php 31 Dec 2008 07:14:35 -0000 1.72 *************** *** 74,77 **** --- 74,78 ---- $lang['l_select_timezone'] = 'Select your default timezone'; $lang['l_select_endtime'] = 'Select your default end time'; + $lang['l_select_timeformat']= 'Select your default time format (AM/PM)'; $lang['l_select_day'] = 'Select your default start day of week'; $lang['l_select_style'] = 'Select your default style'; |
From: <ji...@us...> - 2008-12-31 07:14:41
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24812 Modified Files: preferences.php Log Message: timeFormat select in preferences (feature request 1401779) Index: preferences.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/preferences.php,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** preferences.php 29 Dec 2008 03:07:34 -0000 1.69 --- preferences.php 31 Dec 2008 07:14:34 -0000 1.70 *************** *** 30,37 **** $cookie_startday = $_POST['cookie_startday']; $cookie_time = $_POST['cookie_time']; $cookie_endtime = $_POST['cookie_endtime']; $cookie_timezone = $_POST['cookie_timezone']; $cookie_unset = @$_POST['unset']; ! $the_cookie = array ("cookie_language" => "$cookie_language", "cookie_calendar" => "$cookie_calendar", "cookie_view" => "$cookie_view", "cookie_startday" => "$cookie_startday", "cookie_style" => "$cookie_style", "cookie_time" => "$cookie_time","cookie_endtime" => "$cookie_endtime", "cookie_cpath"=>"$cookie_cpath", "cookie_timezone"=>"$cookie_timezone"); $the_cookie = serialize($the_cookie); if ($cookie_unset) { --- 30,49 ---- $cookie_startday = $_POST['cookie_startday']; $cookie_time = $_POST['cookie_time']; + $cookie_timeformat = $_POST['cookie_timeformat']; $cookie_endtime = $_POST['cookie_endtime']; $cookie_timezone = $_POST['cookie_timezone']; $cookie_unset = @$_POST['unset']; ! $the_cookie = array ( ! "cookie_language" => "$cookie_language", ! "cookie_calendar" => "$cookie_calendar", ! "cookie_view" => "$cookie_view", ! "cookie_startday" => "$cookie_startday", ! "cookie_style" => "$cookie_style", ! "cookie_time" => "$cookie_time", ! "cookie_endtime" => "$cookie_endtime", ! "cookie_timeformat" => "$cookie_timeformat", ! "cookie_cpath" => "$cookie_cpath", ! "cookie_timezone" => "$cookie_timezone" ! ); $the_cookie = serialize($the_cookie); if ($cookie_unset) { *************** *** 60,66 **** $cookie_time = $phpicalendar['cookie_time']; $cookie_endtime = $phpicalendar['cookie_endtime']; $cookie_timezone = $phpicalendar['cookie_timezone']; if ($cookie_unset) { ! unset ($cookie_language, $cookie_calendar, $cookie_view, $cookie_style,$cookie_startday); } } --- 72,79 ---- $cookie_time = $phpicalendar['cookie_time']; $cookie_endtime = $phpicalendar['cookie_endtime']; + $cookie_timeformat = $phpicalendar['cookie_timeformat']; $cookie_timezone = $phpicalendar['cookie_timezone']; if ($cookie_unset) { ! unset ($cookie_language, $cookie_calendar, $cookie_view, $cookie_style, $cookie_startday, $cookie_time, $cookie_endtime, $cookie_timeformat, $cookie_timezone); } } *************** *** 68,79 **** if ((!isset($_COOKIE[$cookie_name])) || ($cookie_unset)) { # No cookie set -> use defaults from config file. ! $cookie_language = ucfirst($language); ! $cookie_calendar = $phpiCal_config->default_cal; ! $cookie_view = $phpiCal_config->default_view; ! $cookie_style = $phpiCal_config->template; ! $cookie_startday = $phpiCal_config->week_start_day; ! $cookie_time = $phpiCal_config->day_start; ! $cookie_endtime = $phpiCal_config->day_end; ! $cookie_timezone = $phpiCal_config->timezone; } --- 81,93 ---- if ((!isset($_COOKIE[$cookie_name])) || ($cookie_unset)) { # No cookie set -> use defaults from config file. ! $cookie_language = ucfirst($language); ! $cookie_calendar = $phpiCal_config->default_cal; ! $cookie_view = $phpiCal_config->default_view; ! $cookie_style = $phpiCal_config->template; ! $cookie_startday = $phpiCal_config->week_start_day; ! $cookie_time = $phpiCal_config->day_start; ! $cookie_endtime = $phpiCal_config->day_end; ! $cookie_timeformat = $timeFormat; ! $cookie_timezone = $phpiCal_config->timezone; } *************** *** 109,114 **** $calendar_select = str_replace("<option value=\"$cookie_calendar\">","<option value=\"$cookie_calendar\" selected='selected'>",$calendar_select); // select for dayview ! $view_select = ($phpiCal_config->default_view == 'day') ? '<option value="day" selected="selected">{L_DAY}</option>' : '<option value="day">{L_DAY}</option>'; ! $view_select .= ($phpiCal_config->default_view == 'week') ? '<option value="week" selected="selected">{L_WEEK}</option>' : '<option value="week">{L_WEEK}</option>'; $view_select .= ($phpiCal_config->default_view == 'month') ? '<option value="month" selected="selected">{L_MONTH}</option>' : '<option value="month">{L_MONTH}</option>'; --- 123,128 ---- $calendar_select = str_replace("<option value=\"$cookie_calendar\">","<option value=\"$cookie_calendar\" selected='selected'>",$calendar_select); // select for dayview ! $view_select = ($phpiCal_config->default_view == 'day' ) ? '<option value="day" selected="selected">{L_DAY}</option>' : '<option value="day">{L_DAY}</option>'; ! $view_select .= ($phpiCal_config->default_view == 'week' ) ? '<option value="week" selected="selected">{L_WEEK}</option>' : '<option value="week">{L_WEEK}</option>'; $view_select .= ($phpiCal_config->default_view == 'month') ? '<option value="month" selected="selected">{L_MONTH}</option>' : '<option value="month">{L_MONTH}</option>'; *************** *** 133,136 **** --- 147,168 ---- $endtime_select .= ">$s</option>\n"; } + $timeformat_arr = array( + 'g:i', + 'h:i', + 'g:i A', + 'h:i A', + 'G:i', + 'H:i', + ); + $example_time = strtotime("19700101 08:00:00"); + $timeformat_select = ''; + foreach ($timeformat_arr as $i => $s) { + $s = date($timeformat_arr[$i], $example_time)."/".date($timeformat_arr[$i], ($example_time + 12*60*60)); + $timeformat_select .= '<option value="'.$timeformat_arr[$i].'"'; + if ($timeformat_arr[$i] == $cookie_timeformat) { + $timeformat_select .= ' selected="selected"'; + } + $timeformat_select .= ">$s</option>\n"; + } // select for day of week *************** *** 238,241 **** --- 270,274 ---- 'time_select' => $time_select, 'endtime_select' => $endtime_select, + 'timeformat_select' => $timeformat_select, 'startday_select' => $startday_select, 'style_select' => $style_select, *************** *** 249,252 **** --- 282,286 ---- 'l_select_timezone' => $lang['l_select_timezone'], 'l_select_endtime' => $lang['l_select_endtime'], + 'l_select_timeformat'=> $lang['l_select_timeformat'], 'l_select_day' => $lang['l_select_day'], 'l_select_cal' => $lang['l_select_cal'], |
From: <ji...@us...> - 2008-12-31 07:14:41
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/init In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24812/functions/init Modified Files: configs.php Log Message: timeFormat select in preferences (feature request 1401779) Index: configs.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/configs.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** configs.php 28 Dec 2008 21:02:44 -0000 1.9 --- configs.php 31 Dec 2008 07:14:35 -0000 1.10 *************** *** 28,32 **** $phpiCal_config->setProperty('cookie_uri', $_SERVER['SERVER_NAME'].substr($_SERVER['PHP_SELF'],0,strpos($_SERVER['PHP_SELF'], '/')) ); if ($phpiCal_config->cookie_uri == 'localhost') $phpiCal_config->setProperty('cookie_uri', ''); - ; } $cookie_name = 'phpicalendar_'.basename($phpiCal_config->default_path); --- 28,31 ---- *************** *** 56,59 **** --- 55,75 ---- } + if (isset($phpicalendar['cookie_timeformat']) && $phpicalendar['cookie_timeformat'] !=''){ + $timeFormat = $phpicalendar['cookie_timeformat']; + echo "here $timeFormat<pre>";print_r($phpicalendar); + switch($timeFormat){ + case 'h:i': + case 'h:i A': + $timeFormat_small = 'h:i'; + break; + case 'G:i': + case 'H:i': + $timeFormat_small = 'G:i'; + break; + default: + $timeFormat_small = 'g:i'; + } + } + $template = $phpiCal_config->template; |
From: <ji...@us...> - 2008-12-31 07:14:41
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24812/templates/default Modified Files: preferences.tpl Log Message: timeFormat select in preferences (feature request 1401779) Index: preferences.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/preferences.tpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** preferences.tpl 29 Dec 2008 05:23:46 -0000 1.15 --- preferences.tpl 31 Dec 2008 07:14:35 -0000 1.16 *************** *** 70,73 **** --- 70,78 ---- </tr> <tr align="left" valign="top"> + <td nowrap="nowrap">{L_SELECT_TIMEFORMAT}:</td> + <td><img src="images/spacer.gif" alt=" " width="20" height="1" border="0" /></td> + <td><select name="cookie_timeformat" class="query_style">{TIMEFORMAT_SELECT}</select></td> + </tr> + <tr align="left" valign="top"> <td nowrap="nowrap">{L_SELECT_DAY}:</td> <td><img src="images/spacer.gif" alt=" " width="20" height="1" border="0" /></td> |
From: <ji...@us...> - 2008-12-30 03:48:17
|
Update of /cvsroot/phpicalendar/phpicalendar/calendars In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23130/calendars Modified Files: test.ics Log Message: day view and month bottom problems bug 2476126 Index: test.ics =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/calendars/test.ics,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** test.ics 29 Dec 2008 03:39:29 -0000 1.14 --- test.ics 30 Dec 2008 03:48:13 -0000 1.15 *************** *** 67,70 **** --- 67,81 ---- BEGIN:VEVENT SEQUENCE:7 + UID:test + DTSTAMP:20020918T224617Z + SUMMARY:test foo + STATUS:CONFIRMED + DTSTART;TZID=US/Central:20081229T20000 + DTEND;TZID=US/Central:20081229T24000 + URL:http://google.com + END:VEVENT + + BEGIN:VEVENT + SEQUENCE:7 UID:starts on 12 DTSTAMP:20020918T224617Z *************** *** 72,76 **** STATUS:CONFIRMED DURATION:P5D ! DTSTART;TZID=US/Eastern:20081212 URL:http://google.com END:VEVENT --- 83,87 ---- STATUS:CONFIRMED DURATION:P5D ! DTSTART;TZID=US/Eastern:20081225 URL:http://google.com END:VEVENT |
From: <ji...@us...> - 2008-12-30 03:48:17
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23130 Modified Files: default_config.php Log Message: day view and month bottom problems bug 2476126 Index: default_config.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/default_config.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** default_config.php 29 Dec 2008 08:20:52 -0000 1.13 --- default_config.php 30 Dec 2008 03:48:12 -0000 1.14 *************** *** 3,7 **** private static $instance; private function __construct(){ ! $this->phpicalendar_version = '2.3'; // Configuration file for PHP iCalendar 2.25rc1 // --- 3,7 ---- private static $instance; private function __construct(){ ! $this->phpicalendar_version = '2.31rc1'; // Configuration file for PHP iCalendar 2.25rc1 // |
From: <ji...@us...> - 2008-12-30 03:48:17
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23130/functions Modified Files: template.php Log Message: day view and month bottom problems bug 2476126 Index: template.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/template.php,v retrieving revision 1.111 retrieving revision 1.112 diff -C2 -d -r1.111 -r1.112 *** template.php 29 Dec 2008 08:20:52 -0000 1.111 --- template.php 30 Dec 2008 03:48:13 -0000 1.112 *************** *** 564,568 **** $start_wt = strtotime(dateOfWeek($getdate, $phpiCal_config->week_start_day)); $start_day = strtotime(dateOfWeek($getdate, $phpiCal_config->week_start_day)); ! for ($i=0; $i<$phpiCal_config->week_length; $i++) { $day_num = date("w", $start_day); $daylink = date('Ymd', $start_wt); --- 564,568 ---- $start_wt = strtotime(dateOfWeek($getdate, $phpiCal_config->week_start_day)); $start_day = strtotime(dateOfWeek($getdate, $phpiCal_config->week_start_day)); ! for ($i=0; $i< $phpiCal_config->week_length; $i++) { $day_num = date("w", $start_day); $daylink = date('Ymd', $start_wt); *************** *** 646,650 **** if (isset($this_time_arr) && sizeof($this_time_arr) > 0) { foreach ($this_time_arr as $eventKey => $loopevent) { ! $drawEvent = drawEventTimes ($cal_time, $loopevent['event_end']); $j = 0; while (isset($event_length[$j])) { --- 646,650 ---- if (isset($this_time_arr) && sizeof($this_time_arr) > 0) { foreach ($this_time_arr as $eventKey => $loopevent) { ! $drawEvent = drawEventTimes ($cal_time, $loopevent['display_end']); $j = 0; while (isset($event_length[$j])) { *************** *** 698,706 **** $event_length[$i]['state'] = 'started'; $uid = $event_length[$i]['key']; - $event_start = strtotime ($this_time_arr[$uid]['event_start']); - $event_end = strtotime ($this_time_arr[$uid]['event_end']); - if (isset($this_time_arr[$uid]['display_end'])) $event_end = strtotime ($this_time_arr[$uid]['display_end']); - $event_start = date ($timeFormat, $event_start); - $event_end = date ($timeFormat, $event_end); $event_calno = $this_time_arr[$uid]['calnumber']; $event_recur = $this_time_arr[$uid]['recur']; --- 698,701 ---- *************** *** 717,722 **** $event = openevent($getdate, $cal_time, $uid, $this_time_arr[$uid], 0, 0, 'ps'); $event_temp = str_replace('{EVENT}', $event, $event_temp); ! $event_temp = str_replace('{EVENT_START}', $event_start, $event_temp); ! $event_temp = str_replace('{EVENT_END}', $event_end, $event_temp); $event_temp = str_replace('{CONFIRMED}', $confirmed, $event_temp); $event_temp = str_replace('{EVENT_CALNO}', $event_calno, $event_temp); --- 712,717 ---- $event = openevent($getdate, $cal_time, $uid, $this_time_arr[$uid], 0, 0, 'ps'); $event_temp = str_replace('{EVENT}', $event, $event_temp); ! $event_temp = str_replace('{EVENT_START}', date($timeFormat, $this_time_arr[$uid]['start_unixtime']), $event_temp); ! $event_temp = str_replace('{EVENT_END}', date($timeFormat, $this_time_arr[$uid]['end_unixtime']), $event_temp); $event_temp = str_replace('{CONFIRMED}', $confirmed, $event_temp); $event_temp = str_replace('{EVENT_CALNO}', $event_calno, $event_temp); *************** *** 1069,1073 **** $event_end = (isset($val['display_end'])) ? $val['display_end'] : $val["event_end"]; $event_start = date($timeFormat, $val['start_unixtime']); ! $event_end = date($timeFormat, @strtotime ($event_end)); $switch['START_TIME'] = $event_start . ' - ' . $event_end; $switch['EVENT_TEXT'] = openevent($m_start, $cal_time, $uid, $val, 0, 15, 'psf'); --- 1064,1068 ---- $event_end = (isset($val['display_end'])) ? $val['display_end'] : $val["event_end"]; $event_start = date($timeFormat, $val['start_unixtime']); ! $event_end = date($timeFormat, $val['end_unixtime']); $switch['START_TIME'] = $event_start . ' - ' . $event_end; $switch['EVENT_TEXT'] = openevent($m_start, $cal_time, $uid, $val, 0, 15, 'psf'); |
From: <ji...@us...> - 2008-12-30 03:48:17
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/parse In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23130/functions/parse Modified Files: end_vevent.php Log Message: day view and month bottom problems bug 2476126 Index: end_vevent.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/parse/end_vevent.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** end_vevent.php 29 Dec 2008 06:33:45 -0000 1.22 --- end_vevent.php 30 Dec 2008 03:48:13 -0000 1.23 *************** *** 11,15 **** 3. Add occurrences to master_array */ - if (!isset($start_date)) $start_date = "19700101"; --- 11,14 ---- *************** *** 321,325 **** if ($this_date_tmp < $end_date_tmp) $display_end_tmp = '2400'; } ! if($this_date_tmp == $end_date_tmp && ($end_time == '0000' && $time_key == -1)) continue; $master_array[$this_date_tmp][$time_key][$uid] = array ( 'event_start' => $start_time, # hhmm --- 320,324 ---- if ($this_date_tmp < $end_date_tmp) $display_end_tmp = '2400'; } ! if($this_date_tmp == $end_date_tmp && ($end_time == '0000')) continue; $master_array[$this_date_tmp][$time_key][$uid] = array ( 'event_start' => $start_time, # hhmm |
From: <ji...@us...> - 2008-12-29 08:21:00
|
Update of /cvsroot/phpicalendar/phpicalendar/calendars In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27849/calendars Modified Files: US Holidays.ics Log Message: change version for release Index: US Holidays.ics =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/calendars/US Holidays.ics,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** US Holidays.ics 29 Dec 2008 03:07:34 -0000 1.8 --- US Holidays.ics 29 Dec 2008 08:20:52 -0000 1.9 *************** *** 356,360 **** DTSTART;VALUE=DATE:19970120 DTSTAMP:20050930T230748Z ! SUMMARY:Martin Luther King\, Jr's Davy CREATED:20081223T190054Z DTEND;VALUE=DATE:19970121 --- 356,360 ---- DTSTART;VALUE=DATE:19970120 DTSTAMP:20050930T230748Z ! SUMMARY:Martin Luther King\, Jr's Day CREATED:20081223T190054Z DTEND;VALUE=DATE:19970121 |
From: <ji...@us...> - 2008-12-29 08:21:00
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27849/functions Modified Files: template.php Log Message: change version for release Index: template.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/template.php,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** template.php 29 Dec 2008 03:30:36 -0000 1.110 --- template.php 29 Dec 2008 08:20:52 -0000 1.111 *************** *** 979,983 **** $switch['ALLDAY'] .= '</div>'; } else { ! $switch['ALLDAY'] .= '<img src="templates/'.$phpiCal_config->template.'/images/allday_dot.gif" alt=" " width="11" height="10" border="0" />'; } } else { --- 979,983 ---- $switch['ALLDAY'] .= '</div>'; } else { ! $switch['ALLDAY'] = '<img src="templates/'.$phpiCal_config->template.'/images/allday_dot.gif" alt=" " width="11" height="10" border="0" />'; } } else { |
From: <ji...@us...> - 2008-12-29 08:20:56
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27849/templates/default Modified Files: month_medium.tpl rss_index.tpl Log Message: change version for release Index: month_medium.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/month_medium.tpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** month_medium.tpl 8 Feb 2006 08:07:54 -0000 1.7 --- month_medium.tpl 29 Dec 2008 08:20:52 -0000 1.8 *************** *** 23,28 **** <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a> <div align="center"> ! {ALLDAY} ! {EVENT} </div> </td> --- 23,28 ---- <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a> <div align="center"> ! <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{ALLDAY}</a> ! <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{EVENT}</a> </div> </td> *************** *** 32,37 **** <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a> <div align="center"> ! {ALLDAY} ! {EVENT} </div> </td> --- 32,37 ---- <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{DAY}</a> <div align="center"> ! <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{ALLDAY}</a> ! <a class="psf" href="day.php?cal={CAL}&getdate={DAYLINK}">{EVENT}</a> </div> </td> Index: rss_index.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/rss_index.tpl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** rss_index.tpl 29 Dec 2008 06:00:42 -0000 1.7 --- rss_index.tpl 29 Dec 2008 08:20:52 -0000 1.8 *************** *** 14,21 **** <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> ! <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> ! <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> ! <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> ! <td><a class="psf" href="year.php?cal={CAL}&getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></a></td> </tr> </table> --- 14,21 ---- <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> ! <td><a class="psf" href="../day.php?cal={CAL}&getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> ! <td><a class="psf" href="../week.php?cal={CAL}&getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> ! <td><a class="psf" href="../month.php?cal={CAL}&getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> ! <td><a class="psf" href="../year.php?cal={CAL}&getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></a></td> </tr> </table> |
From: <ji...@us...> - 2008-12-29 08:20:56
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/red In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27849/templates/red Modified Files: day.tpl month.tpl Log Message: change version for release Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/red/day.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** day.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- day.tpl 29 Dec 2008 08:20:52 -0000 1.3 *************** *** 14,18 **** <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> ! <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> --- 14,18 ---- <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> ! <td><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> Index: month.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/red/month.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** month.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- month.tpl 29 Dec 2008 08:20:52 -0000 1.3 *************** *** 13,17 **** <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> ! <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> <td><a class="psf" href="year.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></a></td> </tr> --- 13,17 ---- <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> ! <td><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></td> <td><a class="psf" href="year.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></a></td> </tr> |
From: <ji...@us...> - 2008-12-29 08:20:56
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/tan In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27849/templates/tan Modified Files: day.tpl month.tpl Log Message: change version for release Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/tan/day.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** day.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- day.tpl 29 Dec 2008 08:20:52 -0000 1.3 *************** *** 14,18 **** <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> ! <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> --- 14,18 ---- <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> ! <td><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> Index: month.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/tan/month.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** month.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- month.tpl 29 Dec 2008 08:20:52 -0000 1.3 *************** *** 13,17 **** <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> ! <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> <td><a class="psf" href="year.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></a></td> </tr> --- 13,17 ---- <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> ! <td><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></td> <td><a class="psf" href="year.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></a></td> </tr> |
From: <ji...@us...> - 2008-12-29 08:20:56
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/green In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27849/templates/green Modified Files: day.tpl month.tpl Log Message: change version for release Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/green/day.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** day.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- day.tpl 29 Dec 2008 08:20:52 -0000 1.3 *************** *** 14,18 **** <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> ! <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> --- 14,18 ---- <table width="120" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> ! <td><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> Index: month.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/green/month.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** month.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- month.tpl 29 Dec 2008 08:20:52 -0000 1.3 *************** *** 13,17 **** <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> ! <td><a class="psf" href="month.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></a></td> <td><a class="psf" href="year.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></a></td> </tr> --- 13,17 ---- <td><a class="psf" href="day.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" title="{L_DAY}" border="0" /></a></td> <td><a class="psf" href="week.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" title="{L_WEEK}" border="0" /></a></td> ! <td><img src="templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" title="{L_MONTH}" border="0" /></td> <td><a class="psf" href="year.php?cal={CAL}&getdate={GETDATE}"><img src="templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></a></td> </tr> |