This file is indexed.

/usr/share/doc/trac-graphviz/examples/GraphvizExamples%2FMapNodesSvg is in trac-graphviz 0.7.5-1.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
29
30
= Graphviz Eamples Map Nodes, SVG Image =

The individual nodes of the image point to the various pages on the Edgewall Trac project site.

Notice that the entire oval for the Trac node is an active link while the others are only active on the text and the oval outline. The use of the '''style=filled''' and '''fillcolor=red''' force the SVG links to be activated for the whole node.

{{{
#!graphviz.circo/svg
digraph G {
    Trac [style=filled, fillcolor=red, URL="http://trac.edgewall.com/"];
    TracProject [URL="http://projects.edgewall.com/trac/"];
    Guide [URL="http://projects.edgewall.com/trac/wiki/TracGuide"];
    FAQ [URL="http://projects.edgewall.com/trac/wiki/TracFaq"];
    Download [URL="http://projects.edgewall.com/trac/wiki/TracDownload"];
    ChangeLog [URL="http://projects.edgewall.com/trac/wiki/ChangeLog"];
    MailingList [URL="http://projects.edgewall.com/trac/wiki/MailingList"];
    TracProject [URL="http://projects.edgewall.com/trac/wiki/TracProject"];
    RoadMap [URL="http://projects.edgewall.com/trac/wiki/RoadMap"];
    Team [URL="http://projects.edgewall.com/trac/wiki/TracTeam"];

    Trac -> TracProject;
    Trac -> Guide;
    Trac -> FAQ;
    Trac -> Download;
    Trac -> ChangeLog;
    Trac -> MailingList;
    Trac -> RoadMap;
    Trac -> Team;
}
}}}