This file is indexed.

/usr/lib/rhythmbox/plugins/radio-browser/radio_station.py is in rhythmbox-radio-browser 2.3.1-0ubuntu1.

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
#    This file is part of Radio-Browser-Plugin for Rhythmbox.
#
#    Copyright (C) 2009 <segler_alex@web.de>
#
#    Radio-Browser-Plugin is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    Radio-Browser-Plugin is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with Radio-Browser-Plugin.  If not, see <http://www.gnu.org/licenses/>.

import gtk

class RadioStation:
	def __init__(self):
		self.listen_url = ""
		self.listen_urls = []
		self.server_name = ""
		self.genre = ""
		self.bitrate = ""
		self.current_song = ""
		self.type = ""
		self.icon_src = ""
		self.homepage = ""
		self.listeners = ""
		self.server_type = ""
		self.language = ""
		self.country = ""
		self.votes = ""
		self.negativevotes = ""
		self.id = ""

	def getRealURL(self):
		return self.listen_url

	def updateRealURL(self):
		pass

	def askUserAboutUrls(self):
		try:
			if len(self.listen_urls) == 0:
				self.listen_url = ""
				return
			if len(self.listen_urls) == 1:
				self.listen_url = self.listen_urls[0]
				return

			gtk.gdk.threads_enter()
			dialog = gtk.Dialog(_("Select stream URL please"),flags=gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,buttons=(gtk.STOCK_OK,gtk.RESPONSE_OK))

			urlListView = gtk.TreeView()
			urlListView.append_column(gtk.TreeViewColumn(_("Url"),gtk.CellRendererText(),text=0))
			urlListStore = gtk.ListStore(str)
			iter = None
			for url in self.listen_urls:
				newiter = urlListStore.append((url,))
				if iter == None:
					iter = newiter
				if url.lower().startswith("http://") and not url.lower().endswith("asx"):
					iter = newiter
			urlListView.set_model(urlListStore)

			treeselection = urlListView.get_selection()
			treeselection.set_mode(gtk.SELECTION_SINGLE)
			treeselection.select_iter(iter)

			contentarea = dialog.get_content_area()
			contentarea.pack_start(urlListView)
			contentarea.show_all()
			dialog.run()
			dialog.hide_all()

			(model, iter) = treeselection.get_selected()
			self.listen_url = model.get_value(iter,0)
			gtk.gdk.threads_leave()
			print "choosen link:"+self.listen_url

		except Exception,e:
			print e