This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/rml/report_card_student_comments.pt is in python-schooltool.gradebook 2.6.3-0ubuntu1.

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
<metal:block
    xmlns:tal="http://xml.zope.org/namespaces/tal"
    xmlns:metal="http://xml.zope.org/namespaces/metal"
    xmlns:i18n="http://xml.zope.org/namespaces/i18n"
    i18n:domain="schooltool.gradebook">
  <pto>
    <tal:loop repeat="course view/comments_by_course">
      <tal:block define="comments course/comments"
                 tal:condition="comments">
        <para style="report_card_comments-header" tal:content="course/title" />
        <blockTable style="table.comments" colWidths="25%,75%">
          <tr tal:repeat="comment comments">
            <td tal:content="comment/heading" />
            <td tal:content="structure comment/value" />
          </tr>
        </blockTable>
      </tal:block>
    </tal:loop>
  </pto>
  <nextPage />
</metal:block>