source: schedule/Module/calendar.php@ 16083

Last change on this file since 16083 was 16083, checked in by tanio, 12 years ago
File size: 6.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
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').val());
86 document.getElementById('data').innerHTML=source;
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 source = [];
148
149
150
151
152
153 var chart = new Highcharts.Chart(options);
154 YaxisData=s;
155
156
157 //document.getElementById('data').innerHTML=Timedata+"T"+s;
158 //document.getElementById('sourcelist').innerHTML=; //aki man edit kuya
159
160
161 /*options.series.push({
162
163 data:[parseFloat(Timedata),parseFloat(YaxisData1)]
164 });*/
165 for(var src=0;src<source.length;src++)
166 {
167 chart.addSeries({name:source[src], data:[]}); // created a series of data and add name of displayed source
168 for(var i=0;i<s.length;i++)
169 {
170
171 chart.series[0].addPoint({ // series[0] means index of zero in data;
172 x:Timedata[i], // Time
173 y:YaxisData[i] // Value
174 })
175
176 }
177 }
178
179
180
181
182 }
183 }
184
185 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source)+"&time="+year+"-"+month+"-"+day,true);
186 xmlhttp.send();
187 $('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year);
188 $('#saving').load('function/function.php?day='+day+"&month="+month+"&year="+year);
189
190
191 });
192
193 //]]></script>
194 </td>
195 </tr>
196
197 </table>
198 </td>
199 </tr>
200 </table>
201
202 </body>
203</html>
204
205
Note: See TracBrowser for help on using the repository browser.