This file is indexed.

/usr/share/pyshared/zope/app/container/browser/index.pt is in python-zope.app.container 3.9.2-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
<html metal:use-macro="context/@@standard_macros/page"
    i18n:domain="zope">
<head>
  <style metal:fill-slot="headers" type="text/css">
    <!--
    .ContentIcon {
      width: 20px;
    }

    .ContentTitle {
      text-align: left;
    }
    -->
  </style>
</head>
<body>
<div metal:fill-slot="body">

  <table
      id="sortable" class="listing" summary="Content listing"
      cellpadding="2" cellspacing="0"
      i18n:attributes="summary">

    <thead> 
      <tr>
        <th>&nbsp;</th>
        <th i18n:translate="">Name</th>
        <th i18n:translate="">Title</th>
        <th i18n:translate="">Created</th>
        <th i18n:translate="">Modified</th>
      </tr>
    </thead>

    <tbody>

      <tr tal:repeat="info view/listContentInfo">
        <td>
          <a
              href="#"
              tal:attributes="href info/url"
              tal:content="structure info/icon|default" />
        </td>

        <td class="ContentTitle">
          <a href="subfolder_id"
             tal:attributes="href info/url"
             tal:content="info/id"
             i18n:translate=""
          >ID here</a>
        </td>

        <td><span tal:content="info/title|default"
            i18n:translate="">&nbsp;</span></td>
        <td><span tal:content="info/created|default"
            i18n:translate="">&nbsp;</span></td>
        <td><span tal:content="info/modified|default"
            i18n:translate="">&nbsp;</span></td>

      </tr>
    </tbody>

  </table>

</div>
</body>
</html>