This file is indexed.

/usr/share/pyshared/schooltool/relationship/relationship.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
<?xml version="1.0"?>
<configure
    xmlns="http://namespaces.zope.org/zope"
    i18n_domain="schooltool">

  <class
      class="schooltool.relationship.relationship.BoundRelationshipProperty">
    <allow attributes="__iter__ __contains__ relationships" />
  </class>

  <class
      class="schooltool.relationship.relationship.RelationshipInfo">
    <allow attributes="source target extra_info" />
  </class>

  <adapter
      for="zope.annotation.interfaces.IAnnotatable"
      provides="schooltool.relationship.interfaces.IRelationshipLinks"
      factory="schooltool.relationship.annotatable.getRelationshipLinks"
      trusted="true"
      />

  <subscriber
      for="zope.lifecycleevent.interfaces.IObjectRemovedEvent"
      handler="schooltool.relationship.objectevents.unrelateOnDeletion"
      />

  <subscriber
      for="zope.lifecycleevent.interfaces.IObjectCopiedEvent"
      handler="schooltool.relationship.objectevents.unrelateOnCopy"
      />

</configure>