From e1956533a6e04d7ba2afdbc841b48804a84120b3 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 1 Mar 2013 19:25:31 +0100 Subject: Fix #2231 (update the plugins to use the new help system) And fix some imprecisions/mistakes in the help. --- plugins/link.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'plugins/link.py') diff --git a/plugins/link.py b/plugins/link.py index 427d718a..0d88fba2 100644 --- a/plugins/link.py +++ b/plugins/link.py @@ -12,9 +12,11 @@ url_pattern = re.compile(r'\b(http[s]?://(?:\S+))\b', re.I|re.U) class Plugin(BasePlugin): def init(self): - self.add_tab_command(tabs.MucTab, 'link', self.command_link, "Usage: /link\nLink: opens the last link from the conversation into a browser.") - self.add_tab_command(tabs.PrivateTab, 'link', self.command_link, "Usage: /link\nLink: opens the last link from the conversation into a browser.") - self.add_tab_command(tabs.ConversationTab, 'link', self.command_link, "Usage: /link\nLink: opens the last link from the conversation into a browser.") + for _class in (tabs.MucTab, tabs.PrivateTab, tabs.ConversationTab): + self.add_tab_command(_class, 'link', self.command_link, + usage='[num]', + help='Opens the last link from the conversation into a browser.\nIf [num] is given, then it will open the num-th link displayed.', + short='Open links into a browser') def find_link(self, nb): messages = self.core.get_conversation_messages() -- cgit v1.2.3