This file is indexed.

/usr/lib/python2.7/dist-packages/zope/security/configure.zcml is in python-zope.security 4.0.3-2ubuntu1.

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
<configure xmlns="http://namespaces.zope.org/zope">

  <include file="meta.zcml" package="zope.component" />
  <include file="meta.zcml" package="zope.security" />

  <utility
      component=".permission.PermissionsVocabulary"
      provides="zope.schema.interfaces.IVocabularyFactory"
      name="Permissions"
      />

  <utility
      component=".permission.PermissionIdsVocabulary"
      provides="zope.schema.interfaces.IVocabularyFactory"
      name="Permission Ids"
      />

  <class class=".permission.Permission">
    <allow interface=".interfaces.IPermission" />
  </class>

  <include file="permissions.zcml" />

</configure>