This file is indexed.

/usr/lib/python2.7/dist-packages/gDevilspie/reader.py is in gdevilspie 1:0.5-4.

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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import gDevilspie.sparser as parser
import string

def geo_parse(gstring):
	return

def stripper(listitem):
	return listitem.strip('"')

def not_checker(matdict,item):
	if item[0] == 'is':
		matdict[str(item[1].pop())] = ["is","not", stripper(item[2])]
	elif item[0] == 'matches':
		matdict[str(item[1].pop())] = ["matches","not", stripper(item[2])]
	elif item[0]== 'contains':
		matdict[str(item[1].pop())] = ["contains","not", stripper(item[2])]
    
def condition_checker(matdict,item):
	if item[0] == 'is':
		matdict[str(item[1].pop())] = ["is", stripper(item[2])]
	elif item[0] == 'matches':
		matdict[str(item[1].pop())] = ["matches", stripper(item[2])]
	elif item[0]== 'contains':
		matdict[str(item[1].pop())] = ["contains", stripper(item[2])]
	elif item[0]== "not":
		not_checker(matdict,item[1])

def read_file(filename):
# open a file and pass it to parser.py
	foo = open(filename)
	z = parser.parse_file(foo)
# clean some of the parser crap
	rule = z[0]

#the dicts we will use
	matdict = {}
	actiondict = {}

#the reader part...
	if rule[0] == 'if':
		matcond = z[0][1]
		action = z[0][2]

	if matcond[0] in "and" or "begin":
		for item in matcond:
			condition_checker(matdict, item)
	else:
		condition_checker(matdict, matcond)
			

	if action[0] == 'begin':
		#FIXME: Handle Actions correctly.
		for i in action[1:]:
			if len(i) > 1:
				if ( i[1] == "'" ):
					last = len(i) - 1
					joint = string.join(i[2:last])
					actiondict[i[0]] = stripper(joint)
				else:
					actiondict[i[0]] = stripper(i[1])
			elif i[0][:2] != "un":
				actiondict[i[0]] = "True"
			elif i[0][:2] == "un":
				actiondict[i[0][2:]] = "False"
				actiondict[i[0]] = "True"
	else:
		actiondict[action[0]] = action[1]

	return [matdict,actiondict]


#print read_file("test.ds")
#geo_parse("FIXME: Write that part phaeron :P")