This file is indexed.

/usr/share/kivy-examples/demo/showcase/data/screens/dropdown.kv is in python-kivy-examples 1.8.0+dfsg-2.1.

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
ShowcaseScreen:
	fullscreen: True
	name: 'DropDown'

	# trick to not lost the Dropdown instance
	# Dropdown itself is not really made to be used in kv.
	__safe_id: [dropdown.__self__]

	Button:
		id: btn
		text: '-'
		on_release: dropdown.open(self)
		size_hint_y: None
		height: '48dp'

	Widget

	DropDown:

		id: dropdown
		on_parent: self.dismiss()
		on_select: btn.text = 'Selected value: {}'.format(args[1])

		Button:
			text: 'Value A'
			size_hint_y: None
			height: '48dp'
			on_release: dropdown.select('A')

		Button:
			text: 'Value B'
			size_hint_y: None
			height: '48dp'
			on_release: dropdown.select('B')

		Button:
			text: 'Value C'
			size_hint_y: None
			height: '48dp'
			on_release: dropdown.select('C')