This file is indexed.

/usr/share/pyshared/zc/datetimewidget/demo/configure.zcml is in python-zc.datetimewidget 0.7.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
<configure xmlns="http://namespaces.zope.org/zope"
           xmlns:browser="http://namespaces.zope.org/browser"
           i18n_domain="zope">

 <!-- adapter for tzinfo -->
 <adapter factory=".timezone.tzinfo"/>
 
 <class class=".content.DemoContent">
        <require permission="zope.View"
                 interface=".interfaces.IDemoContent"/>
        <require permission="zope.ManageContent"
                 set_schema=".interfaces.IDemoContent"/>
 </class>


 <browser:editform
  schema=".interfaces.IDemoContent"
  label="Edit"
  name="edit.html"
  menu="zmi_views" title="Edit"
  permission="zope.ManageContent"/>

 <browser:addMenuItem
  title="Datetimewidget Demo"
  class=".content.DemoContent"
  permission="zope.ManageContent"
  />
 
        
</configure>