This file is indexed.

/usr/lib/python2.7/dist-packages/zope/html/configure.zcml is in python-zope.html 2.2.0-0ubuntu11.

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
<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:browser="http://namespaces.zope.org/browser"
    xmlns:zcml="http://namespaces.zope.org/zcml"
    i18n_domain="zope.html"
    >

  <browser:view
      class=".browser.HtmlEditingView"
      for="zope.mimetype.types.IContentTypeTextHtml"
      name="htmledit.html"
      menu="zmi_views" title="Edit"
      permission="zope.ManageContent"
      />

  <browser:view
      class=".browser.XhtmlEditingView"
      for="zope.mimetype.types.IContentTypeXhtml"
      name="htmledit.html"
      menu="zmi_views" title="Edit"
      permission="zope.ManageContent"
      />

  <adapter
      for="zope.mimetype.types.IContentTypeTextHtml"
      factory=".docinfo.EditableHtmlInformation"
      trusted="yes"
      />

  <adapter
      for="zope.mimetype.types.IContentTypeXhtml"
      factory=".docinfo.EditableHtmlInformation"
      trusted="yes"
      />

  <class class=".docinfo.EditableHtmlInformation">
    <require
        permission="zope.ManageContent"
        set_attributes="isFragment"
        />
    <require
        permission="zope.View"
        attributes="isFragment"
        />
  </class>

  <view
      type="zope.publisher.interfaces.browser.IBrowserRequest"
      for=".field.IHtmlFragmentField"
      provides="zope.app.form.interfaces.IInputWidget"
      factory=".widget.FckeditorWidget"
      permission="zope.Public"
      />

  <view
      type="zope.publisher.interfaces.browser.IBrowserRequest"
      for=".field.IXhtmlFragmentField"
      provides="zope.app.form.interfaces.IInputWidget"
      factory=".widget.FckeditorWidget"
      permission="zope.Public"
      />

  <resourceLibrary name="fckeditor">
    <directory
        source="fckeditor"
        include="2.6.6/fckeditor/fckeditor.js"
        />
  </resourceLibrary>

  <browser:resource
      file="zope_fckconfig.js"
      name="zope_fckconfig.js"
      />

  <resourceLibrary name="ckeditor">
    <directory
        source="ckeditor"
        include="3.6.1/ckeditor/ckeditor.js"
        />
  </resourceLibrary>

  <resourceLibrary name="ckeditor_dev">
    <directory
        source="ckeditor"
        include="3.6.1/ckeditor/ckeditor_source.js"
        />
  </resourceLibrary>

</configure>