This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/078-tags-and-newlines.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
23
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
      tal:omit-tag=""
      tal:define="id 'foo'">
  <body>
      <span id="toDataContainer"
            tal:attributes="id string:${id}-toDataContainer">
        <script type="text/javascript" tal:content="string:
          copyDataForSubmit('${id}');">
          // initial copying of field "field.to" --> "field"
          copyDataForSubmit("<i tal:replace="${id}"/>");
        </script>
      </span>
      <tal:block
    repeat="value python: (1, 2, 3)"
    ><span class="selected-option"
           tal:content="value"
    /><tal:block condition="not:repeat.value.end">, </tal:block
  ></tal:block
>
  </body>
</html>