Update of /cvsroot/phpicalendar/phpicalendar/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17095/templates/default
Modified Files:
header.tpl
Log Message:
Added todo.js and charset. Needs testing.
Index: header.tpl
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/templates/default/header.tpl,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** header.tpl 11 Aug 2004 05:51:01 -0000 1.8
--- header.tpl 12 Aug 2004 19:20:50 -0000 1.9
***************
*** 3,7 ****
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
! <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>{CALENDAR_NAME} - {DISPLAY_DATE}</title>
<link rel="stylesheet" type="text/css" href="{DEFAULT_PATH}templates/{TEMPLATE}/default.css" />
--- 3,7 ----
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
! <meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
<title>{CALENDAR_NAME} - {DISPLAY_DATE}</title>
<link rel="stylesheet" type="text/css" href="{DEFAULT_PATH}templates/{TEMPLATE}/default.css" />
***************
*** 10,27 ****
<!-- switch rss_available off -->
{EVENT_JS}
! <script language="JavaScript" type="text/javascript">
! <!--
! function openTodoInfo(vtodo_array)
! {
! var windowW = 460;
! var windowH = 275;
! var url = "includes/todo.php?vtodo_array="+vtodo_array;
! options = "scrollbars=yes,width="+windowW+",height="+windowH;
! info = window.open(url, "Popup", options);
! info.focus();
! }
!
! //-->
! </script>
</head>
<body>
--- 10,14 ----
<!-- switch rss_available off -->
{EVENT_JS}
! {TODO_JS}
</head>
<body>
|