36 |
|
# END CONFIGURATION |
37 |
|
|
38 |
|
|
39 |
+ |
|
40 |
+ |
|
41 |
+ |
|
42 |
+ |
# Used to return whether or not a report data file is empty. |
43 |
|
function isReportEmpty($filename) { |
44 |
|
if (filesize($filename) < minFileSize) { |
45 |
|
return TRUE; |
47 |
|
return FALSE; |
48 |
|
} |
49 |
|
|
50 |
+ |
|
51 |
+ |
# return an array of subdirectories in the current directory. |
52 |
|
function getdirArray($dir='./',$sort='asort') { |
53 |
|
global $dir_file_count; |
54 |
|
if ( is_dir($dir) ) { |
56 |
|
while ( ($part = @readdir($fd)) == TRUE ) { |
57 |
|
clearstatcache(); |
58 |
|
if ($part != "." && $part != "..") { |
59 |
< |
$dir_array[] = $part; |
59 |
> |
if (preg_match("/^[0-9]{4}\-[0-9]{2}\-[0-9]{2}$/", $part)) { |
60 |
> |
$dir_array[] = $part; |
61 |
> |
} |
62 |
|
} |
63 |
|
} |
64 |
|
if($fd == TRUE) { |
83 |
|
<hr weight="1" color="<? echo $lineColor ?>"> |
84 |
|
|
85 |
|
<b>Most recent reports available</b> |
86 |
< |
<form method="<? echo $formMethod ?>" action="browser.php"> |
86 |
> |
<form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>"> |
87 |
|
<? |
88 |
|
|
89 |
|
$file_array = getdirArray($reportDirectory,'rsort'); |
109 |
|
|
110 |
|
<b>Available reports for <? echo $day ?></b> |
111 |
|
|
112 |
< |
<form method="<? echo $formMethod ?>" action="browser.php"> |
112 |
> |
<form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>"> |
113 |
|
<select size="1" name="machine_name"> |
114 |
|
<? if ($machine_name) { ?> |
115 |
|
<option selected value="<? echo $machine_name ?>"><? echo $machine_name ?></option> |