ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/historical/browser.php
Revision: 1.33
Committed: Tue Mar 13 18:54:02 2001 UTC (23 years, 2 months ago) by pjm2
Branch: MAIN
Changes since 1.32: +1 -25 lines
Log Message:
Moved the configuration to an external file.

File Contents

# User Rev Content
1 pjm2 1.1 <?php
2    
3 pjm2 1.16 # Navigation for the i-scream reports.
4     # pjm2@ukc.ac.uk
5     #
6 pjm2 1.31 # CONFIGURABLE CONSTANTS: -
7 pjm2 1.16
8 pjm2 1.33 include("browser_config.inc.php");
9 pjm2 1.15
10 pjm2 1.16 #
11     # END CONFIGURATION
12 pjm2 1.15
13 pjm2 1.1
14 pjm2 1.27
15    
16    
17     # Used to return whether or not a report data file is empty.
18 pjm2 1.29 function isReportEmpty($filename, $minFileSize) {
19     if (filesize($filename) < $minFileSize) {
20 pjm2 1.14 return TRUE;
21     }
22     return FALSE;
23     }
24    
25 pjm2 1.27
26 pjm2 1.32 include("iutils.inc.php");
27 pjm2 1.1
28     ?>
29    
30 pjm2 1.20 <? include($titleHTML); ?>
31 pjm2 1.6
32 pjm2 1.19 <hr weight="1" color="<? echo $lineColor ?>">
33 pjm2 1.11
34     <b>Most recent reports available</b>
35 pjm2 1.26 <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
36 pjm2 1.11 <?
37    
38 pjm2 1.17 $file_array = getdirArray($reportDirectory,'rsort');
39 pjm2 1.11 print "<select size=\"1\" name=\"day\">";
40 pjm2 1.30 if ($day) { ?>
41     <option selected value="<? echo $day ?>"><? echo $day ?></option>
42     <option value="">----------------</option>
43     <? }
44 pjm2 1.11 foreach($file_array as $file_name) {
45     if (is_dir($file_name)) {
46     $i++;
47     print "<option value=\"$file_name\">$file_name</option>";
48     }
49 pjm2 1.16 if ($i >= $maxDaysShown) {
50 pjm2 1.11 break;
51     }
52     }
53     print "</select>";
54    
55     ?>
56     <input type="submit" name="submit" value="Go">
57     </form>
58    
59 pjm2 1.19 <hr weight="1" color="<? echo $lineColor ?>">
60 pjm2 1.11
61     <? if ($day) { ?>
62    
63     <b>Available reports for <? echo $day ?></b>
64    
65 pjm2 1.26 <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
66 pjm2 1.6 <select size="1" name="machine_name">
67 pjm2 1.13 <? if ($machine_name) { ?>
68     <option selected value="<? echo $machine_name ?>"><? echo $machine_name ?></option>
69     <option value="">----------------</option>
70     <? } else { ?>
71     <option selected value="">[select machine]</option>
72     <? } ?>
73 pjm2 1.22 <? include("$day/$machineNameHTML"); ?>
74 pjm2 1.6 </select>
75    
76     <select size="1" name="report">
77 pjm2 1.13 <? if ($report) { ?>
78     <option selected value="<? echo $report ?>"><? echo $report ?></option>
79     <option value="">----------------</option>
80     <? } else { ?>
81     <option selected value="">[select report]</option>
82     <? } ?>
83 pjm2 1.22 <? include("$day/$reportHTML"); ?>
84 pjm2 1.6 </select>
85 pjm2 1.1
86 pjm2 1.11 <input type="hidden" name="day" value="<? echo $day ?>">
87 pjm2 1.8 <input type="submit" name="submit" value="Show">
88 pjm2 1.6 </form>
89 pjm2 1.11
90 pjm2 1.19 <hr weight="1" color="<? echo $lineColor ?>">
91 pjm2 1.11
92     <? } ?>
93 pjm2 1.1
94 pjm2 1.6 </p>
95 pjm2 1.1
96 pjm2 1.2
97     <?
98 pjm2 1.8 if ($submit == "Show" && $machine_name && $report) {
99 pjm2 1.11
100 pjm2 1.23 include("$day/$machine_name/$report/$reportLimitsFile");
101 pjm2 1.11
102 pjm2 1.24 $url = escapeshellcmd("$day/$machine_name/$report/$reportChartFile");
103 pjm2 1.29 if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile", $minFileSize)) {
104 pjm2 1.14 echo "Host <b>$machine_name</b> did not send any information about <b>$report</b> on <b>$day</b>. Please select another report.";
105     }
106     else if (file_exists($url)) { ?>
107 pjm2 1.11
108     <center><b>[<? echo $machine_name; ?>] - <? echo $report; ?></b></center>
109    
110     <table border="0" cellpadding="0" cellspacing="0">
111     <tr>
112     <td align="right" valign="top">
113     <font size="2"><? printf("%.1f", $max_value); ?></font>
114     </td>
115     <td rowspan="2">
116     <img src="<? echo $url; ?>" width="500" height="250">
117     </td>
118     </tr>
119     <tr>
120     <td align="right" valign="bottom">
121     <font size="2"><? echo $min_value; ?></font>
122     </td>
123     </tr>
124     <tr>
125     <td>&nbsp;</td>
126 pjm2 1.18 <td><img src="<? echo $scaleImage ?>" width="500" height="39"></td>
127 pjm2 1.11 </tr>
128     </table>
129    
130 pjm2 1.19 <hr weigth="1" color="<? echo $lineColor ?>">
131 pjm2 1.11
132     <b>Extra data</b>
133     <p>
134 pjm2 1.25 <a href="<? echo "$day/$machine_name/$report/$reportChartDataFile" ?>">Raw plot data</a><br>
135 pjm2 1.24 <a href="<? echo "$day/$machine_name/$report/$reportChartFile" ?>">GIF chart</a><br>
136 pjm2 1.23 <a href="<? echo "$day/$machine_name/$report/$reportLimitsFile" ?>">PHP y-axis limits include</a>
137 pjm2 1.11
138     <? }
139 pjm2 1.2 else {
140 pjm2 1.15 echo "<p>The report could not be found. Somebody must have deleted it!</p>";
141 pjm2 1.2 }
142 pjm2 1.19 echo "<hr weight=\"1\" color=\"$lineColor\">";
143 pjm2 1.2 }
144    
145 pjm2 1.1 ?>
146 pjm2 1.6
147 pjm2 1.21 <? include($bottomHTML); ?>