source: schedule/Module/calendar.php@ 16181

Last change on this file since 16181 was 16181, checked in by tanio, 11 years ago
File size: 9.1 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 <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 <?php
31 $sqlSched=mysql_query("SELECT*FROM schedule");
32 $SchedCnt=mysql_num_rows($sqlSched);
33 $cntr=1;
34 while($rowSched=mysql_fetch_array($sqlSched))
35 {
36 $timestamp=strtotime($rowSched['fStart']);
37 if($SchedCnt==$cntr)
38 {
39 echo date("Ymd",$timestamp);?>:{klass: "highlight"}<?php
40 }
41 else
42 {
43 echo date("Ymd",$timestamp);?>:{klass: "highlight"},<?php
44 }
45 $cntr++;
46 ?>
47
48 // 20130507: { klass: "highlight", tooltip: "%Y/%m/%d (%A)<br />That was yesterday" },
49 // 20130508: { klass: "highlight", tooltip: "And this is TODAY" }
50 <?php
51 }
52 ?>
53 };
54
55 function getDateInfo(date, wantsClassName) {
56 var as_number = Calendar.dateToInt(date);
57 return DATE_INFO[as_number];
58 };
59 var CAL = Calendar.setup({
60 cont: "cont",
61 // weekNumbers: true,
62 selectionType: Calendar.SEL_MULTIPLE,
63 showTime: 24,
64 //fdow : 1,
65 dateInfo:getDateInfo
66 // titleFormat: "%B %Y"
67 })
68 </script>
69 </td>
70
71 <tr>
72 <td>
73 <script type="text/javascript">//<![CDATA[
74 CAL.addEventListener("onSelect", function(){
75 var day =this.selection.print("%d").join("\n");
76 var month =this.selection.print("%m").join("\n");
77 var year =this.selection.print("%Y").join("\n");
78 var xml;
79 var Time = [[]];
80 var DataValue = [[]];
81 var Time1 = [];var options = {
82 chart: {
83 renderTo: 'container'
84 /* display to div Graph*/
85
86 },
87
88 xAxis: {
89 categories:["12PM","1PM","2PM","3PM","4PM","5PM","6PM","7PM","8PM","9PM","10PM","11PM","12AM","1AM","2AM","3AM","4AM","5AM","6AM","7AM","8AM","9AM","10AM","12PM"]
90 },
91 series:[], /* array of Data */
92
93 remove:function()
94 {
95 return false;
96 },
97
98 exporting: { /*--------------------*/
99 buttons: { /* */
100 exportButton: { /* Export */
101 menuItems: null, /* to */
102 onclick: function() { /* PNG.file */
103 this.exportChart(); /*--------------------*/
104 }
105 }
106 }
107 },
108 plotOptions : {
109
110 series : {
111 lineWidth: 3,
112
113 marker : {
114 enabled:false
115 }
116 }
117 }
118 };
119 var TimeColon = [];
120 var MinTime = [];
121 var HourTime = [];
122 var DataVal = [];
123 var source=['Crab','Mrk 501','Mrk 421'];
124
125 function loaddata(DataValue,Time)
126 {
127
128 for(var i=0; i<source.length;i++)
129 {
130
131 if(window.XMLHttpRequest)
132 {
133 xml=new XMLHttpRequest();
134 }
135 else
136 {
137 xml=new ActiveXObject("Microsoft.XMLHTTP");
138 }
139 xml.onreadystatechange = function()
140 {
141 if(xml.readyState==4 && xml.status ==200)
142 {
143 var lines=xml.responseText.split("\n");
144 for(var row=0;row<lines.length;row++)
145 {
146 var splitted=lines[row].split(',');
147 Time1[row]=splitted[0];
148 for(var SplittedTime=0;SplittedTime<Time1.length;SplittedTime++)
149 {
150 var SplitTime=Time1[SplittedTime].split(':');
151 TimeColon[SplittedTime]=SplitTime[0];
152 MinTime[SplittedTime]=(parseInt(SplitTime[1]/60*100)||parseInt("0"));
153 for(var TimeT=0;TimeT<TimeColon.length;TimeT++)
154 {
155 var SplittedT=TimeColon[TimeT].split('T');
156 HourTime[TimeT]=(parseFloat(SplittedT[1])||parseInt('0'));
157 }
158 }
159 DataVal[row]=(parseFloat(splitted[4])||parseInt('0'));
160 //document.getElementById('data').innerHTML=DataValue;
161
162 for(var Data=0; Data<DataVal.length;Data++)
163 {
164 if(DataVal[Data]==0)
165 {
166
167 }
168 else
169 DataValue.push(parseFloat(DataVal[Data]));
170 }
171
172
173 for(var ConTime=1;ConTime<HourTime.length-1;ConTime++)
174 {
175 if(HourTime[ConTime]==0)
176 {
177 if(MinTime[ConTime]==8)
178 {
179 Time.push(HourTime[ConTime]+24+'.'+'.08');
180 }
181 else
182 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
183 }
184 else if(HourTime[ConTime]==1)
185 {
186 if(MinTime[ConTime]==8)
187 {
188 Time.push(HourTime[ConTime]+24+'.'+'.08');
189 }
190 else
191 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
192 }
193 else if(HourTime[ConTime]==2)
194 {
195 if(MinTime[ConTime]==8)
196 {
197 Time.push(HourTime[ConTime]+24+'.'+'.08');
198 }
199 else
200 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
201 }
202 else if(HourTime[ConTime]==3)
203 {
204 if(MinTime[ConTime]==8)
205 {
206 Time.push(HourTime[ConTime]+24+'.'+'.08');
207 }
208 else
209 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
210 }
211 else if(HourTime[ConTime]==4)
212 {
213 if(MinTime[ConTime]==8)
214 {
215 Time.push(HourTime[ConTime]+24+'.'+'.08');
216 }
217 else
218 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
219 }
220 else if(HourTime[ConTime]==5)
221 {
222 if(MinTime[ConTime]==8)
223 {
224 Time.push(HourTime[ConTime]+24+'.'+'.08');
225 }
226 else
227 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
228 }
229 else if(HourTime[ConTime]==6)
230 {
231 if(MinTime[ConTime]==8)
232 {
233 Time.push(HourTime[ConTime]+24+'.'+'.08');
234 }
235 else
236 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
237 }
238 else
239 Time.push(HourTime[ConTime]+'.'+MinTime[ConTime]);
240
241 }
242
243 //GrapData(Data,Time);
244
245 }
246
247
248 }
249 }
250 xml.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[i])+"&time="+year+"-"+month+"-"+day,true);
251 xml.send();
252
253
254 }
255 //loadGraph(DataValue,Time);
256 }
257
258
259
260 function loadGraph()
261 {
262 loaddata(DataValue,Time);
263 var chart = new Highcharts.Chart(options);
264 for(var src=0;src<i;src++)
265 {
266 chart.addSeries({name:source[src], data:[]}); // created a series of data and add name of displayed source
267 for(var DataCnt=0;DataCnt<x[src].length;DataCnt++)
268 {
269
270 chart.series[src].addPoint({ // series[0] means index of zero in data;
271 x:x[src][DataCnt], // Time
272 y:y[src][DataCnt] // Value
273 })
274
275
276 }
277
278 }
279 document.getElementById('data').innerHTML=x;
280 }
281 loadGraph();
282 $('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year);
283
284 });
285
286 //]]></script>
287
288 </td>
289 </tr>
290
291 </table>
292 </td>
293 </tr>
294 </table>
295
296 </body>
297</html>
298
299
Note: See TracBrowser for help on using the repository browser.