/[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.17 by dpavlin, Sun Sep 15 19:17:37 2002 UTC revision 1.19 by dpavlin, Sun Sep 15 19:29:38 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 = 1;  my $debug = 0;
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 221  my $sql = "select start,finish,specifica Line 221  my $sql = "select start,finish,specifica
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,start          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 286  while(my $row = $sth->fetchrow_hashref) Line 286  while(my $row = $sth->fetchrow_hashref)
286          my $alt = $row->{start}." - ".$row->{finish}."<br>";          my $alt = $row->{start}." - ".$row->{finish}."<br>";
287          $alt =~ s/:\d\d\.\d+//g;          $alt =~ s/:\d\d\.\d+//g;
288          $alt =~ s/\s+/&nbsp;/g;          $alt =~ s/\s+/&nbsp;/g;
289          $alt .= $row->{type}." <b>".$row->{status}."</b><br>".          $alt .= $row->{specification}."<br>".
290          $row->{user_group_host}." <i>".$row->{sessionid}."</i><br>".                  $row->{type}." <b>".$row->{status}."</b><br>".
291          $row->{device}."&nbsp;on&nbsp;".$row->{host};                  $row->{user_group_host}." <i>".$row->{sessionid}."</i><br>".
292  $alt .= "-- ".$row->{specification};                  $row->{device}."&nbsp;on&nbsp;".$row->{host};
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.17  
changed lines
  Added in v.1.19

  ViewVC Help
Powered by ViewVC 1.1.26