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.16 by pjm2, Fri Mar 2 09:35:53 2001 UTC vs.
Revision 1.25 by pjm2, Fri Mar 2 09:51:34 2001 UTC

# Line 70 | Line 70 | function getdirArray($dir='./',$sort='asort') {
70  
71   ?>
72  
73 < <? include("title.inc"); ?>
73 > <? include($titleHTML); ?>
74  
75 < <hr weight="1" color="#9999ff">
75 > <hr weight="1" color="<? echo $lineColor ?>">
76  
77   <b>Most recent reports available</b>
78 < <form method="GET" action="browser.php">
78 > <form method="<? echo $formMethod ?>" action="browser.php">
79   <?
80  
81 <    $file_array = getdirArray('/home/cut/pjm2/webpages/reports','rsort');
81 >    $file_array = getdirArray($reportDirectory,'rsort');
82      print "<select size=\"1\" name=\"day\">";
83      foreach($file_array as $file_name) {
84          if (is_dir($file_name)) {
# Line 95 | Line 95 | function getdirArray($dir='./',$sort='asort') {
95   <input type="submit" name="submit" value="Go">
96   </form>
97  
98 < <hr weight="1" color="#9999ff">
98 > <hr weight="1" color="<? echo $lineColor ?>">
99  
100   <? if ($day) { ?>
101  
102      <b>Available reports for <? echo $day ?></b>
103  
104 <    <form method="GET" action="browser.php">
104 >    <form method="<? echo $formMethod ?>" action="browser.php">
105       <select size="1" name="machine_name">
106        <? if ($machine_name) { ?>
107          <option selected value="<? echo $machine_name ?>"><? echo $machine_name ?></option>
# Line 109 | Line 109 | function getdirArray($dir='./',$sort='asort') {
109        <? } else { ?>
110          <option selected value="">[select machine]</option>
111        <? } ?>
112 <      <? include("$day/machine_name.inc"); ?>
112 >      <? include("$day/$machineNameHTML"); ?>
113       </select>
114  
115       <select size="1" name="report">
# Line 119 | Line 119 | function getdirArray($dir='./',$sort='asort') {
119        <? } else { ?>
120          <option selected value="">[select report]</option>
121        <? } ?>
122 <      <? include("$day/report.inc"); ?>
122 >      <? include("$day/$reportHTML"); ?>
123       </select>
124  
125       <input type="hidden" name="day" value="<? echo $day ?>">
126       <input type="submit" name="submit" value="Show">
127      </form>
128      
129 <    <hr weight="1" color="#9999ff">
129 >    <hr weight="1" color="<? echo $lineColor ?>">
130      
131   <? } ?>
132  
# Line 136 | Line 136 | function getdirArray($dir='./',$sort='asort') {
136   <?
137      if ($submit == "Show" && $machine_name && $report) {
138          
139 <        include("$day/$machine_name/$report/i-maxmin.txt");
139 >        include("$day/$machine_name/$report/$reportLimitsFile");
140          
141 <        $url = escapeshellcmd("$day/$machine_name/$report/i-chart.gif");
142 <        if (isReportEmpty("$day/$machine_name/$report/i-data.txt")) {
141 >        $url = escapeshellcmd("$day/$machine_name/$report/$reportChartFile");
142 >        if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile")) {
143              echo "Host <b>$machine_name</b> did not send any information about <b>$report</b> on <b>$day</b>.  Please select another report.";
144          }
145          else if (file_exists($url)) {  ?>
# Line 162 | Line 162 | function getdirArray($dir='./',$sort='asort') {
162               </tr>
163               <tr>
164                <td>&nbsp;</td>
165 <              <td><img src="24hour.gif" width="500" height="39"></td>
165 >              <td><img src="<? echo $scaleImage ?>" width="500" height="39"></td>
166               </tr>
167              </table>
168              
169 <            <hr weigth="1" color="#9999ff">
169 >            <hr weigth="1" color="<? echo $lineColor ?>">
170              
171              <b>Extra data</b>
172              <p>
173 <            <a href="<? echo "$day/$machine_name/$report/i-data.txt" ?>">Raw plot data</a><br>
174 <            <a href="<? echo "$day/$machine_name/$report/i-chart.gif" ?>">GIF chart</a><br>
175 <            <a href="<? echo "$day/$machine_name/$report/i-maxmin.txt" ?>">PHP y-axis limits include</a>
173 >            <a href="<? echo "$day/$machine_name/$report/$reportChartDataFile" ?>">Raw plot data</a><br>
174 >            <a href="<? echo "$day/$machine_name/$report/$reportChartFile" ?>">GIF chart</a><br>
175 >            <a href="<? echo "$day/$machine_name/$report/$reportLimitsFile" ?>">PHP y-axis limits include</a>
176              
177          <? }
178          else {
179              echo "<p>The report could not be found.  Somebody must have deleted it!</p>";
180          }
181 <        echo "<hr weight=\"1\" color=\"#9999ff\">";
181 >        echo "<hr weight=\"1\" color=\"$lineColor\">";
182      }
183      
184   ?>
185  
186 < <? include("bottom.inc"); ?>
186 > <? include($bottomHTML); ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines