diff options
| author | Markus Keller | 2016-04-07 17:21:38 +0000 |
|---|---|---|
| committer | David Williams | 2016-04-07 19:13:03 +0000 |
| commit | cb0e62277667390c8d00bf85688c748e4cd8dcad (patch) | |
| tree | 3b14f2707e5bd83ba588d817a5f3924d0eb4e18d | |
| parent | 994acb6c24890b79deda03164ee800ffd6acba85 (diff) | |
| download | eclipse.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
Change-Id: I3bb73afebfbafbc4347948ae0bb0407eb60d89eb
| -rw-r--r-- | eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/testResults.template.php | 12 |
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> |
