This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/intervention/intervention.zcml is in python-schooltool.intervention 2.7.1-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
<?xml version="1.0" encoding="utf-8"?>
<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:i18n="http://namespaces.zope.org/i18n"
    i18n_domain="schooltool.intervention">

  <!-- The objects -->
  <class class=".intervention.InterventionRoot">
    <implements interface=".interfaces.IInterventionRoot" />
    <implements interface=".interfaces.IInterventionRootMarker" />
    <require
        permission="schooltool.view"
        interface=".interfaces.IInterventionRoot" />
  </class>
  <class class=".intervention.InterventionSchoolYear">
    <implements interface=".interfaces.IInterventionSchoolYear" />
    <implements interface=".interfaces.IInterventionRootMarker" />
    <require
        permission="schooltool.view"
        interface=".interfaces.IInterventionSchoolYear" />
  </class>
  <class class=".intervention.InterventionStudent">
    <implements interface=".interfaces.IInterventionStudent" />
    <implements interface=".interfaces.IInterventionStudentMarker" />
    <require
        permission="schooltool.edit"
        set_schema=".interfaces.IInterventionStudent" />
    <require
        permission="schooltool.view"
        interface=".interfaces.IInterventionStudent" />
  </class>
  <class class=".intervention.InterventionMessages">
    <implements interface=".interfaces.IInterventionMessages" />
    <implements interface=".interfaces.IInterventionStudentMarker" />
    <require
        permission="schooltool.edit"
        set_schema=".interfaces.IInterventionMessages" />
    <require
        permission="schooltool.view"
        interface=".interfaces.IInterventionMessages" />
  </class>
  <class class=".intervention.InterventionMessage">
    <implements interface=".interfaces.IInterventionMessage" />
    <implements interface=".interfaces.IInterventionMarker" />
    <require
        permission="schooltool.edit"
        set_schema=".interfaces.IInterventionMessage" />
    <require
        permission="schooltool.view"
        interface=".interfaces.IInterventionMessage" />
  </class>
  <class class=".intervention.InterventionGoals">
    <implements interface=".interfaces.IInterventionGoals" />
    <implements interface=".interfaces.IInterventionStudentMarker" />
    <require
        permission="schooltool.edit"
        set_schema=".interfaces.IInterventionGoals" />
    <require
        permission="schooltool.view"
        interface=".interfaces.IInterventionGoals" />
  </class>
  <class class=".intervention.InterventionGoal">
    <implements interface=".interfaces.IInterventionGoal" />
    <implements interface=".interfaces.IInterventionMarker" />
    <require
        permission="schooltool.edit"
        set_schema=".interfaces.IInterventionGoal" />
    <require
        permission="schooltool.view"
        interface=".interfaces.IInterventionGoal" />
  </class>

</configure>