summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-10-02 15:38:12 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-10-02 15:38:12 +0000
commitf643e2d787877295a0f0c7c7c973757bccfc2f3b (patch)
tree0c2d1662105861e02f6f826541219e361ef873b7
parent37303eb6201aabf4117a858433d1862f2157233c (diff)
#i10000# fs\'s fixes for Firefox3
-rw-r--r--solenv/bin/build.pl22
1 files changed, 14 insertions, 8 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl
index ce12b65e5174..622c88e50d27 100644
--- a/solenv/bin/build.pl
+++ b/solenv/bin/build.pl
@@ -2742,16 +2742,22 @@ sub generate_html_file {
print HTML '\', \'\')\"); title=\"';
print HTML scalar keys %modules_with_errors;
print HTML ' module(s) with errors\">Total Progress:</a></td>");' . "\n";
- print HTML 'document.write(" <td height=8* width=';
+ print HTML 'document.write(" <td>");' . "\n";
+ print HTML 'document.write(" <table width=100px valign=top cellpadding=0 hspace=0 vspace=0 cellspacing=0 border=0>");' . "\n";
+ print HTML 'document.write(" <tr>");' . "\n";
+ print HTML 'document.write(" <td height=20px width=';
print HTML $successes_percent + $errors_percent;
if (scalar keys %modules_with_errors) {
- print HTML '* bgcolor=red valign=top></td>");' . "\n";
+ print HTML '% bgcolor=red valign=top></td>");' . "\n";
} else {
- print HTML '* bgcolor=#25A528 valign=top></td>");' . "\n";
+ print HTML '% bgcolor=#25A528 valign=top></td>");' . "\n";
};
- print HTML 'document.write(" <td width=';
+ print HTML 'document.write(" <td width=';
print HTML 100 - ($successes_percent + $errors_percent);
- print HTML '* bgcolor=lightgrey valign=top></td>");' . "\n";
+ print HTML '% bgcolor=lightgrey valign=top></td>");' . "\n";
+ print HTML 'document.write(" </tr>");' . "\n";
+ print HTML 'document.write(" </table>");' . "\n";
+ print HTML 'document.write(" </td>");' . "\n";
print HTML 'document.write(" <td align=right>&nbsp Build time: ' . $build_duration .'</td>");' . "\n";
print HTML 'document.write(" </tr>");' . "\n";
print HTML 'document.write("</table>");' . "\n";
@@ -2795,14 +2801,14 @@ sub generate_html_file {
print HTML $successes_percent + $errors_percent;
if ($errors_number) {
- print HTML '* bgcolor=red valign=top></td>");' . "\n";
+ print HTML '% bgcolor=red valign=top></td>");' . "\n";
} else {
- print HTML '* bgcolor=#25A528 valign=top></td>");' . "\n";
+ print HTML '% bgcolor=#25A528 valign=top></td>");' . "\n";
};
print HTML 'document.write(" <td width=';
print HTML 100 - ($successes_percent + $errors_percent);
- print HTML '* bgcolor=lightgrey valign=top></td>");' . "\n";
+ print HTML '% bgcolor=lightgrey valign=top></td>");' . "\n";
print HTML 'document.write(" </tr>");' . "\n";
print HTML 'document.write(" </table>");' . "\n";
print HTML 'document.write(" </td>");' . "\n";