source: schedule/Module/calendar.php@ 16242

Last change on this file since 16242 was 16242, checked in by tanio, 11 years ago
File size: 10.2 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 <script src="Module/Graph.js"></script>
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">
74 $(document).ready(function(){
75 Graph();
76 var date= new Date();
77 var Year=date.getFullYear();
78 var Day=date.getDay();
79 var Month=date.getMonth();
80 <?php
81 $sqlSched1=mysql_query("SELECT*FROM schedule");
82 while($rowSched1=mysql_fetch_array($sqlSched1))
83 {
84
85 $timestamp1=strtotime($rowSched1['fStart']);
86 ?>
87 if(Year+""+Day+""+Month==<?php echo date('Ydm',$timestamp1); ?>)
88 {
89 alert('wa');
90 }
91 <?php
92 }
93 ?>
94
95 });
96 </script>
97 <script type="text/javascript">//<![CDATA[
98 CAL.addEventListener("onSelect", function(){
99 var day =this.selection.print("%d").join("\n");
100 var month =this.selection.print("%m").join("\n");
101 var year =this.selection.print("%Y").join("\n");
102 var xml;
103 var Time = [];
104 var DataValue = [];
105 var Time1 = [];
106 var TimeColon = [];
107 var MinTime = [];
108 var HourTime = [];
109 var DataVal = [];
110 var source=['Mrk 421','Crab','Mrk 501'];
111 var lines = [];
112 <?php
113 $sqlSched2=mysql_query("SELECT*FROM schedule");
114 while($rowSched2=mysql_fetch_array($sqlSched2))
115 {
116
117 $timestamp2=strtotime($rowSched2['fStart']);
118 ?>
119 if(year+"-"+day+"-"+month==<?php echo date('Y-d-m',$timestamp2); ?>)
120 {
121 alert('zz');
122 }
123 <?php
124 }
125 ?>
126 else
127 {
128
129 function LoadData()
130 {
131 for(var i=0; i<source.length;i++)
132 {
133 if(window.XMLHttpRequest)
134 {
135 xml=new XMLHttpRequest();
136 }
137 else
138 {
139 xml=new ActiveXObject("Microsoft.XMLHTTP");
140 }
141 xml.onreadystatechange = function()
142 {
143 if(xml.readyState==4 && xml.status ==200)
144 {
145
146 lines[i]=xml.responseText.split("\n");
147 for(var row=0;row<lines[i].length;row++)
148 {
149 var splitted=lines[i][row].split(',');
150 Time1[row]=splitted[0];
151 for(var SplittedTime=0;SplittedTime<Time1.length;SplittedTime++)
152 {
153 var SplitTime=Time1[SplittedTime].split(':');
154 TimeColon[SplittedTime]=SplitTime[0];
155 MinTime[SplittedTime]=(parseInt(SplitTime[1]/60*100)||parseInt("0"));
156 for(var TimeT=0;TimeT<TimeColon.length;TimeT++)
157 {
158 var SplittedT=TimeColon[TimeT].split('T');
159 HourTime[TimeT]=(parseFloat(SplittedT[1])||parseInt('0'));
160 }
161 }
162 DataVal[row]=(parseFloat(splitted[4])||parseInt('0'));
163 //document.getElementById('data').innerHTML=DataValue;
164
165 for(var Data=0; Data<DataVal.length;Data++)
166 {
167 if(DataVal[Data]==0)
168 {
169
170 }
171 else
172 DataValue[[Data]]=parseFloat(DataVal[Data]);
173 }
174
175
176 for(var ConTime=1;ConTime<HourTime.length-1;ConTime++)
177 {
178 if(HourTime[ConTime]==0)
179 {
180 if(MinTime[ConTime]==8)
181 {
182 Time.push(HourTime[ConTime]+24+'.'+'.08');
183 }
184 else
185 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
186 }
187 else if(HourTime[ConTime]==1)
188 {
189 if(MinTime[ConTime]==8)
190 {
191 Time.push(HourTime[ConTime]+24+'.'+'.08');
192 }
193 else
194 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
195 }
196 else if(HourTime[ConTime]==2)
197 {
198 if(MinTime[ConTime]==8)
199 {
200 Time.push(HourTime[ConTime]+24+'.'+'.08');
201 }
202 else
203 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
204 }
205 else if(HourTime[ConTime]==3)
206 {
207 if(MinTime[ConTime]==8)
208 {
209 Time.push(HourTime[ConTime]+24+'.'+'.08');
210 }
211 else
212 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
213 }
214 else if(HourTime[ConTime]==4)
215 {
216 if(MinTime[ConTime]==8)
217 {
218 Time.push(HourTime[ConTime]+24+'.'+'.08');
219 }
220 else
221 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
222 }
223 else if(HourTime[ConTime]==5)
224 {
225 if(MinTime[ConTime]==8)
226 {
227 Time.push(HourTime[ConTime]+24+'.'+'.08');
228 }
229 else
230 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
231 }
232 else if(HourTime[ConTime]==6)
233 {
234 if(MinTime[ConTime]==8)
235 {
236 Time.push(HourTime[ConTime]+24+'.'+'.08');
237 }
238 else
239 Time.push(HourTime[ConTime]+24+'.'+MinTime[ConTime]);
240 }
241 else
242 Time.push(HourTime[ConTime]+'.'+MinTime[ConTime]);
243
244 }
245
246 //GrapData(Data,Time);
247
248 };
249
250
251 }
252 }
253 xml.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[i])+"&time="+year+"-"+month+"-"+day,true);
254 xml.send();
255 }
256 Charts(DataValue[[i]],Time);
257 }
258 LoadData();
259 function Charts(y,x)
260 {
261
262 var options = {
263 chart: {
264 renderTo: 'Graph' /* display to div Graph*/
265
266 },
267
268 xAxis: {
269 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"]
270 },
271 series:[], /* array of Data */
272
273 remove:function()
274 {
275 return false;
276 },
277
278 exporting: { /*--------------------*/
279 buttons: { /* */
280 exportButton: { /* Export */
281 menuItems: null, /* to */
282 onclick: function() { /* PNG.file */
283 this.exportChart(); /*--------------------*/
284 }
285 }
286 }
287 },
288 plotOptions : {
289
290 series : {
291 lineWidth: 3,
292
293 marker : {
294 enabled:false
295 }
296 }
297 }
298 };
299 var chart=new Highcharts.Chart(options);
300 for(var src=0;src<source.length;src++)
301 {
302 chart.addSeries({name:source[src], data:[]}); // created a series of data and add name of displayed source
303 for(var DataCnt=0;DataCnt<Time.length;DataCnt++)
304 {
305
306 chart.series[src].addPoint({ // series[0] means index of zero in data;
307 x:Time[src][DataCnt], // Time
308 y:DataValue[src][DataCnt] // Value
309 })
310 //document.getElementById('data').innerHTML=Time[src][DataCnt];
311
312 }
313
314 }
315 document.getElementById('data').innerHTML=y;
316 //$('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year);
317 return Charts;
318 }
319 Charts();
320 }
321 //Charts();
322
323
324 });
325
326 //]]></script>
327 </td>
328 </tr>
329
330 </table>
331 </td>
332 </tr>
333 </table>
334
335 </body>
336</html>
337
338
Note: See TracBrowser for help on using the repository browser.