*** empty log message ***
diff --git a/downloads/_index.html b/downloads/_index.html
index b327f29..ef36e48 100644
--- a/downloads/_index.html
+++ b/downloads/_index.html
@@ -2,7 +2,7 @@
<hr>
-<h2>Latest Version: @RELEASE_VERSION@</h2>
+<h2>Latest Version: @RELEASE_PREFIX@@RELEASE_VERSION@ | Date: @RELEASE_DATE@</h2>
<p>OSEE consists of an application server and a standard eclipse update site.</p>
<ul>
<li>
diff --git a/downloads/index.php b/downloads/index.php
index 9e399cd..de02db1 100644
--- a/downloads/index.php
+++ b/downloads/index.php
@@ -13,9 +13,11 @@
$pageKeywords = "OSEE, Open, System, Engineering, Environment, Eclipse, Define, ATS, OTE, Application Framework";
$pageAuthor = "Roberto E. Escobar";
+ $release_prefix = "Milestone Build";
+ $release_date = "19 May 2010";
$release_version = "0.9.4";
- $externalDownloadsSite = "http://osee.microdoc.com/node/2";
- $configandargs="documentation/configuration/configandargs.php";
+ $external_downloads_site = "http://osee.microdoc.com/node/2";
+ $config_args="http://wiki.eclipse.org/OSEE/Developers_Guide#Configuration_Properties";
#*****************************************************************************
@@ -23,9 +25,11 @@
$html .= file_get_contents('_index.html');
$html .= "</div>";
+ $html = preg_replace('/@RELEASE_PREFIX@/', $release_prefix, $html);
+ $html = preg_replace('/@RELEASE_DATE@/', $release_date, $html);
$html = preg_replace('/@RELEASE_VERSION@/', $release_version, $html);
- $html = preg_replace('/@EXTERNAL_DOWNLOADS_SITE@/', $externalDownloadsSite, $html);
- $html = preg_replace('/@CONFIG_AND_ARGS@/', $configandargs, $html);
+ $html = preg_replace('/@EXTERNAL_DOWNLOADS_SITE@/', $external_downloads_site, $html);
+ $html = preg_replace('/@CONFIG_AND_ARGS@/', $config_args, $html);
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);