This file is indexed.

/usr/lib/python2.7/dist-packages/zope/configuration/tests/simple.zcml is in python-zope.configuration 4.0.3-3.

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

  <meta:directive
      name="register"
      namespace="http://sample.namespaces.zope.org/files"
      schema=".simple.IRegisterFile"
      handler=".simple.registerFile"
      >

      Register a file with the file registry

      Blah blah blah :)

  </meta:directive>

  <files:register 
      path="simple.py"
      title="How to create a simple directive"
      >
    Describes how to implement a simple directive
  </files:register>

  <files:register path="simple.zcml">
    Shows the ZCML directives needed to register a simple directive.
    
    Also show some usage examples,
  </files:register>

  <files:register path="__init__.py" title="Make this a package" />
 

</configure>