Disable button if password changing is not supported
This commit is contained in:
parent
78b562f7a5
commit
4d8379f492
|
@ -778,6 +778,7 @@ class Connection(CommonConnection, ConnectionHandlers):
|
||||||
self.music_track_info = 0
|
self.music_track_info = 0
|
||||||
self.location_info = {}
|
self.location_info = {}
|
||||||
self.pubsub_supported = False
|
self.pubsub_supported = False
|
||||||
|
self.register_supported = False
|
||||||
self.pubsub_publish_options_supported = False
|
self.pubsub_publish_options_supported = False
|
||||||
# Do we auto accept insecure connection
|
# Do we auto accept insecure connection
|
||||||
self.connection_auto_accepted = False
|
self.connection_auto_accepted = False
|
||||||
|
@ -2000,6 +2001,8 @@ class Connection(CommonConnection, ConnectionHandlers):
|
||||||
if nbxmpp.NS_VCARD in obj.features:
|
if nbxmpp.NS_VCARD in obj.features:
|
||||||
self.vcard_supported = True
|
self.vcard_supported = True
|
||||||
get_action(self.name + '-profile').set_enabled(True)
|
get_action(self.name + '-profile').set_enabled(True)
|
||||||
|
if nbxmpp.NS_REGISTER in obj.features:
|
||||||
|
self.register_supported = True
|
||||||
if nbxmpp.NS_PUBSUB in obj.features:
|
if nbxmpp.NS_PUBSUB in obj.features:
|
||||||
self.pubsub_supported = True
|
self.pubsub_supported = True
|
||||||
if nbxmpp.NS_PUBSUB_PUBLISH_OPTIONS in obj.features:
|
if nbxmpp.NS_PUBSUB_PUBLISH_OPTIONS in obj.features:
|
||||||
|
|
|
@ -1541,6 +1541,7 @@ class AccountsWindow:
|
||||||
self.accounts_treeview = self.xml.get_object('accounts_treeview')
|
self.accounts_treeview = self.xml.get_object('accounts_treeview')
|
||||||
self.remove_button = self.xml.get_object('remove_button')
|
self.remove_button = self.xml.get_object('remove_button')
|
||||||
self.rename_button = self.xml.get_object('rename_button')
|
self.rename_button = self.xml.get_object('rename_button')
|
||||||
|
self.change_password_button = self.xml.get_object('change_password_button1')
|
||||||
path_to_kbd_input_img = gtkgui_helpers.get_icon_path('gajim-kbd_input')
|
path_to_kbd_input_img = gtkgui_helpers.get_icon_path('gajim-kbd_input')
|
||||||
img = self.xml.get_object('rename_image')
|
img = self.xml.get_object('rename_image')
|
||||||
img.set_from_file(path_to_kbd_input_img)
|
img.set_from_file(path_to_kbd_input_img)
|
||||||
|
@ -1604,6 +1605,7 @@ class AccountsWindow:
|
||||||
"""
|
"""
|
||||||
self.remove_button.set_sensitive(False)
|
self.remove_button.set_sensitive(False)
|
||||||
self.rename_button.set_sensitive(False)
|
self.rename_button.set_sensitive(False)
|
||||||
|
self.change_password_button.set_sensitive(False)
|
||||||
self.current_account = None
|
self.current_account = None
|
||||||
model = self.accounts_treeview.get_model()
|
model = self.accounts_treeview.get_model()
|
||||||
model.clear()
|
model.clear()
|
||||||
|
@ -1713,9 +1715,15 @@ class AccountsWindow:
|
||||||
if account:
|
if account:
|
||||||
self.remove_button.set_sensitive(True)
|
self.remove_button.set_sensitive(True)
|
||||||
self.rename_button.set_sensitive(True)
|
self.rename_button.set_sensitive(True)
|
||||||
|
|
||||||
|
if account != gajim.ZEROCONF_ACC_NAME:
|
||||||
|
self.change_password_button.set_sensitive(
|
||||||
|
gajim.connections[account].register_supported)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
self.remove_button.set_sensitive(False)
|
self.remove_button.set_sensitive(False)
|
||||||
self.rename_button.set_sensitive(False)
|
self.rename_button.set_sensitive(False)
|
||||||
|
self.change_password_button.set_sensitive(False)
|
||||||
if iter_:
|
if iter_:
|
||||||
self.current_account = account
|
self.current_account = account
|
||||||
if account == gajim.ZEROCONF_ACC_NAME:
|
if account == gajim.ZEROCONF_ACC_NAME:
|
||||||
|
|
Loading…
Reference in New Issue