/[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.16 by dpavlin, Sat Sep 14 21:45:23 2002 UTC revision 1.17 by dpavlin, Sun Sep 15 19:17:37 2002 UTC
# Line 8  use CGI qw/:standard/; Line 8  use CGI qw/:standard/;
8  use CGI::Carp qw(fatalsToBrowser);  use CGI::Carp qw(fatalsToBrowser);
9  use POSIX qw(strftime);  use POSIX qw(strftime);
10    
11  my $debug = 0;  my $debug = 1;
12    
13  my $width = 600;        # width of bar  my $width = 600;        # width of bar
14  my $height = 19;        # height of bar  my $height = 19;        # height of bar
# 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/Failures'  => '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 220  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;
227    
# Line 289  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.16  
changed lines
  Added in v.1.17

  ViewVC Help
Powered by ViewVC 1.1.26