This file is indexed.

/usr/lib/python2.7/dist-packages/spectlib/preferences.py is in specto 0.3.1-0ubuntu3.

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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# -*- coding: UTF8 -*-

# Specto , Unobtrusive event notifier
#
#       preferences.py
#
# See the AUTHORS file for copyright ownership information

# 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 2 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, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

import os
try:
    import pygtk
    pygtk.require("2.0")
except:
    pass

try:
    import gtk
    import gtk.glade
except:
    pass


class Preferences:
    """
    Display the preferences window.
    """

    def __init__(self, specto, notifier):
        self.specto = specto
        self.notifier = notifier
        gladefile = os.path.join(self.specto.PATH, "glade/preferences.glade")
        windowname = "preferences"
        self.wTree = gtk.glade.XML(gladefile, windowname, \
                            self.specto.glade_gettext)

        #catch some events
        dic = {"on_cancel_clicked": self.delete_event,
              "on_preferences_delete_event": self.delete_event,
              "on_save_clicked": self.save_clicked,
              "on_help_clicked": self.help_clicked,
              "on_chkSoundChanged_toggled": self.chkSoundChanged_toggled,
              "on_chkSoundProblem_toggled": self.chkSoundProblem_toggled,
              "on_button_log_clear_clicked": self.specto.logger.clear_log,
              "on_button_log_open_clicked": self.notifier.show_error_log}

        #attach the events
        self.wTree.signal_autoconnect(dic)

        self.preferences = self.wTree.get_widget("preferences")

        #set the preferences
        self.get_preferences()

    def save_clicked(self, widget):
        """ Save the preferences. """
        self.preferences.hide()
        self.set_preferences()
        self.notifier.show_watch_info()

    def chkSoundChanged_toggled(self, widget):
        """ Make the filechooser sensitive or insensitive. """
        if widget.get_active():
            self.wTree.get_widget("soundChanged").set_property('sensitive', 1)
        else:
            self.wTree.get_widget("soundChanged").set_property('sensitive', 0)

    def chkSoundProblem_toggled(self, widget):
        """ Make the filechooser sensitive or insensitive. """
        if widget.get_active():
            self.wTree.get_widget("soundProblem").set_property('sensitive', 1)
        else:
            self.wTree.get_widget("soundProblem").set_property('sensitive', 0)

    def set_preferences(self):
        """ Save the preferences in gconf. """
        #save the path for the "changed" sound
        if self.wTree.get_widget("soundChanged").\
                        get_property('sensitive') == 1:
            self.specto.specto_gconf.set_entry("changed_sound", \
                            self.wTree.get_widget("soundChanged")\
                                                    .get_filename())
            self.specto.specto_gconf.set_entry("use_changed_sound", True)
        else:
            self.specto.specto_gconf.unset_entry("use_changed_sound")

        #save the path from the problem sound
        if self.wTree.get_widget("soundProblem").\
                        get_property('sensitive') == 1:
            self.specto.specto_gconf.set_entry("problem_sound", \
                        self.wTree.get_widget("soundProblem").get_filename())
            self.specto.specto_gconf.set_entry("use_problem_sound", True)
        else:
            self.specto.specto_gconf.unset_entry("use_problem_sound")

        #see if pop toast has to be saved
        if self.wTree.get_widget("chk_libnotify").get_active():
            self.specto.specto_gconf.set_entry("pop_toast", True)
        else:
            self.specto.specto_gconf.set_entry("pop_toast", False)

        #see if windowlist has to be saved
        if self.wTree.get_widget("chk_windowlist").get_active():
            self.specto.specto_gconf.set_entry("show_in_windowlist", True)
            self.notifier.notifier.set_skip_taskbar_hint(False)
        else:
            self.specto.specto_gconf.set_entry("show_in_windowlist", False)
            self.notifier.notifier.set_skip_taskbar_hint(True)

        #see if tray has to be saved
        if self.wTree.get_widget("chk_tray").get_active():
            self.specto.specto_gconf.set_entry("always_show_icon", True)
        else:
            self.specto.specto_gconf.set_entry("always_show_icon", False)
        self.notifier.recreate_tray()

        #see if debug mode has to be saved
        if self.wTree.get_widget("chk_debug").get_active():
            self.specto.specto_gconf.set_entry("debug_mode", True)
            self.specto.DEBUG = True
        else:
            self.specto.specto_gconf.set_entry("debug_mode", False)
            self.specto.DEBUG = False

        #use keyring?
        if self.wTree.get_widget("chkUseKeyring").get_active():
            self.specto.specto_gconf.set_entry("use_keyring", True)
            self.specto.watch_db.convert_passwords(True)
        else:
            self.specto.specto_gconf.set_entry("use_keyring", False)
            self.specto.watch_db.convert_passwords(False)

    def get_preferences(self):
        """ Get the preferences from gconf. """
        #check toast
        if self.specto.specto_gconf.get_entry("pop_toast") == True:
            self.wTree.get_widget("chk_libnotify").set_active(True)
        else:
            self.wTree.get_widget("chk_libnotify").set_active(False)

        #check windowlist
        if self.specto.specto_gconf.get_entry("show_in_windowlist") == True:
            self.wTree.get_widget("chk_windowlist").set_active(True)
        else:
            self.wTree.get_widget("chk_windowlist").set_active(False)

        #check tray
        if self.specto.specto_gconf.get_entry("always_show_icon") == True:
            self.wTree.get_widget("chk_tray").set_active(True)
        else:
            self.wTree.get_widget("chk_tray").set_active(False)

        #check "changed" sound
        if self.specto.specto_gconf.get_entry("use_changed_sound"):
            self.wTree.get_widget("chkSoundChanged").set_active(True)

        if self.specto.specto_gconf.get_entry("changed_sound"):
            self.wTree.get_widget("soundChanged").\
                set_filename(self.specto.specto_gconf.\
                                get_entry("changed_sound"))

        #check problem sound
        if self.specto.specto_gconf.get_entry("use_problem_sound"):
            self.wTree.get_widget("chkSoundProblem").set_active(True)

        if self.specto.specto_gconf.get_entry("problem_sound"):
            self.wTree.get_widget("soundProblem").\
                set_filename(self.specto.specto_gconf.\
                    get_entry("problem_sound"))

        #check debug
        if self.specto.specto_gconf.get_entry("debug_mode") == True:
            self.wTree.get_widget("chk_debug").set_active(True)
        else:
            self.wTree.get_widget("chk_debug").set_active(False)

        if self.specto.specto_gconf.get_entry("use_keyring") == True:
            self.wTree.get_widget("chkUseKeyring").set_active(True)
        else:
            self.wTree.get_widget("chkUseKeyring").set_active(False)

    def help_clicked(self, widget):
        """ Show the help webpage. """
        self.specto.show_help()

    def delete_event(self, widget, *args):
        """ Hide the window. """
        self.preferences.hide()
        return True


if __name__ == "__main__":
    #run the gui
    app = Preferences()
    gtk.main()