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

cleanup and standardize

parent f55c8bb6
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,8 @@ include_once("miscUtil.php"); ...@@ -9,6 +9,8 @@ include_once("miscUtil.php");
$build_distribution="@build_distribution@"; $build_distribution="@build_distribution@";
$displayBuildNotes=false;
$buildBranch="@buildBranch@"; $buildBranch="@buildBranch@";
$build="@build@"; $build="@build@";
$type="@type@"; $type="@type@";
......
...@@ -653,11 +653,14 @@ else { ...@@ -653,11 +653,14 @@ else {
<table border=0 cellspacing=2 cellpadding=2 width="90%" align="center"> <table border=0 cellspacing=2 cellpadding=2 width="90%" align="center">
<tr> <tr>
<td><!-- <td>
Its silly to always display 'Build notes', but hard to <?php
compute if required or not. if (isset($displayBuildNotes) && $displayBuildNotes) {
<a href="buildNotes.php">Build notes</a> <br /> echo "<a href=\"buildNotes.php\">Build notes</a> <br />";
--> <a href="directory.txt">map files</a> <br /> }
?>
<a href="directory.txt">map files</a> <br />
<?php <?php
if (file_exists("components")) { if (file_exists("components")) {
......
...@@ -9,7 +9,7 @@ include_once("miscUtil.php"); ...@@ -9,7 +9,7 @@ include_once("miscUtil.php");
$build_distribution="@build_distribution@"; $build_distribution="@build_distribution@";
$displayBuildNotes="true"; $displayBuildNotes=true;
$buildBranch="@buildBranch@"; $buildBranch="@buildBranch@";
$build="@build@"; $build="@build@";
......
...@@ -655,7 +655,12 @@ else { ...@@ -655,7 +655,12 @@ else {
<tr> <tr>
<td> <td>
<a href="buildNotes.php">Build notes</a> <br /> <?php
if (isset($displayBuildNotes) && $displayBuildNotes) {
echo "<a href=\"buildNotes.php\">Build notes</a> <br />";
}
?>
<a href="directory.txt">map files</a> <br /> <a href="directory.txt">map files</a> <br />
<?php <?php
......
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