source: schedule/Module/calendar.php@ 16094

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