From 0866c9eb944518842b8d24c3985aedb5d0581c64 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 1 Aug 2011 00:44:32 +0200 Subject: =?UTF-8?q?Deactivate=20the=20/info=20command=20for=20private=20ro?= =?UTF-8?q?oms=20until=20it=E2=80=99s=20finished?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/tabs.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/tabs.py b/src/tabs.py index ea4bd082..7a79550d 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -981,6 +981,7 @@ class PrivateTab(ChatTab): # keys self.key_func['^I'] = self.completion # commands + #self.commands['info'] = (self.command_info, _('Usage: /info\nInfo: Display some information about the user in the MUC: '), None) self.commands['unquery'] = (self.command_unquery, _("Usage: /unquery\nUnquery: close the tab"), None) self.commands['part'] = (self.command_unquery, _("Usage: /part\Part: close the tab"), None) self.resize() -- cgit v1.2.3 From 04f67c1b4e08930ebb230d5f197714031a16ddc1 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 1 Aug 2011 00:45:16 +0200 Subject: Fix typos in some command help messages. --- src/tabs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/tabs.py b/src/tabs.py index 7a79550d..92cdc094 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -1138,8 +1138,8 @@ class RosterInfoTab(Tab): self.key_func["S"] = self.start_search_slow self.commands['deny'] = (self.command_deny, _("Usage: /deny [jid]\nDeny: Use this command to remove and deny your presence to the provided JID (or the selected contact in your roster), who is asking you to be in his/here roster"), self.completion_deny) self.commands['accept'] = (self.command_accept, _("Usage: /accept [jid]\nAccept: Use this command to authorize the provided JID (or the selected contact in your roster), to see your presence, and to ask to subscribe to it (mutual presence subscription)."), self.completion_deny) - self.commands['add'] = (self.command_add, _("Usage: /add \Add: Use this command to add the specified JID to your roster. The reverse authorization will automatically be accepted if the remote JID accepts your subscription, leading to a mutual presence subscription."), None) - self.commands['remove'] = (self.command_remove, _("Usage: /remove [jid]\Remove: Use this command to remove the specified JID from your roster. This wil unsubscribe you from its presence, cancel its subscription to yours, and remove the item from your roster"), self.completion_remove) + self.commands['add'] = (self.command_add, _("Usage: /add \nAdd: Use this command to add the specified JID to your roster. The reverse authorization will automatically be accepted if the remote JID accepts your subscription, leading to a mutual presence subscription."), None) + self.commands['remove'] = (self.command_remove, _("Usage: /remove [jid]\nRemove: Use this command to remove the specified JID from your roster. This wil unsubscribe you from its presence, cancel its subscription to yours, and remove the item from your roster"), self.completion_remove) self.commands['export'] = (self.command_export, _("Usage: /export [/path/to/file]\nExport: Use this command to export your contacts into /path/to/file if specified, or $HOME/poezio_contacts if not."), None) self.commands['import'] = (self.command_import, _("Usage: /import [/path/to/file]\nImport: Use this command to import your contacts from /path/to/file if specified, or $HOME/poezio_contacts if not."), None) self.resize() -- cgit v1.2.3