gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-merchant] branch master updated: doc: missing graph


From: gnunet
Subject: [GNUnet-SVN] [taler-merchant] branch master updated: doc: missing graph
Date: Tue, 27 Feb 2018 23:01:28 +0100

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 19bc21b  doc: missing graph
19bc21b is described below

commit 19bc21bebe2875e8ef89a25344872d2eba3f1bbb
Author: Florian Dold <address@hidden>
AuthorDate: Tue Feb 27 23:01:20 2018 +0100

    doc: missing graph
---
 .gitignore       |  1 +
 doc/arch-api.dot | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/.gitignore b/.gitignore
index 83eb0af..f5c3e90 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,6 +43,7 @@ doc/version-*.texi
 !doc/*.am
 !doc/*.sh
 !doc/*.js
+!doc/*.dot
 !doc/examples/
 src/lib/test_merchant_api_home/.local/share/taler/exchange/wirefees/
 src/merchant-tools/taler-merchant-generate-payments
diff --git a/doc/arch-api.dot b/doc/arch-api.dot
new file mode 100644
index 0000000..1c30c06
--- /dev/null
+++ b/doc/arch-api.dot
@@ -0,0 +1,27 @@
+digraph G {
+
+  user[label="Customer browser"];
+  admin[label="Shop admin"];
+  Backend[color="blue"];
+  BackendPublic[color="blue", label="Backend\n(public interface)"];
+  subgraph cluster_0 {
+    Frontend;
+    Backoffice;
+    Backend;
+    BackendPublic;
+    DBMS;
+    label="Shop server";
+  }
+  subgraph cluster_1 {
+    Exchange;
+    label="Exchange";
+  }
+  user->Frontend;
+  admin->Backoffice;
+  Frontend->Backend;
+  Backoffice->Backend;
+  BackendPublic->Backend;
+  user->BackendPublic;
+  Backend->DBMS;
+  Backend->Exchange;
+}

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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