This file is indexed.

/usr/share/doc/python-cherrypy3-doc/html/_sources/glossary.rst.txt is in python-cherrypy3-doc 8.9.1-2.

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
Glossary
--------

.. glossary::

   application
      A CherryPy application is simply a class instance containing
      at least one page handler.

   controller
      Loose name commonly given to a class owning at least one exposed method

   exposed
      A Python function or method which has an attribute called `exposed`
      set to `True`. This attribute can be set directly or via the
      :func:`cherrypy.expose()` decorator.

      .. code-block:: python

         @cherrypy.expose
         def method(...):
             ...

      is equivalent to:

      .. code-block:: python

         def method(...):
             ...
         method.exposed = True

   page handler
      Name commonly given to an exposed method