summaryrefslogtreecommitdiff
path: root/design-documents
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-05-13 19:03:49 +0200
committerChristian Grothoff <christian@grothoff.org>2021-05-13 19:03:49 +0200
commit9e4bbd6735d350f7b55bb30ee418309db01c8fa9 (patch)
treeebfd3279e2369494c886dffd9ffe67885d4d1926 /design-documents
parent7641ad6d2ab742e1b8305b9db59bcc24f317e77a (diff)
downloaddocs-9e4bbd6735d350f7b55bb30ee418309db01c8fa9.tar.gz
docs-9e4bbd6735d350f7b55bb30ee418309db01c8fa9.tar.bz2
docs-9e4bbd6735d350f7b55bb30ee418309db01c8fa9.zip
clarifications
Diffstat (limited to 'design-documents')
-rw-r--r--design-documents/013-peer-to-peer-payments.rst18
1 files changed, 6 insertions, 12 deletions
diff --git a/design-documents/013-peer-to-peer-payments.rst b/design-documents/013-peer-to-peer-payments.rst
index eda407e6..a938b5a1 100644
--- a/design-documents/013-peer-to-peer-payments.rst
+++ b/design-documents/013-peer-to-peer-payments.rst
@@ -24,23 +24,20 @@ Invoice Flow User Experience
.. graphviz::
digraph invoice {
- settings [
- label = "Invoice flow";
- ];
ranksep="0.5"
{ rank = same; "inbox"; "begin"; }
{ rank = same; "sending"; "receiving2"; }
{ rank = same; "receiving"; "paying"; }
{ rank = same; "mid"; "midbox"; }
{ rank = same; "body"; "amount"; }
- begin [label="Seller Inbox",shape=box];
+ begin [label="Payer Inbox",shape=box];
body [label="compose\nE-mail message"];
amount [label="specify\ninvoice details"];
receiving [label="receiving...",shape=diamond];
sending [label="transmitting...",shape=diamond];
- mid [label="Seller Inbox",shape=box];
+ mid [label="Payee Inbox",shape=box];
notified [label="Notification:\npayment received"];
- end [label="Seller Inbox",shape=box];
+ end [label="Payee Inbox",shape=box];
begin -> body [label="(1) new"];
body -> amount [label="(2) attach invoice"];
amount -> body [label="(3) Ok"];
@@ -49,14 +46,14 @@ Invoice Flow User Experience
mid -> receiving [style=dashed];
receiving -> notified [style=dashed];
notified -> end [label="(9) Acknowledge"];
- inbox [label="Buyer Inbox",shape=box];
+ inbox [label="Payer Inbox",shape=box];
receiving2 [label="receiving...",shape=diamond];
- midbox [label="Buyer Inbox",shape=box];
+ midbox [label="Payer Inbox",shape=box];
open [label="message with\nattached invoice"];
confirm [label="review invoice"];
paying [label="paying...", shape=diamond];
paid [label="message with\npaid invoice"];
- finbox [label="Buyer Inbox",shape=box];
+ finbox [label="Payer Inbox",shape=box];
inbox -> receiving2 [style=dashed];
receiving2 -> sending [label="Internet\n(pEp)",style=dashed,dir=back];
receiving2 -> midbox [style=dashed];
@@ -75,9 +72,6 @@ Donation Flow User Experience
digraph donation {
ranksep="0.5"
- settings [
- label = "Donation flow";
- ];
{ rank = same; "inbox"; "begin"; }
{ rank = same; "sending"; "receiving2"; }
{ rank = same; "body"; "amount"; }