This file is indexed.

/usr/share/pyshared/zc/datetimewidget/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
<configure
    xmlns='http://namespaces.zope.org/zope'
    xmlns:zc='http://namespaces.zope.com/zc'
    xmlns:browser='http://namespaces.zope.org/browser'
    >

  <!-- Register the Javascript used by the datetime widgets. -->
  <resourceLibrary name="zc.datetimewidget">
    <directory
        source="resources"
        include="calendar-system.css calendar.js datetimewidget.js
                 languages/calendar-en.js
                 calendar-setup.js"/>
  </resourceLibrary>

  <!-- Widgets -->

  <view
      type="zope.publisher.interfaces.browser.IBrowserRequest"
      for="zope.schema.interfaces.ISet
           zope.schema.interfaces.IDate"
      provides="zope.app.form.interfaces.IInputWidget"
      factory=".datetimewidget.DateSetWidget"
      permission="zope.Public"
      />

</configure>