| 1 |
<?php |
| 2 |
|
| 3 |
// Navigation for the i-scream reports. |
| 4 |
// pjm2@ukc.ac.uk |
| 5 |
|
| 6 |
|
| 7 |
function getdirArray($dir='./',$sort='asort') { |
| 8 |
global $dir_file_count; |
| 9 |
if ( is_dir($dir) ) { |
| 10 |
$fd = @opendir($dir); |
| 11 |
while ( ($part = @readdir($fd)) == TRUE ) { |
| 12 |
clearstatcache(); |
| 13 |
if ($part != "." && $part != "..") { |
| 14 |
$dir_array[] = $part; |
| 15 |
} |
| 16 |
} |
| 17 |
if($fd == TRUE) { |
| 18 |
closedir($fd); |
| 19 |
} |
| 20 |
if (is_array($dir_array)) { |
| 21 |
$sort($dir_array); |
| 22 |
$dir_file_count = count($dir_array); |
| 23 |
Return $dir_array; |
| 24 |
} else { |
| 25 |
Return FALSE; |
| 26 |
} |
| 27 |
} else { |
| 28 |
Return FALSE; |
| 29 |
} |
| 30 |
} |
| 31 |
|
| 32 |
?> |
| 33 |
|
| 34 |
<? include("title.inc"); ?> |
| 35 |
|
| 36 |
<form method="GET" action=""> |
| 37 |
<select size="1" name="machine_name"> |
| 38 |
<option selected value="">[select machine]</option> |
| 39 |
<? #include("machine_name.inc"); ?> |
| 40 |
</select> |
| 41 |
|
| 42 |
<select size="1" name="report"> |
| 43 |
<option selected value="">[select report]</option> |
| 44 |
<? #include("report.inc"); ?> |
| 45 |
</select> |
| 46 |
|
| 47 |
<input type="submit" name="submit" value="Show"> |
| 48 |
</form> |
| 49 |
|
| 50 |
</p> |
| 51 |
|
| 52 |
|
| 53 |
<? |
| 54 |
if ($submit == "Show" && $machine_name && $report) { |
| 55 |
$url = escapeshellcmd("$day/$machine_name/$report/chart.gif"); |
| 56 |
if (file_exists($url)) { |
| 57 |
echo "<p><b>[$machine_name] - $report</b><br><img src=\"$url\" width=\"500\" height=\"250\"><br><img src=\"24hour.gif\" width=\"500\" height=\"39\"></p>"; |
| 58 |
} |
| 59 |
else { |
| 60 |
echo "<p>The report could not be found.</p>"; |
| 61 |
} |
| 62 |
} |
| 63 |
|
| 64 |
?> |
| 65 |
|
| 66 |
<hr> |
| 67 |
|
| 68 |
<? |
| 69 |
|
| 70 |
$file_array = getdirArray('/home/cut/pjm2/webpages/reports','rsort'); |
| 71 |
print "<ul>"; |
| 72 |
foreach($file_array as $file_name) { |
| 73 |
if (is_dir($file_name)) { |
| 74 |
print "<li><a href=\"$file_name\">$file_name</a>"; |
| 75 |
} |
| 76 |
} |
| 77 |
print "</ul>"; |
| 78 |
|
| 79 |
?> |
| 80 |
|
| 81 |
<? include("bottom.inc"); ?> |