source: schedule/Module/calendar.php@ 15501

Last change on this file since 15501 was 15501, checked in by tanio, 12 years ago
File size: 3.4 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html>
3 <head>
4 <link type="text/css" rel="stylesheet" href="module/src/css/jscal2.css" />
5 <link type="text/css" rel="stylesheet" href="module/src/css/border-radius.css" />
6
7 <link id="skin-win2k" title="Win 2K" type="text/css" rel="alternate stylesheet" href="module/src/css/win2k/win2k.css" />
8
9
10 <script src="module/src/js/jscal2.js"></script>
11 <script src="module/src/js/unicode-letter.js"></script>
12
13 <script src="module/src/js/lang/en.js"></script>
14<style type="text/css">
15 .highlight { color: #f00 !important; }
16 .highlight2 { color: #0f0 !important; font-weight: bold; }
17 </style>
18
19 </head>
20 <body style="background-color: #fff">
21
22 <table>
23 <tr>
24 <td valign="top" style="width: 30em;">
25 <div id="cont"></div>
26 <script type="text/javascript">
27 var DATE_INFO = {
28 20130207: { klass: "highlight", tooltip: "%Y/%m/%d (%A)<br />That was yesterday" },
29 20130208: { klass: "highlight", tooltip: "And this is TODAY" }
30 };
31
32 function getDateInfo(date, wantsClassName) {
33 var as_number = Calendar.dateToInt(date);
34 return DATE_INFO[as_number];
35 };
36 var CAL = Calendar.setup({
37 cont: "cont",
38 // weekNumbers: true,
39 selectionType: Calendar.SEL_MULTIPLE,
40 showTime: 24,
41 //fdow : 1,
42 dateInfo:getDateInfo
43 // titleFormat: "%B %Y"
44 })
45 </script>
46 </td>
47
48 <tr>
49 <td>
50 <script type="text/javascript">//<![CDATA[
51
52 CAL.addEventListener("onSelect", function(){
53 var day =this.selection.print("%d").join("\n");
54 var month =this.selection.print("%m").join("\n");
55 var year =this.selection.print("%y").join("\n");
56 var xmlhttp;
57 if (window.XMLHttpRequest)
58 {// code for IE7+, Firefox, Chrome, Opera, Safari
59 xmlhttp=new XMLHttpRequest();
60 xmlhttp.open("GET","https://www.fact-project.org/smartfact/index.php?source=Mrk+421&time=20"+year+"-"+month+"-"+day,true);
61 }
62 else
63 {// code for IE6, IE5
64 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
65 }
66 xmlhttp.onload=function()
67 {
68
69 if(xmlhttp.status!=200)
70 {
71 alert("ERROR - HTTP request'"+xmlhttp.statusText+"["+xmlhttp.status+"]");
72 return;
73 }
74
75 if (xmlhttp.readyState==4 && xmlhttp.status==200)
76 {
77 var result = xmlhttp.responseText;
78 var n = result.split('-');
79 /*if(result==',')
80 {
81 var n = result.split(',');
82 //document.getElementById("data").innerHTML =n;
83 var x = n,n;
84 }*/
85 //document.getElementById("data").innerHTML =X;
86 document.getElementById("data").innerHTML=n;
87 }
88
89
90 }
91
92 xmlhttp.send();
93
94 $('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year);
95 });
96
97 //]]></script>
98 </td>
99 </tr>
100
101 </table>
102 </td>
103 </tr>
104 </table>
105
106 </body>
107</html>
Note: See TracBrowser for help on using the repository browser.