getProjectCommon());
readLogs( );
#*****************************************************************************
#
# template.php
#
# Author: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse BIRT Home";
$pageKeywords = "";
$pageAuthor = "";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
# End: page-specific settings
#
$count = count($builds[RELEASE_BUILD][BUILD_NAME]);
$bld = $builds[RELEASE_BUILD][BUILD_NAME][$count - 1];
function releaseTable( $type )
{
global $builds;
$buildName = $builds[ $type ][ BUILD_NAME ];
$buildDir = $builds[ $type ][ BUILD_DIR ];
$buildDate = $builds[ $type ][ BUILD_DATE ];
$count = count( $buildName );
$rtnT = "";
$rtnT = $rtnT . "
| Build Name | Build Date |
";
if ( $count == 0 )
{
$rtnT = $rtnT . "| None | |
";
}
for ( $i = $count - 1; $i >= 0; $i-- )
{
$rtnT = $rtnT . "| {$buildName[ $i ]} | {$buildDate[ $i ]} |
";
}
$rtnT = $rtnT . "
";
return ($rtnT);
}
$lb_rb = latestBuild( RELEASE_BUILD );
$lb_mb = latestBuild( MILESTONE_BUILD );
$lb_nb = latestBuild( NIGHTLY_BUILD );
$lb_sb = latestBuild( STABLE_BUILD );
$rt_rb = releaseTable( RELEASE_BUILD );
$rt_mb = releaseTable( MILESTONE_BUILD );
$rt_nb = releaseTable( NIGHTLY_BUILD );
$rt_sb = releaseTable( STABLE_BUILD );
# Paste your HTML content between the EOHTML markers!
$html = <<
|
BIRT Downloads
Latest Downloads
This page lists the latest builds produced by
the BIRT project. Build terminology is defined on the
build types page.
If you have
problems downloading the drops, post a question on the BIRT Newsgroup.
| Build Type |
Build Name |
Build Date |
$lb_rb
$lb_mb
$lb_sb
$lb_nb
Latest Releases
Release builds are fully tested and are production ready.
$rt_rb
Milestone Builds
Milestone builds have undergone testing and are ready for wider
review. They are not production quality, but they allow you to see
the latest features. Please try them and provide feedback.
$rt_mb
Stable Builds
Stable builds are integration builds that have been found to be stable enough for most people
to use. They are promoted from integration build to stable build by the architecture
team after they have been used for a few days and deemed reasonably stable.
$rt_sb
Nightly Builds
Nightly builds are created automatically each night for the use of the BIRT
development team. Unless you're a BIRT
developer, you probably don't want these builds.
$rt_nb
|
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>