This file is indexed.

/usr/share/rtpg-www/templates/default/prop.trackers.tt.html is in rtpg-www 0.2.11-3.

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<table class="trackers">
    <colgroup>
        <col/>
        <col width="5%" />
        <col width="10%" />
        <col width="20%" />
    </colgroup>
    <thead>
        <tr>
            <th>[% gettext('Url')           %]</th>
            <th>[% gettext('Enabled')       %]</th>
            <th>[% gettext('Interval')      %]</th>
            <th>[% gettext('Last Update')   %]</th>
        </tr>
    </thead>
    <tbody>
    [% FOR tracker = data.info %]
        [% SET class = [] %]
        [% IF loop.index % 2; class.push('odd'); ELSE; class.push('even'); END %]
        <tr class="[% class.join(' ') %]">
            <td class="url">
                [% IF tracker.favicon %]
                    <img
                        src="[% tracker.favicon %]"
                        width="16px" height="16px"
                        align="left"
                    />
                    &nbsp;
                [% END %]
                <a href="[% tracker.tracker %]" target="blank">
                    [% tracker.url %]
                </a>
            </td>
            <td class="enabled">
                [% IF tracker.is_enabled %][% gettext('Yes') %]
                [% ELSE %][% gettext('No') %]
                [% END %]
            </td>
            <td class="interval">[% tracker.normal_interval %]</td>
            <td class="last_update">
                [% UNLESS tracker.scrape_time_last %][% gettext('Never') %]
                [% ELSE %][% tracker.scrape_time_last.as_human_datetime %]
                [% END %]
            </td>
        </tr>
    [% END %]
    </tbody>
</table>