This file is indexed.

/usr/share/pyshared/d_rats/ui/main_common.py is in d-rats 0.3.3-3ubuntu1.

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
#!/usr/bin/python
#
# Copyright 2009 Dan Smith <dsmith@danplanet.com>
#
# This program 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.
#
# This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.

import re

import gobject
import gtk

from d_rats import inputdialog, miscwidgets
from d_rats import signals

STATION_REGEX = "^[A-Z0-9- /_]+$"

def ask_for_confirmation(question, parent=None):
    d = gtk.MessageDialog(buttons=gtk.BUTTONS_YES_NO,
                          parent=parent,
                          message_format=question)
    r = d.run()
    d.destroy()

    return r == gtk.RESPONSE_YES

def display_error(message, parent=None):
    d = gtk.MessageDialog(buttons=gtk.BUTTONS_OK,
                          parent=parent,
                          message_format=message)
    r = d.run()
    d.destroy()

    return r == gtk.RESPONSE_OK

def prompt_for_station(_station_list, config, parent=None):
    station_list = [str(x) for x in _station_list]
    port_list = []
    for i in config.options("ports"):
        enb, port, rate, sniff, raw, name = config.get("ports", i).split(",")
        if enb == "True":
            port_list.append(name)

    defsta = defprt = ""
    if station_list:
        defsta = str(station_list[0])
    if port_list:
        defprt = port_list[0]

    port_list.sort()
    station_list.sort()

    station = miscwidgets.make_choice(station_list, True, defsta)
    port = miscwidgets.make_choice(port_list, False, defprt)

    d = inputdialog.FieldDialog(title=_("Enter destination"), parent=parent)
    d.add_field(_("Station"), station)
    d.add_field(_("Port"), port)
    station.child.set_activates_default(True)

    while True:
        res = d.run()
        if res != gtk.RESPONSE_OK:
            break
        s = station.get_active_text().upper()
        if "@" in s:
            display_error(_("You must enter a station callsign.  " +
                            "You cannot use an email address here"), d)
            continue
        elif not re.match(STATION_REGEX, s):
            display_error(_("Invalid character in callsign"), d)
            continue
        break

    p = port.get_active_text()
    d.destroy()
    if res == gtk.RESPONSE_OK:
        return s, p
    else:
        return None, None

def prompt_for_string(message, parent=None, orig=""):
    d = gtk.MessageDialog(buttons=gtk.BUTTONS_OK_CANCEL,
                          parent=parent,
                          message_format=message)
    e = gtk.Entry()
    e.set_text(orig)
    e.show()
    d.vbox.pack_start(e, 1, 1, 1)

    r = d.run()
    d.destroy()

    if r == gtk.RESPONSE_OK:
        return e.get_text()
    else:
        return None

def set_toolbar_buttons(config, tb):
    tbsize = config.get("prefs", "toolbar_button_size")
    if tbsize == _("Default"):
        tb.unset_style()
        tb.unset_icon_size()
    elif tbsize == _("Small"):
        tb.set_style(gtk.TOOLBAR_ICONS)
        tb.set_icon_size(gtk.ICON_SIZE_SMALL_TOOLBAR)
    elif tbsize == _("Large"):
        tb.set_style(gtk.TOOLBAR_BOTH)
        tb.set_icon_size(gtk.ICON_SIZE_LARGE_TOOLBAR)

class MainWindowElement(gobject.GObject):
    def __init__(self, wtree, config, prefix):
        self._prefix = prefix
        self._wtree = wtree
        self._config = config

        gobject.GObject.__init__(self)

    def _getw(self, *names):
        widgets = []

        for _name in names:
            name = "%s_%s" % (self._prefix, _name)
            widgets.append(self._wtree.get_widget(name))

        return tuple(widgets)

    def reconfigure(self):
        pass

class MainWindowTab(MainWindowElement):
    def __init__(self, wtree, config, prefix):
        MainWindowElement.__init__(self, wtree, config, prefix)
        self._tablabel = wtree.get_widget("tab_label_%s" % prefix)
        self._selected = False

    def reconfigure(self):
        pass

    def selected(self):
        self._selected = True
        self._unnotice()

    def deselected(self):
        self._selected = False

    def _notice(self):
        self.emit("notice")
        if self._selected:
            return

        text = self._tablabel.get_text()
        self._tablabel.set_markup("<span color='blue'>%s</span>" % text)

    def _unnotice(self):
        text = self._tablabel.get_text()
        self._tablabel.set_markup(text)