This is an automated email from the ASF dual-hosted git repository. joshfischer pushed a commit to branch joshfischer/archive-links in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
commit 87b868d0d97a15dc8c6ca7be8aef7f73abcf5544 Author: Josh Fischer <[email protected]> AuthorDate: Thu Sep 16 18:23:28 2021 -0500 pointing older releases to be retrieved from archive.a.o --- website2/website/pages/en/download.js | 34 +--------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/website2/website/pages/en/download.js b/website2/website/pages/en/download.js index 1abec5e..d694ee8 100644 --- a/website2/website/pages/en/download.js +++ b/website2/website/pages/en/download.js @@ -205,39 +205,7 @@ class Download extends React.Component { <h2 id="archive">Older releases</h2> - <table className="versions"> - <thead> - <tr> - <th>Release</th> - - <th>Source</th> - <th>Release notes</th> - </tr> - </thead> - <tbody> - {releaseInfo.map( - info => { - var sha = "sha512" - - return info.version !== latestHeronVersion && ( - <tr key={info.version}> - <th>{info.version}</th> - - <td> - <a href={info.srcArchiveUrl}>apache-heron-{info.version}-source.tar.gz</a> - - (<a href={`${info.srcArchiveUrl}.asc`}>asc</a>, - <a href={`${info.srcArchiveUrl}.${sha}`}>{`${sha}`}</a>) - </td> - <td> - <a href={`${siteConfig.baseUrl}${this.props.language}/release-notes#${info.version}`}>Release Notes</a> - </td> - </tr> - ) - } - )} - </tbody> - </table> + <p>Older releses can be found at <a href="https://archive.apache.org/dist/incubator/heron/"> the archive page.</a></p> </div> </Container> </div>
