source: graphvizplugin/tags/0.11-0.7.5/examples/GraphvizExamples%2FWikiLinksPng

Last change on this file was 213, checked in by Peter Kropf, 18 years ago

GraphvizPlugin:

Created the v0.6 development branch.

File size: 1.0 KB
Line 
1= Graphviz Example Wiki Links, PNG Image =
2
3The 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/png
13digraph 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}}}
Note: See TracBrowser for help on using the repository browser.