Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-05-22 18:58:36 +0000
committerDavid Williams2016-05-22 18:58:36 +0000
commitb484c1838d7835701a4df629a7dcabc68aa38d6c (patch)
tree261e9ccb9a8b334d3a97be2559ca7f36a3c84bf9 /eclipse.platform.releng.tychoeclipsebuilder/equinox
parent8cac5420b62985ff401e49ce05acc3dbf47795bc (diff)
downloadeclipse.platform.releng.aggregator-b484c1838d7835701a4df629a7dcabc68aa38d6c.tar.gz
eclipse.platform.releng.aggregator-b484c1838d7835701a4df629a7dcabc68aa38d6c.tar.xz
eclipse.platform.releng.aggregator-b484c1838d7835701a4df629a7dcabc68aa38d6c.zip
Bug 493765 - Changes to download page to display SUMS* files
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/equinox')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php5
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.template.php2
2 files changed, 5 insertions, 2 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php
index 854f53ceb..1d3892081 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/staticDropFiles/build.php
@@ -19,8 +19,11 @@ function getDropSize($zipfile) {
return($filesize);
}
+// TODO: change build index tool not to generate these "calls" at all.
+// In the mean time, we will just return empty string.
function generateChecksumLinks($zipfile, $buildDir) {
//return "<td><a href=\"http://download.eclipse.org/equinox/drops/$buildDir/checksum/$zipfile.md5\"><img src=\"/equinox/images/md5.png\" alt=\"md5\"/></a><a href=\"http://download.eclipse.org/equinox/drops/$buildDir/checksum/$zipfile.sha1\"><img src=\"/equinox/images/sha1.png\" alt=\"sha1\"/></a></td>";
- return "<td><a href=\"http://download.eclipse.org/equinox/drops/$buildDir/checksum/$zipfile.sha512\"><img src=\"/equinox/images/sha1.png\" alt=\"sha512\"/></a></td>";
+ //return "<td><a href=\"http://download.eclipse.org/equinox/drops/$buildDir/checksum/$zipfile.sha512\"><img src=\"/equinox/images/sha1.png\" alt=\"sha512\"/></a></td>";
+ return "";
}
?>
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.template.php b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.template.php
index 311036352..6f8134955 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.template.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.template.php
@@ -114,7 +114,7 @@
<h3>Other Information</h3>
<p><a href="http://wiki.eclipse.org/Platform-releng/How_to_check_integrity_of_downloads">How to verify a download.</a></p>
<?php
- $sums512file="checksum/eclipse-$BUILD_ID-SUMSSHA512";
+ $sums512file="checksum/equinox-$BUILD_ID-SUMSSHA512";
if (file_exists($sums512file)) {
echo "<p style=\"text-indent: 3em;\"><a href=\"$sums512file\">SHA512 Checksums for $BUILD_ID</a>&nbsp;(<a href=\"$sums512file.asc\">GPG</a>)</p>";
}

Back to the top