| | 1 | = Graphviz Example Wiki Links, SVG Image = |
| | 2 | |
| | 3 | The links in the diagram use Trac wiki links to point to various places: |
| | 4 | * '''Ticket 1''' points to ticket:1 |
| | 5 | * '''Report 1''' points to report:1 |
| | 6 | * '''Changeset 1''' points to changeset:1 |
| | 7 | * '''Graphviz Examples''' points to wiki:GraphvizExamples |
| | 8 | * '''Milestone 1''' points to milestone:milestone1 |
| | 9 | * '''Source Link''' points to source:Readme.txt |
| | 10 | |
| | 11 | {{{ |
| | 12 | #!graphviz.circo/svg |
| | 13 | digraph G { |
| | 14 | "Ticket 1" [style=filled, fillcolor=white, URL="ticket:1"]; |
| | 15 | "Report 1" [style=filled, fillcolor=white, URL="report:1"]; |
| | 16 | "Changeset 1" [style=filled, fillcolor=white, URL="changeset:1"]; |
| | 17 | "Graphviz Examples" [style=filled, fillcolor=white, URL="wiki:GraphvizExamples"]; |
| | 18 | "Milestone 1" [style=filled, fillcolor=white, URL="milestone:milestone1"]; |
| | 19 | "Readme.txt" [style=filled, fillcolor=white, URL="source:Readme.txt"]; |
| | 20 | |
| | 21 | "Ticket 1"; |
| | 22 | "Report 1"; |
| | 23 | "Changeset 1"; |
| | 24 | "Graphviz Examples"; |
| | 25 | "Milestone 1"; |
| | 26 | "Readme.txt"; |
| | 27 | } |
| | 28 | }}} |
| | 29 | |