This file is indexed.

/usr/share/pyshared/zope/app/applicationcontrol/browser/zodbcontrol.pt is in python-zope.app.applicationcontrol 3.5.10-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
<html metal:use-macro="context/@@standard_macros/view"
    i18n:domain="zope">
  <head>
    <title i18n:translate="">ZODB Controller</title>
  </head>
  <body>
    <div id="message" metal:fill-slot="message">
      <div class="row" tal:repeat="status view/update">
         <div class="field" tal:content="status" i18n:translate=""/>
      </div>
    </div>
    <div metal:fill-slot="body">
      <form action="." method="post" tal:attributes="action request/URL">
      <div class="row">
        <table border="1">
            <tr>
              <th i18n:translate="">Pack</th>
              <th i18n:translate="">Utility Name</th>
              <th i18n:translate="">Database Name</th>
              <th i18n:translate="">Size</th>
            </tr>
            <tr tal:repeat="db view/databases">
              <td>
                <input type="checkbox" name="dbs:list"
                       tal:attributes="value db/utilName"/>
              </td>
              <td>
                <span tal:replace="db/utilName"/>
              </td>

              <td>
                <span tal:replace="db/dbName"/>
              </td>
              <td>
                <span tal:replace="db/size"/>
              </td>
            </tr>
        </table>

        <div class="row">
          <span class="label" i18n:translate="">Keep up to</span>
          <span class="field">
            <input type="text" size="4" name="days" value="0"
                   tal:attributes="value request/days|string:0" />
            <span tal:omit-tag="" i18n:translate="">days</span>
          </span>
          <div class="controls">
            <input type="submit" name="PACK" value="Pack"
                i18n:attributes="value pack-button"/>
          </div>
        </div>

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