/[omni_gantt]/db2gantt.cgi
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /db2gantt.cgi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.14 by dpavlin, Fri Sep 13 23:59:38 2002 UTC revision 1.18 by dpavlin, Sun Sep 15 19:21:33 2002 UTC
# Line 17  my $use_js = 1;                # use JavaScript pop-up Line 17  my $use_js = 1;                # use JavaScript pop-up
17  # status colors  # status colors
18  my %cols = (  my %cols = (
19          'In Progress'           => '0,255,0',          'In Progress'           => '0,255,0',
20          'In Progress/Failure'   => '255,64,255',          'In Progress/Failures'  => '192,64,192',
21          'In Progress/Errors'    => '255,64,0',          'In Progress/Errors'    => '255,128,128',
22          'Queuing'               => '255,255,0',          'Queuing'               => '255,255,0',
23          'Aborted'               => '255,0,0',          'Aborted'               => '255,0,0',
24          'Failed'                => '255,0,0',          'Failed'                => '255,0,0',
# Line 127  sub hour_grid { Line 127  sub hour_grid {
127          print "<tr><td align=right><small>hour grid</small></td><td colspan=2>";          print "<tr><td align=right><small>hour grid</small></td><td colspan=2>";
128          my @c = ("255,255,128","255,192,128");          my @c = ("255,255,128","255,192,128");
129          my $hr=strftime("%H",localtime ($from_t));          my $hr=strftime("%H",localtime ($from_t));
130          my $min_l=1;          sub hour_bar {
131          print color_bar(3600 - $from_t % 3600,$c[0],sprintf("%02d",$hr++ % 24));                  my ($t,$c,$hr) = @_;
132                    my $clock_hr = $hr % 24;
133                    my $alt = sprintf("%02d:00",$clock_hr);
134                    if ($clock_hr == 0) {
135                            my $pix_hr = int(1 / $width);
136                            print color_bar($pix_hr,"0,0,0",strftime("%Y-%m-%d", localtime($from_t + $hr*3600)));
137                            print color_bar($t-$pix_hr,$c,$alt);
138                    } else {
139                            print color_bar($t,$c,$alt);
140                    }
141            }
142            hour_bar(3600 - $from_t % 3600,$c[0],$hr++);
143          for (my $i=1; $i<int(($to_t-$from_t)/3600); $i++) {          for (my $i=1; $i<int(($to_t-$from_t)/3600); $i++) {
144                  print color_bar(3600,$c[1],sprintf("%02d",$hr++ % 24));                  hour_bar(3600,$c[1],$hr++);
145                  push @c, shift @c;                  push @c, shift @c;
146          }          }
147          print color_bar($from_t % 3600,$c[1],sprintf("%02d",$hr % 24));          hour_bar($from_t % 3600,$c[1],$hr);
148          print "</td></tr>\n";          print "</td></tr>\n";
149  }  }
150    
# Line 209  my $sql = "select start,finish,specifica Line 220  my $sql = "select start,finish,specifica
220          from gantt          from gantt
221          where (start < '$from' and finish > '$from') or          where (start < '$from' and finish > '$from') or
222          (start > '$from' and start < '$to')          (start > '$from' and start < '$to')
223          order by device,specification          order by device,specification,start
224          ";          ";
225    
226  my $sth = $dbh->prepare($sql) || die "sql: $sql ".$dbh->errstr;  my $sth = $dbh->prepare($sql) || die "sql: $sql ".$dbh->errstr;
# Line 278  while(my $row = $sth->fetchrow_hashref) Line 289  while(my $row = $sth->fetchrow_hashref)
289          $alt .= $row->{type}." <b>".$row->{status}."</b><br>".          $alt .= $row->{type}." <b>".$row->{status}."</b><br>".
290          $row->{user_group_host}." <i>".$row->{sessionid}."</i><br>".          $row->{user_group_host}." <i>".$row->{sessionid}."</i><br>".
291          $row->{device}."&nbsp;on&nbsp;".$row->{host};          $row->{device}."&nbsp;on&nbsp;".$row->{host};
292    $alt .= "-- ".$row->{specification};
293          print bar($len,$row->{status},$alt);          print bar($len,$row->{status},$alt);
294    
295          $curr_t += $len;          $curr_t += $len;

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.18

  ViewVC Help
Powered by ViewVC 1.1.26