source: schedule/Module/calendar.php@ 15703

Last change on this file since 15703 was 15703, checked in by tanio, 12 years ago
File size: 5.5 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 <script src="js/jquery-1.7.2.min.js"></script>
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 20130507: { klass: "highlight", tooltip: "%Y/%m/%d (%A)<br />That was yesterday" },
31 20130508: { klass: "highlight", tooltip: "And this is TODAY" }
32 };
33
34 function getDateInfo(date, wantsClassName) {
35 var as_number = Calendar.dateToInt(date);
36 return DATE_INFO[as_number];
37 };
38 var CAL = Calendar.setup({
39 cont: "cont",
40 // weekNumbers: true,
41 selectionType: Calendar.SEL_MULTIPLE,
42 showTime: 24,
43 //fdow : 1,
44 dateInfo:getDateInfo
45 // titleFormat: "%B %Y"
46 })
47 </script>
48 </td>
49
50 <tr>
51 <td>
52 <script type="text/javascript">//<![CDATA[
53
54 CAL.addEventListener("onSelect", function(){
55 var day =this.selection.print("%d").join("\n");
56 var month =this.selection.print("%m").join("\n");
57 var year =this.selection.print("%Y").join("\n");
58 var newline = [];
59 var newdata;
60 var xmlhttp;
61 if (window.XMLHttpRequest)
62 {// code for IE7+, Firefox, Chrome, Opera, Safari
63 xmlhttp=new XMLHttpRequest();
64 }
65 else
66 {// code for IE6, IE5
67 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
68 }
69 xmlhttp.onreadystatechange=function()
70 {
71 if (xmlhttp.readyState==4 && xmlhttp.status==200)
72 {
73 var lines = xmlhttp.responseText.split('\n');
74 var arr = [];
75 var arrTime = [];
76 var Time = [];
77 var colon = [];
78 for(var row=0;row<lines.length; row++)
79 {
80 var f = lines[row].split(',');
81 Time[row]=f[0];
82 //var DateT= new Date(Time);
83 //arr[row]="["+f[4]+"]";
84 newline[row]=(parseFloat(f[4])||parseInt("0"));
85
86 }
87 }
88 newdata=newline.join(",");
89 document.getElementById('data').innerHTML=newdata;
90 /*if(source==<?php echo $rows['SourceID']; ?>)
91 {
92 if(chart.series)
93 {
94 <?php $s=$rows['SourceID']; ?>*/
95 chart.addSeries({name:$(this).text(),
96 data:[newdata]
97 });
98 /*}
99 }
100 /*for (var i = 0; i < newSeries.data.length; i++) {
101 var datum = newSeries.data[i];
102 datum.marker = {
103 enabled: false,
104 states: {
105 hover: {
106 enabled: false,
107 lineColor: '#ff0000'
108 }
109 }
110 };
111 for(var c=0;c<newline.length;c++)
112 {
113 arr[c];
114 };*/
115 var chart = new Highcharts.Chart({
116
117
118 chart: {
119 renderTo: 'container' /* display to div Graph*/
120 },
121
122 xAxis: {
123 labels: {
124 rotation: -45,
125 align: 'right',
126 },
127 categories:["","","","","","","","19:00","20:00","21:00","22:00","23:00","24:00","1:00","2:00","3:00","4:00","5:00","6:00","7:00"]},
128 series:[], /* array of Data */
129
130 remove:function()
131 {
132 return false;
133 },
134
135 exporting: { /*--------------------*/
136 buttons: { /* */
137 exportButton: { /* Export */
138 menuItems: null, /* to */
139 onclick: function() { /* PNG.file */
140 this.exportChart(); /*--------------------*/
141 }
142 }
143 }
144 },
145
146 plotOptions:
147 {
148 series: {
149 marker: {
150 enabled: true,
151
152 }
153
154 }
155 },
156
157
158
159 });
160 /*$('#add').click(function(){
161
162 });*/
163
164
165 }
166 }
167 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+'Mrk+421'+"&time="+year+"-"+month+"-"+day,true);
168 xmlhttp.send();
169 $('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year+"&new="+newdata);
170
171 });
172
173 //]]></script>
174 </td>
175 </tr>
176
177 </table>
178 </td>
179 </tr>
180 </table>
181
182 </body>
183</html>
Note: See TracBrowser for help on using the repository browser.