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/16 23:23:50 UTC

[incubator-heron] branch joshfischer/archive-links created (now 87b868d)

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

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


      at 87b868d  pointing older releases to be retrieved from archive.a.o

This branch includes the following new commits:

     new 87b868d  pointing older releases to be retrieved from archive.a.o

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[incubator-heron] 01/01: pointing older releases to be retrieved from archive.a.o

Posted by jo...@apache.org.
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 <jo...@joshfischer.io>
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>
-                              &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 releses can be found at <a href="https://archive.apache.org/dist/incubator/heron/"> the archive page.</a></p>
           </div>
         </Container>
       </div>