Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-04-07 17:21:38 +0000
committerDavid Williams2016-04-07 19:13:03 +0000
commitcb0e62277667390c8d00bf85688c748e4cd8dcad (patch)
tree3b14f2707e5bd83ba588d817a5f3924d0eb4e18d
parent994acb6c24890b79deda03164ee800ffd6acba85 (diff)
downloadeclipse.platform.releng.aggregator-cb0e62277667390c8d00bf85688c748e4cd8dcad.tar.gz
eclipse.platform.releng.aggregator-cb0e62277667390c8d00bf85688c748e4cd8dcad.tar.xz
eclipse.platform.releng.aggregator-cb0e62277667390c8d00bf85688c748e4cd8dcad.zip
Bug 490973: restore table rules, fix xhtml errors
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/testResults.template.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/testResults.template.php b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/testResults.template.php
index af3174fda..f6a18d3f9 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/testResults.template.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/testResults.template.php
@@ -41,6 +41,7 @@ echo "<title>Test Results for $BUILD_ID</title>".PHP_EOL;
<style type="text/css">
<!--
P {text-indent: 30pt; margin: inherit}
+ tr:hover td { background-color: #CCCCFF; }
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
@@ -50,7 +51,7 @@ echo "<title>Test Results for $BUILD_ID</title>".PHP_EOL;
<link rel="stylesheet" type="text/css" href="<?php echo $csssource;?>/layout.css" media="screen" />
<link rel="stylesheet" type="text/css" href="<?php echo $csssource;?>/print.css" media="print" />
<script type="text/javascript">
-<![CDATA[
+//<![CDATA[
sfHover = function() {
var sfEls = document.getElementById("leftnav").getElementsByTagName("li");
for (var i=0; i<sfEls.length; i++) {
@@ -63,7 +64,7 @@ echo "<title>Test Results for $BUILD_ID</title>".PHP_EOL;
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
-]]>
+//]]>
</script>
</head>
<body>
@@ -198,7 +199,7 @@ if (file_exists("buildlogs/reporeports/index.html")) {
if needs to be integer, use ($a - ($a % $b)) / $b;
*/
$colWidth=$half / $ncolumns;
- echo "<table width='".$width."%' border='1' bgcolor='#EEEEEE' rules='groups' align='center'>\n";
+ echo "<table width='".$width."%' border='1' bgcolor='#EEEEEE' rules='rows' align='center'>\n";
echo "<tr bgcolor='#9999CC'>\n";
echo "<th rowspan='2' width='".$half."%' align='center'> org.eclipse <br /> Test Bundles </th>\n";
echo "<th colspan='".($ncolumns + 1)."' align='center'> Test Configurations (Hudson Job/os.ws.arch/VM) </th></tr>\n";
@@ -212,9 +213,10 @@ if (file_exists("buildlogs/reporeports/index.html")) {
if (file_exists("testResultRows.html")) {
include "testResultsRows.html";
-} else {
+ } else {
include "testResultsRowsPending.html";
-}
+ }
+
?>
</div>

Back to the top