This file is indexed.

/usr/share/pyshared/schooltool/course/security.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
 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
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?xml version="1.0"?>
<configure xmlns="http://schooltool.org/securitypolicy"
           xmlns:zope="http://namespaces.zope.org/zope"
           i18n_domain="schooltool">

  <!-- Security -->

  <crowd
      name="person_instructors"
      factory="schooltool.course.section.PersonInstructorsCrowd" />

  <crowd
      name="section_instructors"
      factory="schooltool.course.section.InstructorsCrowd" />

  <crowd
      name="section_learners"
      factory=".section.LearnersCrowd" />

  <crowd
      name="configurable_section_viewers"
      factory=".section.SectionCalendarSettingCrowd" />

  <allow
      interface="schooltool.course.interfaces.ISectionContainer"
      crowds="administration configurable_section_viewers"
      permission="schooltool.view" />
  <allow
      interface="schooltool.course.interfaces.ISectionContainer"
      crowds="administration"
      permission="schooltool.edit" />

  <allow
      interface="schooltool.course.interfaces.ISection"
      crowds="administration section_instructors section_learners configurable_section_viewers"
      permission="schooltool.view" />
  <allow
      interface="schooltool.course.interfaces.ISection"
      crowds="administration section_instructors"
      permission="schooltool.edit" />

  <setting
      key="everyone_can_view_section_info"
      text="Basic information about sections, including rosters, is visible to the general public."
      alt_text="Basic information about sections is only visible to instructors and students in that section, and school administration."
      default="False" />

  <allow
      interface="schooltool.course.interfaces.ICourseContainer"
      crowds="administration everybody"
      permission="schooltool.view" />
  <allow
      interface="schooltool.course.interfaces.ICourseContainer"
      crowds="administration"
      permission="schooltool.edit" />

  <allow
      interface="schooltool.course.interfaces.ICourse"
      crowds="everybody"
      permission="schooltool.view" />
  <allow
      interface="schooltool.course.interfaces.ICourse"
      crowds="administration leaders"
      permission="schooltool.edit" />

  <!-- Grant read access to person's data to his instructors -->
  <allow
      interface="schooltool.person.interfaces.IPerson"
      crowds="person_instructors"
      permission="schooltool.view" />

  <!-- Security descriptions -->

  <describe_group name="schooltool.course-courses"
      title="Courses"
      description="A course in SchoolTool describes a set curriculum
                   taught in a section."
  />

  <describe_action
      group="schooltool.course-courses" name="list" title="List"
      order="10"
      interface="schooltool.course.interfaces.ICourseContainer"
      permission="schooltool.view"
  />

  <describe_action
      group="schooltool.course-courses" name="create_delete" title="Create/Delete"
      order="20"
      interface="schooltool.course.interfaces.ICourseContainer"
      permission="schooltool.edit"
  />

  <describe_action
      group="schooltool.course-courses" name="view" title="View"
      order="30"
      interface="schooltool.course.interfaces.ICourse"
      permission="schooltool.view"
  />

  <describe_action
      group="schooltool.course-courses" name="modify" title="Modify"
      order="40"
      interface="schooltool.course.interfaces.ICourse"
      permission="schooltool.edit"
  />

  <describe_group name="schooltool.course-sections"
      title="Sections"
      description="A section is a set of one or more learners
                   who meet during a term."
  />

  <describe_action
      group="schooltool.course-sections" name="list" title="List"
      order="10"
      interface="schooltool.course.interfaces.ISectionContainer"
      permission="schooltool.view"
  />

  <describe_action
      group="schooltool.course-sections" name="create_delete" title="Create/Delete"
      order="20"
      interface="schooltool.course.interfaces.ISectionContainer"
      permission="schooltool.edit"
  />

  <describe_action
      group="schooltool.course-sections" name="view" title="View"
      order="30"
      interface="schooltool.course.interfaces.ISection"
      permission="schooltool.view"
  />

  <describe_action
      group="schooltool.course-sections" name="modify" title="Modify"
      order="40"
      interface="schooltool.course.interfaces.ISection"
      permission="schooltool.edit"
  />

  <describe_action
      group="schooltool.course-sections" name="view_calendar"
      title="View calendar"
      order="50"
      interface="schooltool.app.interfaces.ISchoolToolCalendar"
      permission="schooltool.view"
  />

  <describe_action
      group="schooltool.course-sections" name="change_calendar"
      title="Change calendar"
      order="60"
      interface="schooltool.app.interfaces.ISchoolToolCalendar"
      permission="schooltool.edit"
  />

  <!-- Parent crowds -->

  <zope:adapter
      trusted="yes"
      factory=".section.SectionCalendarViewers"
      provides="schooltool.app.interfaces.ICalendarParentCrowd"
      name="schooltool.view" />

  <zope:adapter
      trusted="yes"
      for=".interfaces.ISection"
      factory=".section.InstructorsCrowd"
      provides="schooltool.app.interfaces.ICalendarParentCrowd"
      name="schooltool.edit" />

  <switch_description
     group="schooltool.course-sections"
     crowd_factory="schooltool.app.security.CalendarViewersCrowd"
     use_crowd_factory=".section.SectionCalendarViewers"
  />

  <switch_description
     group="schooltool.course-sections"
     crowd_factory="schooltool.app.security.CalendarEditorsCrowd"
     use_crowd_factory=".section.InstructorsCrowd"
  />


</configure>