This file is indexed.

/usr/share/pyshared/zope/pagetemplate/tests/input/loop1.html is in python-zope.pagetemplate 3.6.3-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
<html>
<head>
<title>Loop doc</title>
</head>
<body>
<p>Choose your type:</p>
<ul>
  <li tal:repeat="type python:'digital', 'analog', 'organic'">
  <a href="dummy" tal:attributes="href string:/mach/$type">
  <span tal:replace="repeat/type/number">1</span>.
  <span tal:replace="type">selection</span></a>
  </li>
</ul>
</body>
</html>