gnunet-svn
[Top][All Lists]
Advanced

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

[taler-docs] branch master updated: -document new -k option


From: gnunet
Subject: [taler-docs] branch master updated: -document new -k option
Date: Wed, 01 Nov 2023 11:37:15 +0100

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

grothoff pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 8f7bf709 -document new -k option
8f7bf709 is described below

commit 8f7bf709b7ad5263096749a5620bf4eec5639d64
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed Nov 1 11:37:08 2023 +0100

    -document new -k option
---
 core/api-exchange.rst                      |  2 +-
 core/api-merchant.rst                      |  4 ++--
 design-documents/051-fractional-digits.rst | 10 +++-------
 manpages/taler-unified-setup.1.rst         |  6 +++++-
 taler-developer-manual.rst                 |  9 +++++++--
 taler-user-guide.rst                       |  2 +-
 6 files changed, 19 insertions(+), 14 deletions(-)

diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index 3992b7e2..08599471 100644
--- a/core/api-exchange.rst
+++ b/core/api-exchange.rst
@@ -1825,7 +1825,7 @@ Batch Withdraw
 
     }
 
-    .. ts:def:: WithdrawResponse
+  .. ts:def:: WithdrawResponse
 
     interface WithdrawResponse {
       // The blinded signature over the 'coin_ev', affirms the coin's
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 142e83f8..b6bdb0dd 100644
--- a/core/api-merchant.rst
+++ b/core/api-merchant.rst
@@ -318,7 +318,7 @@ Making the payment
 
       // Custom inputs from the wallet for the contract.
       wallet_data?: Object;
- 
+
       // The session for which the payment is made (or replayed).
       // Only set for session-based payments.
       session_id?: string;
@@ -3311,7 +3311,7 @@ Adding templates
       // The user may specify any amount, but it must be
       // in this currency.
       // This parameter is optional and should not be present
-      // if "amount" is given. 
+      // if "amount" is given.
       currency?: string;
 
       // The price is imposed by the merchant and cannot be changed by the 
customer.
diff --git a/design-documents/051-fractional-digits.rst 
b/design-documents/051-fractional-digits.rst
index acd19f14..4321fd53 100644
--- a/design-documents/051-fractional-digits.rst
+++ b/design-documents/051-fractional-digits.rst
@@ -23,15 +23,11 @@ There was already a specification for ScopedCurrencyInfo - 
which got renamed to
 
 We need three core characteristics for fractional digits for each currency:
 
-e) the number of fractional digits e in [0..8] the user may 'e'nter in a 
TextInputField
+  e) the number of fractional digits e in [0..8] the user may 'e'nter in a 
TextInputField
 
-n) the number of fractional digits n in [0..8] to be rendered as 'n'ormal 
characters (same font and size as the integer digits).
-   All additional fractional digits will be rendered as SuperScriptDigits as 
known from gas filling stations.
-   The UI should never round or truncate any amount, but always render all 
existing digits (except trailing zeroes, see c).
+  n) the number of fractional digits n in [0..8] to be rendered as 'n'ormal 
characters (same font and size as the integer digits). All additional 
fractional digits will be rendered as SuperScriptDigits as known from gas 
filling stations. The UI should never round or truncate any amount, but always 
render all existing digits (except trailing zeroes, see c).
 
-z) the number of fractional digits z in [0..8] to be rendered as trailing 
'z'eroes (including SuperScript digits).
-   E.g. if z = 2 (and n = 2), then render $5 as `$ 5.00´.
-   If z = 3 (and n = 2), then render $5 as `$ 5.00⁰´ with two normal trailing 
zeroes and one superscript trailing zero.
+  z) the number of fractional digits z in [0..8] to be rendered as trailing 
'z'eroes (including SuperScript digits). E.g. if z = 2 (and n = 2), then render 
$5 as ``$ 5.00``. If z = 3 (and n = 2), then render $5 as ``$ 5.00⁰`` with two 
normal trailing zeroes and one superscript trailing zero.
 
 The values e, n, and z are independent from each other. Each could be any value
 from 0 to 8. However, when a user enters an amount, s/he should be able to 
input
diff --git a/manpages/taler-unified-setup.1.rst 
b/manpages/taler-unified-setup.1.rst
index 02d09879..fe60d1e5 100644
--- a/manpages/taler-unified-setup.1.rst
+++ b/manpages/taler-unified-setup.1.rst
@@ -21,6 +21,7 @@ Synopsis
 [**-e**]
 [**-f**]
 [**-h**]
+[**-k**]
 [**-l** *FILENAME*]
 [**-m**]
 [**-n**]
@@ -64,6 +65,9 @@ systemd and not via this tool.
 **-h** \| **--help**
    Prints a compiled-in help text.
 
+**-k**
+   Start challenger (KYC service)
+
 **-L** *LOGLEVEL*
    Specifies the log level to use. Accepted values are: ``DEBUG``, ``INFO``,
    ``WARNING``, ``ERROR``.
@@ -97,7 +101,7 @@ See Also
 ========
 
 taler-exchange-dbinit(1), taler-exchange-offline(1), 
taler-merchant-benchmark(1),
-taler-exchange-httpd(1), taler-unified-setup(1), taler.conf(5)
+taler-exchange-httpd(1), taler.conf(5)
 
 Bugs
 ====
diff --git a/taler-developer-manual.rst b/taler-developer-manual.rst
index a5a73ba9..ecee786f 100644
--- a/taler-developer-manual.rst
+++ b/taler-developer-manual.rst
@@ -909,8 +909,13 @@ Taler.xcworkspace expects the QuickJS framework 
sub-project to be at
 ``../quickjs-tart/QuickJS-rt.xcodeproj``.
 
 Build wallet-core first:
-    cd ~/Developer/GNU_Taler/wallet-core
-    date; time make embedded; open packages/taler-wallet-embedded/dist
+
+.. code-block:: shell-session
+
+  $ cd wallet-core
+  $ make embedded
+  $ open packages/taler-wallet-embedded/dist
+
 then drag or move its product "taler-wallet-core-qjs.mjs"
 into your quickjs-tart folder right at the top level.
 
diff --git a/taler-user-guide.rst b/taler-user-guide.rst
index 39bbf69c..a88faae3 100644
--- a/taler-user-guide.rst
+++ b/taler-user-guide.rst
@@ -294,7 +294,7 @@ you can specify which URL, which HTTP headers, which HTTP 
method and what HTTP
 body to send to the Webhook.  Webhooks are automatically retried (with
 increasing delays) when the target server returns a temporary error.
 
-`Mustach templates <https://mustache.github.io/mustache.5.html>__` are used
+`Mustach templates <https://mustache.github.io/mustache.5.html>`__ are used
 when defining the contents of Webhooks.  Depending on the triggering event,
 the templates will be expanded with event-specific data.
 

-- 
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]