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.18 by pjm2, Fri Mar 2 09:38:54 2001 UTC vs.
Revision 1.31 by pjm2, Thu Mar 8 20:55:29 2001 UTC

# Line 3 | Line 3
3   # Navigation for the i-scream reports.
4   # pjm2@ukc.ac.uk
5   #
6 < # CONFIGURABLE CONSTANTS
7 < #
6 > # CONFIGURABLE CONSTANTS: -
7  
8   # The report directory, and the number of days to display.
9 < $reportDirectory = "/home/cut/pjm2/webpages/reports";
9 > $reportDirectory = "/home/cut/pjm2/webpages/reports/historical";
10   $maxDaysShown = 7;
11  
12   # Page appearance.
# Line 36 | Line 35 | $minFileSize = 33;
35   # END CONFIGURATION
36  
37  
38 < function isReportEmpty($filename) {
39 <    if (filesize($filename) < minFileSize) {
38 >
39 >
40 >
41 > # Used to return whether or not a report data file is empty.
42 > function isReportEmpty($filename, $minFileSize) {
43 >    if (filesize($filename) < $minFileSize) {
44          return TRUE;
45      }
46      return FALSE;
47   }
48  
49 +
50 + # return an array of subdirectories in the current directory.
51   function getdirArray($dir='./',$sort='asort') {
52      global $dir_file_count;
53      if ( is_dir($dir) ) {
# Line 50 | Line 55 | function getdirArray($dir='./',$sort='asort') {
55          while ( ($part = @readdir($fd)) == TRUE ) {
56              clearstatcache();
57              if ($part != "." && $part != "..") {
58 <                $dir_array[] = $part;
58 >                if (preg_match("/^[0-9]{4}\-[0-9]{2}\-[0-9]{2}$/", $part)) {
59 >                    $dir_array[] = $part;
60 >                }
61              }
62          }
63          if($fd == TRUE) {
# Line 70 | Line 77 | function getdirArray($dir='./',$sort='asort') {
77  
78   ?>
79  
80 < <? include("title.inc"); ?>
80 > <? include($titleHTML); ?>
81  
82 < <hr weight="1" color="#9999ff">
82 > <hr weight="1" color="<? echo $lineColor ?>">
83  
84   <b>Most recent reports available</b>
85 < <form method="GET" action="browser.php">
85 > <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
86   <?
87  
88      $file_array = getdirArray($reportDirectory,'rsort');
89      print "<select size=\"1\" name=\"day\">";
90 +    if ($day) { ?>
91 +        <option selected value="<? echo $day ?>"><? echo $day ?></option>
92 +        <option value="">----------------</option>
93 +    <? }
94      foreach($file_array as $file_name) {
95          if (is_dir($file_name)) {
96              $i++;
# Line 95 | Line 106 | function getdirArray($dir='./',$sort='asort') {
106   <input type="submit" name="submit" value="Go">
107   </form>
108  
109 < <hr weight="1" color="#9999ff">
109 > <hr weight="1" color="<? echo $lineColor ?>">
110  
111   <? if ($day) { ?>
112  
113      <b>Available reports for <? echo $day ?></b>
114  
115 <    <form method="GET" action="browser.php">
115 >    <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
116       <select size="1" name="machine_name">
117        <? if ($machine_name) { ?>
118          <option selected value="<? echo $machine_name ?>"><? echo $machine_name ?></option>
# Line 109 | Line 120 | function getdirArray($dir='./',$sort='asort') {
120        <? } else { ?>
121          <option selected value="">[select machine]</option>
122        <? } ?>
123 <      <? include("$day/machine_name.inc"); ?>
123 >      <? include("$day/$machineNameHTML"); ?>
124       </select>
125  
126       <select size="1" name="report">
# Line 119 | Line 130 | function getdirArray($dir='./',$sort='asort') {
130        <? } else { ?>
131          <option selected value="">[select report]</option>
132        <? } ?>
133 <      <? include("$day/report.inc"); ?>
133 >      <? include("$day/$reportHTML"); ?>
134       </select>
135  
136       <input type="hidden" name="day" value="<? echo $day ?>">
137       <input type="submit" name="submit" value="Show">
138      </form>
139      
140 <    <hr weight="1" color="#9999ff">
140 >    <hr weight="1" color="<? echo $lineColor ?>">
141      
142   <? } ?>
143  
# Line 136 | Line 147 | function getdirArray($dir='./',$sort='asort') {
147   <?
148      if ($submit == "Show" && $machine_name && $report) {
149          
150 <        include("$day/$machine_name/$report/i-maxmin.txt");
150 >        include("$day/$machine_name/$report/$reportLimitsFile");
151          
152 <        $url = escapeshellcmd("$day/$machine_name/$report/i-chart.gif");
153 <        if (isReportEmpty("$day/$machine_name/$report/i-data.txt")) {
152 >        $url = escapeshellcmd("$day/$machine_name/$report/$reportChartFile");
153 >        if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile", $minFileSize)) {
154              echo "Host <b>$machine_name</b> did not send any information about <b>$report</b> on <b>$day</b>.  Please select another report.";
155          }
156          else if (file_exists($url)) {  ?>
# Line 166 | Line 177 | function getdirArray($dir='./',$sort='asort') {
177               </tr>
178              </table>
179              
180 <            <hr weigth="1" color="#9999ff">
180 >            <hr weigth="1" color="<? echo $lineColor ?>">
181              
182              <b>Extra data</b>
183              <p>
184 <            <a href="<? echo "$day/$machine_name/$report/i-data.txt" ?>">Raw plot data</a><br>
185 <            <a href="<? echo "$day/$machine_name/$report/i-chart.gif" ?>">GIF chart</a><br>
186 <            <a href="<? echo "$day/$machine_name/$report/i-maxmin.txt" ?>">PHP y-axis limits include</a>
184 >            <a href="<? echo "$day/$machine_name/$report/$reportChartDataFile" ?>">Raw plot data</a><br>
185 >            <a href="<? echo "$day/$machine_name/$report/$reportChartFile" ?>">GIF chart</a><br>
186 >            <a href="<? echo "$day/$machine_name/$report/$reportLimitsFile" ?>">PHP y-axis limits include</a>
187              
188          <? }
189          else {
190              echo "<p>The report could not be found.  Somebody must have deleted it!</p>";
191          }
192 <        echo "<hr weight=\"1\" color=\"#9999ff\">";
192 >        echo "<hr weight=\"1\" color=\"$lineColor\">";
193      }
194      
195   ?>
196  
197 < <? include("bottom.inc"); ?>
197 > <? include($bottomHTML); ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines