This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/041-translate-nested-names.pt is in python-chameleon 2.6.1-2.

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
<html>
  <body>
    <div i18n:translate="">
      Hello
      <tal:nested condition="True">
        <span i18n:name="world">world!</span>
      </tal:nested>
    </div>
    <div i18n:translate="hello">
      Hello
      <tal:nested condition="True">
        <span i18n:name="world">world!</span>
      </tal:nested>
    </div>
    <div i18n:translate="">
      Goodbye
      <tal:nested condition="False">
        <span i18n:name="world">world!</span>
      </tal:nested>
    </div>
  </body>
</html>