This file is indexed.

/usr/share/doc/trac-graphviz/examples/GraphvizExamples%2FWikiLinksSvg is in trac-graphviz 0.7.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
= Graphviz Example Wiki Links, SVG Image =

The links in the diagram use Trac wiki links to point to various places:
 * '''Ticket 1''' points to ticket:1
 * '''Report 1''' points to report:1
 * '''Changeset 1''' points to changeset:1
 * '''Graphviz Examples''' points to wiki:GraphvizExamples
 * '''Milestone 1''' points to milestone:milestone1
 * '''Source Link''' points to source:Readme.txt

{{{
#!graphviz.circo/svg
digraph G {
    "Ticket 1"          [style=filled, fillcolor=white, URL="ticket:1"];
    "Report 1"          [style=filled, fillcolor=white, URL="report:1"];
    "Changeset 1"       [style=filled, fillcolor=white, URL="changeset:1"];
    "Graphviz Examples" [style=filled, fillcolor=white, URL="wiki:GraphvizExamples"];
    "Milestone 1"       [style=filled, fillcolor=white, URL="milestone:milestone1"];
    "Readme.txt"        [style=filled, fillcolor=white, URL="source:Readme.txt"];

    "Ticket 1";
    "Report 1";
    "Changeset 1";
    "Graphviz Examples";
    "Milestone 1";
    "Readme.txt";
}
}}}