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 | $src=1;
|
---|
34 | while($rowSched=mysql_fetch_array($sqlSched))
|
---|
35 | {
|
---|
36 | $timestamp=strtotime($rowSched['fStart']);
|
---|
37 | if($SchedCnt==$src)
|
---|
38 | {
|
---|
39 | echo date("Ymd",$timestamp);?>:{klass: "highlight"}<?php
|
---|
40 | }
|
---|
41 | else
|
---|
42 | {
|
---|
43 | echo date("Ymd",$timestamp);?>:{klass: "highlight"},<?php
|
---|
44 | }
|
---|
45 | $src++;
|
---|
46 | ?>
|
---|
47 |
|
---|
48 | <?php
|
---|
49 | }
|
---|
50 | ?>
|
---|
51 | };
|
---|
52 |
|
---|
53 | function getDateInfo(date, wantsClassName) {
|
---|
54 | var as_number = Calendar.dateToInt(date);
|
---|
55 | return DATE_INFO[as_number];
|
---|
56 | };
|
---|
57 | var CAL = Calendar.setup({
|
---|
58 | cont: "cont",
|
---|
59 | // weekNumbers: true,
|
---|
60 | selectionType: Calendar.SEL_MULTIPLE,
|
---|
61 | showTime: 24,
|
---|
62 | //fdow : 1,
|
---|
63 | dateInfo:getDateInfo
|
---|
64 | // titleFormat: "%B %Y"
|
---|
65 | })
|
---|
66 | </script>
|
---|
67 | </td>
|
---|
68 |
|
---|
69 | <tr>
|
---|
70 | <td>
|
---|
71 | <script type="text/javascript">
|
---|
72 | $(document).ready(function(){
|
---|
73 | //Graph();
|
---|
74 | var date= new Date();
|
---|
75 | var Year=date.getFullYear();
|
---|
76 | var Day=date.getDay();
|
---|
77 | var Month=date.getMonth();
|
---|
78 | <?php
|
---|
79 | $sqlSched1=mysql_query("SELECT*FROM schedule");
|
---|
80 | while($rowSched1=mysql_fetch_array($sqlSched1))
|
---|
81 | {
|
---|
82 |
|
---|
83 | $timestamp1=strtotime($rowSched1['fStart']);
|
---|
84 | ?>
|
---|
85 | if(Year+""+Day+""+Month==<?php echo date('Ydm',$timestamp1); ?>)
|
---|
86 | {
|
---|
87 | alert('wa');
|
---|
88 | }
|
---|
89 | <?php
|
---|
90 | }
|
---|
91 | ?>
|
---|
92 |
|
---|
93 | });
|
---|
94 | </script>
|
---|
95 | <script type="text/javascript">//<![CDATA[
|
---|
96 | var index = 0;
|
---|
97 | var xmlhttp = new Array();
|
---|
98 | var source = ['Mrk 421','Mrk 501'];
|
---|
99 | CAL.addEventListener("onSelect", function(){
|
---|
100 | var day =this.selection.print("%d").join("\n");
|
---|
101 | var month =this.selection.print("%m").join("\n");
|
---|
102 | var year =this.selection.print("%Y").join("\n");
|
---|
103 | getXML();
|
---|
104 | /*
|
---|
105 | var xmlhttp;
|
---|
106 | var source = ['Mrk 421','Mrk 501','Crab'];
|
---|
107 | var SourceData = [[]];
|
---|
108 | var Time = [];
|
---|
109 | var line = [];
|
---|
110 | //var rows;
|
---|
111 | var val = [];
|
---|
112 | var T = [];
|
---|
113 | var sources = 0;
|
---|
114 | var xmlhttp = new Array();
|
---|
115 |
|
---|
116 | for(sources=0;sources<source.length;sources++)
|
---|
117 | {
|
---|
118 | alert(sources);
|
---|
119 | Data = new Array(source.length);
|
---|
120 | if (window.XMLHttpRequest)
|
---|
121 | {// code for IE7+, Firefox, Chrome, Opera, Safari
|
---|
122 | xmlhttp.push(new XMLHttpRequest());
|
---|
123 | }
|
---|
124 |
|
---|
125 | else
|
---|
126 | {// code for IE6, IE5
|
---|
127 | xmlhttp.push(new ActiveXObject("Microsoft.XMLHTTP"));
|
---|
128 | }
|
---|
129 |
|
---|
130 |
|
---|
131 | xmlhttp[sources].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[sources])+"&time="+year+"-"+month+"-"+day,true);
|
---|
132 | xmlhttp[sources].send();
|
---|
133 | //document.getElementById('data').innerHTML=source.length+""+Data[sources];
|
---|
134 |
|
---|
135 | }
|
---|
136 |
|
---|
137 | for(sources=0;sources<source.length;sources++)
|
---|
138 | {
|
---|
139 |
|
---|
140 | xmlhttp[sources].onreadystatechange=function()
|
---|
141 | {
|
---|
142 |
|
---|
143 | //if (xmlhttp.readyState==4 && xmlhttp.status==200)
|
---|
144 | // {
|
---|
145 |
|
---|
146 | Data[sources]= new Array();
|
---|
147 |
|
---|
148 | line=xmlhttp[sources].responseText.split('\n');
|
---|
149 | for(row=0;row<line.length;row++)
|
---|
150 | {
|
---|
151 | rows=line[row].split(',');
|
---|
152 | Data[sources].push(rows[4]);
|
---|
153 | }
|
---|
154 |
|
---|
155 |
|
---|
156 | //GraphData(Data[sources], sources);
|
---|
157 | document.getElementById('data').innerHTML=sources + "...." + line;
|
---|
158 | //$('#data').append(line);
|
---|
159 | //}
|
---|
160 | }
|
---|
161 | }
|
---|
162 |
|
---|
163 | /*function GraphData(DataSource, index)
|
---|
164 | {
|
---|
165 | for(i=0;i<SourceLength;i++)
|
---|
166 | {
|
---|
167 | for(j=0;j<DataSource[i].length;j++)
|
---|
168 | {
|
---|
169 | document.getElementById('day').innerHTML=DataSource[j];
|
---|
170 | }
|
---|
171 |
|
---|
172 | }
|
---|
173 | };*/
|
---|
174 |
|
---|
175 | });
|
---|
176 | function getXML()
|
---|
177 | {
|
---|
178 | if (window.XMLHttpRequest)
|
---|
179 | {// code for IE7+, Firefox, Chrome, Opera, Safari
|
---|
180 | xmlhttp.push(new XMLHttpRequest());
|
---|
181 | }
|
---|
182 | else
|
---|
183 | {// code for IE6, IE5
|
---|
184 | xmlhttp.push(new ActiveXObject("Microsoft.XMLHTTP"));
|
---|
185 | }
|
---|
186 |
|
---|
187 | index = xmlhttp.length - 1;
|
---|
188 | }
|
---|
189 |
|
---|
190 | function getXMLData()
|
---|
191 | {
|
---|
192 | getXML();
|
---|
193 | xmlhttp[index].onreadystatechange=function()
|
---|
194 | {
|
---|
195 | if (xmlhttp[index].readyState==4 && xmlhttp.status==200)
|
---|
196 | {
|
---|
197 | sourceData[index]= new Array(); //--> remove this if you use sourceData[[]]
|
---|
198 | line=xmlhttp[index].responseText.split('\n');
|
---|
199 | for(row=0;row<line.length;row++)
|
---|
200 | {
|
---|
201 | rows=line[row].split(',');
|
---|
202 | sourceData[index].push(rows[4]);
|
---|
203 | }
|
---|
204 | }
|
---|
205 | }
|
---|
206 | xmlhttp[index].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[index])+"&time="+year+"-"+month+"-"+day,true);
|
---|
207 |
|
---|
208 | xmlhttp[index].send();
|
---|
209 | }
|
---|
210 |
|
---|
211 | function displayData() //--> you can use the content of this function in the event listener
|
---|
212 | {
|
---|
213 | for (i=0; i<=source.length; i++)
|
---|
214 | {
|
---|
215 | getXMLData();
|
---|
216 | //display source data here sourceData[i]
|
---|
217 | }
|
---|
218 | }
|
---|
219 |
|
---|
220 |
|
---|
221 | //]]></script>
|
---|
222 | <script type="javascript">
|
---|
223 |
|
---|
224 | </script>
|
---|
225 | </td>
|
---|
226 | </tr>
|
---|
227 |
|
---|
228 | </table>
|
---|
229 | </td>
|
---|
230 | </tr>
|
---|
231 | </table>
|
---|
232 |
|
---|
233 | </body>
|
---|
234 | </html>
|
---|
235 |
|
---|
236 |
|
---|