ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/historical/browser.php
(Generate patch)

Comparing projects/cms/source/reports/php/historical/browser.php (file contents):
Revision 1.27 by pjm2, Fri Mar 2 09:58:16 2001 UTC vs.
Revision 1.30 by pjm2, Fri Mar 2 10:49:54 2001 UTC

# Line 40 | Line 40 | $minFileSize = 33;
40  
41  
42   # Used to return whether or not a report data file is empty.
43 < function isReportEmpty($filename) {
44 <    if (filesize($filename) < minFileSize) {
43 > function isReportEmpty($filename, $minFileSize) {
44 >    if (filesize($filename) < $minFileSize) {
45          return TRUE;
46      }
47      return FALSE;
# Line 56 | Line 56 | function getdirArray($dir='./',$sort='asort') {
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) {
# Line 86 | Line 88 | function getdirArray($dir='./',$sort='asort') {
88  
89      $file_array = getdirArray($reportDirectory,'rsort');
90      print "<select size=\"1\" name=\"day\">";
91 +    if ($day) { ?>
92 +        <option selected value="<? echo $day ?>"><? echo $day ?></option>
93 +        <option value="">----------------</option>
94 +    <? }
95      foreach($file_array as $file_name) {
96          if (is_dir($file_name)) {
97              $i++;
# Line 145 | Line 151 | function getdirArray($dir='./',$sort='asort') {
151          include("$day/$machine_name/$report/$reportLimitsFile");
152          
153          $url = escapeshellcmd("$day/$machine_name/$report/$reportChartFile");
154 <        if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile")) {
154 >        if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile", $minFileSize)) {
155              echo "Host <b>$machine_name</b> did not send any information about <b>$report</b> on <b>$day</b>.  Please select another report.";
156          }
157          else if (file_exists($url)) {  ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines