From ca901e4b99a037553a5afe1beeb50255aeecb27c Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 10 Dec 2019 00:47:36 +0000 Subject: merge new website generation. --- template/bibliography.html.j2 | 92 ++++++++++++++++++++++--------------------- 1 file changed, 47 insertions(+), 45 deletions(-) (limited to 'template/bibliography.html.j2') diff --git a/template/bibliography.html.j2 b/template/bibliography.html.j2 index af91b8d6..10654830 100644 --- a/template/bibliography.html.j2 +++ b/template/bibliography.html.j2 @@ -1,48 +1,50 @@ {% extends "common/base.j2" %} {% block body_content %} -
-

{{ _("GNU Taler Bibliography")}}

- -

The GNU Taler System: Practical and Provably Secure Electronic Payments

-

-PDF -{{_("by")}} Florian Dold
-PhD Thesis, 2019
-

- -

Blind Signatures for Untraceable Payments

-

-PDF -{{_("by")}} David Chaum
-CRYPTO '82
-

- -

The One-More-RSA-Inversion Problems and the Security of Chaum's Blind Signature Scheme

-

-PDF -{{_("by")}} M. Bellare, C. Namprempre, D. Pointcheval {{ _("and") }} M. Semanko
-Financial Cryptography '01
-

- -

Enabling Secure Web Payments with GNU Taler

-

-PDF -{{_("by")}} Jeff Burdges, Florian Dold, Christian Grothoff {{ _("and") }} Marcello Stanisci
-SPACE 2016
-

- -

Digital cash and privacy: What are the alternatives to Libra?

-

-HTML -{{_("by")}} Christian Grothoff {{ _("and") }} Alex Pentland
-MIT Media Lab, 2019
-

- -

Refreshing Coins for Giving Change and Refunds in Chaum-style Anonymous Payment Systems

-

-{{_("by")}} Florian Dold, Sree Harsha Totakura, Benedikt Müller, Jeff Burdges {{ _("and") }} Christian Grothoff
-{{_("available upon request")}}
-

- -
+
+
+

{{ _("GNU Taler Bibliography")}}

+
+
+
+ {% for item in conf["paperslist"] %} +
+
+

{{ item['name']|e }}

+
+
+
+

+ {% if item['url_pdf'] %} + + PDF + + {% endif %} + {% if item['url_html'] %} + + HTML + + {% endif %} + {{_("by")}} + {% if item['authors'] %} + {% for name in item['authors'] %} + {{ name|e }} + {% if not loop.last %} + , + {% elif loop.revindex0 == 1 %} + {{ _("and") }} + {% endif %} + {% endfor %} + {% endif %} +
+ {% if item['kind'] %} {{ item['kind']|e }} {% endif %} + {% if item['year'] %} ({{ item['year'] }}) {% endif %} + {% if item['comment'] %}
{{ item['comment'] }} {% endif %} +

+
+
+
+ {% endfor %} +
+
+
{% endblock body_content %} -- cgit v1.2.3