This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/004-attributes.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
<html>
  <body>
    <span tal:attributes="class 'hello'" />
    <span class="goodbye" tal:attributes="class 'hello'" />
    <span CLASS="goodbye" tal:attributes="class 'hello'" />
    <span tal:attributes="class None" />
    <span a="1" b="2" c="3" tal:attributes="a None" />
    <span a="1" b="2" c="3" tal:attributes="b None" />
    <span a="1" b="2" c="3" tal:attributes="c None" />
    <span a="1" b="2" c="3" tal:attributes="b None; c None" />
    <span a="1" b="2" c="3" tal:attributes="b string:;;" />
    <span a="1" b="2" c="3" tal:attributes="b string:&amp;" />
    <span class="hello" tal:attributes="class 'goodbye'" />
    <span class="hello" tal:attributes="class '&quot;goodbye&quot;'" />
    <span class="hello" tal:attributes="class '\'goodbye\''" />
    <span class='hello' tal:attributes="class '\'goodbye\''" />
  </body>
</html>