This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/gradebook/browser/journal.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
<?xml version="1.0"?>
<configure
    xmlns="http://namespaces.zope.org/browser"
    xmlns:zope="http://namespaces.zope.org/zope"
    xmlns:flourish="http://schooltool.org/flourish"
    i18n_domain="schooltool.gradebook">

  <!-- Attendance reports -->
  <page
      name="request_absences_by_day.html"
      for="schooltool.schoolyear.interfaces.ISchoolYear"
      class=".request_reports.RequestAbsencesByDayView"
      template="templates/request_absences_by_day.pt"
      permission="schooltool.edit"
      />
  <zope:adapter factory=".request_reports.AbsenceByDayValidator" />

  <flourish:pdf
      name="absences_by_day.pdf"
      for="schooltool.schoolyear.interfaces.ISchoolYear"
      class=".pdf_views.AbsencesByDayPDFView"
      content_template="rml/absences_by_day_rml.pt"
      permission="schooltool.edit"
      />
  <flourish:pdf
      name="section_absences.pdf"
      for="schooltool.course.interfaces.ISection"
      class=".pdf_views.SectionAbsencesPDFView"
      content_template="rml/section_absences_rml.pt"
      permission="schooltool.edit"
      />

</configure>