This file is indexed.

/usr/lib/python2.7/dist-packages/zope/html/ftesting.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
<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:browser="http://namespaces.zope.org/browser"
    xmlns:zcml="http://namespaces.zope.org/zcml"
    i18n_domain="zope"
    package="zope.html"
    >

  <!-- This file is the equivalent of site.zcml and it is -->
  <!-- used for functional testing setup -->

  <include
      zcml:condition="installed zope.app.zcmlfiles"
      package="zope.app.zcmlfiles"
      />
  <include
      zcml:condition="not-installed zope.app.zcmlfiles"
      package="zope.app"
      />

  <include package="zope.app.debugskin" />
  <include package="zope.app.server" />
  <include package="zope.app.authentication" />

  <authenticatedGroup
    id="zope.Authenticated"
    title="Everybody"
    />

  <unauthenticatedPrincipal
      id="zope.anybody"
      title="Unauthenticated User" />

  <!-- Principal that tests generally run as -->
  <principal
      id="zope.user"
      title="User"
      login="user"
      password="userpw" />

  <include package="zope.formlib"/>
  <include package="zope.mimetype" file="meta.zcml"/>
  <include package="zope.mimetype"/>
  <include package="zope.file"/>
  <include package="zc.resourcelibrary" file="meta.zcml"/>
  <include package="zc.resourcelibrary"/>
  <include package="zope.html"/>

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

  <adapter factory=".tests.requestToTZInfo"/>

</configure>