diff options
author | James Booth <boothj5@gmail.com> | 2014-01-19 01:25:04 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-19 01:25:04 +0000 |
commit | c7325de0732cdb50ee8f339dc4f5a74ad30cc92f (patch) | |
tree | 1e1eb9bda9b06e4ae42de049466d79d77b6d638d /src | |
parent | 2f58b2488f66761d693d071861bbfbf228f06602 (diff) | |
download | profani-tty-c7325de0732cdb50ee8f339dc4f5a74ad30cc92f.tar.gz |
Added cmd_statuses validation tests
Diffstat (limited to 'src')
-rw-r--r-- | src/command/command.c | 25 | ||||
-rw-r--r-- | src/command/commands.c | 23 |
2 files changed, 39 insertions, 9 deletions
diff --git a/src/command/command.c b/src/command/command.c index 31af72c4..717656bf 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -755,13 +755,24 @@ static struct cmd_t command_defs[] = { "/statuses", - cmd_statuses, parse_args, 1, 1, &cons_statuses_setting, - { "/statuses on|off", "Set notifications for status messages.", - { "/statuses on|off", - "----------------", - "Show status updates from contacts, such as online/offline/away etc.", - "When disabled, status updates are not displayed.", - "The default is 'on'.", + cmd_statuses, parse_args, 2, 2, &cons_statuses_setting, + { "/statuses console|chat|muc setting", "Set preferences for presence change messages.", + { "/statuses console|chat|muc setting", + "----------------------------------", + "Configure how presence changes are displayed in various windows.", + "Settings for the console:", + "all - Show all presence changes in the console", + "online - Show only when contacts log in/out.", + "none - Don't show any presence changes in the console.", + "Settings for chat windows:", + "all - Show all presence changes in the contact's chat window if one is open.", + "online - Show only when contacts log in/out.", + "none - Don't show any presence changes in the chat windows.", + "Settings for chat room windows:", + "on - Show presence changes in chat rooms.", + "off - Do not show presence changes in chat rooms (user entering/leaving are still displayed).", + "The defaults are:", + "console - all, chat - all, muc - on.", NULL } } }, { "/away", diff --git a/src/command/commands.c b/src/command/commands.c index 90cf8134..1a4e8c83 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -2253,8 +2253,27 @@ cmd_priority(gchar **args, struct cmd_help_t help) gboolean cmd_statuses(gchar **args, struct cmd_help_t help) { - return _cmd_set_boolean_preference(args[0], help, - "Status notifications", PREF_STATUSES); + if (strcmp(args[0], "console") != 0 && + strcmp(args[0], "chat") != 0 && + strcmp(args[0], "muc") != 0) { + cons_show("Usage: %s", help.usage); + } + + if (strcmp(args[0], "console") == 0 || strcmp(args[0], "chat") == 0) { + if (strcmp(args[1], "all") != 0 && + strcmp(args[1], "online") != 0 && + strcmp(args[1], "none") != 0) { + cons_show("Usage: %s", help.usage); + } + + } + + if (strcmp(args[0], "muc") == 0) { + if (strcmp(args[1], "on") != 0 && strcmp(args[1], "off") != 0) { + cons_show("Usage: %s", help.usage); + } + } + return TRUE; } gboolean |