summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-09-20 23:38:19 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-09-20 23:38:19 +0000
commitc486b78bbd072b5d924a62f0b2c4a40f644dfce5 (patch)
treeb3b1909784c12772ebda859a9464bd1857ff6547 /src
parentd2158ba093355fd9b14e8a749a7cb9fa6722cab9 (diff)
downloadpoezio-c486b78bbd072b5d924a62f0b2c4a40f644dfce5.tar.gz
poezio-c486b78bbd072b5d924a62f0b2c4a40f644dfce5.tar.bz2
poezio-c486b78bbd072b5d924a62f0b2c4a40f644dfce5.tar.xz
poezio-c486b78bbd072b5d924a62f0b2c4a40f644dfce5.zip
too much debug
Diffstat (limited to 'src')
-rw-r--r--src/gui.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gui.py b/src/gui.py
index 667742b4..2f4023a0 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -270,8 +270,6 @@ class Gui(object):
room.own_nick = new_nick
# also change our nick in all private discussion of this room
for _tab in self.tabs:
- from common import debug
- debug('room name:%s\n' % _tab.get_name().split('/', 1))
if isinstance(_tab, PrivateTab) and _tab.get_name().split('/', 1)[0] == room.name:
_tab.get_room().own_nick = new_nick
user.change_nick(new_nick)
@@ -289,8 +287,6 @@ class Gui(object):
"""
room.users.remove(user)
by = presence.find('{http://jabber.org/protocol/muc#user}x/{http://jabber.org/protocol/muc#user}item/{http://jabber.org/protocol/muc#user}actor')
- from common import debug
- debug('KICK: by:%s %s, %s\n' % (presence, by, by.attrib['jid'] if by else by))
reason = presence.find('{http://jabber.org/protocol/muc#user}x/{http://jabber.org/protocol/muc#user}item/{http://jabber.org/protocol/muc#user}reason')
by = by.attrib['jid'] if by is not None else None
reason = reason.text# if reason else ''
@@ -394,8 +390,6 @@ class Gui(object):
"""
We received a Private Message (from someone in a Muc)
"""
- from common import debug
- debug('PRIVATE: %s\n' % message)
jid = message['from']
nick_from = jid.resource
room_from = jid.bare
@@ -622,8 +616,6 @@ class Gui(object):
"""
Triggered whenever a message is received from a multi-user chat room.
"""
- from common import debug
-# debug('GROUPCHAT message: %s\n' % message)
delay_tag = message.find('{urn:xmpp:delay}delay')
if delay_tag is not None:
delayed = True
@@ -653,7 +645,6 @@ class Gui(object):
return
body = message['body']
subject = message['subject']
-# debug('======== %s, %s, %s, %s====\n'% (nick_from, room_from, body, subject))
if subject:
if nick_from:
self.add_message_to_text_buffer(room, _("%(nick)s changed the subject to: %(subject)s") % {'nick':nick_from, 'subject':subject}, time=date)
@@ -1186,10 +1177,7 @@ class Gui(object):
def do_command(self, key):
if not key:
return
- from common import debug
- debug('do_command, %s, %s\n' % (key, self.current_tab()))
res = self.current_tab().on_input(key)
- debug('apres, %s\n' % (res))
if key in ('^J', '\n'):
self.execute(res)