forked from ActivityWatch/docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdependency.dot
67 lines (59 loc) · 1.55 KB
/
dependency.dot
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
digraph {
//activitywatch [shape=box, label="activitywatch"];
//"aw-server" [shape=box, style=filled, fillcolor="0.4+0.5+1"]
//"aw-client" [shape=box, style=filled, fillcolor="0.2+1+1"]
activitywatch -> "aw-server" -> {"aw-webui" "aw-core"};
activitywatch -> "aw-qt";
activitywatch -> "aw-watcher-afk" -> {"aw-client" "aw-core"};
activitywatch -> "aw-watcher-window" -> {"aw-client" "aw-core"};
"aw-client" -> "aw-core";
"aw-server" -> "aw-analysis";
"aw-analysis" -> "aw-core";
subgraph {
rank = same; "aw-watcher-afk"; "aw-watcher-window";
}
//subgraph {
// rank = same; "aw-core"; "aw-client";
//}
/*
* Legend, causes sigsegv...
* http://stackoverflow.com/a/4752766/965332
*/
/*
{ rank = sink;
Legend [shape=none, margin=0, label=<
<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4">
<TR>
<TD COLSPAN="2"><B>Legend</B></TD>
</TR>
<TR>
<TD>Foo</TD>
<TD><FONT COLOR="red">Foo</FONT></TD>
</TR>
<TR>
<TD>Bar</TD>
<TD BGCOLOR="RED"></TD>
</TR>
<TR>
<TD>Baz</TD>
<TD BGCOLOR="BLUE"></TD>
</TR>
<TR>
<TD>Test</TD>
<TD>HELLO</TD>
</TR>
<TR>
<TD>Test</TD>
<TD CELLPADDING="4">
<TABLE BORDER="1" CELLBORDER="0" CELLSPACING="0" CELLPADDING="0">
<TR>
<TD BGCOLOR="Yellow"></TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
>];
}
*/
}