This file is indexed.

/usr/share/pyshared/lazr/enum/configure.zcml is in python-lazr.enum 1.1.2-0ubuntu4.

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

    <!-- Enumerated types and items -->
    <class class="lazr.enum.MetaEnum">
      <allow interface="zope.schema.interfaces.IVocabularyTokenized" />
      <allow interface="lazr.enum.IEnumeratedType" />
    </class>
    <class class="lazr.enum.Item">
        <allow attributes="name title description enum sortkey __sqlrepr__" />
    </class>

    <class class="lazr.enum.MetaDBEnum">
      <allow interface="zope.schema.interfaces.IVocabularyTokenized" />
      <allow interface="lazr.enum.IEnumeratedType" />
    </class>
    <class class="lazr.enum.DBItem">
        <allow attributes="name title value description sortkey enum __sqlrepr__" />
    </class>

</configure>