This file is indexed.

/usr/share/pyshared/zope/app/container/browser/tests/index.txt is in python-zope.app.container 3.9.2-0ubuntu1.

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
The containerViews directive lets us associate some standard forms
for containers with an interface.  There's an "index.html" view that
provides a listing of the contained objects without provinding any way
to manage them (though it allows us to visit them by clicking on
links).

We can get this view from the root folder easily::

  >>> response = http(r"""
  ... GET / HTTP/1.1
  ... """)

And we can check that there isn't a form (where the management
operations would have buttons)::

  >>> body = response.getBody().lower()
  >>> "<form" in body
  False