This file is indexed.

/usr/share/pyshared/pyatspi/interfaces.py is in python-pyatspi2 2.4.0+dfsg-0ubuntu3.

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
#Copyright (C) 2008 Codethink Ltd

#This library is free software; you can redistribute it and/or
#modify it under the terms of the GNU Lesser General Public
#License version 2 as published by the Free Software Foundation.

#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#GNU General Public License for more details.
#You should have received a copy of the GNU Lesser General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

ATSPI_ACCESSIBLE = 'org.a11y.atspi.Accessible'
ATSPI_ACTION = 'org.a11y.atspi.Action'
ATSPI_APPLICATION = 'org.a11y.atspi.Application'
ATSPI_COMPONENT = 'org.a11y.atspi.Component'
ATSPI_COLLECTION = 'org.a11y.atspi.Collection'
ATSPI_DESKTOP = 'org.a11y.atspi.Desktop'
ATSPI_DOCUMENT = 'org.a11y.atspi.Document'
ATSPI_EDITABLE_TEXT = 'org.a11y.atspi.EditableText'
ATSPI_HYPERLINK = 'org.a11y.atspi.Hyperlink'
ATSPI_HYPERTEXT = 'org.a11y.atspi.Hypertext'
ATSPI_IMAGE = 'org.a11y.atspi.Image'
ATSPI_LOGIN_HELPER = 'org.a11y.atspi.LoginHelper'
ATSPI_SELECTION = 'org.a11y.atspi.Selection'
ATSPI_SELECTOR = 'org.a11y.atspi.Selector'
ATSPI_STREAMABLE_CONTENT = 'org.a11y.atspi.StreamableContent'
ATSPI_TABLE = 'org.a11y.atspi.Table'
ATSPI_TEXT = 'org.a11y.atspi.Text'
ATSPI_VALUE = 'org.a11y.atspi.Value'

ATSPI_REGISTRY_INTERFACE = 'org.a11y.atspi.Registry'
ATSPI_REGISTRY_PATH = '/org/a11y/atspi/registry'
ATSPI_REGISTRY_NAME = 'org.a11y.atspi.Registry'

ATSPI_ROOT_PATH = '/org/a11y/atspi/accessible/root'
ATSPI_NULL_PATH = '/org/a11y/atspi/null'

ATSPI_DEVICE_EVENT_LISTENER_INTERFACE = 'org.a11y.atspi.DeviceEventListener'
ATSPI_DEVICE_EVENT_CONTROLLER_INTERFACE = 'org.a11y.atspi.DeviceEventController'
ATSPI_DEVICE_EVENT_CONTROLLER_PATH = '/org/a11y/atspi/registry/deviceeventcontroller'
ATSPI_DEVICE_EVENT_CONTROLLER_NAME = 'org.a11y.atspi.Registry'