From bbc55fa40eaaed6bb57fddd2e9cc5eb1d3baa8cc Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Sun, 4 May 2014 18:23:10 +0200 Subject: Add the /ad-hoc command to list commands of the given jid --- src/core/commands.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/core/commands.py') diff --git a/src/core/commands.py b/src/core/commands.py index d4df1099..c2e453e9 100644 --- a/src/core/commands.py +++ b/src/core/commands.py @@ -940,6 +940,22 @@ def command_xml_tab(self, arg=''): tab = tabs.XMLTab() self.add_tab(tab, True) +def command_adhoc(self, arg): + arg = arg.split() + if len(arg) > 1: + return self.command_help('list') + elif arg: + jid = safeJID(arg[0]).server + else: + return self.information('Please provide a jid', 'Error') + list_tab = tabs.AdhocCommandsListTab(jid) + self.add_tab(list_tab, True) + cb = list_tab.on_list_received + self.xmpp.plugin['xep_0050'].get_commands(jid=jid, + local=False, + block=False, + callback=cb) + def command_self(self, arg=None): """ /self -- cgit v1.2.3