gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-merchant] branch master updated: disable HTML escaping for URLs i


From: gnunet
Subject: [taler-merchant] branch master updated: disable HTML escaping for URLs in mustache templates
Date: Wed, 19 Aug 2020 14:36:20 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository merchant.

The following commit(s) were added to refs/heads/master by this push:
     new 4711c5e  disable HTML escaping for URLs in mustache templates
4711c5e is described below

commit 4711c5e4306a1019bedaee3cf1265396fe242821
Author: Florian Dold <florian.dold@gmail.com>
AuthorDate: Wed Aug 19 18:06:13 2020 +0530

    disable HTML escaping for URLs in mustache templates
---
 contrib/offer_refund.en.must       | 2 +-
 contrib/offer_tip.en.must          | 2 +-
 contrib/request_payment.en.must    | 2 +-
 contrib/show_order_details.en.must | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/contrib/offer_refund.en.must b/contrib/offer_refund.en.must
index b166fea..62766ad 100644
--- a/contrib/offer_refund.en.must
+++ b/contrib/offer_refund.en.must
@@ -90,7 +90,7 @@ body {
 
 <body>
 <script>
-  let checkUrl = "{{order_status_url}}";
+  let checkUrl = "{{& order_status_url }}";
   let delayMs = 500;
   function check() {
     let req = new XMLHttpRequest();
diff --git a/contrib/offer_tip.en.must b/contrib/offer_tip.en.must
index 21fb9b3..abc7169 100644
--- a/contrib/offer_tip.en.must
+++ b/contrib/offer_tip.en.must
@@ -90,7 +90,7 @@ body {
 
 <body>
 <script>
-  let checkUrl = "{{tip_status_url}}";
+  let checkUrl = "{{& tip_status_url }}";
   let delayMs = 500;
   function check() {
     let req = new XMLHttpRequest();
diff --git a/contrib/request_payment.en.must b/contrib/request_payment.en.must
index e533c81..d781905 100644
--- a/contrib/request_payment.en.must
+++ b/contrib/request_payment.en.must
@@ -91,7 +91,7 @@ body {
 <body>
 <script>
   let delayMs = 60000;
-  let checkUrl = "{{order_status_url}}&timeout_ms=" + delayMs.toString();
+  let checkUrl = "{{& order_status_url }}&timeout_ms=" + delayMs.toString();
   function check() {
     let req = new XMLHttpRequest();
     req.onreadystatechange = function () {
diff --git a/contrib/show_order_details.en.must 
b/contrib/show_order_details.en.must
index 128a791..71e6a56 100644
--- a/contrib/show_order_details.en.must
+++ b/contrib/show_order_details.en.must
@@ -55,7 +55,7 @@ The merchant has granted you refunds on the purchase of 
<b>{{refund_amount}}</b>
 
 <h2>Full contract details</h2>
 
-!-- FIXME #6459: expand the contract JSON in all its glory here -->
+<!-- FIXME #6459: expand the contract JSON in all its glory here -->
 <pre>
   {{{contract}}}
 </pre>

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]