This file is indexed.

/usr/share/pyshared/pydoctor/templates/table.html is in python-pydoctor 0.5b1+bzr603-1.

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
<table xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1" class="children sortable">
  <t:attr name="id" t:render="id" />
  <tr t:render="header">
    <th t:render="linenohead">Line #</th>
    <th>Kind</th>
    <th>Name</th>
    <th>Docs</th>
  </tr>
  <tr t:render="rows">
    <t:attr name="class" t:render="class_" />
    <td class="lineno" t:render="lineno">
      Line #
    </td>
    <td t:render="kind">
      Kind
    </td>
    <td t:render="name">
      Name
    </td>
    <td t:render="summaryDoc">
      Summary
    </td>
  </tr>
</table>