From 25e82efebfe97b3efc6366bf32eaf7282c69bc39 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Wed, 14 Jul 2010 17:04:50 +0000 Subject: Verbose result for /bookmark command. fixed #1614 --- src/gui.py | 8 +++++--- src/window.py | 3 --- 2 files changed, 5 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/gui.py b/src/gui.py index 543029ec..4e05d5d7 100644 --- a/src/gui.py +++ b/src/gui.py @@ -665,13 +665,13 @@ class Gui(object): if is_jid(self.current_room().name): room += '@%s' % jid_get_domain(self.current_room().name) else: # no server could be found, print a message and return - self.information(_("You didn't specify a server for the room you want to join")) + self.add_message_to_room(self.current_room(), _("You didn't specify a server for the room you want to join")) return r = self.get_room_by_name(room) if len(args) == 2: # a password is provided password = args[1] if r and r.joined: # if we are already in the room - self.information(_("already in room [%s]") % room) + self.add_message_to_room(self.current_room(), _("already in room [%s]") % room) return self.muc.join_room(room, nick, password) if not r: # if the room window exists, we don't recreate it. @@ -713,7 +713,9 @@ class Gui(object): bookmarked.remove(room) break bookmarked = ':'.join(bookmarked) - config.set_and_save('rooms', bookmarked+':'+res) + bookmarks = bookmarked+':'+res + config.set_and_save('rooms', bookmarks) + self.add_message_to_room(self.current_room(), _('Your bookmarks are now: %s') % bookmarks) def command_set(self, args): """ diff --git a/src/window.py b/src/window.py index 980f8d51..833e77b7 100644 --- a/src/window.py +++ b/src/window.py @@ -415,10 +415,7 @@ class Input(Win): if not self.clipboard or len(self.clipboard) == 0: return for letter in self.clipboard: - from common import debug - debug("%s\n" % letter.encode('utf-8')) self.do_command(letter.encode('utf-8')) - # self.do_command(self.clipboard[-1]) def key_dc(self): """ -- cgit v1.2.3