-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquery.gv
56 lines (49 loc) · 1.19 KB
/
query.gv
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
digraph workflow {
graph [
rankdir="LR"
nodesep="0.2"
ranksep="0.0"
compound="true"
]
node [
shape="Mrecord"
fontsize="12"
fillcolor="#d0ffff"
style="filled"
height="0.2"
penwidth="1.0"
color="black"
]
edge [
penwidth="2.0"
arrowsize="1.0"
]
index [ label="Index Dialog" ]
query_c [ label="Query Completion" ]
query_d [ label="Query Dialog" ]
compose [ label="Compose Dialog" ]
editor [ label="Editor" ]
subject [ label="Subject: (prompt)" ]
to [ label="To: (prompt)" ]
query_c -> to [ label="<select-entry>" ]
query_d -> to [ label="<select-entry>" ]
compose -> index [ label="<send>" ]
editor -> compose [ label="save, exit" ]
index -> query_d [ label="<query>" ]
index -> to [ label="<mail>" ]
subject -> editor [ label="<enter>" ]
to -> query_c [ label="<complete-query>" ]
to -> subject [ label="<enter>" ]
edge [
penwidth="1.0"
arrowsize="1.0"
style="dashed"
fontcolor="#c00000"
color="#ff8080"
]
query_c -> to [ label="<exit>" ]
query_d -> index [ label="<exit>" ]
compose -> index [ label="<exit>" ]
subject -> index [ label="empty/abort" ]
to -> index [ label="empty/abort" ]
}