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.26 by pjm2, Fri Mar 2 09:53:36 2001 UTC vs.
Revision 1.29 by pjm2, Fri Mar 2 10:13:56 2001 UTC

# Line 36 | Line 36 | $minFileSize = 33;
36   # END CONFIGURATION
37  
38  
39 < function isReportEmpty($filename) {
40 <    if (filesize($filename) < minFileSize) {
39 >
40 >
41 >
42 > # Used to return whether or not a report data file is empty.
43 > function isReportEmpty($filename, $minFileSize) {
44 >    if (filesize($filename) < $minFileSize) {
45          return TRUE;
46      }
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) ) {
# Line 50 | 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 139 | Line 147 | function getdirArray($dir='./',$sort='asort') {
147          include("$day/$machine_name/$report/$reportLimitsFile");
148          
149          $url = escapeshellcmd("$day/$machine_name/$report/$reportChartFile");
150 <        if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile")) {
150 >        if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile", $minFileSize)) {
151              echo "Host <b>$machine_name</b> did not send any information about <b>$report</b> on <b>$day</b>.  Please select another report.";
152          }
153          else if (file_exists($url)) {  ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines