This file is indexed.

/usr/share/pyshared/zope/app/generations/browser/managers.pt is in python-zope.app.generations 3.6.1-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
<html metal:use-macro="context/@@standard_macros/view" i18n:domain="zope">
<head>
<title metal:fill-slot="title">Database Generations</title>
</head>
<body>
<div metal:fill-slot="body">

<span i18n:translate="">Database generations</span>

<form tal:attributes="action request/URL"
      tal:define="status view/evolve" 
      >

<p tal:condition="status">
<span tal:condition="status/to" i18n:translate=""
      >The database was updated to generation <span
      i18n:name=generation
      tal:content="status/to">2</span> for <span
            i18n:name=application
            tal:content="status/app"
            >foo.bar</span>.</span>
<span tal:condition="not: status/to" i18n:translate=""
      >The database is up to date for <span 
      i18n:name=application
      tal:content="status/app"
      >foo.bar</span>.</span>
</p>

<table border="1">

<tr>
    <th i18n:translate="">Application</th>
    <th i18n:translate="">Minimum Generation</th>
    <th i18n:translate="">Maximum Generation</th>
    <th i18n:translate="">Current Database Generation</th>
    <th i18n:translate="">Evolve?</th>
</tr>
<tr tal:repeat="app view/applications">
    <td>
      <a href=""
         tal:attributes=
             "href string:generations_managerdetails.html?id=${app/id}"
         tal:content="app/id">foo.bar</a>
    </td>
    <td tal:content="app/min">1</td>
    <td tal:content="app/max">10</td>
    <td tal:content="app/generation">2</td>
    <td>
       <input type="submit" value=" evolve " name="evolve"
              tal:condition="app/evolve"
              tal:attributes="name app/evolve"
              >
       <span tal:condition="not: app/evolve"
             i18n:translate=""
             >No, up to date</span>
    </td>
</tr>
</table>
</form>
</div>
</body>
</html>