*** empty log message ***
diff --git a/downloads/_index.html b/downloads/_index.html
index 042851d..1ec6a73 100644
--- a/downloads/_index.html
+++ b/downloads/_index.html
@@ -29,8 +29,9 @@
<h2>Latest Version: @RELEASE_VERSION@</h2>
<ul>
-<li>Client Update Site: <a href="http://www.eclipse.org/downloads/download.php?file=/technology/osee/builds/@RELEASE_VERSION@/client_update_site/osee_client-update_incubation-N-Snapshot.zip">OSEE Client Incubation Update Site</a> (Recommended)</li>
-<li>Add-on Feature - <a href="http://osee-external.googlecode.com/files/postgresql_0.9.1_incubation.zip">PostgreSQL Driver Feature</a> (Add PostgreSQL Driver)</li>
+<li>Client Update Site: <a href="http://www.eclipse.org/downloads/download.php?file=/technology/osee/builds/@RELEASE_VERSION@/downloads/osee_client-update_incubation-N-Snapshot.zip">OSEE Client Incubation Update Site</a></li>
+<li>Server Update Site: <a href="http://www.eclipse.org/downloads/download.php?file=/technology/osee/builds/@RELEASE_VERSION@/downloads/osee_server-update-incubation-N-Snapshot.zip">OSEE Server Incubation Update Site</a></li>
+<li>Add-on Feature - <a href="@POSTGRES_BUNDLE@">PostgreSQL Driver Bundle</a> (Add PostgreSQL Driver)</li>
<li>Application Server:
<ul>
<li><a href="http://www.eclipse.org/downloads/download.php?file=/technology/osee/builds/@RELEASE_VERSION@/osee_server-osgi-runtime-incubation-N-Snapshot.zip">OSEE Application Server Incubation</a></li>
diff --git a/downloads/index.php b/downloads/index.php
index af4c5dd..0ae5809 100644
--- a/downloads/index.php
+++ b/downloads/index.php
@@ -14,6 +14,7 @@
$pageAuthor = "Roberto E. Escobar";
$release_version = "OSEE_0.9.9_SR3_20111110";
+ $postgres_bundle = "http://osee-external.googlecode.com/files/postgresql_0.9.1_incubation.zip";
$external_downloads_site = "http://osee.microdoc.com/node/2";
$config_args="http://wiki.eclipse.org/OSEE/Developers_Guide#Configuration_Properties";
@@ -23,9 +24,8 @@
$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('/@POSTGRES_BUNDLE@/', $postgres_bundle, $html);
$html = preg_replace('/@EXTERNAL_DOWNLOADS_SITE@/', $external_downloads_site, $html);
$html = preg_replace('/@CONFIG_AND_ARGS@/', $config_args, $html);