diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-08 16:19:09 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-08 16:19:09 +0100 |
commit | 8f02b6eb8e022ed1d34e0a0b0c7376eaf58acc32 (patch) | |
tree | 8c71022d3ebee1bcf8ec6994df64214aafbde62f /src | |
parent | 2c99e6be9f587370abdfe9aa32979bb7d0f28840 (diff) | |
parent | d2c02174c865d62c40f3eb161fc96dd22a1ad9b9 (diff) | |
download | poezio-8f02b6eb8e022ed1d34e0a0b0c7376eaf58acc32.tar.gz poezio-8f02b6eb8e022ed1d34e0a0b0c7376eaf58acc32.tar.bz2 poezio-8f02b6eb8e022ed1d34e0a0b0c7376eaf58acc32.tar.xz poezio-8f02b6eb8e022ed1d34e0a0b0c7376eaf58acc32.zip |
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'src')
-rw-r--r-- | src/core.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index a9c97022..b0b4a913 100644 --- a/src/core.py +++ b/src/core.py @@ -114,7 +114,7 @@ class Core(object): 'available': (self.command_avail, _("Usage: /available [message]\nAvailable: Sets your availability to available and (optionaly) your status message. This is equivalent to '/status available [message]'"), None), 'bookmark': (self.command_bookmark, _("Usage: /bookmark [roomname][/nick]\nBookmark: Bookmark the specified room (you will then auto-join it on each poezio start). This commands uses the same syntaxe as /join. Type /help join for syntaxe examples. Note that when typing \"/bookmark\" on its own, the room will be bookmarked with the nickname you\'re currently using in this room (instead of default_nick)"), None), 'set': (self.command_set, _("Usage: /set <option> [value]\nSet: Sets the value to the option in your configuration file. You can, for example, change your default nickname by doing `/set default_nick toto` or your resource with `/set resource blabla`. You can also set an empty value (nothing) by providing no [value] after <option>."), None), - 'theme': (self.command_theme, _('Usage: /theme\nTheme: Reload the theme defined in the config file.'), None), + 'theme': (self.command_theme, _('Usage: /theme [theme_name]\nTheme: Reload the theme defined in the config file. If theme_name is provided, set that theme before reloading it.'), None), 'list': (self.command_list, _('Usage: /list\nList: get the list of public chatrooms on the specified server'), self.completion_list), 'message': (self.command_message, _('Usage: /message <jid> [optional message]\nMessage: Open a conversation with the specified JID (even if it is not in our roster), and send a message to it, if specified'), None), 'version': (self.command_version, _('Usage: /version <jid>\nVersion: get the software version of the given JID (usually its XMPP client and Operating System)'), None), @@ -1175,6 +1175,9 @@ class Core(object): self.xmpp.plugin['xep_0030'].get_items(jid=server, block=False, callback=list_tab.on_muc_list_item_received) def command_theme(self, arg): + args = arg.split() + if len(args) == 1: + self.command_set('theme %s' % (args[0],)) warning = theming.reload_theme() if warning: self.information(warning, 'Warning') |