summaryrefslogtreecommitdiff
path: root/docs/reference/libtracker-sparql/images/connections-diagram.dot
blob: 6943a127689fe63fcb28828c621177c459d31bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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]
}