File: generate-graph.expected

package info (click to toggle)
adr-tools 3.0.0-2
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 840 kB
  • sloc: sh: 580; makefile: 42
file content (46 lines) | stat: -rw-r--r-- 1,952 bytes parent folder | download
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
adr init
doc/adr/0001-record-architecture-decisions.md
adr new An idea that seems good at the time
doc/adr/0002-an-idea-that-seems-good-at-the-time.md
adr new -s 2 A better idea
doc/adr/0003-a-better-idea.md
adr new This will work
doc/adr/0004-this-will-work.md
adr new -s 3 The end
doc/adr/0005-the-end.md
# with default root and extension in links
adr generate graph
digraph {
  node [shape=plaintext];
  subgraph {
    _1 [label="1. Record architecture decisions"; URL="0001-record-architecture-decisions.html"];
    _2 [label="2. An idea that seems good at the time"; URL="0002-an-idea-that-seems-good-at-the-time.html"];
    _1 -> _2 [style="dotted", weight=1];
    _3 [label="3. A better idea"; URL="0003-a-better-idea.html"];
    _2 -> _3 [style="dotted", weight=1];
    _4 [label="4. This will work"; URL="0004-this-will-work.html"];
    _3 -> _4 [style="dotted", weight=1];
    _5 [label="5. The end"; URL="0005-the-end.html"];
    _4 -> _5 [style="dotted", weight=1];
  }
  _3 -> _2 [label="Supersedes", weight=0]
  _5 -> _3 [label="Supersedes", weight=0]
}
# with specified root and extension in links
adr generate graph -p http://example.com/ -e .xxx
digraph {
  node [shape=plaintext];
  subgraph {
    _1 [label="1. Record architecture decisions"; URL="http://example.com/0001-record-architecture-decisions.xxx"];
    _2 [label="2. An idea that seems good at the time"; URL="http://example.com/0002-an-idea-that-seems-good-at-the-time.xxx"];
    _1 -> _2 [style="dotted", weight=1];
    _3 [label="3. A better idea"; URL="http://example.com/0003-a-better-idea.xxx"];
    _2 -> _3 [style="dotted", weight=1];
    _4 [label="4. This will work"; URL="http://example.com/0004-this-will-work.xxx"];
    _3 -> _4 [style="dotted", weight=1];
    _5 [label="5. The end"; URL="http://example.com/0005-the-end.xxx"];
    _4 -> _5 [style="dotted", weight=1];
  }
  _3 -> _2 [label="Supersedes", weight=0]
  _5 -> _3 [label="Supersedes", weight=0]
}