This file is indexed.

/usr/share/pyshared/schooltool/app/timetable-integration.zcml is in python-schooltool 1:2.1.0-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
<?xml version="1.0"?>
<configure xmlns="http://namespaces.zope.org/zope"
           xmlns:security="http://schooltool.org/securitypolicy">

  <class class="schooltool.schoolyear.schoolyear.SchoolYear">
    <implements interface="schooltool.timetable.interfaces.IHaveTimetables" />
  </class>

  <adapter
      for="schooltool.timetable.interfaces.ITimetableContainer"
      provides="schooltool.schoolyear.interfaces.ISchoolYear"
      factory="schooltool.timetable.app.getTimetableContainerOwner"
    />

  <class class="schooltool.course.section.Section">
    <implements interface="schooltool.timetable.interfaces.IHaveSchedule" />
  </class>

  <adapter
      for="schooltool.timetable.interfaces.IScheduleContainer"
      provides="schooltool.course.interfaces.ISection"
      factory="schooltool.timetable.app.getScheduleContainerOwner"
    />

  <adapter factory=".timetable.EmergencyDayTimetableSubscriber"
           name="update-timetables-on-emergency" />

  <security:describe_action
      group="schooltool.course-sections" name="edit_timetables"
      title="Assign timetables"
      order="41"
      interface="schooltool.course.interfaces.ISection"
      permission="schooltool.edit"
  />

  <security:describe_action
      group="schooltool.course-sections" name="edit_schedule"
      title="Change schedule"
      order="42"
      interface="schooltool.course.interfaces.ISection"
      permission="schooltool.edit"
  />

</configure>