diff --git a/webtools/tinderbox2/src/default_conf/TinderConfig.pm b/webtools/tinderbox2/src/default_conf/TinderConfig.pm index 2626d48d315b..45e798143601 100644 --- a/webtools/tinderbox2/src/default_conf/TinderConfig.pm +++ b/webtools/tinderbox2/src/default_conf/TinderConfig.pm @@ -5,8 +5,8 @@ # customizable settings. -# $Revision: 1.40 $ -# $Date: 2002/05/03 19:43:58 $ +# $Revision: 1.41 $ +# $Date: 2002/05/03 21:09:55 $ # $Author: kestes%walrus.com $ # $Source: /home/hwine/cvs_conversion/cvsroot/mozilla/webtools/tinderbox2/src/default_conf/TinderConfig.pm,v $ # $Name: $ @@ -141,8 +141,8 @@ $PopUpImpl = ( # you are a first time user you may find that setting this to " " # is clearer. -#$EMPTY_TABLE_CELL = " "; -$EMPTY_TABLE_CELL = ""; +$EMPTY_TABLE_CELL = " "; +#$EMPTY_TABLE_CELL = ""; # Use the DB implementations you wish to use. diff --git a/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm b/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm index b0cac33dac46..2b70b269e73e 100755 --- a/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm +++ b/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm @@ -40,8 +40,8 @@ # Contributor(s): -# $Revision: 1.28 $ -# $Date: 2002/05/03 03:38:44 $ +# $Revision: 1.29 $ +# $Date: 2002/05/03 21:09:51 $ # $Author: kestes%walrus.com $ # $Source: /home/hwine/cvs_conversion/cvsroot/mozilla/webtools/tinderbox2/src/lib/TinderDB/VC_Bonsai.pm,v $ # $Name: $ @@ -101,7 +101,7 @@ use TreeData; use VCDisplay; -$VERSION = ( qw $Revision: 1.28 $ )[1]; +$VERSION = ( qw $Revision: 1.29 $ )[1]; @ISA = qw(TinderDB::BasicTxtDB); @@ -112,6 +112,8 @@ $VC_NAME = $TinderConfig::VC_NAME || "CVS"; $VC_BUGNUM_REGEXP = $TinderConfig::VC_BUGNUM_REGEXP || "(\d\d\d+)"; +$EMPTY_TABLE_CELL = $HTMLPopUp::EMPTY_TABLE_CELL || + # remove all records from the database which are older then last_time. sub trim_db_history { @@ -346,6 +348,7 @@ sub status_table_start { } $LAST_TREESTATE = ''; + $NEXT_ROW{$tree} = 0; return ; } @@ -359,6 +362,75 @@ sub status_table_row { my (@outrow) = (); + # skip this column because it is part of a multi-row missing data + # cell? + + if ( $NEXT_ROW{$tree} != $row_index ) { + + push @outrow, ("\t\n"); + return @outrow; + } + + # If there is no treestate, then the tree state has not changed + # since an early time. The earliest time was assigned a state in + # apply_db_updates(). It is possible that there are no treestates at + # all this should not prevent the VC column from being rendered. + + if (!($LAST_TREESTATE)) { + $LAST_TREESTATE = $TinderHeader::HEADER2DEFAULT_HTML{'TreeState'}; + } + + my ($cell_color) = TreeData::TreeState2color($LAST_TREESTATE); + my ($char) = TreeData::TreeState2char($LAST_TREESTATE); + + my $cell_options; + my $text_browser_color_string; + + if ( ($LAST_TREESTATE) && ($cell_color) ) { + $cell_options = "bgcolor=$cell_color "; + + $text_browser_color_string = + HTMLPopUp::text_browser_color_string($cell_color, $char); + } + + # create a multi-row dummy cell for missing data? + + if ( $DB_TIMES[$NEXT_DB] < $row_times->[$row_index] ) { + + my ($rowspan) = 1; + while ( + ( ($row_index + $rowspan) <= $#{$row_times}) && + ( $DB_TIMES[$NEXT_DB] < + $row_times->[$row_index + $rowspan] ) + ) { + $rowspan++ ; + } + + my ($cell_color) = BuildStatus::status2html_colors('not_running'); + my ($cell_options) = ("rowspan=$rowspan ". + "bgcolor=$cell_color "); + my ($lc_time) = localtime($current_rec->{'timenow'}); + + push @outrow, ("\t\n". + + "\t\t