19 |
|
|
20 |
|
|
21 |
|
function showStat($title, $value, $input) { |
22 |
+ |
|
23 |
+ |
$report = $value; |
24 |
+ |
|
25 |
|
preg_match("/$value=([^\,]*)[\,\}]/", $input, $matches); |
26 |
|
$value = $matches[1]; |
27 |
|
if (empty($value)) { |
30 |
|
?> |
31 |
|
<table border="0" width="100%"> |
32 |
|
<tr> |
33 |
< |
<td width="50%" align="right" valign="top"><b><?=$title?></b></td> |
34 |
< |
<td width="50%" align="left" valign="top"><?=$value?></td> |
33 |
> |
<td width="50%" align="right" valign="top"> |
34 |
> |
<b><?=$title?></b> |
35 |
> |
</td> |
36 |
> |
<td width="50%" align="left" valign="top"> |
37 |
> |
<? if (preg_match("/^[0-9]+\.?[0-9]*$/", $value)) { |
38 |
> |
linkToHistory($report); |
39 |
> |
} ?> |
40 |
> |
<?=$value?></td> |
41 |
|
</tr> |
42 |
|
</table> |
43 |
|
<? |
147 |
|
</td> |
148 |
|
<td bgcolor="#ffffcc"> |
149 |
|
<font face="arial,sans-serif" size="2"> |
150 |
< |
<b>Recipt date:</b> $last_modified |
150 |
> |
<b>Receipt date:</b> $last_modified |
151 |
|
$warning |
152 |
|
</font> |
153 |
|
</td> |
156 |
|
EOT; |
157 |
|
|
158 |
|
# Read the file. |
159 |
< |
#$input = "packet.attributes.machine_name=raptor.ukc.ac.uk,packet.memory.free=10,packet.memory.total=100,"; |
160 |
< |
$input = file("$latestDirectory/$machine/$latestData"); |
161 |
< |
# All we need is the first line if there is more than one line. |
162 |
< |
$input = $input[0]; |
159 |
> |
if (file_exists("$latestDirectory/$machine/$latestData")) { |
160 |
> |
$input = file("$latestDirectory/$machine/$latestData"); |
161 |
> |
# All we need is the first line if there is more than one line. |
162 |
> |
$input = $input[0]; |
163 |
> |
} |
164 |
|
|
165 |
|
if (empty($input)) { |
166 |
< |
echo "<br><br>There was an error reading from the latest packet received. Please notify your i-scream server administrator."; |
166 |
> |
echo "<br><br>There are currently no latest details about <b>$machine</b>. Please notify your i-scream server administrator if you believe this to be incorrect."; |
167 |
|
} |
168 |
|
else { |
169 |
|
# Display the data specified in the display include. |