Skip to content

Commit abe2424

Browse files
committed
handle deprecated development branch
1 parent e617203 commit abe2424

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

_includes/downloads.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ <h3 id="v{{ item.branch | replace: ',', '' }}">
2424
{% else %}
2525
Development Snapshot
2626
{% endif %}
27+
{% when 'olddev' %}
28+
Deprecated Development Snapshot
2729
{% when 'old' %}
2830
Old Stable Release
2931
{% when 'deprecated' %}
@@ -32,12 +34,12 @@ <h3 id="v{{ item.branch | replace: ',', '' }}">
3234
({{ item.version }})
3335
</h3>
3436
{% assign branchdir = item.branch | append: "-branch" -%}
35-
{% if item.mode == 'dev' -%}
37+
{% if item.mode contains 'dev' -%}
3638
{% assign branchdir = "developer-preview" -%}
3739
{% endif %}
38-
<a href="http://ftp.mozilla.org/pub/webtools/bugzilla/{{branchdir}}/bugzilla-{{item.version}}.tar.gz"
40+
<a href="https://ftp.mozilla.org/pub/webtools/bugzilla/{{branchdir}}/bugzilla-{{item.version}}.tar.gz"
3941
class="button primary">{% include icons/download.svg %}Download</a>
40-
{% if item.mode != 'dev' -%}
42+
{% if item.mode contains 'dev' %}{% else -%}
4143
<p>
4244
Patches to manually upgrade an earlier install of this branch
4345
to {{ item.version }} can be found

download.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ Again, the best way to get Bugzilla is to follow the instructions in the [Instal
5353

5454
{% include downloads.html %}
5555

56+
More detailed information about these releases, including their release notes, can be found on the [Releases](/releases) page.
57+
5658
### Archives
5759

5860
If for some reason you need a very old version of Bugzilla, you can download tarballs from the [Bugzilla FTP site](https://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla/).

0 commit comments

Comments
 (0)