This file is indexed.

/usr/lib/python2.7/dist-packages/zope/pagetemplate/tests/input/dtml3.html is in python-zope.pagetemplate 4.0.4-0ubuntu2.

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
24
25
26
27
28
29
30
31
32
33
<head><title>Test of documentation templates</title></head>
<body>
        <div tal:condition="options/content/args">
          The arguments were:
          <span tal:condition="options/batch/previous_sequence">
            (<span
              tal:replace="options/batch/previous_sequence_start_item"
              >previous start item</span>-<span
              tal:replace="options/batch/previous_sequence_end_item"
              >previous end item</span>)
          </span>
          <dl>
            <span tal:repeat="arg options/batch">
              <dt><span tal:replace="arg">??</span>.</dt>
              <dd>Argument <span tal:define="num arg/num"
                                 tal:replace="string: $num"
                  >99</span> was <span tal:replace="arg"
                  >??</span></dd>
            </span>
          </dl>
          <span tal:condition="options/batch/next_sequence">
            (<span
              tal:replace="options/batch/next_sequence_start_item"
              >next start item</span>-<span
              tal:replace="options/batch/next_sequence_end_item"
              >next end item</span>)
          </span>
        </div>
        <p tal:condition="not:options/content/args">
          No arguments were given.
        </p>
        And I am 100% sure!
</body>