This file is indexed.

/usr/share/popfile/skins/default/bar-chart-widget.thtml is in popfile 1.1.3+dfsg-0ubuntu1.

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
49
50
51
52
53
54
55
56
57
58
59
60
<TMPL_LOOP NAME="bar_loop_xaxis">
<tr>
    <td align="left">
        <span style="color:<TMPL_VAR NAME="bar_bucket_color">;">
            <TMPL_VAR NAME="bar_bucket_name">
        </span>
    </td>
    <td>
        &nbsp;
    </td>

    <TMPL_LOOP NAME="bar_loop_series">

    <td align="right">
        <TMPL_VAR NAME="bar_count"><TMPL_VAR NAME="bar_percent">
    </td>

    </TMPL_LOOP>

</tr>

</TMPL_LOOP>

<tr>
    <td colspan="<TMPL_VAR NAME="bar_colspan">">
        &nbsp;
    </td>
</tr>

<TMPL_IF NAME="bar_if_total_count">

<tr>
    <td colspan="<TMPL_VAR NAME="bar_colspan">">

        <table class="barChart" width="100%" summary="<TMPL_VAR NAME="Localize_Bucket_BarChartSummary">">
            <tr>

                <TMPL_LOOP NAME="bar_loop_total_xaxis">
                <TMPL_IF NAME="bar_if_percent">

                <td style="background:<TMPL_VAR NAME="bar_bucket_color">; width:<TMPL_VAR NAME="bar_width">%;" title="<TMPL_VAR NAME="bar_bucket_name2"> (<TMPL_VAR NAME="bar_width">)">
                    <img src="pix.gif" alt="" height="20" width="1" />
                </td>

                </TMPL_IF>
                </TMPL_LOOP>

            </tr>
        </table>
    </td>
</tr>
<tr>
    <td colspan="<TMPL_VAR NAME="bar_colspan">" align="right">
        <span class="graphFont">
            100%
        </span>
    </td>
</tr>

</TMPL_IF>