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