This file is indexed.

/usr/share/pyshared/zope/app/applicationcontrol/browser/translationdomaincontrol.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
<html metal:use-macro="context/@@standard_macros/view"
    i18n:domain="zope">
  <head>
    <title i18n:translate="">Translation Domains</title>
  </head>
  <body>
    <div metal:fill-slot="body">

    <p tal:define="status view/reloadCatalogs"
         tal:condition="status"
         tal:content="status" i18n:translate=""/>

    <div tal:repeat="domainInfo view/getCatalogsInfo">

    <div class="row">
        <div class="label" i18n:translate="">Domain</div>
        <div class="field" tal:content="domainInfo/domain">domain</div>
    </div>

    <table class="listing">

        <thead>
        <tr>
           <th i18n:translate="">Language</th>
           <th i18n:translate="">Files</th>
           <th>&nbsp;</th>
        </tr>
        </thead>

        <tr tal:repeat="catalogInfo domainInfo/languagesInfo">
            <td tal:content="catalogInfo/language"></td>
            <td>
                <div tal:repeat="fileName catalogInfo/fileNames"
                     tal:content="fileName"></div>
            </td>
            <td>
                <a tal:attributes="href string:?RELOAD=&domain=${domainInfo/domain}&language=${catalogInfo/language}"
                   i18n:translate="reload-button">Reload</a>
            </td>
        </tr>

    </table>

    </div>

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