This file is indexed.

/usr/share/popfile/skins/default/bucket-page.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
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<TMPL_INCLUDE NAME="common-top.thtml">
<TMPL_INCLUDE NAME="common-middle.thtml">

<h2 class="buckets"><TMPL_VAR NAME="Bucket_Main_Title"></h2>

<table summary="">
    <tr>
        <th scope="row" class="bucketsLabel">
            <TMPL_VAR NAME="Localize_SingleBucket_WordCount">
        </th>
        <td>
            &nbsp;
        </td>
        <td>
            <TMPL_VAR NAME="Bucket_Word_Count">
        </td>
        <td>
            (<TMPL_VAR NAME="Bucket_Unique_Count">)
        </td>
    </tr>
    <tr>
        <th scope="row" class="bucketsLabel">
            <TMPL_VAR NAME="Localize_SingleBucket_TotalWordCount">
        </th>
        <td>
            &nbsp;
        </td>
        <td>
            <TMPL_VAR NAME="Bucket_Total_Word_Count">
        </td>
        <td>
        </td>
    </tr>
    <tr>
        <td colspan="3">
            <hr />
        </td>
    </tr>
    <tr>
        <th scope="row" class="bucketsLabel">
            <TMPL_VAR NAME="Localize_SingleBucket_Percentage">
        </th>
        <td>
        </td>
        <td>
            <TMPL_VAR NAME="Bucket_Percentage">
        </td>
        <td>
        </td>
    </tr>
</table>

<form action="/buckets" method="post">
    <input type="hidden" name="session" value="<TMPL_VAR NAME="Session_Key">" />
    <input type="hidden" name="showbucket" value="<TMPL_VAR NAME="Bucket_Bucket">" />
    <input type="submit" name="clearbucket" class="submit" value="<TMPL_VAR NAME="Localize_SingleBucket_ClearBucket">" />
</form>

<TMPL_IF NAME="Bucket_If_Has_Words">

<p>
    <TMPL_VAR NAME="Localize_SingleBucket_Message1">
</p>
<table summary="<TMPL_VAR NAME="Localize_Bucket_WordListTableSummary">">
    <tr>
        <td colspan="2">

            <TMPL_LOOP NAME="Bucket_Loop_Letters">

            <TMPL_IF NAME="Bucket_If_Show_Letter">

            <b>
                <span class="bucketLetterSelected">
                   - <TMPL_VAR NAME="Bucket_Letter"> -
                </span>
            </b>

            <TMPL_ELSE>

            <a class="bucketLetter" href="/buckets?session=<TMPL_VAR NAME="Session_Key">&amp;showbucket=<TMPL_VAR NAME="Bucket_Bucket">&amp;showletter=<TMPL_VAR NAME="Bucket_Letter" ESCAPE=URL>">
                <b>
                   <TMPL_VAR NAME="Bucket_Letter" ESCAPE=HTML>
                </b>
            </a>

            </TMPL_IF>

            </TMPL_LOOP>

        </td>
    </tr>

    <TMPL_IF NAME="Bucket_If_Show_Letter">

    <tr>
        <td colspan="2">
            <TMPL_VAR NAME="Bucket_Word_Table_Title">
        </td>
    </tr>
    <tr>
        <td valign="top">
            <b>
                <span class="bucketLetterSelected">
                    <TMPL_VAR NAME="Bucket_Letter" ESCAPE=HTML>
                </span>
            </b>
        </td>
        <td valign="top">
        <table summary="">

            <TMPL_LOOP NAME="Bucket_Loop_Row">

            <tr>

                <TMPL_LOOP NAME="Bucket_Loop_Column">

                <td>
                    <a class="wordListLink" href="/buckets?session=<TMPL_VAR NAME="Session_Key">&amp;lookup=Lookup&amp;word=<TMPL_VAR NAME="Bucket_Word" ESCAPE=URL>#Lookup">
                        <b>
                            <TMPL_VAR NAME="Bucket_Word">
                        </b>
                    </a>
                </td>
                <td>
                    <TMPL_VAR NAME="Bucket_Word_Count">
                </td>
                <td>
                    &nbsp;
                </td>

                </TMPL_LOOP>

            </tr>

            </TMPL_LOOP> <!-- End of loop Bucket_Loop_Row -->

        </table>

        </td>
    </tr>

    </TMPL_IF>

</table>

</TMPL_IF>

<TMPL_INCLUDE NAME="common-bottom.thtml">