source: schedule/Module/calendar.php@ 15710

Last change on this file since 15710 was 15710, checked in by tanio, 11 years ago
File size: 5.0 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 <script src="js/jquery-1.7.2.min.js"></script>
9 <script src="js/highcharts.js"></script>
10 <script src="js/exporting.js"></script>
11
12 <script src="Module/src/js/jscal2.js"></script>
13 <script src="Module/src/js/unicode-letter.js"></script>
14
15 <script src="Module/src/js/lang/en.js"></script>
16<style type="text/css">
17 .highlight { color: #f00 !important; }
18 .highlight2 { color: #0f0 !important; font-weight: bold; }
19 </style>
20
21 </head>
22 <body style="background-color: #fff">
23
24 <table>
25 <tr>
26 <td valign="top" style="width: 30em;">
27 <div id="cont"></div>
28 <script type="text/javascript">
29 var DATE_INFO = {
30 20130507: { klass: "highlight", tooltip: "%Y/%m/%d (%A)<br />That was yesterday" },
31 20130508: { klass: "highlight", tooltip: "And this is TODAY" }
32 };
33
34 function getDateInfo(date, wantsClassName) {
35 var as_number = Calendar.dateToInt(date);
36 return DATE_INFO[as_number];
37 };
38 var CAL = Calendar.setup({
39 cont: "cont",
40 // weekNumbers: true,
41 selectionType: Calendar.SEL_MULTIPLE,
42 showTime: 24,
43 //fdow : 1,
44 dateInfo:getDateInfo
45 // titleFormat: "%B %Y"
46 })
47 </script>
48 </td>
49
50 <tr>
51 <td>
52 <script type="text/javascript">//<![CDATA[
53
54 CAL.addEventListener("onSelect", function(){
55 var day =this.selection.print("%d").join("\n");
56 var month =this.selection.print("%m").join("\n");
57 var year =this.selection.print("%Y").join("\n");
58 var newline = [];
59 var newdata;
60 var xmlhttp;
61 if (window.XMLHttpRequest)
62 {// code for IE7+, Firefox, Chrome, Opera, Safari
63 xmlhttp=new XMLHttpRequest();
64 }
65 else
66 {// code for IE6, IE5
67 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
68 }
69 xmlhttp.onreadystatechange=function()
70 {
71 if (xmlhttp.readyState==4 && xmlhttp.status==200)
72 {
73 var lines = xmlhttp.responseText.split('\n');
74 var arr = [];
75 var arrTime = [];
76 var Time = [];
77 var colon = [];
78 for(var row=0;row<lines.length; row++)
79 {
80 var f = lines[row].split(',');
81 Time[row]=f[0];
82 //var DateT= new Date(Time);
83 //arr[row]="["+f[4]+"]";
84 newline[row]=(parseFloat(f[4])||parseInt("0"));
85
86
87 }
88 newdata=newline.join(",");
89 document.getElementById('data').innerHTML=newdata;
90 $(function () {
91 var data = '[{"name":"Station 1","data":"1360191600,398.625"},{"name":"Station 1","data":"1360192500,398.625"},{"name":"Station 1","data":"1360193400,398.25"},{"name":"Station 1","data":"1360194300,397.375"},{"name":"Station 1","data":"1360195200,397.5"},{"name":"Station 1","data":"1360196100,397.5"},{"name":"Station 1","data":"1360199700,396.75"},{"name":"Station 1","data":"1360200600,397"}]';
92
93
94 var options = {
95 chart: {
96 renderTo: 'container'
97 },
98 xAxis: {
99 type:'datetime'
100 },
101 series: []
102 };
103
104 data = JSON.parse(data);
105 var names = [];
106 $.each(data, function (i, ligne) {
107 var ind = names.indexOf(ligne.name),
108 splited = ligne.data.split(','),
109 x = parseFloat(splited[0]),
110 y = parseFloat(splited[1]);
111 if (ind == -1) {
112 ind = names.push(ligne.name) - 1;
113 options.series.push({
114 data: [],
115 name: ligne.name
116 });
117 }
118 if(!isNaN(x) && !isNaN(y)){
119 options.series[ind].data.push([x,y]);
120 }
121 });
122
123 console.log(options);
124
125 var chart = new Highcharts.Chart(options);
126 });
127
128 /*$('#add').click(function(){
129
130 });*/
131
132
133 }
134 }
135 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+'Mrk+421'+"&time="+year+"-"+month+"-"+day,true);
136 xmlhttp.send();
137 $('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year);
138
139 });
140
141 //]]></script>
142 </td>
143 </tr>
144
145 </table>
146 </td>
147 </tr>
148 </table>
149
150 </body>
151</html>
Note: See TracBrowser for help on using the repository browser.