This file is indexed.

/usr/share/pyshared/lazr/restful/example/base_extended/site.zcml is in python-lazr.restful 0.19.3-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
<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:webservice="http://namespaces.canonical.com/webservice"
    xmlns:grok="http://namespaces.zope.org/grok">

  <include package="lazr.restful" file="basic-site.zcml" />

  <include package="lazr.restful.example.base" />

  <webservice:register module="lazr.restful.example.base_extended.comments" />
  <grok:grok package="lazr.restful.example.base_extended" />

  <adapter 
    factory="lazr.restful.example.base_extended.comments.RecipeToHasCommentsAdapter" />

  <securityPolicy
   component="zope.security.simplepolicies.PermissiveSecurityPolicy" />
</configure>