From d9db1d2a3ccc17d1545c65e959ed9ee0c58842a7 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Sun, 26 Mar 2023 14:58:40 +0200 Subject: docs: Add missing image It was left unpushed in my tree, and silently not included. --- .../images/connections-diagram.dot | 45 ++++++++++ .../images/connections-diagram.svg | 97 ++++++++++++++++++++++ 2 files changed, 142 insertions(+) create mode 100644 docs/reference/libtracker-sparql/images/connections-diagram.dot create mode 100644 docs/reference/libtracker-sparql/images/connections-diagram.svg diff --git a/docs/reference/libtracker-sparql/images/connections-diagram.dot b/docs/reference/libtracker-sparql/images/connections-diagram.dot new file mode 100644 index 000000000..6943a1276 --- /dev/null +++ b/docs/reference/libtracker-sparql/images/connections-diagram.dot @@ -0,0 +1,45 @@ +graph { + rankdir=LR; + bgcolor=transparent; + fontname="sans-serif"; + compound=true; + node [shape="box", style="rounded", border=0, fontname="sans-serif"]; + + subgraph cluster_1 { + style="rounded"; + color="lightgrey"; + label = "Application" + tooltip = "Application" + fontsize=10; + + node [shape="cylinder",label="Rdf data",tooltip="Rdf data"]; ts1; + } + + subgraph cluster_2 { + style="rounded"; + color="lightgrey"; + label = "Http Sparql Endpoint" + tooltip = "Http Sparql Endpoint" + fontsize=10; + + node [shape="cylinder",label="Rdf data", tooltip="Rdf data"]; ts2; + } + + subgraph cluster_3 { + style="rounded"; + color="lightgrey"; + label = "D-Bus Sparql Endpoint" + tooltip = "D-Bus Sparql Endpoint" + fontsize=10; + + node [shape="cylinder",label="Rdf data",tooltip="Rdf data"]; ts3; + } + + node [shape="box", style="", border=0, fontname="sans-serif",fixedsize=true,height=1]; "Http"; "D-Bus"; + + ts1 -- "Http" [ltail=cluster_1]; + ts1 -- "D-Bus" [ltail=cluster_1]; + + "Http" -- "ts2" [lhead=cluster_2] + "D-Bus" -- "ts3" [lhead=cluster_3] +} diff --git a/docs/reference/libtracker-sparql/images/connections-diagram.svg b/docs/reference/libtracker-sparql/images/connections-diagram.svg new file mode 100644 index 000000000..d9b3b4c87 --- /dev/null +++ b/docs/reference/libtracker-sparql/images/connections-diagram.svg @@ -0,0 +1,97 @@ + + + + + + + +cluster_1 + + +Application + + + + +cluster_2 + + +Http Sparql Endpoint + + + + +cluster_3 + + +D-Bus Sparql Endpoint + + + + + +ts1 + + + +Rdf data + + + + + +Http + +Http + + + +ts1--Http + + + + +D-Bus + +D-Bus + + + +ts1--D-Bus + + + + +ts2 + + + +Rdf data + + + + + +ts3 + + + +Rdf data + + + + + +Http--ts2 + + + + +D-Bus--ts3 + + + + -- cgit v1.2.1