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.21 by pjm2, Fri Mar 2 09:43:00 2001 UTC vs.
Revision 1.30 by pjm2, Fri Mar 2 10:49:54 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 75 | Line 83 | function getdirArray($dir='./',$sort='asort') {
83   <hr weight="1" color="<? echo $lineColor ?>">
84  
85   <b>Most recent reports available</b>
86 < <form method="GET" action="browser.php">
86 > <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
87   <?
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 101 | Line 113 | function getdirArray($dir='./',$sort='asort') {
113  
114      <b>Available reports for <? echo $day ?></b>
115  
116 <    <form method="GET" action="browser.php">
116 >    <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
117       <select size="1" name="machine_name">
118        <? if ($machine_name) { ?>
119          <option selected value="<? echo $machine_name ?>"><? echo $machine_name ?></option>
# Line 109 | Line 121 | function getdirArray($dir='./',$sort='asort') {
121        <? } else { ?>
122          <option selected value="">[select machine]</option>
123        <? } ?>
124 <      <? include("$day/machine_name.inc"); ?>
124 >      <? include("$day/$machineNameHTML"); ?>
125       </select>
126  
127       <select size="1" name="report">
# Line 119 | Line 131 | function getdirArray($dir='./',$sort='asort') {
131        <? } else { ?>
132          <option selected value="">[select report]</option>
133        <? } ?>
134 <      <? include("$day/report.inc"); ?>
134 >      <? include("$day/$reportHTML"); ?>
135       </select>
136  
137       <input type="hidden" name="day" value="<? echo $day ?>">
# Line 136 | Line 148 | function getdirArray($dir='./',$sort='asort') {
148   <?
149      if ($submit == "Show" && $machine_name && $report) {
150          
151 <        include("$day/$machine_name/$report/i-maxmin.txt");
151 >        include("$day/$machine_name/$report/$reportLimitsFile");
152          
153 <        $url = escapeshellcmd("$day/$machine_name/$report/i-chart.gif");
154 <        if (isReportEmpty("$day/$machine_name/$report/i-data.txt")) {
153 >        $url = escapeshellcmd("$day/$machine_name/$report/$reportChartFile");
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)) {  ?>
# Line 170 | Line 182 | function getdirArray($dir='./',$sort='asort') {
182              
183              <b>Extra data</b>
184              <p>
185 <            <a href="<? echo "$day/$machine_name/$report/i-data.txt" ?>">Raw plot data</a><br>
186 <            <a href="<? echo "$day/$machine_name/$report/i-chart.gif" ?>">GIF chart</a><br>
187 <            <a href="<? echo "$day/$machine_name/$report/i-maxmin.txt" ?>">PHP y-axis limits include</a>
185 >            <a href="<? echo "$day/$machine_name/$report/$reportChartDataFile" ?>">Raw plot data</a><br>
186 >            <a href="<? echo "$day/$machine_name/$report/$reportChartFile" ?>">GIF chart</a><br>
187 >            <a href="<? echo "$day/$machine_name/$report/$reportLimitsFile" ?>">PHP y-axis limits include</a>
188              
189          <? }
190          else {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines