Fixing 404 on "Release Notes" link.

Using https on external links where possible.
This commit is contained in:
lazygravy
2016-01-01 18:15:39 +00:00
parent 529257600b
commit d71728232d

View File

@@ -19,12 +19,12 @@
{% block content %}
<h3>{{ _('Dependency') }}</h3>
<p>{% trans java='http://java.com/download/',
<p>{% trans java='https://java.com/download/',
openjdk='http://openjdk.java.net/install/',
icedtea='http://icedtea.classpath.org/wiki/Main_Page',
arm8='http://www.oracle.com/technetwork/java/javase/downloads/jdk8-arm-downloads-2187472.html',
ibmsdk7='http://www.ibm.com/developerworks/java/jdk/linux/download.html',
detectjre='http://java.com/en/download/installed.jsp?detect=jre&amp;try=1' %}
detectjre='https://java.com/en/download/installed.jsp?detect=jre&amp;try=1' %}
Java Runtime 1.6 or higher.
(<a href="{{ java }}">Oracle</a>,
<a href="{{ openjdk }}">OpenJDK</a>, or
@@ -39,9 +39,10 @@ or type <tt>java -version</tt> at your command prompt.
{% trans release_notes=site_url('blog/category/release') -%}
<h3>{{ _('Release Notes') }}</h3>
<ul><li>
<a href="../blog/category/release">{{ _('Release Notes') }}</a>
<a href="{{ release_notes }}">{{ _('Release Notes') }}</a>
</li><li>
<a href="https://raw.githubusercontent.com/i2p/i2p.i2p/master/history.txt">{{ _('Change Log') }}</a>
</li><li>
@@ -49,6 +50,7 @@ or type <tt>java -version</tt> at your command prompt.
</li><li>
<a href="https://raw.githubusercontent.com/i2p/i2p.android.base/master/CHANGELOG">{{ _('Android Change Log') }}</a>
</li></ul>
{% endtrans %}</p>