$pageTitle
Older releases are available in the Equinox archived builds site.
Latest Builds
EOHTML;
foreach($dropType as $value) {
$prefix=$typeToPrefix[$value];
if (array_key_exists($prefix, $latestFile)) {
$fileName = $latestFile[$prefix];
$parts = explode("-", $fileName);
// Uncomment the line below if we need click through licenses.
// echo "$parts[1] | ";
// Comment the line below if we need click through licenses.
if (count($parts)==3)
$html .= <<
$parts[1] |
EOHTML;
if (count($parts)==2)
$html .= <<
$fileName |
EOHTML;
$html .= <<$value
$timeStamps[$fileName] |
EOHTML;
}
}
$html .= <<
EOHTML;
foreach($dropType as $value) {
$prefix=$typeToPrefix[$value];
$html .= <<$value
EOHTML;
if (array_key_exists($prefix,$buckets)) {
$aBucket = $buckets[$prefix];
if (isset($aBucket)) {
krsort($aBucket);
foreach($aBucket as $innerValue) {
$parts = explode("-", $innerValue);
$html .= <<
EOHTML;
// Uncomment the line below if we need click through licenses.
// echo "$parts[1] | ";
// Comment the line below if we need click through licenses.
if (count ($parts)==3)
$html .= <<$parts[1]
EOHTML;
if (count ($parts)==2)
$html .= <<$innerValue
EOHTML;
$html .= <<$timeStamps[$innerValue]
EOHTML;
}
}
}
$html .= <<
EOHTML;
}
$html .= <<
EOHTML;
generateRapPage( $App, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html );
?>