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