diff --git a/archive/releng.builder/tools/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/ResultsSummaryGenerator.java b/archive/releng.builder/tools/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/ResultsSummaryGenerator.java
index 2ac52008c11cd84ad5424ffd70a803a43bc53080..75e9f656fcb764e49b48a1274b85d755b089e4ee 100644
--- a/archive/releng.builder/tools/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/ResultsSummaryGenerator.java
+++ b/archive/releng.builder/tools/org.eclipse.wtp.releng.tools/src/org/eclipse/wtp/releng/tools/ResultsSummaryGenerator.java
@@ -261,12 +261,16 @@ public class ResultsSummaryGenerator extends Task {
 			rowtype = "errortable";
 		}
 		else if (totalWarnings > 0) {
-			rowtype = "warntable";
+			rowtype = "warningtable";
+			if (totalWarnings > 200) {
+				rowtype = "extraWarningTable";
+			}
 		}
+		//
 		System.out.println("totalErrors: " + totalErrors); // ,
-															// Project.MSG_INFO);
 		//log("totalErrors: " + totalErrors, Project.MSG_INFO);
-		buffer.append("<tr CLASS=\"" + rowtype + "\">" + EOL + "<td>" + EOL)
+
+		buffer.append("<tr CLASS=\"" + rowtype + " " + "bold" + "\">" + EOL + "<td>" + EOL)
 		.append("TOTALS  (" + rowCount + ")")
 		.append("</td><td CLASS=\"numeric\">")
 		.append(totalErrors)
diff --git a/releng.wtpbuilder/distribution/wtp.site/templateFiles/compileResults.php.template b/releng.wtpbuilder/distribution/wtp.site/templateFiles/compileResults.php.template
index 262f21b921c1854b8f773e970b27dffc8105ed51..0c39570b7c87a8ae375d475381225c5941633450 100644
--- a/releng.wtpbuilder/distribution/wtp.site/templateFiles/compileResults.php.template
+++ b/releng.wtpbuilder/distribution/wtp.site/templateFiles/compileResults.php.template
@@ -6,16 +6,20 @@
 	$parts2 = explode("-", $parts[count($parts) - 1]);
 	$buildName = $parts2[1];
 	
-	echo "<title>Test Results for $buildName </title>";
+	echo "<title>Compile Logs: Code Bundles for $buildName</title>";
 ?>
 
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css">
 <style>
+.bold, .bold TD, .bold TH, .bold TR
+{
+font-weight:bold;
+}
 .numeric, .numeric TD
 {
 text-align:right;
-padding-right:2em;
+padding-right:2%;
 }
 .normaltable, .normaltable TD, .normaltable TH
 {
@@ -30,6 +34,7 @@ font-family:Bitstream Vera Sans Mono, monospace;
 font-size:0.9em;
 color:Black;
 background-color:Red;
+font-weight:bold;
 }
 .warningtable, .warningtable TD, .warningtable TH
 {
@@ -49,23 +54,17 @@ background-color:Yellow;
 </head>
 <body>
 
-<p><b><font face="Verdana" size="+3">Code Compile Results</font></b> </p>
-
-
+<?php
+	echo "<h1>Compile Logs: Code Bundles for $buildName</h1>";
+?>
 
-<table border=0 cellspacing=5 cellpadding=2 width="100%" >
-  <tr> 
-    <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Code Bundles</font></b></td>
-  </tr>
-</table>
 
-<table id=tabledata width="77%" border="1">
+<table id=tabledata align = "center" width="75%" border="1">
   <tr> 
-    <td><b>Compile Logs (Jar Files)</b></td>
-   
-    <td><b>Compile Errors</b></td>
-    <td><b>Access Violations</b></td>
-    <td><b>Compiler Warnings</b></td>
+    <td class="bold" align="center">Compile Logs</td>
+    <td class="bold" align="center">Compile Errors</td>
+    <td class="bold" align="center">Access Violations/ Warnings</td>
+    <td class="bold" align="center">Compiler Warnings</td>
   </tr>
   
   %compilelogs%
diff --git a/releng.wtpbuilder/distribution/wtp.site/templateFiles/index.html.template b/releng.wtpbuilder/distribution/wtp.site/templateFiles/index.html.template
index d2a12a50a7f3ab650d49fbbfd732261add2dee1c..49eb428c55d5b198b372aeac29f33761ee50b320 100644
--- a/releng.wtpbuilder/distribution/wtp.site/templateFiles/index.html.template
+++ b/releng.wtpbuilder/distribution/wtp.site/templateFiles/index.html.template
@@ -51,14 +51,14 @@ echo "<img src=\"http://download.eclipse.org/webtools/downloads/junit_err.gif\"/
 ?>
 
 
-<br> <a href="compileResults.php">Code Bundles Compile logs</a>
+<br> <a href="compileResults.php">Compile logs: Code Bundles</a>
 <?php
 echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_err.gif\"/><font color=red>$compileErrors</font>&nbsp;";
 echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_warn.gif\"/><font color=orange>$compileAccessWarnings</font>&nbsp;";
 echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_warn.gif\"/><font color=orange>$compileOtherWarnings</font>&nbsp;";
 ?>
 
-<br> <a href="testCompileResults.php">Test Bundles Compile logs</a>
+<br> <a href="testCompileResults.php">Compile logs: Test Bundles</a>
 <?php
 echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_err.gif\"/><font color=red>$testCompileErrors</font>&nbsp;";
 echo "<img src=\"http://download.eclipse.org/webtools/downloads/compile_warn.gif\"/><font color=orange>$testCompileAccessWarnings</font>&nbsp;";
diff --git a/releng.wtpbuilder/distribution/wtp.site/templateFiles/testCompileResults.php.template b/releng.wtpbuilder/distribution/wtp.site/templateFiles/testCompileResults.php.template
index 9db736126b9cf297413d6c7f49f982d48425ee25..da8bcb96c612beac6393e8e8f6f143af92ef75c9 100644
--- a/releng.wtpbuilder/distribution/wtp.site/templateFiles/testCompileResults.php.template
+++ b/releng.wtpbuilder/distribution/wtp.site/templateFiles/testCompileResults.php.template
@@ -6,12 +6,16 @@
 	$parts2 = explode("-", $parts[count($parts) - 1]);
 	$buildName = $parts2[1];
 	
-	echo "<title>Test Bundle Compile Results for $buildName </title>";
+	echo "<title>Compile Logs: Test Bundles for $buildName</title>";
 ?>
 
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css">
 <style>
+.bold, .bold TD, .bold TH, .bold TR
+{
+font-weight:bold;
+}
 .numeric, .numeric TD
 {
 text-align:right;
@@ -30,6 +34,7 @@ font-family:Bitstream Vera Sans Mono, monospace;
 font-size:0.9em;
 color:Black;
 background-color:Red;
+font-weight:Bold;
 }
 .warningtable, .warningtable TD, .warningtable TH
 {
@@ -45,25 +50,21 @@ font-size:0.9em;
 color:Black;
 background-color:Yellow;
 }
-
 </style>
 </head>
 <body>
-<p><b><font face="Verdana" size="+3">Test Plugin Compile Results</font></b> </p>
 
+<?php
+	echo "<h1>Compile Logs: Test Bundles for $buildName</h1>";
+?>
 
-<table border=0 cellspacing=5 cellpadding=2 width="100%" >
-  <tr> 
-    <td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"><b><font color="#FFFFFF" face="Arial,Helvetica">Test Bundles</font></b></td>
-  </tr>
-</table>
 
-<table id=tabledata width="77%" border="1">
+<table id=tabledata align = "center" width="75%" border="1">
   <tr> 
-    <td><b>Compile Logs (Jar Files)</b></td>
-    <td><b>Compile Errors</b></td>
-    <td><b>Access Violations</b></td>
-    <td><b>Compiler Warnings</b></td>
+    <td class="bold" align="center">Compile Logs</td>
+    <td class="bold" align="center">Compile Errors</td>
+    <td class="bold" align="center">Access Violations/ Warnings</td>
+    <td class="bold" align="center">Compiler Warnings</td>
   </tr>
   
   %compilelogs%