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

cleanup and standardize

parent 82c4780e
No related branches found
No related tags found
No related merge requests found
......@@ -28,15 +28,16 @@ $hasNotes = false;
$aDirectory = dir("buildnotes");
while ($anEntry = $aDirectory->read()) {
if ($anEntry != "." && $anEntry != "..") {
$parts = explode("_", $anEntry);
$baseName = $parts[1];
$parts = explode(".", $baseName);
$component = $parts[0];
$nameprefixlen=strlen("buildnotes_");
$baseName = substr($anEntry,$nameprefixlen);
$extpos=strrpos($baseName,".html");
$component=substr($baseName,0,$extpos);
$line = "<td>Component: <a href=\"buildnotes/$anEntry\">$component</a></td>";
echo "<tr>";
echo "$line";
echo "</tr>";
$hasNotes = true;
}
}
$aDirectory.closedir();
......
......@@ -9,6 +9,8 @@ include_once("miscUtil.php");
$build_distribution="@build_distribution@";
$displayBuildNotes=false;
$buildBranch="@buildBranch@";
$build="@build@";
$type="@type@";
......
<html>
<head>
<?php
$parts = explode("/", getcwd());
$parts2 = explode("-", $parts[count($parts) - 1]);
$buildName = $parts2[1];
echo "<title>Compile Logs: Code Bundles for $buildName</title>";
?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.bold, .bold TD, .bold TH, .bold TR
{
font-weight:bold;
}
.numeric, .numeric TD
{
text-align:right;
padding-right:2%;
}
.normaltable, .normaltable TD, .normaltable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:White;
}
.errorltable, .errortable TD, .errortable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:Red;
font-weight:bold;
}
.warningtable, .warningtable TD, .warningtable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:khaki;
}
.extraWarningTable, .extraWarningTable TD, .extraWarningTable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:Yellow;
}
</style>
</head>
<body>
<?php
echo "<h1>Compile Logs: Code Bundles for $buildName</h1>";
?>
<table id=tabledata align = "center" width="75%" border="1">
<tr>
<td class="bold" align="center">Compile Logs</td>
<td class="bold" align="center">Compile Errors</td>
<td class="bold" align="center">Compiler Warnings</td>
<td class="bold" align="center">Access Violations</td>
<td class="bold" align="center">Access Warnings</td>
</tr>
%compilelogs%
</table>
</body>
</html>
<html>
<head>
<?php
$parts = explode("/", getcwd());
$parts2 = explode("-", $parts[count($parts) - 1]);
$buildName = $parts2[1];
echo "<title>Compile Logs: Code Bundles for $buildName</title>";
?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.bold, .bold TD, .bold TH, .bold TR
{
font-weight:bold;
}
.numeric, .numeric TD
{
text-align:right;
padding-right:2%;
}
.normaltable, .normaltable TD, .normaltable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:White;
}
.errorltable, .errortable TD, .errortable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:Red;
font-weight:bold;
}
.warningtable, .warningtable TD, .warningtable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:khaki;
}
.extraWarningTable, .extraWarningTable TD, .extraWarningTable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:Yellow;
}
</style>
</head>
<body>
<?php
echo "<h1>Compile Logs: Code Bundles for $buildName</h1>";
?>
<table id=tabledata align = "center" width="75%" border="1">
<tr>
<td class="bold" align="center">Compile Logs</td>
<td class="bold" align="center">Compile Errors</td>
<td class="bold" align="center">Compiler Warnings</td>
<td class="bold" align="center">Access Violations</td>
<td class="bold" align="center">Access Warnings</td>
</tr>
%compilelogs%
</table>
</body>
</html>
<html>
<head>
<?php
$parts = explode("/", getcwd());
$parts2 = explode("-", $parts[count($parts) - 1]);
$buildName = $parts2[1];
echo "<title>Compile Logs: Test Bundles for $buildName</title>";
?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.bold, .bold TD, .bold TH, .bold TR
{
font-weight:bold;
}
.numeric, .numeric TD
{
text-align:right;
padding-right:2em;
}
.normaltable, .normaltable TD, .normaltable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:White;
}
.errorltable, .errortable TD, .errortable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:Red;
font-weight:Bold;
}
.warningtable, .warningtable TD, .warningtable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:khaki;
}
.extraWarningTable, .extraWarningTable TD, .extraWarningTable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:Yellow;
}
</style>
</head>
<body>
<?php
echo "<h1>Compile Logs: Test Bundles for $buildName</h1>";
?>
<table id=tabledata align = "center" width="75%" border="1">
<tr>
<td class="bold" align="center">Compile Logs</td>
<td class="bold" align="center">Compile Errors</td>
<td class="bold" align="center">Compiler Warnings</td>
<td class="bold" align="center">Access Violations</td>
<td class="bold" align="center">Access Warnings</td>
</tr>
%compilelogs%
</table>
</body>
</html>
<html>
<head>
<?php
$parts = explode("/", getcwd());
$parts2 = explode("-", $parts[count($parts) - 1]);
$buildName = $parts2[1];
echo "<title>Compile Logs: Test Bundles for $buildName</title>";
?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.bold, .bold TD, .bold TH, .bold TR
{
font-weight:bold;
}
.numeric, .numeric TD
{
text-align:right;
padding-right:2em;
}
.normaltable, .normaltable TD, .normaltable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:White;
}
.errorltable, .errortable TD, .errortable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:Red;
font-weight:Bold;
}
.warningtable, .warningtable TD, .warningtable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:khaki;
}
.extraWarningTable, .extraWarningTable TD, .extraWarningTable TH
{
font-family:Bitstream Vera Sans Mono, monospace;
font-size:0.9em;
color:Black;
background-color:Yellow;
}
</style>
</head>
<body>
<?php
echo "<h1>Compile Logs: Test Bundles for $buildName</h1>";
?>
<table id=tabledata align = "center" width="75%" border="1">
<tr>
<td class="bold" align="center">Compile Logs</td>
<td class="bold" align="center">Compile Errors</td>
<td class="bold" align="center">Compiler Warnings</td>
<td class="bold" align="center">Access Violations</td>
<td class="bold" align="center">Access Warnings</td>
</tr>
%compilelogs%
</table>
</body>
</html>
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