Skip to content
Snippets Groups Projects
Commit bec2ec5f authored by david_williams's avatar david_williams
Browse files

fix graphic relative references

parent f50dfcc2
No related branches found
No related tags found
No related merge requests found
......@@ -40,38 +40,38 @@
</tr>
<tr>
<td valign="top"><img src="../compile_err.gif" width="16"
<td valign="top"><img src="compile_err.gif" width="16"
height="16" /></td>
<td valign="top" width="50%">compilation errors.</td>
<td valign="top"><img src="../compile_warn.gif" width="16"
<td valign="top"><img src="compile_warn.gif" width="16"
height="16" /></td>
<td valign="top" width="50%">compilation warnings.</td>
</tr>
<tr>
<td valign="top"><img src="../access_err.gif" width="16"
<td valign="top"><img src="access_err.gif" width="16"
height="16" /></td>
<td valign="top" width="50%">Access Rule Violations</td>
<td valign="top"><img src="../access_warn.gif" width="16"
<td valign="top"><img src="access_warn.gif" width="16"
height="16" /></td>
<td valign="top" width="50%">Access Rule Warnings</td>
</tr>
<tr>
<td valign="top"><img src="../junit_err.gif" width="16"
<td valign="top"><img src="junit_err.gif" width="16"
height="16" /></td>
<td valign="top" width="50%">junit failures.</td>
<td valign="top"><img src="../pending1.gif" width="16" height="16" /></td>
<td valign="top"><img src="pending1.gif" width="16" height="16" /></td>
<td valign="top" width="50%">Pending results</td>
</tr>
<tr>
<td valign="top"><img src="../api_err.gif" width="16" height="16" /></td>
<td valign="top"><img src="api_err.gif" width="16" height="16" /></td>
<td valign="top" width="50%">API violations.</td>
<td valign="top"><img src="../api_junit.gif" width="16"
<td valign="top"><img src="api_junit.gif" width="16"
height="16" /></td>
<td valign="top" width="50%">APIs without junit testcases.</td>
</tr>
<tr>
<td valign="top"><img src="../api_removed.gif" width="16"
<td valign="top"><img src="api_removed.gif" width="16"
height="16" /></td>
<td valign="top" width="50%">removed APIs.</td>
</tr>
......
......@@ -53,18 +53,18 @@ $totalForbidden = $code_totalforbiddenAccessWarningCount + $test_totalforbiddenA
$totalDiscouraged = $code_totaldiscouragedAccessWarningCount + $test_totaldiscouragedAccessWarningCount;
echo "<td width=\"6%\">($totalBundles)</td>";
echo "<td width=\"6%\"><img src=\"../compile_err.gif\" width=\"16\" height=\"16\"/><font color=red>$totalCommpileErrors</font></td>";
echo "<td width=\"6%\"><img src=\"../compile_warn.gif\" width=\"16\" height=\"16\"/><font color=orange>$totalCompileOtherWarnings</font></td>";
echo "<td width=\"6%\"><img src=\"../access_err.gif\" width=\"16\" height=\"16\"/><font color=red>$totalForbidden</font></td>";
echo "<td width=\"6%\"><img src=\"../access_warn.gif\" width=\"16\" height=\"16\"/><font color=orange>$totalDiscouraged</font></td>";
echo "<td width=\"6%\"><img src=\"compile_err.gif\" width=\"16\" height=\"16\"/><font color=red>$totalCommpileErrors</font></td>";
echo "<td width=\"6%\"><img src=\"compile_warn.gif\" width=\"16\" height=\"16\"/><font color=orange>$totalCompileOtherWarnings</font></td>";
echo "<td width=\"6%\"><img src=\"access_err.gif\" width=\"16\" height=\"16\"/><font color=red>$totalForbidden</font></td>";
echo "<td width=\"6%\"><img src=\"access_warn.gif\" width=\"16\" height=\"16\"/><font color=orange>$totalDiscouraged</font></td>";
if (isset($unittest_grandTotalErrors)) {
echo "<td width=\"6%\"><img src=\"../junit_err.gif\" width=\"16\" height=\"16\"/><font color=red>$unittest_grandTotalErrors</font></td>";
echo "<td width=\"6%\"><img src=\"junit_err.gif\" width=\"16\" height=\"16\"/><font color=red>$unittest_grandTotalErrors</font></td>";
echo "<td width=\"6%\">($unittest_grandTotalTests)</td>";
}
else {
echo "<td width=\"6%\"><img src=\"../pending.gif\" width=\"16\" height=\"16\"/></td>";
echo "<td width=\"6%\"><img src=\"../pending.gif\" width=\"16\" height=\"16\"/></td>";
echo "<td width=\"6%\"><img src=\"pending.gif\" width=\"16\" height=\"16\"/></td>";
echo "<td width=\"6%\"><img src=\"pending.gif\" width=\"16\" height=\"16\"/></td>";
}
......
......@@ -13,13 +13,13 @@ $totalAccessWarnings = $compileAccessWarnings;
$totalCompileOtherWarnings = $compileOtherWarnings;
echo "<td width=\"6%\">&nbsp;</td>";
echo "<td width=\"6%\"><img src=\"../compile_err.gif\" width=\"16\" height=\"16\"/><font color=red>$totalCommpileErrors</font></td>";
echo "<td width=\"6%\"><img src=\"../compile_warn.gif\" width=\"16\" height=\"16\"/><font color=orange>$totalCompileOtherWarnings</font></td>";
echo "<td width=\"6%\"><img src=\"compile_err.gif\" width=\"16\" height=\"16\"/><font color=red>$totalCommpileErrors</font></td>";
echo "<td width=\"6%\"><img src=\"compile_warn.gif\" width=\"16\" height=\"16\"/><font color=orange>$totalCompileOtherWarnings</font></td>";
if ($junitFailures < 0) {
echo "<td width=\"6%\"><img src=\"../pending.gif\" width=\"16\" height=\"16\"/><font color=red>&nbsp;</font></td>";
echo "<td width=\"6%\"><img src=\"pending.gif\" width=\"16\" height=\"16\"/><font color=red>&nbsp;</font></td>";
}
else {
echo "<td width=\"6%\"><img src=\"../junit_err.gif\" width=\"16\" height=\"16\"/><font color=red>$junitFailures</font></td>";
echo "<td width=\"6%\"><img src=\"junit_err.gif\" width=\"16\" height=\"16\"/><font color=red>$junitFailures</font></td>";
}
?>
\ No newline at end of file
......@@ -4,8 +4,8 @@ $testResults = parse_testResult("$innerValue/testResults.php");
list ($compileErrors, $compileWarnings, $junitFailures) = $testResults;
echo "<td width=\"6%\">&nbsp;</td>";
echo "<td width=\"6%\"><img src=\"../compile_err.gif\" width=\"16\" height=\"16\"/><font color=red>$compileErrors</font></td>";
echo "<td width=\"6%\"><img src=\"../compile_warn.gif\" width=\"16\" height=\"16\"/><font color=orange>$compileWarnings</font></td>";
echo "<td width=\"6%\"><img src=\"../junit_err.gif\" width=\"16\" height=\"16\"/><font color=red>$junitFailures</font></td>";
echo "<td width=\"6%\"><img src=\"compile_err.gif\" width=\"16\" height=\"16\"/><font color=red>$compileErrors</font></td>";
echo "<td width=\"6%\"><img src=\"compile_warn.gif\" width=\"16\" height=\"16\"/><font color=orange>$compileWarnings</font></td>";
echo "<td width=\"6%\"><img src=\"junit_err.gif\" width=\"16\" height=\"16\"/><font color=red>$junitFailures</font></td>";
?>
\ No newline at end of file
......@@ -6,7 +6,7 @@
<td width="35%"><?php echo $indexTop; ?></td>
<td width="35%" align="right"><a
href="http://www.eclipse.org/webtools/main.php"><img border="0"
src="../wtplogonarrow.jpg" height="95" width="207" /></a></td>
src="wtplogonarrow.jpg" height="95" width="207" /></a></td>
</tr>
</table>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment