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

Comparing projects/cms/source/reports/php/latest/latest.php (file contents):
Revision 1.8 by pjm2, Thu Mar 8 22:29:19 2001 UTC vs.
Revision 1.23 by pjm2, Tue Mar 13 20:31:39 2001 UTC

# Line 10 | Line 10 | include("latest_config.inc.php");
10   #
11   # END CONFIGURATION
12  
13 + include("iutils.inc.php");
14  
15 < # return an array of subdirectories from a directory.
16 < function getdirArray($dir='./',$sort='asort') {
17 <    global $dir_file_count;
17 <    if ( is_dir($dir) ) {
18 <        $fd = @opendir($dir);
19 <        while ( ($part = @readdir($fd)) == TRUE ) {
20 <            clearstatcache();
21 <            if ($part != "." && $part != "..") {
22 <                $dir_array[] = $part;
23 <            }
24 <        }
25 <        if($fd == TRUE) {
26 <            closedir($fd);
27 <        }
28 <        if (is_array($dir_array)) {
29 <            $sort($dir_array);
30 <            $dir_file_count = count($dir_array);
31 <            Return $dir_array;
32 <        } else {
33 <            Return FALSE;
34 <        }
35 <    } else {
36 <        Return FALSE;
37 <    }
15 > function printLine($title) {
16 >    echo "<hr style=\"color:#9999ff;\">";
17 >    echo "<b>$title</b>";
18   }
19  
40 function printLine() {
41    echo "<hr color=\"#9999ff\">";
42 }
20  
44
21   function showStat($title, $value, $input) {
22      preg_match("/$value=([^\,]*)[\,\}]/", $input, $matches);
23      $value = $matches[1];
# Line 59 | Line 35 | function showStat($title, $value, $input) {
35   }
36  
37  
38 + function linkToHistory($report) {
39 +    global $machine;
40 +    $yesterday = date("Y-m-d", time() - 86400);
41 +    echo <<<EOT
42 +        <a href="browser.php?machine_name=$machine&report=$report&day=$yesterday&submit=Show"><img src="minichart.gif" alt="View yesterday's 24-hour chart" width="20" height="20" border="0"></a>
43 + EOT;
44 + }
45 +
46 +
47   # show a bar-represented value.
48 < function showBar($title, $value, $max, $input) {
48 > function showBar($title, $value, $max, $units, $input) {
49  
50      include("latest_config.inc.php");
51  
52 +    $report = $value;
53 +
54      preg_match("/$value=([^\,]*)\,/", $input, $matches);
55      $value = $matches[1];
56      if (!is_int($max)) {
# Line 77 | Line 64 | function showBar($title, $value, $max, $input) {
64      $width = intval($max_width * $value / $max);
65  
66      ?>
67 <        <table border="0" cellpadding="0" cellspacing="0">
67 >        <table border="0" cellpadding="0" cellspacing="0" align="center">
68            <tr>
69 <            <td colspan="2"><b><?=$title?></b></td>
69 >            <td colspan="2"><? linkToHistory($report); ?> <b><?=$title?></b> <font size="2">(<?=$value?><?=$units?>)</font></td>
70            </tr>
71            <tr>
72              <td colspan="2" bgcolor="#eeeeff"><img src="<?=$barImage?>" border="0" height="20" width="<?=$width?>"></td>
# Line 88 | Line 75 | function showBar($title, $value, $max, $input) {
75              <td colspan="2"><img src="<?=$scaleImage?>" border="0" height="11" width="<?=$max_width?>"></td>
76            </tr>
77            <tr>
78 <            <td align="left">0</td>
79 <            <td align="right"><?=$max?></td>
78 >            <td align="left">0<?=$units?></td>
79 >            <td align="right"><?=$max?><?=$units?></td>
80            </tr>
81 +          <tr>
82 +            <td colspan="2">&nbsp;</td>
83 +          </tr>
84          </table>
85      <?
86   }
# Line 100 | Line 90 | function showBar($title, $value, $max, $input) {
90  
91   <? include($titleHTML); ?>
92  
93 < <hr weight="1" color="<? echo $lineColor ?>">
93 > <? printLine("Display the latest information received from a host"); ?>
94  
105 <b>Display the latest information received from a host</b>
95   <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
96   <?
97  
# Line 123 | Line 112 | function showBar($title, $value, $max, $input) {
112   <input type="submit" name="submit" value="Display">
113   </form>
114  
126 <hr weight="1" color="<? echo $lineColor ?>">
127
115   <? if ($machine) {
116  
117 +       $last_modified = filemtime("$latestDirectory/$machine/$latestData");
118 +       clearstatcache();
119 +       $data_age = time() - $last_modified;
120 +
121 +       $last_modified = date("l jS F - g:ia", $last_modified);
122 +
123 +       if ($data_age > $warning_age) {
124 +           $warning = <<<EOT
125 +               <br>
126 +               <font color="red"><b>
127 +                   Warning:
128 +               </b></font>
129 +                   This realtime report is too old to be considered recent
130 + EOT;
131 +       }
132 +
133 + echo <<<EOT
134 +       <table border="0" bgcolor="#000066" cellpadding="3" cellspacing="1">
135 +         <tr>
136 +           <td bgcolor="#000066">
137 +             &nbsp;
138 +           </td>
139 +           <td bgcolor="#ffffcc">
140 +             <font face="arial,sans-serif" size="2">
141 +               <b>Recipt date:</b> $last_modified
142 +               $warning
143 +             </font>
144 +           </td>
145 +         </tr>
146 +       </table>
147 + EOT;
148 +
149         # Read the file.
150         #$input = "packet.attributes.machine_name=raptor.ukc.ac.uk,packet.memory.free=10,packet.memory.total=100,";
151         $input = file("$latestDirectory/$machine/$latestData");
# Line 144 | Line 163 | function showBar($title, $value, $max, $input) {
163  
164   ?>
165  
166 + <? printLine(""); ?>
167  
168   <? include($bottomHTML); ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines