This file is indexed.

/usr/share/doc/libjs-mochikit/examples/sortable_tables/index.html is in libjs-mochikit 1.4.2-4fakesync1.

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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>Sortable Tables from Scratch with MochiKit</title>
        <link href="sortable_tables.css" rel="stylesheet" type="text/css" />
        <script type="text/javascript" src="../../lib/MochiKit/MochiKit.js"></script>
        <script type="text/javascript" src="sortable_tables.js"></script>
    </head>
    <body>
        <h1>
            Sortable Tables from Scratch with MochiKit
        </h1>
        <p>
            This is an example of how one might do sortable tables in
            an inobtrusive manner.  The data is supplied by the server
            and is already in the table.
        </p>
        <p>
            For a detailed description of what happens under the hood,
            check out
            <a href="sortable_tables.js" class="view-source">sortable_tables.js</a>.
        </p>
        <p>
            View Source: [
                <a href="index.html" class="view-source">index.html</a> | 
                <a href="sortable_tables.js" class="view-source">sortable_tables.js</a>
            ]
        </p>
        <table id="sortable_table" class="datagrid">
            <thead>
                <tr>
                    <th mochi:format="str">Domain Name</th>
                    <th mochi:format="isodate">Creation Date</th>
                    <th mochi:format="isodate">Expiry Date</th>
                    <th mochi:format="istr">Organization Name</th>
                </tr>
            </thead>
            <tfoot class="invisible">
                <tr>
                    <td colspan="0"></td>
                </tr>
            </tfoot>
            <tbody>
                <tr>
                    <td>mochibot.com</td>
                    <td>2005-02-10</td>
                    <td>2007-02-10</td>
                    <td>Jameson Hsu</td>
                </tr>
                <tr>
                    <td>pythonmac.org</td>
                    <td>2003-09-24</td>
                    <td>2006-09-24</td>
                    <td>Bob Ippolito</td>
                </tr>
                <tr>
                    <td>undefined.org</td>
                    <td>2000-01-10</td>
                    <td>2006-01-10</td>
                    <td>Robert J Ippolito</td>
                </tr>
                <tr>
                    <td>python.org</td>
                    <td>1995-03-27</td>
                    <td>2007-03-28</td>
                    <td>Python Software Foundation</td>
                </tr>
            </tbody>
        </table>
    </body>
</html>