Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiraj Modi2019-05-02 09:26:46 +0000
committerNiraj Modi2019-05-02 09:26:46 +0000
commit91dd7cbb7867dc393ea339d08c3ff6a4a7b8763e (patch)
treeed841909f918c20b6cfc146291b4ec7a55b57c47
parente2c1eeadf791592a28c783a4a1f6dd168ba2acc0 (diff)
downloadeclipse.platform.releng.aggregator-91dd7cbb7867dc393ea339d08c3ff6a4a7b8763e.tar.gz
eclipse.platform.releng.aggregator-91dd7cbb7867dc393ea339d08c3ff6a4a7b8763e.tar.xz
eclipse.platform.releng.aggregator-91dd7cbb7867dc393ea339d08c3ff6a4a7b8763e.zip
Bug 546906 - Also show N&N on I-build download page
Change-Id: If96e0830c9b80cad0a0e6aa93c060e3caf934105 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com>
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php
index 308454c16..a3d63afad 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php
@@ -119,6 +119,10 @@ if (isset($testbuildonly) && ($testbuildonly)) {
if (isset ($NEWS_ID)) {
echo "<a href=\"http://www.eclipse.org/eclipse/news/${NEWS_ID}/\">New and Noteworthy</a><br>\n";
}
+else {
+// Show N&N link on the I-Build download page
+ echo "<a href=\"https://www.eclipse.org/eclipse/news/${STREAMMajor}.${STREAMMinor}/\">New and Noteworthy</a><br>\n";
+}
// Similar for $ACK_ID and $README_ID, but they are added only for 'R builds',
// And, are added by the promotion scripts, as long as we keep same conventions.
if (isset ($ACK_ID)) {

Back to the top