File: task_states.dot

package info (click to toggle)
taskcoach 1.4.1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 32,496 kB
  • ctags: 17,810
  • sloc: python: 72,170; makefile: 254; ansic: 120; xml: 29; sh: 16
file content (26 lines) | stat: -rw-r--r-- 1,252 bytes parent folder | download | duplicates (2)
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
digraph task_states {
    rankdir=LR;
    node [shape = circle, width = 1];
    Inactive [shape = doublecircle, style = filled, fillcolor = grey];
    Late [style = filled, fillcolor = purple];
    Active [style = filled, fillcolor = deepskyblue];
    "Due soon" [style = filled, fillcolor = orange];
    Overdue [style = filled, fillcolor = red];
    Completed [shape = doublecircle, style = filled, fillcolor = green];

    Inactive -> Late [ label = "past planned start date" ];
    Inactive -> Active [ label = "past actual start date" ];
    Inactive -> "Due soon" [ label = "soon due date" ];
    Inactive -> Overdue [ label = "past due date" ];
    Inactive -> Completed [ label = "completion date" ];
    Late -> Active [ label = "past actual start date" ];
    Late -> "Due soon" [ label = "soon due date" ];
    Late -> Overdue [ label = "past due date" ];
    Late -> Completed [ label = "completion date" ];
    Active -> "Due soon" [ label = "soon due date" ];
    Active -> Overdue [ label = "past due date" ];
    Active -> Completed [ label = "completion date" ];
    "Due soon" -> Overdue [ label = "past due date" ];
    "Due soon" -> Completed [ label = "completion date" ];
    Overdue -> Completed [ label = "completion date" ];
}