This file is indexed.

/usr/share/doc/python-pyscript-doc/examples/ccp2004-poster.py is in python-pyscript-doc 0.6.1-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
# poster style for PyScript, used for the CCP2004 conference

HOME = os.path.expandvars("$HOME")
stylesDir = HOME + "/.pyscript/styles/"

# set the default style settings
self.title = ""
self.title_fg = Color("yellow")*2.0
self.title_scale = 1.4
self.title_width = 0.8  # as a fraction of the total poster width
self.title_text_style = "\large \sf"

self.authors = ""
self.authors_fg = Color("yellow")
self.authors_scale = 1
self.authors_width = 0.8  # as a fraction of the total poster width
self.authors_text_style = "\sf"

self.address = ""
self.address_fg = Color("yellow")
self.address_scale = 0.9
self.address_width = 0.8  # as a fraction of the total poster width
self.address_text_style = "\sf"

self.abstract = ""
self.abstract_fg = Color("gold")*1.1
self.abstract_scale = 0.8
self.abstract_width = 0.92  # relative to total width of poster
self.abstract_text_style = ""

self.gutter = 0.2
self.pad = 0  # should get set by add_column()
self.item_sep = 0.3

self.bg = Color("royalblue")*0.8

self.signature_fg = Color("white")

self.logo_height = 1.2

# styles for columns
self.column_item_sep = 0.3

# styles for column boxes
# the title's style...
self.column_box_title_align = "c"
self.column_box_title_tex_scale = 1.4
self.column_box_title_fixed_width = 9.4
self.column_box_title_text_style = r"\sf"
self.column_box_title_fg = Color("orangered")*0.95

# the text styles of the column box
self.column_box_text_align = "w"
self.column_box_tex_scale = 0.7
self.column_box_text_width = 9.4
self.column_box_text_style = r""
self.column_box_text_fg = Color(0)

# the column box styles
self.column_box_item_sep = 0.1
self.column_box_width = 9.9
self.column_box_bg = Color("LightGoldenRod")*1.1
self.column_box_border = 1