[tor-commits] [tpo/master] Add templates for new releases pages

antonela at torproject.org antonela at torproject.org
Fri May 22 16:20:07 UTC 2020


commit 2b99b82ac026f7726dba6363d48f8dc0afc92e8d
Author: Antonela <hola at antonela.me>
Date:   Fri May 22 13:20:00 2020 -0300

    Add templates for new releases pages
    
    https://trac.torproject.org/projects/tor/ticket/31660
---
 content/release/95/contents.lr | 52 ++++++++++++++++++++++++++++++++++++++++++
 content/release/contents.lr    | 11 +++++++++
 templates/release.html         | 19 +++++++++++++++
 templates/releases.html        | 14 ++++++++++++
 4 files changed, 96 insertions(+)

diff --git a/content/release/95/contents.lr b/content/release/95/contents.lr
new file mode 100644
index 00000000..a6afb375
--- /dev/null
+++ b/content/release/95/contents.lr
@@ -0,0 +1,52 @@
+section: What is new
+---
+template: layout.html
+---
+html: release.html
+---
+color: primary
+---
+title: Tor Browser 9.5
+---
+body:
+
+Tor Browser 9.5a12 is now available from the Tor Browser Alpha download page and also from our distribution directory.
+
+Note: This is an alpha release, an experimental version for users who want to help us test new features. For everyone else, we recommend downloading the latest stable release instead.This release updates Firefox to 68.8.0esr, NoScript to 11.0.25, OpenSSL to 1.1.1g, and Tor to 0.4.3.4-rc. In addition, the Android Tor Browser now includes Tor built using the reproducible build system.
+
+Also, this release features important security updates to Firefox.
+
+The full changelog since Tor Browser 9.5a11 is:
+
+    All Platforms
+        Update Firefox to 68.8.0esr
+        Bump NoScript to 11.0.25
+        Bump Tor to 0.4.3.4-rc
+        Translations update
+        Bug 31499: Update libevent to 2.1.11-stable
+            Bug 33877: Disable Samples and Regression tests For Libevent Build
+        Bug 33630: Remove noisebridge01 default bridge
+        Bug 33726: Fix patch for #23247: Communicating security expectations for .onion
+        Bug 34017: Bump openssl version to 1.1.1g
+        Bug 33698: Update "About Tor Browser" links in Tor Browser
+     Windows + OS X + Linux
+        Update Tor Launcher to 0.2.21.6
+            Translations update
+        Bug 33576: Update pion-webrtc version to 2.2.3
+        Bug 32418: Allow updates to be disabled via an enterprise policy.
+        Bug 34032: Use Securedrop's Official https-everywhere ruleset
+     Windows
+        Bug 29614: Use SHA-256 algorithm for Windows timestamping
+     Android
+        Bug 33359: Use latest Version of TOPL and Remove Patches
+        Bug 33931: obfs4 bridges are used instead of meek if meek is selected in Tor Browser for Android alpha
+    Build System
+        All Platforms
+            Bug 32027: Bump Go to 1.13.10
+        Android
+            Bug 28765: LibEvent Build for Android
+            Bug 28766: Tor Build for Android
+            Bug 32993: Package Tor With Tor Android Service Project
+            Bug 33685: Add Support for Building zlib for Android
+        Windows
+            Bug 33802: --enable-secure-api is not supported anymore in mingw-w64
diff --git a/content/release/contents.lr b/content/release/contents.lr
new file mode 100644
index 00000000..88c1eeb3
--- /dev/null
+++ b/content/release/contents.lr
@@ -0,0 +1,11 @@
+section: What is new
+---
+template: layout.html
+---
+html: releases.html
+---
+color: primary
+---
+title: Tor Browser
+---
+body:
diff --git a/templates/release.html b/templates/release.html
new file mode 100644
index 00000000..f695b54b
--- /dev/null
+++ b/templates/release.html
@@ -0,0 +1,19 @@
+<div class="row">
+
+  <div class="container py-3 mt-5 content">
+    <div class="col-sm-9">
+      {% for item in this.children %}
+        <a href="{{ item.path|url }}">{{ item.title }}</a>
+      {% endfor %}
+    </div>
+    <div class="card mt-5">
+      <ul class="list-group list-group-flush">
+        <!--li class="list-group-item"><a><span class="card-text text-muted">{{ _("Contributors to this page:") }} <a href="#" title="#">cypherpunk</a></span></li-->
+        <li class="list-group-item">
+          <a href="{{ this.parent|url }}">{{ _("Back to previous page: ") }}{{ this.parent.title }}</a> - <a href="https://github.com/torproject/community/edit/master/content{{ this.path }}/contents.lr">{{ _("Edit this page") }}</a>
+        </li>
+      </ul>
+    </div>
+  </div>
+
+</div>
diff --git a/templates/releases.html b/templates/releases.html
new file mode 100644
index 00000000..8dddc024
--- /dev/null
+++ b/templates/releases.html
@@ -0,0 +1,14 @@
+
+<div class="row">
+
+  <div class="container py-3 mt-5 content">
+    <div class="col-sm-9">
+      {% for item in this.children %}
+        <div class="card w-100 p-3 my-3">
+          <a href="{{ item.path|url }}">{{ item.title }}</a>
+        </div>
+      {% endfor %}
+    </div>
+  </div>
+
+</div>



More information about the tor-commits mailing list