This file is indexed.

/usr/lib/python2.7/dist-packages/chameleon/tests/inputs/040-macro-using-template-symbol.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
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:define-macro="master"
      template-macros="${' '.join(template.macros.names)}"
      macros="${' '.join(macros.names)}">
    <metal:block tal:define="foo 'foo'">
      ${foo}
      <div metal:define-slot="content" tal:replace="None">
         <!-- will be replaced -->
      </div>
      <span template-macros="${' '.join(template.macros.names)}"
            macros="${' '.join(macros.names)}">
         <!-- demonstrate difference between
              `template` and `macros` symbol -->
      </span>
    </metal:block>
</html>