mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
fix typo in header generation.
take out the <p> in the info, it makes the windows too big. also increase the window sizing algorithm for the headers to be compatible with what I do for the build.
This commit is contained in:
parent
efba48a312
commit
259da77fdc
@ -7,8 +7,8 @@
|
||||
# the build was and display a link to the build log.
|
||||
|
||||
|
||||
# $Revision: 1.15 $
|
||||
# $Date: 2001/03/01 18:42:30 $
|
||||
# $Revision: 1.16 $
|
||||
# $Date: 2001/03/19 23:32:43 $
|
||||
# $Author: kestes%tradinglinx.com $
|
||||
# $Source: /home/hwine/cvs_conversion/cvsroot/mozilla/webtools/tinderbox2/src/lib/TinderDB/Build.pm,v $
|
||||
# $Name: $
|
||||
@ -611,7 +611,6 @@ sub status_table_header {
|
||||
$num_lines++;
|
||||
}
|
||||
|
||||
$txt .= "<p>";
|
||||
$num_lines++;
|
||||
|
||||
if ($avg_buildtime) {
|
||||
@ -628,7 +627,6 @@ sub status_table_header {
|
||||
$num_lines++;
|
||||
}
|
||||
|
||||
$txt .= "<p>";
|
||||
$num_lines++;
|
||||
|
||||
my $estimated_remaining = undef;
|
||||
@ -685,7 +683,7 @@ sub status_table_header {
|
||||
"windowtxt"=>$txt,
|
||||
"windowtitle" => $title,
|
||||
"linktxt"=>$buildname,
|
||||
"windowheight" => (25 * $num_lines),
|
||||
"windowheight" => (25 * $num_lines)+100,
|
||||
"href"=>"",
|
||||
);
|
||||
|
||||
@ -804,7 +802,7 @@ sub apply_db_updates {
|
||||
($record->{'starttime'} == $previous_rec->{'starttime'})
|
||||
) {
|
||||
|
||||
if (BuildStatus::is_status_final($previou_rec->{'status'})) {
|
||||
if (BuildStatus::is_status_final($previous_rec->{'status'})) {
|
||||
# Ignore the new entry if old entry was final.
|
||||
next;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user