This file is indexed.

/usr/share/pyshared/zope/traversing/browser/configure.zcml is in python-zope.traversing 3.13.2-2fakesync1.

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

  <view
      for="*"
      name="absolute_url"
      factory=".AbsoluteURL"
      type="zope.publisher.interfaces.http.IHTTPRequest"
      permission="zope.Public"
      allowed_interface=".interfaces.IAbsoluteURL"
      />
      
  <view
      for="*"
      factory=".AbsoluteURL"
      type="zope.publisher.interfaces.http.IHTTPRequest"
      permission="zope.Public"
      provides=".interfaces.IAbsoluteURL"
      />

  <view
      for="zope.location.interfaces.IRoot"
      name="absolute_url"
      factory=".SiteAbsoluteURL"
      type="zope.publisher.interfaces.http.IHTTPRequest"
      permission="zope.Public"
      allowed_interface=".interfaces.IAbsoluteURL"
      />
      
  <view
      for="zope.location.interfaces.IRoot"
      factory=".SiteAbsoluteURL"
      type="zope.publisher.interfaces.http.IHTTPRequest"
      permission="zope.Public"
      provides=".interfaces.IAbsoluteURL"
      />

  <browser:page
      for="*"
      name="absolute_url"
      class=".AbsoluteURL"
      permission="zope.Public"
      allowed_interface=".interfaces.IAbsoluteURL"
      />

  <browser:page
      for="zope.location.interfaces.IRoot"
      name="absolute_url"
      class=".SiteAbsoluteURL"
      permission="zope.Public"
      allowed_interface=".interfaces.IAbsoluteURL"
      />

</configure>