This file is indexed.

/usr/lib/python2.7/dist-packages/woo/qt/DisplayProfiles.py is in python-woo 1.0+dfsg1-1+b4.

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
import woo.dem
import woo.gl as gl
from woo.gl import Gl1_DemField
import collections

def predefPublishing():
	predefHighQuality()
	gl.Renderer(bgColor=(81/255.,87/255.,110/255.),showTime=5,fast='never')

def predefHighQuality():
	gl.Gl1_Sphere(quality=3.,wire=False)
	gl.Gl1_Facet(slices=16,wire=False)

def predefLowQuality():
	gl.Gl1_Sphere(quality=0)
	gl.Gl1_Facet(slices=-1,wire=True)

def predefNonspheresSpheres():
	Gl1_DemField(
		shape=Gl1_DemField.shapeNonSpheres,
		colorBy=Gl1_DemField.colorMatState,
		matStateIx=0,
		shape2=True,
		colorBy2=Gl1_DemField.colorVel,
	)

def predefSpheresNonspheres():
	Gl1_DemField(
		shape=Gl1_DemField.shapeSpheres,
		colorBy=Gl1_DemField.colorVel,
		shape2=True,
		colorBy2=Gl1_DemField.colorSolid
	)

predefinedProfiles=collections.OrderedDict([
	('High Quality',predefHighQuality),
	('Low Quality',predefLowQuality),
	('Publishing',predefPublishing),
	('Nonspheres-spheres',predefNonspheresSpheres),
	('Spheres-nonspheres',predefSpheresNonspheres),
])