source: schedule/Module/calendar.php@ 15612

Last change on this file since 15612 was 15612, checked in by tanio, 11 years ago
File size: 3.5 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 }
61 else
62 {// code for IE6, IE5
63 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
64 }
65 xmlhttp.onreadystatechange=function()
66 {
67 if (xmlhttp.readyState==4 && xmlhttp.status==200)
68 {
69 var lines =xmlhttp.responseText.split('\n');
70 var arr = [];
71 var Time = [];
72 var newline = [];
73 for(var row=0;row<lines.length; row++)
74 {
75 var f = lines[row].split(',');
76 Time[row]=f[0];
77 //arr[row]="["+f[4]+"]";
78 for(var t=0; t<Time.length;t++)
79 {
80 var x=Time[t].split('T');
81 //h[t]=x[1];
82 newline[row]="["+x[1]+","+f[4]+"]";
83
84 }
85
86 }
87 //source['Mrk 421']=arr;
88 document.getElementById('data').innerHTML=newline;
89
90 }
91 }
92 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+'Mrk+421'+"&time="+year+"-"+month+"-"+day,true);
93 xmlhttp.send();
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.