This file is indexed.

/usr/share/popfile/skins/default/view-quickmagnets-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
61
62
63
64
65
66
67
68
<TMPL_IF NAME="View_QuickMagnets_If">

<form action="/magnets" method="post">
    <input type="hidden" name="session" value="<TMPL_VAR NAME="Session_Key">" />
    <input type="hidden" name="count" value="<TMPL_VAR NAME="View_QuickMagnets_Count">" />
    <hr />
    <b>
        <a name="quick_magnets">
            <TMPL_VAR NAME="Localize_QuickMagnets">
        </a>
    </b>

    <table class="top20Words">
        <tr>
            <th scope="col">
                <TMPL_VAR NAME="Localize_Magnet">
            </th>
            <th>
                <TMPL_VAR NAME="Localize_Magnet_Always">
            </th>
        </tr>

            <TMPL_LOOP NAME="View_QuickMagnets_Loop">
            
        <tr>
            <td scope="col">
                <TMPL_VAR NAME="View_QuickMagnets_Type">: 
                <select name="text<TMPL_VAR NAME="View_QuickMagnets_I">">
                    
                    <TMPL_LOOP NAME="View_QuickMagnets_Loop_Magnets">
                    
                    <option value="<TMPL_VAR NAME="View_QuickMagnets_Magnet">">
                        <TMPL_VAR NAME="View_QuickMagnets_Magnet">
                    </option>
                    
                    </TMPL_LOOP>
                    
                </select>
            </td>
            <td>
                <input type="hidden" name="type<TMPL_VAR NAME="View_QuickMagnets_I">" class="magnetsAddType" value="<TMPL_VAR NAME="View_QuickMagnets_Type">" />
                <select name="bucket<TMPL_VAR NAME="View_QuickMagnets_I">" class="magnetsAddBucket">
                    <option value="">&nbsp;</option>
                    
                    <TMPL_LOOP NAME="View_QuickMagnets_Loop_Buckets">
                    
                    <option value="<TMPL_VAR NAME="View_QuickMagnets_Bucket">" style="color: <TMPL_VAR NAME="View_QuickMagnets_Bucket_Color">">
                        <TMPL_VAR NAME="View_QuickMagnets_Bucket">
                    </option>
                    
                    </TMPL_LOOP>
                </select>
            </td>
        </tr>
    
        </TMPL_LOOP>

        <tr>
            <td>
            </td>
            <td>
                <input type="submit" class="submit" name="create" value="<TMPL_VAR NAME="Localize_Create">" />
            </td>
        </tr>
    </table>
</form>

</TMPL_IF>