You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2018/01/31 22:19:52 UTC

[incubator-pulsar] branch master updated: Links to archived releases should be using https (#1158)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7e7d0fd  Links to archived releases should be using https (#1158)
7e7d0fd is described below

commit 7e7d0fd2acfcb8a750e9c84cd89038a0be229107
Author: Matteo Merli <mm...@apache.org>
AuthorDate: Wed Jan 31 14:19:50 2018 -0800

    Links to archived releases should be using https (#1158)
---
 site/_config.yml | 2 +-
 site/download.md | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/site/_config.yml b/site/_config.yml
index 379f99b..29dc5fa 100644
--- a/site/_config.yml
+++ b/site/_config.yml
@@ -27,8 +27,8 @@ destination: ../generated-site/content
 
 current_version: 1.21.0-incubating
 archived_releases:
-  - 1.19.0-incubating
   - 1.20.0-incubating
+  - 1.19.0-incubating
 
 markdown: kramdown
 kramdown:
diff --git a/site/download.md b/site/download.md
index 5e4ae0b..5d5ffb2 100644
--- a/site/download.md
+++ b/site/download.md
@@ -58,14 +58,14 @@ Client guide | API docs
 
 {% if site.archived_releases %}
 {% capture archive_root_url %}http://archive.apache.org/dist/incubator/pulsar{% endcapture %}
+{% capture archive_root_https_url %}https://archive.apache.org/dist/incubator/pulsar{% endcapture %}
 {% capture release_notes_root_url %}https://github.com/apache/incubator-pulsar/releases/tag{% endcapture %}
 
 ### Older releases
 
-Release | Download | Crypto files | Release notes
+Release | Binary | Source | Release notes
 :-------|:---------|:-------------|:-------------
 {% for version in site.archived_releases
-%} {{ version }} binary | [pulsar-{{version}}-bin.tar.gz]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-bin.tar.gz) | [asc]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-bin.tar.gz.asc), [md5]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-bin.tar.gz.md5), [sha]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-bin.tar.gz.sha) | [Release notes v{{ version }}]({{ release_notes_root_url }}/v{ [...]
-{{ version }} source | [pulsar-{{ version }}-src.tar.gz]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-src.tar.gz) | [asc]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-src.tar.gz.asc), [md5]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-src.tar.gz.md5), [sha]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-src.tar.gz.sha)
+%} {{ version }} | [pulsar-{{version}}-bin.tar.gz]({{ archive_root_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-bin.tar.gz) - [asc]({{ archive_root_https_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-bin.tar.gz.asc), [md5]({{ archive_root_https_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-bin.tar.gz.md5), [sha]({{ archive_root_https_url }}/pulsar-{{ version }}/apache-pulsar-{{ version }}-bin.tar.gz.sha) | [pulsar-{{ version }}-src.tar.gz]({{ archive_root_u [...]
 {% endfor %}
 {% endif %}

-- 
To stop receiving notification emails like this one, please contact
mmerli@apache.org.