This file is indexed.

/usr/share/doc/trac-graphviz/examples/GraphvizExamples%2FMapNodesPng 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 Eamples Map Nodes, PNG Image =

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

{{{
#!graphviz.circo/png
digraph G {
    Trac [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;
}
}}}