This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/079-implicit-i18n.pt is in python-chameleon 2.16-4.

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
<html tal:define="request dict(site_url='http://host')">
  <head>
    <title>Welcome</title>
  </head>
  <body>
    <h1>Welcome</h1>
    <span>An edge case: ${.</span>
    <img tal:define="site_url request.site_url" alt="Site logo" href="${site_url}/logo.png" />
    <img alt="Site logo" href="${request.site_url}/logo.png" />
    <div id="content">
      boo   foo.
      <br />
      bar.
    </div>
  </body>
</html>