source: schedule/Module/calendar.php@ 15642

Last change on this file since 15642 was 15642, checked in by tanio, 11 years ago
File size: 5.4 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
59 var xmlhttp;
60 if (window.XMLHttpRequest)
61 {// code for IE7+, Firefox, Chrome, Opera, Safari
62 xmlhttp=new XMLHttpRequest();
63 }
64 else
65 {// code for IE6, IE5
66 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
67 }
68 xmlhttp.onreadystatechange=function()
69 {
70 if (xmlhttp.readyState==4 && xmlhttp.status==200)
71 {
72 var lines =xmlhttp.responseText.split('\n');
73 //var arr = [];
74 var newline = [];
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 //arr[row]="["+f[4]+"]";
83 for(var t=0; t<Time.length;t++)
84 {
85 var x=Time[t].split('T');
86 colon[t]=x[1];
87 for(var st=0;st<colon.length;st++)
88 {
89 var c=Time[st].split(':');
90 arrTime=c[0]+'.'+c[1];
91 if(f[4]==0)
92 {
93 newline[row]="["+arrTime+","+0+"]";
94 }
95 else if(f[4]=="" && f[0]=="")
96 {
97 newline[row]="["+arrTime+","+0+"]";
98 }
99 else
100 newline[row]="["+arrTime+","+parseFloat(f[4])+"]";
101
102 }
103 //h[t]=x[1];
104
105 }
106
107 }
108 //source['Mrk 421']=arr;
109 document.getElementById('data').innerHTML=newline;
110 var chart = new Highcharts.Chart({
111 chart: {
112 renderTo: 'container' /* display to div Graph*/
113 },
114
115 xAxis: {
116 labels: {
117 rotation: -45,
118 align: 'right',
119 },
120 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"]},
121 series:[{data:[19,23]}], /* array of Data */
122
123 remove:function()
124 {
125 return false;
126 },
127
128 exporting: { /*--------------------*/
129 buttons: { /* */
130 exportButton: { /* Export */
131 menuItems: null, /* to */
132 onclick: function() { /* PNG.file */
133 this.exportChart(); /*--------------------*/
134 }
135 }
136 }
137 },
138
139 plotOptions:
140 {
141 series: {
142 marker: {
143 enabled: false,
144
145 }
146
147 }
148 },
149
150
151
152 });
153 /*$('#add').click(function(){
154
155 });*/
156
157 }
158 }
159 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+'Mrk+421'+"&time="+year+"-"+month+"-"+day,true);
160 xmlhttp.send();
161 $('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year);
162 });
163
164 //]]></script>
165 </td>
166 </tr>
167
168 </table>
169 </td>
170 </tr>
171 </table>
172
173 </body>
174</html>
Note: See TracBrowser for help on using the repository browser.