fix missing '/' in <>
This commit is contained in:
kestes%staff.mail.com 2000-08-30 02:30:34 +00:00
Родитель 66f5d5d555
Коммит d05396d68b
3 изменённых файлов: 19 добавлений и 7 удалений

Просмотреть файл

@ -7,8 +7,8 @@
# the build was and display a link to the build log.
# $Revision: 1.3 $
# $Date: 2000/08/24 14:51:47 $
# $Revision: 1.4 $
# $Date: 2000/08/30 02:29:36 $
# $Author: kestes%staff.mail.com $
# $Source: /home/hwine/cvs_conversion/cvsroot/mozilla/webtools/tinderbox2/src/lib/TinderDB/Build.pm,v $
# $Name: $
@ -189,6 +189,10 @@ push @TinderDB::HTML_COLUMNS, TinderDB::Build->new();
%STATUS = (
'not_running'=> {
# You may want this to be 'aqua' if you
# need to distinguish from 'building'
'html_color'=> 'yellow',
'hdml_char'=> '.',
'handler'=> \&main::null,
@ -597,6 +601,7 @@ sub status_table_legend {
# print all the possible links which can be included in a build
$out .=<<EOF;
<td align=right valign=top>
<table $TinderDB::LEGEND_BORDER>
<thead><tr>
<td align=right>Build</td>
@ -613,6 +618,7 @@ $out .=<<EOF;
<tr><td align=center><TT>Bl:XXX</TT></td>
<td>= (bytes allocated, bloat)</td></tr>
</table>
</td>
EOF
;
@ -637,12 +643,14 @@ EOF
}
$out .=<<EOF;
<td align=right valign=top>
<table $TinderDB::LEGEND_BORDER>
<thead>
<tr><td align=center>Build Cell Colors</td><tr>
<tr><td align=center>Build Cell Colors</td></tr>
</thead>
$state_rows
</table>
</td>
EOF
;

Просмотреть файл

@ -73,7 +73,7 @@ use Utils;
use HTMLPopUp;
use TinderDB::BasicTxtDB;
$VERSION = ( qw $Revision: 1.3 $ )[1];
$VERSION = ( qw $Revision: 1.4 $ )[1];
@ISA = qw(TinderDB::BasicTxtDB);
@ -99,10 +99,11 @@ sub status_table_legend {
# notice at this time.
$out .= <<EOF;
<td align=right valign=top>
<table $TinderDB::LEGEND_BORDER>
<thead><tr>
<td align=center>Notices</td>
<tr></thead>
</tr></thead>
<tr>
<td>Notice posted: </td>
<td align=center>$NOTICE_AVAILIBLE</td>
@ -112,6 +113,7 @@ sub status_table_legend {
<td align=center>$HTMLPopUp::EMPTY_TABLE_CELL</td>
</tr>
</table>
</td>
EOF
$out .= "\t\n";

Просмотреть файл

@ -46,7 +46,7 @@ package TinderDB::VC_Bonsai;
package TinderDB::VC;
$VERSION = ( qw $Revision: 1.1 $ )[1];
$VERSION = ( qw $Revision: 1.2 $ )[1];
@ISA = qw(TinderDB::BasicTxtDB);
@ -56,11 +56,12 @@ sub html_legend {
# print all the possible tree states in a cell with the color
$out .= "\t<td align=right valign=top>\n";
$out .= "\t<table>\n";
$out .= ("\t\t<thead><tr><td align=center>".
"VC Cell Colors".
"</td><tr></thead>\n");
"</td></tr></thead>\n");
foreach $state (keys %TinderConfig::TREE_STATE2COLOR) {
my $color = TinderConfig::TREE_STATE2COLOR{$state};
@ -69,6 +70,7 @@ sub html_legend {
}
$out .= "\t</table>\n";
$out .= "\t</td>\n";
return ($out);