This file is indexed.

/usr/share/pyshared/zope/app/generations/browser/managerdetails.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
<html metal:use-macro="context/@@standard_macros/view" i18n:domain="zope">
<head>
<title metal:fill-slot="title">Manager Details</title>
</head>
<body>
<div metal:fill-slot="body">

<h1 i18n:translate="">
 <b i18n:name="application_id" tal:content="view/id" />
 Application Manager Details
</h1>
<br/>

<tal:block repeat="evolver view/getEvolvers">

<h2 i18n:translate="">
  Evolver 
  from Generation <b i18n:name="from" tal:content="evolver/from"/>
  to Generation <b i18n:name="to" tal:content="evolver/to"/>
</h2>
<br />
<div tal:content="structure evolver/info">
  Evolution information.
</div>

</tal:block>

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