You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by jo...@apache.org on 2021/09/17 11:12:27 UTC

[incubator-heron] branch master updated: pointing older releases to be retrieved from archive.a.o (#3714)

This is an automated email from the ASF dual-hosted git repository.

joshfischer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new 836e01b  pointing older releases to be retrieved from archive.a.o (#3714)
836e01b is described below

commit 836e01bd1d418143d2bb0c0307904b9e837ced6c
Author: Josh Fischer <jo...@joshfischer.io>
AuthorDate: Fri Sep 17 06:12:19 2021 -0500

    pointing older releases to be retrieved from archive.a.o (#3714)
    
    * pointing older releases to be retrieved from archive.a.o
    
    * typo
---
 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..8bb6b2f 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>
-                              &nbsp;
-                          (<a href={`${info.srcArchiveUrl}.asc`}>asc</a>,&nbsp;
-                          <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 releases can be found at <a href="https://archive.apache.org/dist/incubator/heron/"> the archive page.</a></p>
           </div>
         </Container>
       </div>