~ubuntu-branches/ubuntu/saucy/wicd/saucy-proposed

« back to all changes in this revision

Viewing changes to gtk/gui.py

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2010-03-04 10:59:30 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100304105930-jihcz2fn8e77uqbb
Tags: 1.7.0+ds1-1
* New repacked tarball, contains translations .po files
  (Closes: #572352)
* debian/bug-control added, let's add more info to the bugreports!
* debian/control:
  - debhelper dependency bumped to >= 7.2.3~, to use dh_bugfiles
  - added dependency on python-iniparse to wicd-daemon
* debian/rules:
  - make dh_bugfiles act on all packages
  - add get-orig-source target, to build a package containing the
    .po files
* debian/patches/:
  - 20-use_iniparse.patch added, uses python-iniparse instead of
    standard library's ConfigParser (Closes: #568326)
  - 21-fix_ESSID_setting.patch added, use correct command to set
    ESSID's (useful when a network is named "off" or "any")
    (Closes: #571100)
  - 22-fix_deprecation.patch added, fixes some deprecated usage of
    gtk.Statusbar (Closes: #571314)
* debian/watch updated to mangle Debian version

Show diffs side-by-side

added added

removed removed

Lines of Context:
430
430
            gobject.idle_add(self.all_network_list.set_sensitive, True)
431
431
            gobject.idle_add(self.status_area.hide_all)
432
432
        if self.statusID:
433
 
            gobject.idle_add(self.status_bar.remove, 1, self.statusID)
 
433
            gobject.idle_add(self.status_bar.remove_message, 1, self.statusID)
434
434
    
435
435
    def set_connecting_state(self, info):
436
436
        if not self.connecting:
445
445
            gobject.idle_add(self.all_network_list.set_sensitive, False)
446
446
            gobject.idle_add(self.status_area.show_all)
447
447
        if self.statusID:
448
 
            gobject.idle_add(self.status_bar.remove, 1, self.statusID)
 
448
            gobject.idle_add(self.status_bar.remove_message, 1, self.statusID)
449
449
        if info[0] == "wireless":
450
450
            gobject.idle_add(self.set_status, str(info[1]) + ': ' +
451
451
                   language[str(wireless.CheckWirelessConnectingMessage())])
698
698
            cancel_button.set_sensitive(True)
699
699
            self.all_network_list.set_sensitive(False)
700
700
            if self.statusID:
701
 
                gobject.idle_add(self.status_bar.remove, 1, self.statusID)
 
701
                gobject.idle_add(self.status_bar.remove_message, 1, self.statusID)
702
702
            gobject.idle_add(self.set_status, language["disconnecting_active"])
703
703
            gobject.idle_add(self.status_area.show_all)
704
704
            self.wait_for_events()