This file is indexed.

/usr/share/pyshared/zope/app/generations/configure.zcml is in python-zope.app.generations 3.6.1-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
<configure xmlns="http://namespaces.zope.org/zope">

  <!--
  <utility
      name="zope.app" 
      provides=".interfaces.ISchemaManager"
      factory=".generations.SchemaManager"
      >
  
      Provide an *initial* schema manager for zope.
  
      We can use a factory here, because the generation is 0.
  
      When we get to generation 1, we'll have to actually create
      a manager instance with the necessary parameters and a package of
      evolution scripts.
  </utility>
  -->
  
  <include package=".browser" />

  <!-- Registering documentation with API doc -->
  <configure
      xmlns:apidoc="http://namespaces.zope.org/apidoc"
      xmlns:zcml="http://namespaces.zope.org/zcml"
      zcml:condition="have apidoc">

    <apidoc:bookchapter
        id="generations"
        title="Generations"
        doc_path="README.txt"
        />

  </configure>

</configure>