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: <par...@us...> - 2009-05-20 17:59:22
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8198/functions Modified Files: ical_parser.php Log Message: Fix attendee and organizer parsing Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.247 retrieving revision 1.248 diff -C2 -d -r1.247 -r1.248 *** ical_parser.php 8 Apr 2009 04:42:59 -0000 1.247 --- ical_parser.php 20 May 2009 17:59:12 -0000 1.248 *************** *** 426,437 **** break; case 'ATTENDEE': ! $attendee[] = array ('name' => ereg_replace ("ATTENDEE;CN=([^;]*).*", "\\1", $field), ! 'email' => ereg_replace (".*mailto:(.*).*", "\\1", $field), ! 'RSVP' => ereg_replace (".*RSVP=([^;]*).*", "\\1", $field), ! 'PARSTAT' => ereg_replace (".*PARTSTAT=([^;]*).*", "\\1", $field), ! 'ROLE' => ereg_replace (".*ROLE=([^;]*).*", "\\1", $field)); break; case 'ORGANIZER': ! $field = str_replace("ORGANIZER;CN=", "", $field); $data = str_replace ("mailto:", "", $data); $organizer[] = array ('name' => stripslashes($field), 'email' => stripslashes($data)); --- 426,437 ---- break; case 'ATTENDEE': ! $attendee[] = array ('name' => ereg_replace(".*;CN=([^;]*).*", "\\1", $field), ! 'email' => str_replace ("mailto:", "", $data), ! 'RSVP' => ereg_replace(".*;RSVP=([^;]*).*", "\\1", $field), ! 'PARTSTAT' => ereg_replace(".*;PARTSTAT=([^;]*).*", "\\1", $field), ! 'ROLE' => ereg_replace(".*;ROLE=([^;]*).*", "\\1", $field)); break; case 'ORGANIZER': ! $field = ereg_replace(".*;CN=([^;]*).*", "\\1", $field); $data = str_replace ("mailto:", "", $data); $organizer[] = array ('name' => stripslashes($field), 'email' => stripslashes($data)); |
From: <par...@us...> - 2009-05-20 17:13:32
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/init In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3812/functions/init Modified Files: sanitize.php Log Message: Add ellipsis to strings truncated by chopToWordCount() Index: sanitize.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/sanitize.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** sanitize.php 20 May 2009 17:10:10 -0000 1.4 --- sanitize.php 20 May 2009 17:13:19 -0000 1.5 *************** *** 43,47 **** $last_word = array_slice($words, $count, 1, true); $pos = key($last_word); ! $string = substr($string, 0, $pos); } return $string; --- 43,47 ---- $last_word = array_slice($words, $count, 1, true); $pos = key($last_word); ! $string = substr($string, 0, $pos) . '...'; } return $string; |
From: <par...@us...> - 2009-05-20 17:10:26
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/init In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3322/functions/init Modified Files: sanitize.php Log Message: Force makeTitle() to limit the amount of text put into a title Index: sanitize.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/sanitize.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** sanitize.php 20 May 2009 16:44:20 -0000 1.3 --- sanitize.php 20 May 2009 17:10:10 -0000 1.4 *************** *** 34,37 **** --- 34,54 ---- + /** + * Truncate a string to a specific number of words + */ + function chopToWordCount($string, $count) { + $wc = str_word_count($string); + if ($wc > $count) { + $words = str_word_count($string, 2); + $last_word = array_slice($words, $count, 1, true); + $pos = key($last_word); + $string = substr($string, 0, $pos); + } + return $string; + } + + /** + * Strip "dangerous" HTML to make it safe to print to web browsers + */ function sanitizeForWeb($string) { $string = preg_replace('/<br\s*\/?>/', "\n", $string); |
From: <par...@us...> - 2009-05-20 17:10:17
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3322/functions Modified Files: date_functions.php Log Message: Force makeTitle() to limit the amount of text put into a title Index: date_functions.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/date_functions.php,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** date_functions.php 14 May 2009 21:24:46 -0000 1.53 --- date_functions.php 20 May 2009 17:10:09 -0000 1.54 *************** *** 164,168 **** global $timeFormat, $dateFormat_week; ! $event_text = stripslashes(urldecode($arr["event_text"])); if ($time == -1) { $start = localizeDate($dateFormat_week, $arr['start_unixtime']); --- 164,168 ---- global $timeFormat, $dateFormat_week; ! $event_text = chopToWordCount(sanitizeForWeb(urldecode($arr["event_text"])), 25); if ($time == -1) { $start = localizeDate($dateFormat_week, $arr['start_unixtime']); *************** *** 178,185 **** if (!empty($arr['description'])) { ! $title .= "\n\nDescription: ".urldecode($arr['description']); } if (!empty($arr['location'])) { ! $title .= "\n\nLocation: ".urldecode($arr['location']); } $title = trim($title); --- 178,185 ---- if (!empty($arr['description'])) { ! $title .= "\n\nDescription: " . chopToWordCount(sanitizeForWeb(urldecode($arr['description'])), 100); } if (!empty($arr['location'])) { ! $title .= "\n\nLocation: " . chopToWordCount(sanitizeForWeb(urldecode($arr['location'])), 25); } $title = trim($title); |
From: <par...@us...> - 2009-05-20 16:44:43
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/init In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv768/functions/init Modified Files: sanitize.php Log Message: Fix line breaks in sanitizeForWeb() Index: sanitize.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/sanitize.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sanitize.php 13 Feb 2009 20:52:28 -0000 1.2 --- sanitize.php 20 May 2009 16:44:20 -0000 1.3 *************** *** 43,47 **** $string = str_replace('"', '"', $string); ! $string = str_replace('<br />', "\n", $string); return $string; --- 43,47 ---- $string = str_replace('"', '"', $string); ! $string = str_replace("\n", '<br />', $string); return $string; |
From: <par...@us...> - 2009-05-19 20:37:00
|
Update of /cvsroot/phpicalendar/phpicalendar/nicetitle In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8482/nicetitle Log Message: Directory /cvsroot/phpicalendar/phpicalendar/nicetitle added to the repository |
From: <par...@us...> - 2009-05-15 21:50:16
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19731 Modified Files: day.php week.php Log Message: Fix language variables in day and week views Index: day.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v retrieving revision 1.137 retrieving revision 1.138 diff -C2 -d -r1.137 -r1.138 *** day.php 28 Dec 2008 19:30:41 -0000 1.137 --- day.php 15 May 2009 21:50:08 -0000 1.138 *************** *** 95,98 **** --- 95,100 ---- 'l_jump' => $lang['l_jump'], 'l_todo' => $lang['l_todo'], + 'l_prev' => $lang['l_prev'], + 'l_next' => $lang['l_next'], 'l_day' => $lang['l_day'], 'l_week' => $lang['l_week'], Index: week.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v retrieving revision 1.137 retrieving revision 1.138 diff -C2 -d -r1.137 -r1.138 *** week.php 20 Dec 2008 03:22:54 -0000 1.137 --- week.php 15 May 2009 21:50:08 -0000 1.138 *************** *** 97,100 **** --- 97,102 ---- 'l_jump' => $lang['l_jump'], 'l_todo' => $lang['l_todo'], + 'l_prev' => $lang['l_prev'], + 'l_next' => $lang['l_next'], 'l_day' => $lang['l_day'], 'l_week' => $lang['l_week'], |
From: <par...@us...> - 2009-05-14 21:46:01
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/tan In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3961/templates/tan Modified Files: day.tpl default.css Log Message: Fix table column spanning and HTML errors in week view Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/tan/day.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** day.tpl 29 Dec 2008 08:20:52 -0000 1.3 --- day.tpl 14 May 2009 21:45:44 -0000 1.4 *************** *** 25,29 **** <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> --- 25,29 ---- <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2" class="tfixed"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> Index: default.css =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/tan/default.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** default.css 18 May 2007 19:03:09 -0000 1.1 --- default.css 14 May 2009 21:45:44 -0000 1.2 *************** *** 91,94 **** --- 91,95 ---- .eventbg { background-color: #6699CC; } + .tfixed { table-layout: fixed; } .calborder { background-color: #fff; border: 1px #A1A5A9 solid; } .dateback { background-color: #eee; } |
From: <par...@us...> - 2009-05-14 21:46:00
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/red In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3961/templates/red Modified Files: day.tpl default.css Log Message: Fix table column spanning and HTML errors in week view Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/red/day.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** day.tpl 29 Dec 2008 08:20:52 -0000 1.3 --- day.tpl 14 May 2009 21:45:44 -0000 1.4 *************** *** 25,29 **** <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> --- 25,29 ---- <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2" class="tfixed"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> Index: default.css =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/red/default.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** default.css 29 Dec 2008 03:30:36 -0000 1.2 --- default.css 14 May 2009 21:45:44 -0000 1.3 *************** *** 71,74 **** --- 71,75 ---- .eventbg { background-color: #6699CC; } + .tfixed { table-layout: fixed; } .calborder { background-color: #fff; border: 1px #A1A5A9 solid; } .dateback { background-color: #eee; } |
From: <par...@us...> - 2009-05-14 21:45:56
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3961/functions Modified Files: template.php Log Message: Fix table column spanning and HTML errors in week view Index: template.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/template.php,v retrieving revision 1.113 retrieving revision 1.114 diff -C2 -d -r1.113 -r1.114 *** template.php 31 Dec 2008 07:23:54 -0000 1.113 --- template.php 14 May 2009 21:45:44 -0000 1.114 *************** *** 349,353 **** } */ ! $this->page = preg_replace('!<\!-- loop alldaysofweek on -->.*<\!-- loop alldaysofweek off -->!Uis', $weekreplace, $this->page); // Replaces the daysofweek --- 349,353 ---- } */ ! $this->page = preg_replace('!<\!-- loop allday row on -->.*<\!-- loop allday row off -->!Uis', $weekreplace, $this->page); // Replaces the daysofweek *************** *** 462,467 **** } $drawWidth = 1; ! $colspan_width = round((80 / $nbrGridCols[$thisday]) * $drawWidth); ! $weekdisplay .= '<td width="' . $colspan_width . '" colspan="' . $nbrGridCols[$thisday] . '" ' . $class . '> </td>'."\n"; } else { # have events --- 462,466 ---- } $drawWidth = 1; ! $weekdisplay .= '<td colspan="' . $nbrGridCols[$thisday] . '" ' . $class . '> </td>'."\n"; } else { # have events *************** *** 491,498 **** $confirmed .= '<img src="images/'.$event_status.'.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" /> '; } - $colspan_width = round((80 / $nbrGridCols[$thisday]) * $drawWidth); $event_temp = $loop_event; $event = openevent($thisday, $cal_time, $uid, $this_time_arr[$uid], $phpiCal_config->week_events_lines, 25, 'ps'); ! $weekdisplay .= '<td width="'.$colspan_width.'" rowspan="' . $event_length[$thisday][$i]['length'] . '" colspan="' . $drawWidth . '" align="left" valign="top" class="eventbg2_'.$event_calno.'">'."\n"; // Start drawing the event --- 490,496 ---- $confirmed .= '<img src="images/'.$event_status.'.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" /> '; } $event_temp = $loop_event; $event = openevent($thisday, $cal_time, $uid, $this_time_arr[$uid], $phpiCal_config->week_events_lines, 25, 'ps'); ! $weekdisplay .= '<td rowspan="' . $event_length[$thisday][$i]['length'] . '" colspan="' . $drawWidth . '" align="left" valign="top" class="eventbg2_'.$event_calno.'">'."\n"; // Start drawing the event *************** *** 705,710 **** if (is_array($event_recur)) $confirmed .= '<img src="images/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" /> '; if ($event_status != '') $confirmed .= '<img src="images/'.$event_status.'.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" /> '; ! $colspan_width = round((460 / $nbrGridCols) * $drawWidth); ! $daydisplay .= '<td rowspan="' . $event_length[$i]['length'] . '" width="'.$colspan_width.'" colspan="' . $drawWidth . '" align="left" valign="top" class="eventbg2_'.$event_calno.'">'."\n"; // Start drawing the event --- 703,707 ---- if (is_array($event_recur)) $confirmed .= '<img src="images/recurring.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" /> '; if ($event_status != '') $confirmed .= '<img src="images/'.$event_status.'.gif" width="9" height="9" alt="" border="0" hspace="0" vspace="0" /> '; ! $daydisplay .= '<td rowspan="' . $event_length[$i]['length'] . '" colspan="' . $drawWidth . '" align="left" valign="top" class="eventbg2_'.$event_calno.'">'."\n"; // Start drawing the event |
From: <par...@us...> - 2009-05-14 21:45:56
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/grey In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3961/templates/grey Modified Files: day.tpl default.css Log Message: Fix table column spanning and HTML errors in week view Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/grey/day.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** day.tpl 29 Dec 2008 08:20:52 -0000 1.3 --- day.tpl 14 May 2009 21:45:44 -0000 1.4 *************** *** 25,29 **** <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> --- 25,29 ---- <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2" class="tfixed"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> Index: default.css =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/grey/default.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** default.css 18 May 2007 19:03:08 -0000 1.1 --- default.css 14 May 2009 21:45:44 -0000 1.2 *************** *** 72,75 **** --- 72,76 ---- .eventbg { background-color: #6699CC; } + .tfixed { table-layout: fixed; } .calborder { background-color: #fff; border: 1px #A1A5A9 solid; } .dateback { background-color: #eee; } |
From: <par...@us...> - 2009-05-14 21:45:56
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3961/templates/default Modified Files: day.tpl default.css week.tpl Log Message: Fix table column spanning and HTML errors in week view Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/day.tpl,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** day.tpl 29 Dec 2008 06:33:45 -0000 1.19 --- day.tpl 14 May 2009 21:45:44 -0000 1.20 *************** *** 25,29 **** <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> --- 25,29 ---- <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2" class="tfixed"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> Index: default.css =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/default.css,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** default.css 5 May 2005 20:23:18 -0000 1.23 --- default.css 14 May 2009 21:45:44 -0000 1.24 *************** *** 73,76 **** --- 73,77 ---- .eventbg { background-color: #6699CC; } + .tfixed { table-layout: fixed; } .calborder { background-color: #fff; border: 1px #A1A5A9 solid; } .dateback { background-color: #eee; } Index: week.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/week.tpl,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** week.tpl 29 Dec 2008 06:33:45 -0000 1.15 --- week.tpl 14 May 2009 21:45:44 -0000 1.16 *************** *** 3,13 **** <table border="0" width="770" cellspacing="0" cellpadding="0"> <tr> ! <td width="610" valign="top"> ! <table width="610" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> <td align="center" valign="middle"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> ! <td align="left" width="490" class="title"><h1>{DISPLAY_DATE}</h1><span class="V9G">{CALENDAR_NAME} {L_CALENDAR}</span></td> <td valign="top" align="right" width="120" class="navback"> <div style="padding-top: 3px;"> --- 3,13 ---- <table border="0" width="770" cellspacing="0" cellpadding="0"> <tr> ! <td valign="top"> ! <table border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> <td align="center" valign="middle"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> ! <td align="left" class="title"><h1>{DISPLAY_DATE}</h1><span class="V9G">{CALENDAR_NAME} {L_CALENDAR}</span></td> <td valign="top" align="right" width="120" class="navback"> <div style="padding-top: 3px;"> *************** *** 31,35 **** <tr> <td align="center" valign="top"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="left" valign="top" width="15" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='week.php?cal={CAL}&getdate={PREV_WEEK}'"> --- 31,35 ---- <tr> <td align="center" valign="top"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0" class="tfixed"> <tr> <td align="left" valign="top" width="15" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='week.php?cal={CAL}&getdate={PREV_WEEK}'"> *************** *** 47,51 **** <td width="1"></td> <!-- loop daysofweek on --> ! <td width="80" {COLSPAN} align="center" class="{ROW1}" onmouseover="this.className='{ROW2}'" onmouseout="this.className='{ROW3}'" onclick="window.location.href='week.php?cal={CAL}&getdate={DAYLINK}'"> <a class="ps3" href="day.php?cal={CAL}&getdate={DAYLINK}"><span class="V9BOLD">{DAY}</span></a> </td> --- 47,51 ---- <td width="1"></td> <!-- loop daysofweek on --> ! <td {COLSPAN} align="center" class="{ROW1}" onmouseover="this.className='{ROW2}'" onmouseout="this.className='{ROW3}'" onclick="window.location.href='week.php?cal={CAL}&getdate={DAYLINK}'"> <a class="ps3" href="day.php?cal={CAL}&getdate={DAYLINK}"><span class="V9BOLD">{DAY}</span></a> </td> *************** *** 57,65 **** <td width="1"></td> <!-- loop alldaysofweek on --> ! <td width="80" {COLSPAN} class="rowOff"> <!-- loop allday on --> <div class="alldaybg_{CALNO}"> {ALLDAY} ! <img src="images/spacer.gif" width="80" height="1" alt=" " /> </div> <!-- loop allday off --> --- 57,65 ---- <td width="1"></td> <!-- loop alldaysofweek on --> ! <td {COLSPAN} class="rowOff"> <!-- loop allday on --> <div class="alldaybg_{CALNO}"> {ALLDAY} ! <img src="images/spacer.gif" width="1" height="1" alt=" " /> </div> <!-- loop allday off --> |
From: <par...@us...> - 2009-05-14 21:45:56
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/green In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3961/templates/green Modified Files: day.tpl default.css Log Message: Fix table column spanning and HTML errors in week view Index: day.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/green/day.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** day.tpl 29 Dec 2008 08:20:52 -0000 1.3 --- day.tpl 14 May 2009 21:45:44 -0000 1.4 *************** *** 25,29 **** <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> --- 25,29 ---- <tr> <td colspan="2"> ! <table width="100%" border="0" cellspacing="0" cellpadding="2" class="tfixed"> <tr> <td align="left" valign="top" width="20" class="rowOff2" onmouseover="this.className='rowOn2'" onmouseout="this.className='rowOff2'" onclick="window.location.href='day.php?cal={CAL}&getdate={PREV_DAY}'"> Index: default.css =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/green/default.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** default.css 18 May 2007 19:03:07 -0000 1.1 --- default.css 14 May 2009 21:45:44 -0000 1.2 *************** *** 93,96 **** --- 93,97 ---- .eventbg { background-color: #339933; } + .tfixed { table-layout: fixed; } .calborder { background-color: #ffffff; border: 1px #A1A5A9 solid; } |
From: <par...@us...> - 2009-05-14 21:30:18
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/tan In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2260/templates/tan Modified Files: year.tpl Log Message: Fixed sidebar alignment in year display Index: year.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/tan/year.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** year.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- year.tpl 14 May 2009 21:30:09 -0000 1.3 *************** *** 1,129 **** {HEADER} <center> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! ! </td> ! <td class="navback"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> </td> </tr> </table> </td> ! <td align="right" width="120" class="navback"> ! <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> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td rowspan='8' valign='top'>{SIDEBAR}</td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> --- 1,137 ---- {HEADER} <center> ! <table width="770" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td width="676"> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! </td> ! <td class="navback"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> ! <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> ! </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> ! </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> ! </td> ! </tr> ! </table> </td> ! <td align="right" width="120" class="navback"> ! <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> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> </table> </td> ! <td valign="top"> ! {SIDEBAR} </td> </tr> |
From: <par...@us...> - 2009-05-14 21:30:18
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/green In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2260/templates/green Modified Files: year.tpl Log Message: Fixed sidebar alignment in year display Index: year.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/green/year.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** year.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- year.tpl 14 May 2009 21:30:09 -0000 1.3 *************** *** 1,129 **** {HEADER} <center> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! ! </td> ! <td class="navback"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> </td> </tr> </table> </td> ! <td align="right" width="120" class="navback"> ! <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> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td rowspan='8' valign='top'>{SIDEBAR}</td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> --- 1,137 ---- {HEADER} <center> ! <table width="770" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td width="676"> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! </td> ! <td class="navback"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> ! <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> ! </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> ! </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> ! </td> ! </tr> ! </table> </td> ! <td align="right" width="120" class="navback"> ! <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> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> </table> </td> ! <td valign="top"> ! {SIDEBAR} </td> </tr> |
From: <par...@us...> - 2009-05-14 21:30:18
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/grey In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2260/templates/grey Modified Files: year.tpl Log Message: Fixed sidebar alignment in year display Index: year.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/grey/year.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** year.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- year.tpl 14 May 2009 21:30:09 -0000 1.3 *************** *** 1,129 **** {HEADER} <center> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! ! </td> ! <td class="navback"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> </td> </tr> </table> </td> ! <td align="right" width="120" class="navback"> ! <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> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td rowspan='8' valign='top'>{SIDEBAR}</td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> --- 1,137 ---- {HEADER} <center> ! <table width="770" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td width="676"> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! </td> ! <td class="navback"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> ! <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> ! </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> ! </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> ! </td> ! </tr> ! </table> </td> ! <td align="right" width="120" class="navback"> ! <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> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> </table> </td> ! <td valign="top"> ! {SIDEBAR} </td> </tr> |
From: <par...@us...> - 2009-05-14 21:30:18
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2260/templates/default Modified Files: year.tpl Log Message: Fixed sidebar alignment in year display Index: year.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/year.tpl,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** year.tpl 29 Dec 2008 06:33:45 -0000 1.13 --- year.tpl 14 May 2009 21:30:09 -0000 1.14 *************** *** 1,129 **** {HEADER} <center> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! ! </td> ! <td class="navback"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> </td> </tr> </table> </td> ! <td align="right" width="120" class="navback"> ! <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><img src="templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></td> ! </tr> ! </table> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td rowspan='8' valign='top'>{SIDEBAR}</td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> --- 1,137 ---- {HEADER} <center> ! <table width="770" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td width="676"> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! </td> ! <td class="navback"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> ! <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> ! </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> ! </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> ! </td> ! </tr> ! </table> </td> ! <td align="right" width="120" class="navback"> ! <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><img src="templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" title="{L_YEAR}" border="0" /></td> ! </tr> ! </table> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> </table> </td> ! <td valign="top"> ! {SIDEBAR} </td> </tr> |
From: <par...@us...> - 2009-05-14 21:30:17
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/red In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2260/templates/red Modified Files: year.tpl Log Message: Fixed sidebar alignment in year display Index: year.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/red/year.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** year.tpl 29 Dec 2008 05:23:46 -0000 1.2 --- year.tpl 14 May 2009 21:30:09 -0000 1.3 *************** *** 1,129 **** {HEADER} <center> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! ! </td> ! <td class="navback"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> </td> </tr> </table> </td> ! <td align="right" width="120" class="navback"> ! <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> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td rowspan='8' valign='top'>{SIDEBAR}</td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> --- 1,137 ---- {HEADER} <center> ! <table width="770" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td width="676"> ! <table width="676" border="0" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" valign="middle" bgcolor="white"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> ! <td align="left" width="120" class="navback"> ! </td> ! <td class="navback"> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> ! <tr> ! <td align="right" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={PREV_YEAR}"><img src="templates/{TEMPLATE}/images/left_day.gif" alt="[Previous Year]" border="0" align="right" /></a> ! </td> ! <td align="center" width="10%" class="title" nowrap="nowrap" valign="middle"> ! <h1>{THIS_YEAR}</h1> ! </td> ! <td align="left" width="45%" class="navback"> ! <a class="psf" href="year.php?cal={CAL}&getdate={NEXT_YEAR}"><img src="templates/{TEMPLATE}/images/right_day.gif" alt="[Next Year]" border="0" align="left" /></a> ! </td> ! </tr> ! </table> </td> ! <td align="right" width="120" class="navback"> ! <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> </td> </tr> </table> </td> ! </tr> ! </table> ! <br /> ! <table border="0" width="670" cellspacing="0" cellpadding="0"> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|01} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|02} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|03} ! </td> ! <td width="20" rowspan='8'> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|04} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|05} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|06} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|07} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|08} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|09} ! </td> ! </tr> ! <tr> ! <td colspan="5"> ! <img src="images/spacer.gif" width="1" height="20" alt=" " /> ! </td> ! </tr> ! <tr> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|10} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|11} ! </td> ! <td width="20"> ! <img src="images/spacer.gif" width="20" height="1" alt=" " /> ! </td> ! <td width="210" valign="top" align="left"> ! {MONTH_MEDIUM|12} </td> </tr> </table> </td> ! <td valign="top"> ! {SIDEBAR} </td> </tr> |
From: <par...@us...> - 2009-05-14 21:24:54
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1735/functions Modified Files: date_functions.php Log Message: Added a function to generate titles from an event array Index: date_functions.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/date_functions.php,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** date_functions.php 5 Feb 2009 15:38:24 -0000 1.52 --- date_functions.php 14 May 2009 21:24:46 -0000 1.53 *************** *** 156,160 **** return $offset; } ! /* Returns a string to make event text with a link to popup boxes $arr is a master array item $lines is the number of lines to restrict the event_text to, using word_wrap --- 156,192 ---- return $offset; } ! ! /* Returns a string to be used in HTML title attributes ! $arr is a master array item ! $time is the event's UNIX timestamp ! */ ! function makeTitle($arr, $time) { ! global $timeFormat, $dateFormat_week; ! ! $event_text = stripslashes(urldecode($arr["event_text"])); ! if ($time == -1) { ! $start = localizeDate($dateFormat_week, $arr['start_unixtime']); ! $end = localizeDate($dateFormat_week, ($arr['end_unixtime'] - 60)); ! $title = $event_text; ! if ($start != $end) $title .= "\n$start - $end"; ! } else { ! $start = date($timeFormat, $arr['start_unixtime']); ! $end = date($timeFormat, $arr['end_unixtime']); ! $title = "$start: $event_text"; ! if ($start != $end) $title = "$event_text\n$start - $end"; ! } ! ! if (!empty($arr['description'])) { ! $title .= "\n\nDescription: ".urldecode($arr['description']); ! } ! if (!empty($arr['location'])) { ! $title .= "\n\nLocation: ".urldecode($arr['location']); ! } ! $title = trim($title); ! ! return $title; ! } ! ! /* Returns a string to make event text with a link to popup boxes $arr is a master array item $lines is the number of lines to restrict the event_text to, using word_wrap *************** *** 170,186 **** $event_text = stripslashes(urldecode($arr["event_text"])); # build tooltip ! if ($time == -1) { ! $start = localizeDate($dateFormat_week, $arr['start_unixtime']); ! $end = localizeDate($dateFormat_week, ($arr['end_unixtime'] - 60)); ! $title = $event_text; ! if ($start != $end) $title = "$start - $end $event_text"; ! } else { ! $start = date($timeFormat, $arr['start_unixtime']); ! $end = date($timeFormat, $arr['end_unixtime']); ! $title = "$start: $event_text"; ! if ($start != $end) $title = "$start - $end $event_text"; ! } ! $title .= "\n".urldecode($arr['description'])."\n".urldecode($arr['location']); ! $title = trim($title); # for iCal pseudo tag <http> comptability if (ereg("<([[:alpha:]]+://)([^<>[:space:]]+)>",$event_text,$matches)) { --- 202,206 ---- $event_text = stripslashes(urldecode($arr["event_text"])); # build tooltip ! $title = makeTitle($arr, $time); # for iCal pseudo tag <http> comptability if (ereg("<([[:alpha:]]+://)([^<>[:space:]]+)>",$event_text,$matches)) { |
From: <ji...@us...> - 2009-04-08 04:43:13
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25907/templates/default Modified Files: month.tpl Log Message: autoincrement sequence if it is missing Index: month.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/month.tpl,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** month.tpl 29 Dec 2008 06:33:45 -0000 1.19 --- month.tpl 8 Apr 2009 04:42:59 -0000 1.20 *************** *** 86,88 **** <!-- switch showbottom off --> </center> ! {FOOTER} --- 86,88 ---- <!-- switch showbottom off --> </center> ! {FOOTER} \ No newline at end of file |
From: <ji...@us...> - 2009-04-08 04:43:08
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/parse In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25907/functions/parse Modified Files: end_vevent.php parse_tzs.php Log Message: autoincrement sequence if it is missing Index: end_vevent.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/parse/end_vevent.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** end_vevent.php 26 Jan 2009 05:07:38 -0000 1.25 --- end_vevent.php 8 Apr 2009 04:42:59 -0000 1.26 *************** *** 30,35 **** $uid_valid = false; }elseif(in_array($uid, $uid_list)) { ! #$uid .= $uid_counter; ! #$uid_counter++; }else{ $uid_valid = true; --- 30,35 ---- $uid_valid = false; }elseif(in_array($uid, $uid_list)) { ! # UID seen before. If sequence is the default, bump it. ! if ($sequence == 0) $sequence++; }else{ $uid_valid = true; *************** *** 322,326 **** if($this_date_tmp == $end_date_tmp && ($end_time == '0000')) continue; if(!isset($master_array[$this_date_tmp][$time_key][$uid]['sequence']) || ! $sequence > $master_array[$this_date_tmp][$time_key][$uid]['sequence']){ $master_array[$this_date_tmp][$time_key][$uid] = array ( 'event_start' => $start_time, # hhmm --- 322,327 ---- if($this_date_tmp == $end_date_tmp && ($end_time == '0000')) continue; if(!isset($master_array[$this_date_tmp][$time_key][$uid]['sequence']) || ! $sequence > $master_array[$this_date_tmp][$time_key][$uid]['sequence'] ! ){ $master_array[$this_date_tmp][$time_key][$uid] = array ( 'event_start' => $start_time, # hhmm Index: parse_tzs.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/parse/parse_tzs.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** parse_tzs.php 2 Jan 2009 07:12:12 -0000 1.10 --- parse_tzs.php 8 Apr 2009 04:42:59 -0000 1.11 *************** *** 3,7 **** if ($ifile == FALSE) exit(error($lang['l_error_cantopen'], $filename)); $nextline = fgets($ifile); ! if (trim($nextline) != 'BEGIN:VCALENDAR') exit(error($lang['l_error_invalidcal'], $filename)); // read file in line by line --- 3,7 ---- if ($ifile == FALSE) exit(error($lang['l_error_cantopen'], $filename)); $nextline = fgets($ifile); ! #if (trim($nextline) != 'BEGIN:VCALENDAR') exit(error($lang['l_error_invalidcal'], $filename)); // read file in line by line |
From: <ji...@us...> - 2009-04-08 04:43:03
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25907 Modified Files: config.inc.php Log Message: autoincrement sequence if it is missing Index: config.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/config.inc.php,v retrieving revision 1.203 retrieving revision 1.204 diff -C2 -d -r1.203 -r1.204 *** config.inc.php 30 Jan 2009 20:49:25 -0000 1.203 --- config.inc.php 8 Apr 2009 04:42:59 -0000 1.204 *************** *** 101,104 **** --- 101,105 ---- $list_webcals = array( # 'webcal://dimer.tamu.edu/calendars/seminars/Biochem.ics' + 'webcal://calendar.sxsw.com/iCa...@ro....ics' ); $more_webcals['recur_tests'] = array(); |
From: <ji...@us...> - 2009-04-08 04:43:03
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25907/functions Modified Files: ical_parser.php Log Message: autoincrement sequence if it is missing Index: ical_parser.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v retrieving revision 1.246 retrieving revision 1.247 diff -C2 -d -r1.246 -r1.247 *** ical_parser.php 5 Feb 2009 15:19:42 -0000 1.246 --- ical_parser.php 8 Apr 2009 04:42:59 -0000 1.247 *************** *** 105,109 **** if ($ifile == FALSE) exit(error($lang['l_error_cantopen'], $filename)); $nextline = fgets($ifile, 1024); ! if (trim($nextline) != 'BEGIN:VCALENDAR') exit(error($lang['l_error_invalidcal'], $filename)); // Set a value so we can check to make sure $master_array contains valid data --- 105,109 ---- if ($ifile == FALSE) exit(error($lang['l_error_cantopen'], $filename)); $nextline = fgets($ifile, 1024); ! #if (trim($nextline) != 'BEGIN:VCALENDAR') exit(error($lang['l_error_invalidcal'], $filename)); // Set a value so we can check to make sure $master_array contains valid data |
From: <par...@us...> - 2009-02-23 21:29:00
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14122/includes Modified Files: Tag: phpicalendar-editor edit.php event.php Log Message: Some additional progress on editor Index: edit.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/Attic/edit.php,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** edit.php 10 Feb 2009 20:31:15 -0000 1.1.2.1 --- edit.php 23 Feb 2009 21:28:57 -0000 1.1.2.2 *************** *** 5,25 **** require_once(BASE.'functions/date_functions.php'); require_once(BASE.'functions/template.php'); # information for the popup is sent via $_POST by a javascript snippet in # in function openevent() from functions/date_functions.php # character encoding has been problematic with popups. ! $cal = stripslashes($_POST['edit_cal']); ! $uid = stripslashes($_POST['edit_uid']); $page = new Page(BASE.'templates/'.$phpiCal_config->template.'/edit.tpl'); $page->replace_tags(array( ! 'charset' => $phpiCal_config->charset, ! 'cal' => $cal, ! 'uid' => $uid, ! 'template' => $phpiCal_config->template, ! 'l_calendar' => $lang['l_calendar'] ! ! )); $page->output(); --- 5,99 ---- require_once(BASE.'functions/date_functions.php'); require_once(BASE.'functions/template.php'); + require_once(BASE.'functions/edit_functions.php'); # information for the popup is sent via $_POST by a javascript snippet in # in function openevent() from functions/date_functions.php # character encoding has been problematic with popups. ! $from = stripslashes($_POST['edit_from']); ! $uid = stripslashes($_POST['edit_uid']); ! $arr = unserialize(stripslashes($_POST['edit_arr'])); ! $organizers = unserialize($arr['organizer']); ! $attendees = unserialize($arr['attendee']); ! ! ! // Sanitize input fields ! $arr['event_text'] = sanitizeForWeb(urldecode($arr['event_text'])); ! $arr['description'] = sanitizeForWeb(urldecode($arr['description'])); ! $arr['location'] = sanitizeForWeb(urldecode($arr['location'])); ! ! ! // "calnumber" counts from 1. $cal_filelist is indexed from 0. ! $calnumber = $arr['calnumber']; ! if (!is_numeric($calnumber)) die('!is_numeric($calnumber)'); ! if (--$calnumber < 0) die('--$calnumber < 0: ' . $calnumber); ! ! ! //print_r($arr); ! $sel_confirmed = ''; ! $sel_cancelled = ''; ! $sel_tentative = ''; ! $sel_blank = ''; ! switch ($arr['status']) { ! case 'CONFIRMED': ! $sel_confirmed = ' selected="selected"'; ! break; ! ! case 'CANCELLED': ! $sel_cancelled = ' selected="selected"'; ! break; ! ! case 'TENTATIVE': ! $sel_tentative = ' selected="selected"'; ! break; ! ! default: ! $sel_blank = ' selected="selected"'; ! break; ! } ! $status = '<option value=""' . $sel_blank . '></option>'; ! $status .= '<option value="CONFIRMED"' . $sel_confirmed . '>' . $lang['l_status_confirmed'] . '</option>'; ! $status .= '<option value="CANCELLED"' . $sel_cancelled . '>' . $lang['l_status_cancelled'] . '</option>'; ! $status .= '<option value="TENTATIVE"' . $sel_tentative . '>' . $lang['l_status_tentative'] . '</option>'; ! ! $organizer = array(); ! foreach($organizers as $value) { ! $organizer[] = '"' . $value['name'] . '" <' . $value['email'] . '>'; ! } ! $organizer = implode(', ', $organizer); ! ! ! $attendee = array(); ! foreach($attendees as $value) { ! $attendee[] = '"' . $value['name'] . '" <' . $value['email'] . '>'; ! } ! $attendee = implode(', ', $attendee); ! $page = new Page(BASE.'templates/'.$phpiCal_config->template.'/edit.tpl'); $page->replace_tags(array( ! 'action' => BASE.'/'.$from, ! 'charset' => $phpiCal_config->charset, ! 'calname' => $arr['calname'], ! 'calnumber' => $calnumber, ! 'event_text' => $arr['event_text'], ! 'description' => $arr['description'], ! 'location' => $arr['location'], ! 'organizer' => $organizer, ! 'attendee' => $attendee, ! 'uid' => $uid, ! 'status' => $status, ! 'location' => $arr['location'], ! 'url' => $arr['url'], ! 'template' => $phpiCal_config->template, ! 'l_calendar' => $lang['l_calendar'], ! 'l_description' => $lang['l_description'], ! 'l_summary' => $lang['l_summary'], ! 'l_organizer' => $lang['l_organizer'], ! 'l_attendee' => $lang['l_attendee'], ! 'l_status' => $lang['l_status'], ! 'l_location' => $lang['l_location'], ! 'l_url' => $lang['l_url'] ! )); $page->output(); Index: event.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v retrieving revision 1.51 retrieving revision 1.51.2.1 diff -C2 -d -r1.51 -r1.51.2.1 *** event.php 26 Jan 2009 03:51:52 -0000 1.51 --- event.php 23 Feb 2009 21:28:57 -0000 1.51.2.1 *************** *** 28,34 **** } ! $event['event_text'] = urldecode($event['event_text']); ! $event['description'] = urldecode($event['description']); ! $event['location'] = urldecode($event['location']); $display =''; if (isset($event['description'])) $event['description'] = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",'<a target="_new" href="\0">\0</a>',$event['description']); --- 28,34 ---- } ! $event['event_text'] = sanitizeForWeb(urldecode($event['event_text'])); ! $event['description'] = sanitizeForWeb(urldecode($event['description'])); ! $event['location'] = sanitizeForWeb(urldecode($event['location'])); $display =''; if (isset($event['description'])) $event['description'] = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",'<a target="_new" href="\0">\0</a>',$event['description']); |
From: <par...@us...> - 2009-02-23 21:29:00
|
Update of /cvsroot/phpicalendar/phpicalendar/templates/default In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14122/templates/default Modified Files: Tag: phpicalendar-editor edit.tpl header.tpl Log Message: Some additional progress on editor Index: edit.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/Attic/edit.tpl,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** edit.tpl 10 Feb 2009 20:31:15 -0000 1.1.2.1 --- edit.tpl 23 Feb 2009 21:28:57 -0000 1.1.2.2 *************** *** 4,24 **** <head> <meta http-equiv="content-type" content="text/html;charset={CHARSET}"> ! <title>{CAL}</title> <link rel="stylesheet" type="text/css" href="../templates/{TEMPLATE}/default.css"> </head> <body> <center> <table border="0" width="430" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td align="center" class="sideback"><div style="height: 17px; margin-top: 3px;" class="G10BOLD">{CAL}</div></td> </tr> <tr> ! <td align="left" class="V12"> ! <div style="margin-left: 10px; margin-bottom:10px;"> ! <p><b>{L_CALENDAR}</b>: {UID}</p> ! </div> </td> </tr> </table> </center> </body> --- 4,89 ---- <head> <meta http-equiv="content-type" content="text/html;charset={CHARSET}"> ! <title>{CALNAME}</title> <link rel="stylesheet" type="text/css" href="../templates/{TEMPLATE}/default.css"> + <script type="text/javascript"> + function verify(form) { + // FIXME: Force form fields to conform to certain formats + return false; + } + </script> </head> <body> <center> + <form method="post" action="{ACTION}" onsubmit="return verify(this.form);"> <table border="0" width="430" cellspacing="0" cellpadding="0" class="calborder"> <tr> ! <td colspan="2" align="center" class="sideback"><div style="height: 17px; margin-top: 3px;" class="G10BOLD">{CALNAME} {L_CALENDAR}</div></td> </tr> <tr> ! <td style="width: 115px;" align="left" class="V12"> ! <span style="margin-left: 10px; font-weight: bold;">{L_SUMMARY}: </span> ! </td> ! <td style="width: 315px;" align="left" class="V12"> ! <input name="event_text" id="event_text" style="width: 300px;" type="text" value="{EVENT_TEXT}" /> ! </td> ! </tr> ! <tr> ! <td style="width: 115px;" align="left" class="V12"> ! <span style="margin-left: 10px; font-weight: bold;">{L_DESCRIPTION}: </span> ! </td> ! <td style="width: 315px;" align="left" class="V12"> ! <textarea name="description" id="description" style="width: 300px;">{DESCRIPTION}</textarea> ! </td> ! </tr> ! <tr> ! <td style="width: 115px;" align="left" class="V12"> ! <span style="margin-left: 10px; font-weight: bold;">{L_ORGANIZER}: </span> ! </td> ! <td style="width: 315px;" align="left" class="V12"> ! <textarea name="organizer" id="organizer" style="width: 300px;">{ORGANIZER}</textarea> ! </td> ! </tr> ! <tr> ! <td style="width: 115px;" align="left" class="V12"> ! <span style="margin-left: 10px; font-weight: bold;">{L_ATTENDEE}: </span> ! </td> ! <td style="width: 315px;" align="left" class="V12"> ! <textarea name="attendee" id="attendee" style="width: 300px;">{ATTENDEE}</textarea> ! </td> ! </tr> ! <tr> ! <td style="width: 115px;" align="left" class="V12"> ! <span style="margin-left: 10px; font-weight: bold;">{L_STATUS}: </span> ! </td> ! <td style="width: 315px;" align="left" class="V12"> ! <select name="status" id="status" style="width: 300px;">{STATUS}</select> ! </td> ! </tr> ! <tr> ! <td style="width: 115px;" align="left" class="V12"> ! <span style="margin-left: 10px; font-weight: bold;">{L_LOCATION}: </span> ! </td> ! <td style="width: 315px;" align="left" class="V12"> ! <input name="location" id="location" style="width: 300px;" type="text" value="{LOCATION}" /> ! </td> ! </tr> ! <tr> ! <td style="width: 115px;" align="left" class="V12"> ! <span style="margin-left: 10px; font-weight: bold;">{L_URL}: </span> ! </td> ! <td style="width: 315px;" align="left" class="V12"> ! <input name="url" id="url" style="width: 300px;" type="text" value="{URL}" /> ! </td> ! </tr> ! <tr> ! <td colspan="2" align="center" class="title" style="margin-top: 2px; margin-bottom: 2px; border-top: 1px solid #ccc;"> ! <input name="calnumber" id="calnumber" type="hidden" value="{CALNUMBER}" /> ! <input name="uid" id="uid" type="hidden" value="{UID}" /> ! <input name="save" id="save" type="submit" value="Save" /> ! <input name="cancel" id="cancel" type="reset" value="Cancel" onclick="window.close();" /> </td> </tr> </table> + </form> </center> </body> Index: header.tpl =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/header.tpl,v retrieving revision 1.16.2.1 retrieving revision 1.16.2.2 diff -C2 -d -r1.16.2.1 -r1.16.2.2 *** header.tpl 10 Feb 2009 19:59:45 -0000 1.16.2.1 --- header.tpl 23 Feb 2009 21:28:57 -0000 1.16.2.2 *************** *** 20,25 **** </form> <form name="editPopupForm" id="editPopupForm" method="post" action="includes/edit.php" style="display: none;"> ! <input type="hidden" name="edit_cal" id="edit_cal" value="" /> <input type="hidden" name="edit_uid" id="edit_uid" value="" /> </form> <form name="todoPopupForm" id="todoPopupForm" method="post" action="includes/todo.php" style="display: none;"> --- 20,26 ---- </form> <form name="editPopupForm" id="editPopupForm" method="post" action="includes/edit.php" style="display: none;"> ! <input type="hidden" name="edit_from" id="edit_from" value="" /> <input type="hidden" name="edit_uid" id="edit_uid" value="" /> + <input type="hidden" name="edit_arr" id="edit_arr" value="" /> </form> <form name="todoPopupForm" id="todoPopupForm" method="post" action="includes/todo.php" style="display: none;"> |