This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/report.zcml 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0"?>
<configure xmlns="http://namespaces.zope.org/browser"
           xmlns:zope="http://namespaces.zope.org/zope"
           xmlns:zcml="http://namespaces.zope.org/zcml"
           xmlns:security="http://schooltool.org/securitypolicy"
           xmlns:report="http://namespaces.schooltool.org/report"
           i18n_domain="schooltool.gradebook">

  <!-- Report links -->

  <security:allow
     interface=".gradebook.TermReportLinkViewlet"
     crowds="managers administrators clerks"
     permission="schooltool.view" />

  <report:reportLink
       name="student_report_card"
       for="schooltool.basicperson.interfaces.IBasicPerson"
       permission="schooltool.edit"
       group="Student"
       description="Contains scores from report sheets.  Formatted to be sent to parents."
       title="Student Report Card"
       file_type="pdf"
       link="request_report_card.html"
       />
  <report:reportLink
       name="student_detail_report"
       for="schooltool.basicperson.interfaces.IBasicPerson"
       permission="schooltool.edit"
       group="Student"
       description="Contains scores from report sheets and attendance.  For use by school staff."
       title="Student Detail Report"
       file_type="pdf"
       link="request_student_detail.html"
       />
  <report:reportLink
       name="group_report_card"
       for="schooltool.group.interfaces.IGroup"
       permission="schooltool.edit"
       group="Group"
       description="A single PDF containing report cards for all students in the group."
       title="Student Report Card by Group"
       file_type="pdf"
       link="request_report_card.html"
       />
  <report:reportLink
       name="group_detail_report"
       for="schooltool.group.interfaces.IGroup"
       permission="schooltool.edit"
       group="Group"
       description="A single PDF containing detail reports for all students in the group."
       title="Student Detail Report by Group"
       file_type="pdf"
       link="request_student_detail.html"
       />
  <report:reportLink
       name="failures_by_term"
       for="schooltool.term.interfaces.ITerm"
       class="schooltool.gradebook.browser.gradebook.TermReportLinkViewlet"
       permission="schooltool.view"
       group="Term"
       description="Shows all students receiving failing scores in the selected report activity and term."
       title="Failures by Term"
       file_type="pdf"
       link="request_failing_report.html"
       />

  <!-- Attendance reports -->
  <configure zcml:condition="have schooltool.lyceum.journal">
    <report:reportLink
         name="absences_by_day"
         for="schooltool.schoolyear.interfaces.ISchoolYear"
         class="schooltool.gradebook.browser.gradebook.TermReportLinkViewlet"
         permission="schooltool.view"
         group="School Year"
         description="Lists students absent on a given day."
         title="Absences By Day"
         file_type="pdf"
         link="request_absences_by_day.html"
         />
    <report:reportLink
         name="absences_by_section"
         for="schooltool.course.interfaces.ISection"
         permission="schooltool.edit"
         group="Section"
         description="Summary of absences and tardies from a single section and term."
         title="Absences by Section"
         file_type="pdf"
         link="section_absences.pdf"
         />
  </configure>

</configure>