add a comment

This commit is contained in:
Nikos Kouremenos 2005-09-04 17:47:36 +00:00
parent 02e08ff6ba
commit a29c12a8b6
2 changed files with 3 additions and 5 deletions

View File

@ -382,10 +382,7 @@ class Connection:
elif errcode == '409': # nick conflict
self.dispatch('ERROR', (_('Unable to join room'),
_('Your desired nickname is in use or registered by another user.')))
else:
#FIXME: wtf is ERROR_ANSWER? maybe I should handle there?
#some comments in the code ARE VITAL ppl :( :( :(
#other ppl read your code. do not make their life miserable
else: # print in Groupchat window the error
self.dispatch('ERROR_ANSWER', ('', prs.getFrom().getStripped(),
errmsg, errcode))
if not ptype or ptype == 'unavailable':

View File

@ -159,6 +159,7 @@ class Interface:
gajim.connections[account].build_http_auth_answer(data[2], answer)
def handle_event_error_answer(self, account, array):
#('ERROR_ANSWER', account, (id, jid_from. errmsg, errcode))
id, jid_from, errmsg, errcode = array
if unicode(errcode) in ['403', '406'] and id:
# show the error dialog
@ -185,7 +186,7 @@ class Interface:
(jid_from, file_props))
conn.disconnect_transfer(file_props)
return
#('ERROR_ANSWER', account, (id, jid_from. errmsg, errcode))
if jid_from in self.windows[account]['gc']:
self.windows[account]['gc'][jid_from].print_conversation(
_('Error %s: %s') % (array[2], array[1]), jid_from)