Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv23713 Modified Files: README admin.php day.php month.php preferences.php print.php search.php week.php year.php Log Message: Moved all closing html and body tags into the footer. Updated README. Index: README =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/README,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** README 15 Sep 2003 06:30:57 -0000 1.48 --- README 20 Sep 2003 21:46:17 -0000 1.49 *************** *** 74,84 **** -------- 0.9.4 ! -Vastly improved BYDAY, BYMONTHDAY support ! -Improved DURATION Support -Smaller HTML footprint on all pages with same look and feel. ! -Combined Calendars automatically refresh when changes are made ! -Vtodo popup works again ! -Validation increased on multiple pages ! -Fixed a bug not listing blacklisted calendars 0.9.3 --- 74,86 ---- -------- 0.9.4 ! -Vastly improved BYDAY, BYMONTHDAY, BYYEARDAY support. ! -Improved DURATION Support. -Smaller HTML footprint on all pages with same look and feel. ! -Combined Calendars automatically refresh when changes are made. ! -Vtodo popup works again. ! -Validation increased on multiple pages. ! -Fixed a bug not listing blacklisted calendars. ! -Moved HTML head into header.inc.php to better support embedding of calendar. ! -Moved HTML foot into footer.inc.php to better support embedding of calendar. 0.9.3 Index: admin.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/admin.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** admin.php 17 Sep 2003 05:18:23 -0000 1.5 --- admin.php 20 Sep 2003 21:46:17 -0000 1.6 *************** *** 272,283 **** </tr> </table> ! <?php include (BASE.'includes/footer.inc.php'); ?> - - </center> - </body> - </html> --- 272,279 ---- </tr> </table> ! </center> <?php include (BASE.'includes/footer.inc.php'); ?> Index: day.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v retrieving revision 1.98 retrieving revision 1.99 diff -C2 -d -r1.98 -r1.99 *** day.php 20 Sep 2003 20:53:13 -0000 1.98 --- day.php 20 Sep 2003 21:46:17 -0000 1.99 *************** *** 305,314 **** <td width="170" valign="top"> <?php include (BASE.'includes/sidebar.php'); ?> - <?php include (BASE.'includes/footer.inc.php'); ?> </td> </tr> </table> </center> ! </body> ! </html> --- 305,312 ---- <td width="170" valign="top"> <?php include (BASE.'includes/sidebar.php'); ?> </td> </tr> </table> </center> ! <?php include (BASE.'includes/footer.inc.php'); ?> Index: month.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v retrieving revision 1.98 retrieving revision 1.99 diff -C2 -d -r1.98 -r1.99 *** month.php 19 Sep 2003 21:21:19 -0000 1.98 --- month.php 20 Sep 2003 21:46:17 -0000 1.99 *************** *** 234,239 **** </table> <?php } ?> - <?php include (BASE.'includes/footer.inc.php'); ?> </center> ! </body> ! </html> --- 234,239 ---- </table> <?php } ?> </center> ! <?php include (BASE.'includes/footer.inc.php'); ?> ! ! Index: preferences.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/preferences.php,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** preferences.php 20 Sep 2003 00:17:58 -0000 1.32 --- preferences.php 20 Sep 2003 21:46:17 -0000 1.33 *************** *** 322,327 **** </tr> </table> - <?php include (BASE.'includes/footer.inc.php'); ?> </center> ! </body> ! </html> --- 322,326 ---- </tr> </table> </center> ! <?php include (BASE.'includes/footer.inc.php'); ?> ! Index: print.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/print.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** print.php 20 Sep 2003 20:59:06 -0000 1.18 --- print.php 20 Sep 2003 21:46:17 -0000 1.19 *************** *** 167,172 **** </tr> </table> - <?php include (BASE.'includes/footer.inc.php'); ?> </center> ! </body> ! </html> --- 167,170 ---- </tr> </table> </center> ! <?php include (BASE.'includes/footer.inc.php'); ?> Index: search.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/search.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** search.php 30 Nov 2002 21:05:39 -0000 1.20 --- search.php 20 Sep 2003 21:46:17 -0000 1.21 *************** *** 87,102 **** $search_took = number_format(($search_ended-$search_started),3); ?> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd"> - <html> - <head> - <meta http-equiv="content-type" content="text/html;charset=UTF-8"> - <title><?php echo "$calendar_name - $results_lang"; ?></title> - <link rel="stylesheet" type="text/css" href="styles/<?php echo $style_sheet.'/default.css'; ?>"> - </head> - <body bgcolor="#FFFFFF"> - <?php include (BASE.'includes/header.inc.php'); ?> <center> <table border="0" width="700" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" class="calborder"> --- 87,94 ---- $search_took = number_format(($search_ended-$search_started),3); + include (BASE.'includes/header.inc.php'); + ?> <center> <table border="0" width="700" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" class="calborder"> *************** *** 284,291 **** </table> </center> ! <?php include (BASE.'includes/footer.inc.php'); ?> ! </body> ! </html> ! <?php // takes a boolean search and formats it into an array --- 276,283 ---- </table> </center> ! <?php ! ! include (BASE.'includes/footer.inc.php'); ! // takes a boolean search and formats it into an array Index: week.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v retrieving revision 1.99 retrieving revision 1.100 diff -C2 -d -r1.99 -r1.100 *** week.php 20 Sep 2003 20:53:13 -0000 1.99 --- week.php 20 Sep 2003 21:46:17 -0000 1.100 *************** *** 360,368 **** <td width="170" valign="top"> <?php include (BASE.'includes/sidebar.php'); ?> - <?php include (BASE.'includes/footer.inc.php'); ?> </td> </tr> </table> ! </body> ! </html> --- 360,367 ---- <td width="170" valign="top"> <?php include (BASE.'includes/sidebar.php'); ?> </td> </tr> </table> ! </center> ! <?php include (BASE.'includes/footer.inc.php'); ?> Index: year.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/year.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** year.php 17 Sep 2003 05:18:23 -0000 1.23 --- year.php 20 Sep 2003 21:46:17 -0000 1.24 *************** *** 168,173 **** </tr> </table> - <?php include (BASE.'includes/footer.inc.php'); ?> </center> ! </body> ! </html> --- 168,171 ---- </tr> </table> </center> ! <?php include (BASE.'includes/footer.inc.php'); ?> |