This file is indexed.

/usr/share/pyshared/seascope/view/CodeContextView.py is in seascope 0.8-2.

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
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#!/usr/bin/env python

# Copyright (c) 2013 dangbinghoo <dangbinghoo@gmail.com>
# All rights reserved.
#
# License: BSD

import os
import re
import array

from PyQt4 import QtGui
from PyQt4.QtGui import *
from PyQt4.QtCore import *

from EdView import EditorView

# code context view
class ContextEditorView(EditorView):
	sig_dblclick = pyqtSignal()

	def __init__(self, parent = None):
		EditorView.__init__(self, parent)

		self.setCaretLineBackgroundColor(QtGui.QColor("#ffaa7f"))
		
	def mouseReleaseEvent(self, ev):
		super(EditorView, self).mouseReleaseEvent(ev)
		
	def mousePressEvent(self, ev):
		pass
	
	def keyPressEvent(self, ev):
		pass
	
	def contextMenuEvent(self, ev):
		pass
	
	def mouseDoubleClickEvent(self, ev):
		self.sig_dblclick.emit()

	def show_file_line(self, fname, line):
		self.open_file(fname)
		self.goto_line(int(line))
		self.show()

class codeResultView(QTextBrowser):
	sig_result_view_openfile = pyqtSignal(str, int)
	def __init__(self, parent = None):
		QTextBrowser.__init__(self)
		self.setReadOnly(True)
		
	def showResultList(self, sym, res):
		self.res = res
		richstr = '<div align="center">'
		richstr += '<span style="font-size:10px;color:#990000;">Query of &lt; <strong><span style="color:#000099;">'
		richstr += str(sym)
		richstr += '</span></strong></span> <span style="font-size:10px;color:#990000;"> &gt; list</span>'
		richstr += '<div align="left" style="line-height:2px">'
		richstr += '<hr />'
		for itm in res:
			filename = itm[1]
			linenum = itm[2]
			context = itm[3]
			richstr += 'Line <span style="font-size:10px;color:#6600CC;">'
			richstr += str(linenum)
			richstr += '</span> of <em><a href="'
			richstr += str(filename)
			richstr += '#'
			richstr += str(linenum)
			richstr += '">'
			richstr += str(filename)
			richstr += '</a>'
			richstr += '</span></span></em>'
			richstr += '<pre style="line-height:0px"><span style="font-size:10px;color:#006600;line-height:2px;">'
			richstr += str(context)
			richstr += '</span></pre>'
		richstr += '</div></div>'
		#print richstr
		self.setHtml(richstr)
		self.setReadOnly(True)
		self.anchorClicked.connect(self.anchorClicked_ev)
		
	def anchorClicked_ev(self, qurl):
		urlstr = qurl.toString()
		urlinfo = urlstr.split('#')
		fname = str(urlinfo[0])
		linen = int(urlinfo[1])
		self.sig_result_view_openfile.emit(fname, int(linen))
	
	def setSource(self, qurl):
		self.setText('')
		self.anchorClicked.disconnect(self.anchorClicked_ev)

# contextView Page
class CodeContextViewPage(QFrame):
	def __init__(self, parent = None):
		QFrame.__init__(self)
		self.vlay = QVBoxLayout()

		self.cv_filetitle = QLabel()
		self.cv = ContextEditorView()
		self.resv = codeResultView()
		self.vlay.addWidget(self.cv_filetitle)
		self.vlay.addWidget(self.cv)
		self.vlay.addWidget(self.resv)
		#self.setSizes([1,1,1])
		self.resv.show()
		self.cv.hide()
		self.cv_filetitle.hide()

		self.setLayout(self.vlay)

	def showFileView(self, fname, line, sym, font):
		self.filename = fname
		self.linenum = line
		t = '%s:%s   %s' % (fname, line, sym)
		self.cv_filetitle.setText(t)
		self.cv_filetitle.show()

		cv = self.cv
		cv.set_lexer(fname)
		cv.set_font(font)
		cv.show_line_number_cb(True)
		cv.show_file_line(fname, line)
		cv.show()

# ContextView Manager
class CodeContextViewManager(QTabWidget):
	sig_codecontext_showfile = pyqtSignal(str, int)
	def __init__(self, *args):
		apply(QTabWidget.__init__,(self, ) + args)
		self.setMovable(True)
		self.setTabsClosable(True)
		self.newContextViewPage()
		self.cur_query = ''
		self.cvp_cv_openedFile = False
		
		self.cv_font = "Monospace,10,-1,5,50,0,0,0,0,0"

		self.cvp.cv.sig_dblclick.connect(self.contextViewPage_openfile)
		self.cvp.resv.sig_result_view_openfile.connect(self.resultViewPage_openfile)
	
	def change_ev_font(self, font):
		if font == self.cv_font:	
			return
		self.cv_font = font
		for inx in range(self.count()):
			cvp = self.widget(inx)
			cvp.cv.set_font(self.cv_font)

	def newContextViewPage(self):
		self.cvp = CodeContextViewPage()
		self.addTab(self.cvp, 'Context View')

	def set_cur_query(self, text):
		if self.cur_query == text:
			return False
		self.cur_query = text
		return True

	def showResult(self, sym, res):
		if sym != self.cur_query:
			return
		self.cvp.cv.clear()
			
		# if queried one, show the file, or, list results.
		if (len(res) == 1):
			self.cvp.resv.hide()
			itm = res[0]
			self.cvp.showFileView(itm[1], itm[2], sym, self.cv_font)
			self.cvp_cv_openedFile = True
		else:
			self.cvp.cv.hide()
			self.cvp.cv_filetitle.hide()
			self.cvp.resv.showResultList(sym, res)
			self.cvp.resv.show()
	
	def contextViewPage_openfile(self):
		self.cvp.cv.clear()
		self.sig_codecontext_showfile.emit(self.cvp.filename, int(self.cvp.linenum))
	
	def resultViewPage_openfile(self, filename, line):
		self.sig_codecontext_showfile.emit(filename, int(line))
			
	def clear(self):
		self.cvp.cv_filetitle.clear()
		self.cvp.resv.clear()
		self.cvp.cv.clear()
		self.cvp.cv.hide()