Build Notes for $buildType $buildName ";
?>
Build Notes
read()) {
if ($anEntry != "." && $anEntry != "..") {
$parts = explode("_", $anEntry);
$baseName = $parts[1];
$parts = explode(".", $baseName);
$component = $parts[0];
$line = "Component: $component | ";
echo "";
echo "$line";
echo "
";
$hasNotes = true;
}
}
aDirectory.closedir();
if (!$hasNotes) {
echo "
There are no build notes for this build.";
}
?>