52 |
|
?> |
53 |
|
<table border="0" width="100%"> |
54 |
|
<tr> |
55 |
< |
<td width="50%" align="right" valign="top"><b><font size="2"><?=$title?>:</font></b></td> |
56 |
< |
<td width="50%" align="left" valign="top"><font size="2"><?=$value?></font></td> |
55 |
> |
<td width="50%" align="right" valign="top"><b><?=$title?></b></td> |
56 |
> |
<td width="50%" align="left" valign="top"><?=$value?></td> |
57 |
|
</tr> |
58 |
|
</table> |
59 |
|
<? |
101 |
|
|
102 |
|
<? include($titleHTML); ?> |
103 |
|
|
104 |
< |
<? printLine("Display the latest information received from a host."); ?> |
104 |
> |
<? printLine("Display the latest information received from a host"); ?> |
105 |
|
|
106 |
|
<form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>"> |
107 |
|
<? |
123 |
|
<input type="submit" name="submit" value="Display"> |
124 |
|
</form> |
125 |
|
|
126 |
+ |
<hr weight="1" color="<? echo $lineColor ?>"> |
127 |
+ |
|
128 |
|
<? if ($machine) { |
129 |
|
|
130 |
+ |
$last_modified = filemtime("$latestDirectory/$machine/$latestData"); |
131 |
+ |
clearstatcache(); |
132 |
+ |
$data_age = time() - $last_modified; |
133 |
+ |
|
134 |
+ |
$last_modified = strftime("%a %d %b %Y at %T", $last_modified); |
135 |
+ |
|
136 |
+ |
if ($data_age > $warning_age) { |
137 |
+ |
$warning = <<<EOT |
138 |
+ |
<br> |
139 |
+ |
<font color="red"><b> |
140 |
+ |
Warning: |
141 |
+ |
</b></font> |
142 |
+ |
This realtime report is too old to be considered recent |
143 |
+ |
EOT; |
144 |
+ |
} |
145 |
+ |
|
146 |
+ |
echo <<<EOT |
147 |
+ |
<table border="0" bgcolor="#000066" cellpadding="3" cellspacing="1" align="center"> |
148 |
+ |
<tr> |
149 |
+ |
<td bgcolor="#000066"> |
150 |
+ |
|
151 |
+ |
</td> |
152 |
+ |
<td bgcolor="#ffffcc"> |
153 |
+ |
<font face="arial,sans-serif" size="2"> |
154 |
+ |
<b>Recipt date:</b> $last_modified |
155 |
+ |
$warning |
156 |
+ |
</font> |
157 |
+ |
</td> |
158 |
+ |
</tr> |
159 |
+ |
</table> |
160 |
+ |
EOT; |
161 |
+ |
|
162 |
|
# Read the file. |
163 |
|
#$input = "packet.attributes.machine_name=raptor.ukc.ac.uk,packet.memory.free=10,packet.memory.total=100,"; |
164 |
|
$input = file("$latestDirectory/$machine/$latestData"); |
172 |
|
# Display the data specified in the display include. |
173 |
|
include("latest_display.inc.php"); |
174 |
|
} |
175 |
< |
} |
142 |
< |
else { |
175 |
> |
|
176 |
|
printLine(""); |
177 |
|
} |
178 |
|
|