Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-05-21 17:57:24 +0000
committerDavid Williams2016-05-21 17:57:24 +0000
commit278fbab3d44ef8e38ae8aa3575c38169d7935f08 (patch)
tree1cb2d015887e38d82c6c42e8183a362915ec49b2 /eclipse.platform.releng.tychoeclipsebuilder/equinox
parentfda8e068bf00cac135e28f7619510329c12ac744 (diff)
downloadeclipse.platform.releng.aggregator-278fbab3d44ef8e38ae8aa3575c38169d7935f08.tar.gz
eclipse.platform.releng.aggregator-278fbab3d44ef8e38ae8aa3575c38169d7935f08.tar.xz
eclipse.platform.releng.aggregator-278fbab3d44ef8e38ae8aa3575c38169d7935f08.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/templateFiles/index.template.php50
1 files changed, 10 insertions, 40 deletions
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 34f21edac..311036352 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.template.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/equinox/publishingFiles/templateFiles/index.template.php
@@ -30,10 +30,6 @@
<div id="midcolumn">
<h3>Equinox $BUILD_TYPE_NAME Build: $BUILD_ID</h3>
<p><b>$BUILD_PRETTY_DATE</b></p>
- <p>These downloads are provided under the <a href="http://www.eclipse.org/legal/epl/notice.html">
- Eclipse Foundation Software User Agreement</a>. Click <a href="https://wiki.eclipse.org/Platform-releng/How_to_check_integrity_of_downloads">here</a> for instructions
- on verifying download integrity.</p>
-
<div class="homeitem3col">
<h3>All of Equinox</h3>
@@ -115,43 +111,17 @@
</div>
<div class="homeitem3col">
- <h3>Legend</h3>
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr></tr>
- <!-- no longer display these
- <tr>
- <td align="center"><img src="/equinox/images/OK.gif"/></td>
- <td>Build completed OK</td>
- </tr>
- <tr>
- <td align="center"><img src="/equinox/images/FAIL.gif"/></td>
- <td>Build failed to complete</td>
- </tr>
- <tr>
- <td align="center"><img src="/equinox/images/pending.gif"/></td>
- <td>Build is still pending</td>
- </tr>
- -->
- <tr>
- <td align="center"><img src="/equinox/images/repo.gif"/></td>
- <td>Build artifact is also a p2 repository</td>
- </tr>
- <!--
- <tr>
- <td align="center"><img src="/equinox/images/md5.png"/></td>
- <td>Click to get the MD5 hash for the corresponding build artifact</td>
- </tr>
- -->
- <tr>
- <td align="center"><img src="/equinox/images/sha1.png"/></td>
- <td>Click to get the SHA512 hash for the corresponding build artifact</td>
- </tr>
- <tr>
- <td align="center"><img src="http://eclipse.org/equinox/images/arrow.png"/></td>
- <td>Click to expand section.</td>
- </tr>
- </table>
+ <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";
+ 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>";
+ }
+ ?>
</div>
+
+
</div>
EOHTML;

Back to the top