This file is indexed.

/usr/share/pyshared/zope/container/configure.zcml is in python-zope.container 3.12.0-0ubuntu2.

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
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
<configure
   xmlns="http://namespaces.zope.org/zope"
   i18n_domain="zope"
   >

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

  <adapter
     provides=".interfaces.IFind"
     for=".interfaces.IReadContainer"
     permission="zope.ManageContent"
     factory="zope.container.find.FindAdapter"
     />

  <adapter
      for=".interfaces.IReadContainer"
      provides="zope.filerepresentation.interfaces.IReadDirectory"
      factory=".directory.noop"
      />

  <adapter
      for=".interfaces.IWriteContainer"
      provides="zope.filerepresentation.interfaces.IWriteDirectory"
      factory=".directory.noop"
      />

  <adapter
      for=".interfaces.IContentContainer"
      provides="zope.filerepresentation.interfaces.IDirectoryFactory"
      factory=".directory.Cloner"
      permission="zope.ManageContent"
      />

  <adapter
      for=".interfaces.IContentContainer"
      provides="zope.filerepresentation.interfaces.IReadDirectory"
      factory=".directory.ReadDirectory"
      permission="zope.View"
      />

  <adapter
      factory="zope.container.traversal.ContainerTraversable"
      provides="zope.traversing.interfaces.ITraversable"
      for="zope.container.interfaces.IReadContainer"
      />


  <adapter
      factory="zope.container.size.ContainerSized"
      provides="zope.size.interfaces.ISized"
      for="zope.container.interfaces.IReadContainer"
      />

  <adapter
      provides=".interfaces.INameChooser"
      for="zope.container.interfaces.IWriteContainer"
      factory=".contained.NameChooser"
      />

  <subscriber
      for="zope.location.interfaces.ILocation
           zope.lifecycleevent.interfaces.IObjectMovedEvent"
      handler=".contained.dispatchToSublocations"
      >
      Handler dispatches moved events to sublocations of the original object.
  </subscriber>

  <adapter
      provides="zope.location.interfaces.ISublocations"
      for="zope.container.interfaces.IReadContainer"
      factory=".contained.ContainerSublocations"
      />

  <class class=".constraints.ItemTypePrecondition">
    <allow interface=".constraints.IItemTypePrecondition" />
  </class>

  <adapter
      for="zope.container.interfaces.IItemContainer
           zope.publisher.interfaces.browser.IBrowserRequest"
      provides="zope.publisher.interfaces.browser.IBrowserPublisher"
      factory="zope.container.traversal.ItemTraverser"
      permission="zope.Public"
      />

  <adapter
      for="zope.container.interfaces.ISimpleReadContainer
           zope.publisher.interfaces.browser.IBrowserRequest"
      provides="zope.publisher.interfaces.browser.IBrowserPublisher"
      factory="zope.container.traversal.ItemTraverser"
      permission="zope.Public"
      />

  <view 
      for="zope.container.interfaces.IItemContainer"
      type="zope.publisher.interfaces.xmlrpc.IXMLRPCRequest"
      provides="zope.publisher.interfaces.xmlrpc.IXMLRPCPublisher"
      factory="zope.container.traversal.ItemTraverser"
      permission="zope.Public"
      />

  <view 
      for="zope.container.interfaces.IReadContainer"
      type="zope.publisher.interfaces.xmlrpc.IXMLRPCRequest"
      provides="zope.publisher.interfaces.xmlrpc.IXMLRPCPublisher"
      factory="zope.container.traversal.ContainerTraverser"
      permission="zope.Public"
      />

</configure>