This file is indexed.

/usr/share/tpclient-pywx/windows/xrc/panelStarMap.py is in tpclient-pywx 0.3.1.1-3.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
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
# This file has been automatically generated.
# Please do not edit it manually.

# Python Imports
import os.path

# wxPython imports
import wx
from wx.xrc import XRCCTRL, XmlResourceWithHandlers

# Local imports
from requirements import location

class panelStarMapBase(wx.Panel):
	xrc = os.path.join(location(), "windows", "xrc", 'panelStarMap.xrc')

	def PreCreate(self, pre):
		""" This function is called during the class's initialization.
		
		Override it for custom setup before the window is created usually to
		set additional window styles using SetWindowStyle() and SetExtraStyle()."""
		pass

	def __init__(self, parent, *args, **kw):
		""" Pass an initialized wx.xrc.XmlResource into res """
		f = os.path.join(os.path.dirname(__file__), self.xrc)
		res = XmlResourceWithHandlers(f)		

		# Two stage creation (see http://wiki.wxpython.org/index.cgi/TwoStageCreation)
		pre = wx.PrePanel()
		res.LoadOnPanel(pre, parent, "panelStarMap")
		self.PreCreate(pre)
		self.PostCreate(pre)

		# Define variables for the controls
		self.MouseMode = XRCCTRL(self, "MouseMode")
		if hasattr(self, "OnMouseMode"):
			self.Bind(wx.EVT_BUTTON, self.OnMouseMode, self.MouseMode)

		self.ZoomLevel = XRCCTRL(self, "ZoomLevel")
		if hasattr(self, "OnZoomLevel"):
			self.Bind(wx.EVT_COMBOBOX, self.OnZoomLevel, self.ZoomLevel)
			self.Bind(wx.EVT_TEXT_ENTER, self.OnZoomLevel, self.ZoomLevel)
		if hasattr(self, "OnDirtyZoomLevel"):
			self.Bind(wx.EVT_TEXT, self.OnZoomLevel, self.ZoomLevel)

		self.Home = XRCCTRL(self, "Home")
		if hasattr(self, "OnHome"):
			self.Bind(wx.EVT_BUTTON, self.OnHome, self.Home)

		self.Find = XRCCTRL(self, "Find")
		if hasattr(self, "OnFind"):
			self.Bind(wx.EVT_BUTTON, self.OnFind, self.Find)

		self.DisplayMode = XRCCTRL(self, "DisplayMode")
		if hasattr(self, "OnDisplayMode"):
			self.DisplayMode.Bind(wx.EVT_CHOICE, self.OnDisplayMode)

		self.DisplayModeExtra = XRCCTRL(self, "DisplayModeExtra")
		self.FloatCanvas = XRCCTRL(self, "FloatCanvas")


def strings():
	pass
	_("Fit");
	_("80%");
	_("50%");
	_("10%");
	_("Box");
	_("System");
	_("Resources");