source: commands.c @ ca54fd6

release-1.10release-1.8release-1.9
Last change on this file since ca54fd6 was ca54fd6, checked in by Jason Gross <jgross@mit.edu>, 13 years ago
Pass owl_variable * around instead of owl_vardict *. This allows (forces) functions to do their own NULL- and type- checking on variables. The functions in varsubs.c get less checking, but if these auto-generated functions are failing, something more serious is probably wrong. The owl_variable_get_* functions type-check their arguments, and owl_function_error if the argument is the wrong type (it's a programmer error and we should make some noise).
  • Property mode set to 100644
File size: 85.1 KB
Line 
1#include <getopt.h>
2#include <stdio.h>
3#include <stdlib.h>
4#include <string.h>
5#include <unistd.h>
6#include "owl.h"
7
8/* fn is "char *foo(int argc, const char *const *argv, const char *buff)" */
9#define OWLCMD_ARGS(name, fn, ctx, summary, usage, description) \
10        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
11          NULL, fn, NULL, NULL, NULL, NULL, NULL, NULL }
12
13/* fn is "void foo(void)" */
14#define OWLCMD_VOID(name, fn, ctx, summary, usage, description) \
15        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
16          NULL, NULL, fn, NULL, NULL, NULL, NULL, NULL }
17
18/* fn is "void foo(int)" */
19#define OWLCMD_INT(name, fn, ctx, summary, usage, description) \
20        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
21          NULL, NULL, NULL, fn, NULL, NULL, NULL, NULL }
22
23#define OWLCMD_ALIAS(name, actualname) \
24        { g_strdup(name), g_strdup(OWL_CMD_ALIAS_SUMMARY_PREFIX actualname), g_strdup(""), g_strdup(""), OWL_CTX_ANY, \
25          g_strdup(actualname), NULL, NULL, NULL, NULL, NULL, NULL, NULL }
26
27/* fn is "char *foo(void *ctx, int argc, const char *const *argv, const char *buff)" */
28#define OWLCMD_ARGS_CTX(name, fn, ctx, summary, usage, description) \
29        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
30          NULL, NULL, NULL, NULL, ((char*(*)(void*,int,const char*const *,const char*))fn), NULL, NULL, NULL }
31
32/* fn is "void foo(void)" */
33#define OWLCMD_VOID_CTX(name, fn, ctx, summary, usage, description) \
34        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
35          NULL, NULL, NULL, NULL, NULL, ((void(*)(void*))(fn)), NULL, NULL }
36
37/* fn is "void foo(int)" */
38#define OWLCMD_INT_CTX(name, fn, ctx, summary, usage, description) \
39        { g_strdup(name), g_strdup(summary), g_strdup(usage), g_strdup(description), ctx, \
40          NULL, NULL, NULL, NULL, NULL, NULL, ((void(*)(void*,int))fn), NULL }
41
42
43void owl_cmd_add_defaults(owl_cmddict *cd)
44{
45  owl_cmd commands_to_init[] = {
46
47  OWLCMD_ARGS("zlog", owl_command_zlog, OWL_CTX_ANY,
48              "send a login or logout notification",
49              "zlog in [tty]\nzlog out",
50              "zlog in will send a login notification, zlog out will send a\n"
51              "logout notification.  By default a login notification is sent\n"
52              "when owl is started and a logout notification is sent when owl\n"
53              "is exited.  This behavior can be changed with the 'startuplogin'\n"
54              "and 'shutdownlogout' variables.  If a tty is specified for zlog in\n"
55              "then the owl variable 'tty' will be set to that string, causing\n"
56              "it to be used as the zephyr location tty.\n"),
57
58  OWLCMD_VOID("quit", owl_command_quit, OWL_CTX_ANY,
59              "exit owl",
60              "",
61              "Exit owl and run any shutdown activities."),
62  OWLCMD_ALIAS("exit", "quit"),
63  OWLCMD_ALIAS("q",    "quit"),
64
65  OWLCMD_ARGS("term", owl_command_term, OWL_CTX_ANY,
66              "control the terminal",
67              "term raise\n"
68              "term deiconify\n",
69              ""),
70
71  OWLCMD_VOID("nop", owl_command_nop, OWL_CTX_ANY,
72              "do nothing",
73              "",
74              ""),
75 
76  OWLCMD_ARGS("start-command", owl_command_start_command, OWL_CTX_INTERACTIVE,
77              "prompts the user to enter a command",
78              "start-command [initial-value]",
79              "Initializes the command field to initial-value."),
80
81  OWLCMD_ARGS("alias", owl_command_alias, OWL_CTX_ANY,
82              "creates a command alias",
83              "alias <new_command> <old_command>",
84              "Creates a command alias from new_command to old_command.\n"
85              "Any arguments passed to <new_command> will be appended to\n"
86              "<old_command> before it is executed.\n"),
87
88  OWLCMD_ARGS("bindkey", owl_command_bindkey, OWL_CTX_ANY,
89              "creates a binding in a keymap",
90              "bindkey <keymap> <keyseq> command <command>",
91              "(Note: There is a literal word \"command\" between <keyseq>\n"
92              " and <command>.)\n"
93              "Binds a key sequence to a command within a keymap.\n"
94              "Use 'show keymaps' to see the existing keymaps.\n"
95              "Key sequences may be things like M-C-t or NPAGE.\n\n"
96              "Ex.: bindkey recv C-b command zwrite -c barnowl\n"
97              "Ex.: bindkey recv m command start-command zwrite -c my-class -i \n\n"
98              "SEE ALSO: unbindkey, start-command"),
99
100  OWLCMD_ARGS("unbindkey", owl_command_unbindkey, OWL_CTX_ANY,
101              "removes a binding in a keymap",
102              "bindkey <keymap> <keyseq>",
103              "Removes a binding of a key sequence within a keymap.\n"
104              "Use 'show keymaps' to see the existing keymaps.\n"
105              "Ex.: unbindkey recv H\n\n"
106              "SEE ALSO: bindkey"),
107
108  OWLCMD_ARGS("zwrite", owl_command_zwrite, OWL_CTX_INTERACTIVE,
109              "send a zephyr",
110              "zwrite [-n] [-C] [-c class] [-i instance] [-r realm] [-O opcode] [<user> ...] [-m <message...>]",
111              "Zwrite send a zephyr to the one or more users specified.\n\n"
112              "The following options are available:\n\n"
113              "-m    Specifies a message to send without prompting.\n"
114              "      Note that this does not yet log an outgoing message.\n"
115              "      This must be the last argument.\n\n"
116              "-n    Do not send a ping message.\n\n"
117              "-C    If the message is sent to more than one user include a\n"
118              "      \"cc:\" line in the text\n\n"
119              "-c class\n"
120              "      Send to the specified zephyr class\n\n"
121              "-i instance\n"
122              "      Send to the specified zephyr instance\n\n"
123              "-r realm\n"
124              "      Send to a foreign realm\n"
125              "-O opcode\n"
126              "      Send to the specified opcode\n"),
127
128  OWLCMD_ARGS("aimwrite", owl_command_aimwrite, OWL_CTX_INTERACTIVE,
129              "send an AIM message",
130              "aimwrite <user> [-m <message...>]",
131              "Send an aim message to a user.\n\n" 
132              "The following options are available:\n\n"
133              "-m    Specifies a message to send without prompting.\n"),
134
135  OWLCMD_ARGS("loopwrite", owl_command_loopwrite, OWL_CTX_INTERACTIVE,
136              "send a loopback message",
137              "loopwrite",
138              "Send a local message.\n"),
139
140  OWLCMD_ARGS("zcrypt", owl_command_zwrite, OWL_CTX_INTERACTIVE,
141              "send an encrypted zephyr",
142              "zcrypt [-n] [-C] [-c class] [-i instance] [-r realm] [-O opcode] [-m <message...>]\n",
143              "Behaves like zwrite but uses encryption.  Not for use with\n"
144              "personal messages\n"),
145 
146  OWLCMD_ARGS("reply", owl_command_reply,  OWL_CTX_INTERACTIVE,
147              "reply to the current message",
148              "reply [-e] [ sender | all | zaway ]",
149              "If -e is specified, the zwrite command line is presented to\n"
150              "allow editing.\n\n"
151              "If 'sender' is specified, reply to the sender.\n\n"
152              "If 'all' or no args are specified, reply publicly to the\n"
153              "same class/instance for non-personal messages and to the\n"
154              "sender for personal messages.\n\n"
155              "If 'zaway' is specified, replies with a zaway message.\n\n"),
156
157  OWLCMD_ARGS("set", owl_command_set, OWL_CTX_ANY,
158              "set a variable value",
159              "set [-q] [<variable>] [<value>]\n"
160              "set",
161              "Set the named variable to the specified value.  If no\n"
162              "arguments are given, print the value of all variables.\n"
163              "If the value is unspecified and the variable is a boolean, it will be\n"
164              "set to 'on'.  If -q is used, set is silent and does not print a\n"
165              "message.\n"),
166
167  OWLCMD_ARGS("unset", owl_command_unset, OWL_CTX_ANY,
168              "unset a boolean variable value",
169              "unset [-q] <variable>\n"
170              "unset",
171              "Set the named boolean variable to off.\n"
172              "If -q is specified, is silent and doesn't print a message.\n"),
173
174  OWLCMD_ARGS("print", owl_command_print, OWL_CTX_ANY,
175              "print a variable value",
176              "print <variable>\n"
177              "print",
178              "Print the value of the named variable.  If no arguments\n"
179              "are used print the value of all variables.\n"),
180
181  OWLCMD_ARGS("startup", owl_command_startup, OWL_CTX_ANY,
182              "run a command and set it to be run at every Owl startup",
183              "startup <commands> ...",
184              "Everything on the command line after the startup command\n"
185              "is executed as a normal owl command and is also placed in\n"
186              "a file so that the command is executed every time owl\n"
187              "is started"),
188
189  OWLCMD_ARGS("unstartup", owl_command_unstartup, OWL_CTX_ANY,
190              "remove a command from the list of those to be run at Owl startup",
191              "unstartup <commands> ...",
192              ""),
193
194  OWLCMD_VOID("version", owl_command_version, OWL_CTX_ANY,
195              "print the version of the running owl", "", ""),
196
197  OWLCMD_ARGS("subscribe", owl_command_subscribe, OWL_CTX_ANY,
198              "subscribe to a zephyr class, instance, recipient",
199              "subscribe [-t] <class> [instance [recipient]]",
200              "Subscribe to the specified class and instance.  If the\n"
201              "instance or recipient is not listed on the command\n"
202              "line they default to * (the wildcard recipient).\n"
203              "If the -t option is present the subscription will\n"
204              "only be temporary, i.e., it will not be written to\n"
205              "the subscription file and will therefore not be\n"
206              "present the next time owl is started.\n"),
207  OWLCMD_ALIAS("sub", "subscribe"),
208
209  OWLCMD_ARGS("unsubscribe", owl_command_unsubscribe, OWL_CTX_ANY,
210              "unsubscribe from a zephyr class, instance, recipient",
211              "unsubscribe [-t] <class> [instance [recipient]]",
212              "Unsubscribe from the specified class and instance.  If the\n"
213              "instance or recipient is not listed on the command\n"
214              "line they default to * (the wildcard recipient).\n"
215              "If the -t option is present the unsubscription will\n"
216              "only be temporary, i.e., it will not be updated in\n"
217              "the subscription file and will therefore not be\n"
218              "in effect the next time owl is started.\n"),
219  OWLCMD_ALIAS("unsub", "unsubscribe"),
220
221  OWLCMD_VOID("unsuball", owl_command_unsuball, OWL_CTX_ANY,
222              "unsubscribe from all zephyrs", "", ""),
223 
224  OWLCMD_VOID("getsubs", owl_command_getsubs, OWL_CTX_ANY,
225              "print all current subscriptions",
226              "getsubs",
227              "getsubs retrieves the current subscriptions from the server\n"
228              "and displays them.\n"),
229
230  OWLCMD_ARGS("dump", owl_command_dump, OWL_CTX_ANY,
231              "dump messages to a file",
232              "dump <filename>",
233              "Dump messages in current view to the named file."),
234
235  OWLCMD_ARGS("source", owl_command_source, OWL_CTX_ANY,
236              "execute owl commands from a file",
237              "source <filename>",
238              "Execute the owl commands in <filename>.\n"),
239
240  OWLCMD_ARGS("aim", owl_command_aim, OWL_CTX_INTERACTIVE,
241              "AIM specific commands",
242              "aim search <email>",
243              ""),
244
245  OWLCMD_ARGS("addbuddy", owl_command_addbuddy, OWL_CTX_INTERACTIVE,
246              "add a buddy to a buddylist",
247              "addbuddy <protocol> <screenname>",
248              "Add the named buddy to your buddylist.  <protocol> can be aim or zephyr\n"),
249
250  OWLCMD_ARGS("delbuddy", owl_command_delbuddy, OWL_CTX_INTERACTIVE,
251              "delete a buddy from a buddylist",
252              "delbuddy <protocol> <screenname>",
253              "Delete the named buddy from your buddylist.  <protocol> can be aim or zephyr\n"),
254
255  OWLCMD_ARGS("join", owl_command_join, OWL_CTX_INTERACTIVE,
256              "join a chat group",
257              "join aim <groupname> [exchange]",
258              "Join the AIM chatroom with 'groupname'.\n"),
259
260  OWLCMD_ARGS("smartzpunt", owl_command_smartzpunt, OWL_CTX_INTERACTIVE,
261              "creates a zpunt based on the current message",
262              "smartzpunt [-i | --instance]",
263              "Starts a zpunt command based on the current message's class\n"
264              "(and instance if -i is specified).\n"),
265
266  OWLCMD_ARGS("zpunt", owl_command_zpunt, OWL_CTX_ANY,
267              "suppress a given zephyr triplet",
268              "zpunt <class> <instance> [recipient]\n"
269              "zpunt <instance>",
270              "The zpunt command will suppress messages to the specified\n"
271              "zephyr triplet.  In the second usage messages are suppressed\n"
272              "for class MESSAGE and the named instance.\n\n"
273              "SEE ALSO:  zunpunt, show zpunts\n"),
274
275  OWLCMD_ARGS("zunpunt", owl_command_zunpunt, OWL_CTX_ANY,
276              "undo a previous zpunt",
277              "zunpunt <class> <instance> [recipient]\n"
278              "zunpunt <instance>",
279              "The zunpunt command will allow messages that were previously\n"
280              "suppressed to be received again.\n\n"
281              "SEE ALSO:  zpunt, show zpunts\n"),
282
283  OWLCMD_ARGS("punt", owl_command_punt, OWL_CTX_ANY,
284              "suppress an arbitrary filter",
285              "punt <filter-name>\n"
286              "punt <filter-text (multiple words)>",
287              "The punt command will suppress messages to the specified\n"
288              "filter\n\n"
289              "SEE ALSO:  unpunt, zpunt, show zpunts\n"),
290
291  OWLCMD_ARGS("unpunt", owl_command_unpunt, OWL_CTX_ANY,
292              "remove an entry from the punt list",
293              "unpunt <number>\n"
294              "unpunt <filter-name>\n"
295              "unpunt <filter-text (multiple words)>",
296              "The unpunt command will remove an entry from the puntlist.\n"
297              "The last two forms correspond to the two forms of the :punt\n"
298              "command. The first allows you to remove a specific entry from\n"
299              "the list (see :show zpunts)\n\n"
300              "SEE ALSO:  punt, zpunt, zunpunt, show zpunts\n"),
301
302  OWLCMD_VOID("info", owl_command_info, OWL_CTX_INTERACTIVE,
303              "display detailed information about the current message",
304              "", ""),
305 
306  OWLCMD_ARGS("help", owl_command_help, OWL_CTX_INTERACTIVE,
307              "display help on using owl",
308              "help [command]", ""),
309
310  OWLCMD_ARGS("zlist", owl_command_zlist, OWL_CTX_INTERACTIVE,
311              "List users logged in",
312              "znol [-f file]",
313              "Print a znol-style listing of users logged in"),
314
315  OWLCMD_VOID("alist", owl_command_alist, OWL_CTX_INTERACTIVE,
316              "List AIM users logged in",
317              "alist",
318              "Print a listing of AIM users logged in"),
319
320  OWLCMD_VOID("blist", owl_command_blist, OWL_CTX_INTERACTIVE,
321              "List all buddies logged in",
322              "blist",
323              "Print a listing of buddies logged in, regardless of protocol."),
324
325  OWLCMD_VOID("toggle-oneline", owl_command_toggleoneline, OWL_CTX_INTERACTIVE,
326              "Toggle the style between oneline and the default style",
327              "toggle-oneline",
328              ""),
329
330  OWLCMD_ARGS("recv:getshift", owl_command_get_shift, OWL_CTX_INTERACTIVE,
331              "gets position of receive window scrolling", "", ""),
332
333  OWLCMD_INT("recv:setshift", owl_command_set_shift, OWL_CTX_INTERACTIVE,
334              "scrolls receive window to specified position", "", ""),
335
336  OWLCMD_VOID("recv:pagedown", owl_function_mainwin_pagedown, 
337              OWL_CTX_INTERACTIVE,
338              "scrolls down by a page", "", ""),
339
340  OWLCMD_VOID("recv:pageup", owl_function_mainwin_pageup, OWL_CTX_INTERACTIVE,
341              "scrolls up by a page", "", ""),
342
343  OWLCMD_VOID("recv:mark", owl_function_mark_message,
344              OWL_CTX_INTERACTIVE,
345              "mark the current message", "", ""),
346
347  OWLCMD_VOID("recv:swapmark", owl_function_swap_cur_marked,
348              OWL_CTX_INTERACTIVE,
349              "swap the positions of the pointer and the mark", "", ""),
350
351  OWLCMD_INT ("recv:scroll", owl_function_page_curmsg, OWL_CTX_INTERACTIVE,
352              "scrolls current message up or down", 
353              "recv:scroll <numlines>", 
354              "Scrolls the current message up or down by <numlines>.\n"
355              "Scrolls up if <numlines> is negative, else scrolls down.\n"),
356
357  OWLCMD_ARGS("next", owl_command_next, OWL_CTX_INTERACTIVE,
358              "move the pointer to the next message",
359              "recv:next [ --filter <name> ] [ --skip-deleted ] [ --last-if-none ]\n"
360              "          [ --smart-filter | --smart-filter-instance ]",
361              "Moves the pointer to the next message in the current view.\n"
362              "If --filter is specified, will only consider messages in\n"
363              "the filter <name>.\n"
364              "If --smart-filter or --smart-filter-instance is specified,\n"
365              "goes to the next message that is similar to the current message.\n"
366              "If --skip-deleted is specified, deleted messages will\n"
367              "be skipped.\n"
368              "If --last-if-none is specified, will stop at last message\n"
369              "in the view if no other suitable messages are found.\n"),
370  OWLCMD_ALIAS("recv:next", "next"),
371
372  OWLCMD_ARGS("prev", owl_command_prev, OWL_CTX_INTERACTIVE,
373              "move the pointer to the previous message",
374              "recv:prev [ --filter <name> ] [ --skip-deleted ] [ --first-if-none ]\n"
375              "          [ --smart-filter | --smart-filter-instance ]",
376              "Moves the pointer to the next message in the current view.\n"
377              "If --filter is specified, will only consider messages in\n"
378              "the filter <name>.\n"
379              "If --smart-filter or --smart-filter-instance is specified,\n"
380              "goes to the previous message that is similar to the current message.\n"
381              "If --skip-deleted is specified, deleted messages will\n"
382              "be skipped.\n"
383              "If --first-if-none is specified, will stop at first message\n"
384              "in the view if no other suitable messages are found.\n"),
385  OWLCMD_ALIAS("recv:prev", "prev"),
386
387  OWLCMD_ALIAS("recv:next-notdel", "recv:next --skip-deleted --last-if-none"),
388  OWLCMD_ALIAS("next-notdel",      "recv:next --skip-deleted --last-if-none"),
389
390  OWLCMD_ALIAS("recv:prev-notdel", "recv:prev --skip-deleted --first-if-none"),
391  OWLCMD_ALIAS("prev-notdel",      "recv:prev --skip-deleted --first-if-none"),
392
393  OWLCMD_ALIAS("recv:next-personal", "recv:next --filter personal"),
394
395  OWLCMD_ALIAS("recv:prev-personal", "recv:prev --filter personal"),
396
397  OWLCMD_VOID("first", owl_command_first, OWL_CTX_INTERACTIVE,
398              "move the pointer to the first message", "", ""),
399  OWLCMD_ALIAS("recv:first", "first"),
400
401  OWLCMD_VOID("last", owl_command_last, OWL_CTX_INTERACTIVE,
402              "move the pointer to the last message", "", 
403              "Moves the pointer to the last message in the view.\n"
404              "If we are already at the last message in the view,\n"
405              "blanks the screen and moves just past the end of the view\n"
406              "so that new messages will appear starting at the top\n"
407              "of the screen.\n"),
408  OWLCMD_ALIAS("recv:last", "last"),
409
410  OWLCMD_VOID("expunge", owl_command_expunge, OWL_CTX_INTERACTIVE,
411              "remove all messages marked for deletion", "", ""),
412
413  OWLCMD_VOID("resize", owl_command_resize, OWL_CTX_ANY,
414              "resize the window to the current screen size", "", ""),
415
416  OWLCMD_VOID("redisplay", owl_command_redisplay, OWL_CTX_ANY,
417              "redraw the entire window", "", ""),
418
419  OWLCMD_VOID("suspend", owl_command_suspend, OWL_CTX_ANY,
420              "suspend owl", "", ""),
421
422  OWLCMD_ARGS("echo", owl_command_echo, OWL_CTX_ANY,
423              "pops up a message in popup window",
424              "echo [args .. ]\n\n", ""),
425
426  OWLCMD_ARGS("exec", owl_command_exec, OWL_CTX_ANY,
427              "run a command from the shell",
428              "exec [args .. ]", ""),
429
430  OWLCMD_ARGS("aexec", owl_command_aexec, OWL_CTX_INTERACTIVE,
431              "run a command from the shell and display in an admin message",
432              "aexec [args .. ]", ""),
433
434  OWLCMD_ARGS("pexec", owl_command_pexec, OWL_CTX_INTERACTIVE,
435              "run a command from the shell and display in a popup window",
436              "pexec [args .. ]", ""),
437
438  OWLCMD_ARGS("perl", owl_command_perl, OWL_CTX_ANY,
439              "run a perl expression",
440              "perl [args .. ]", ""),
441
442  OWLCMD_ARGS("aperl", owl_command_aperl, OWL_CTX_INTERACTIVE,
443              "run a perl expression and display in an admin message",
444              "aperl [args .. ]", ""),
445
446  OWLCMD_ARGS("pperl", owl_command_pperl, OWL_CTX_INTERACTIVE,
447              "run a perl expression and display in a popup window",
448              "pperl [args .. ]", ""),
449
450  OWLCMD_ARGS("multi", owl_command_multi, OWL_CTX_ANY,
451              "runs multiple ;-separated commands",
452              "multi <command1> ( ; <command2> )*\n",
453              "Runs multiple semicolon-separated commands in order.\n"
454              "Note quoting isn't supported here yet.\n"
455              "If you want to do something fancy, use perl.\n"),
456
457  OWLCMD_ARGS("(", owl_command_multi, OWL_CTX_ANY,
458              "runs multiple ;-separated commands",
459              "'(' <command1> ( ; <command2> )* ')'\n",
460              "Runs multiple semicolon-separated commands in order.\n"
461              "You must have a space before the final ')'\n"
462              "Note quoting isn't supported here yet.\n"
463              "If you want to do something fancy, use perl.\n"),
464
465  OWLCMD_VOID("pop-message", owl_command_pop_message, OWL_CTX_RECWIN,
466              "pops up a message in a window", "", ""),
467
468  OWLCMD_ARGS("zaway", owl_command_zaway, OWL_CTX_INTERACTIVE,
469              "Set, enable or disable zephyr away message",
470              "zaway [ on | off | toggle ]\n"
471              "zaway <message>",
472              "Turn on or off a zaway message.  If 'message' is\n"
473              "specified turn on zaway with that message, otherwise\n"
474              "use the default.\n"),
475
476  OWLCMD_ARGS("aaway", owl_command_aaway, OWL_CTX_INTERACTIVE,
477              "Set, enable or disable AIM away message",
478              "aaway [ on | off | toggle ]\n"
479              "aaway <message>",
480              "Turn on or off the AIM away message.  If 'message' is\n"
481              "specified turn on aaway with that message, otherwise\n"
482              "use the default.\n"),
483
484  OWLCMD_ARGS("away", owl_command_away, OWL_CTX_INTERACTIVE,
485              "Set, enable or disable both AIM and zephyr away messages",
486              "away [ on | off | toggle ]\n"
487              "away <message>",
488              "Turn on or off the AIM and zephyr away message.  If\n"
489              "'message' is specified turn them on with that message,\n"
490              "otherwise use the default.\n"
491              "\n"
492              "This command really just runs the 'aaway' and 'zaway'\n"
493              "commands together\n"
494              "\n"
495              "SEE ALSO: aaway, zaway"),
496
497  OWLCMD_ARGS("load-subs", owl_command_loadsubs, OWL_CTX_ANY,
498              "load subscriptions from a file",
499              "load-subs <file>\n", ""),
500
501  OWLCMD_ARGS("loadsubs", owl_command_loadsubs, OWL_CTX_ANY,
502              "load subscriptions from a file",
503              "loadsubs <file>\n", ""),
504
505  OWLCMD_ARGS("loadloginsubs", owl_command_loadloginsubs, OWL_CTX_ANY,
506              "load login subscriptions from a file",
507              "loadloginsubs <file>\n",
508              "The file should contain a list of usernames, one per line."),
509
510  OWLCMD_VOID("about", owl_command_about, OWL_CTX_INTERACTIVE,
511              "print information about owl", "", ""),
512
513  OWLCMD_VOID("status", owl_command_status, OWL_CTX_ANY,
514              "print status information about the running owl", "", ""),
515 
516  OWLCMD_ARGS("zlocate", owl_command_zlocate, OWL_CTX_INTERACTIVE,
517              "locate a user",
518              "zlocate [-d] <user> ...", 
519              "Performs a zlocate on one ore more users and puts the result\n"
520              "int a popwin.  If -d is specified, does not authenticate\n"
521              "the lookup request.\n"),
522 
523  OWLCMD_ARGS("filter", owl_command_filter, OWL_CTX_ANY,
524              "create a message filter",
525              "filter <name> [ -c fgcolor ] [ -b bgcolor ] [ <expression> ... ]",
526              "The filter command creates a filter with the specified name,\n"
527              "or if one already exists it is replaced.  Example filter\n"
528              "syntax would be:\n\n"
529              "     filter myfilter -c red ( class ^foobar$ ) or ( class ^quux$ and instance ^bar$ )\n\n"
530              "Valid matching fields are:\n"
531              "    sender     -  sender\n"
532              "    recipient  -  recipient\n"
533              "    class      -  zephyr class name\n"
534              "    instance   -  zephyr instance name\n"
535              "    opcode     -  zephyr opcode\n"
536              "    realm      -  zephyr realm\n"
537              "    body       -  message body\n"
538              "    hostname   -  hostname of sending host\n"
539              "    type       -  message type (zephyr, aim, admin)\n"
540              "    direction  -  either 'in' 'out' or 'none'\n"
541              "    login      -  either 'login' 'logout' or 'none'\n"
542              "Also you may match on the validity of another filter:\n"
543              "    filter <filtername>\n"
544              "Also you may pass the message to a perl function returning 0 or 1,\n"
545              "where 1 indicates that the function matches the filter:\n"
546              "    perl <subname>\n"
547              "Valid operators are:\n"
548              "    and\n"
549              "    or\n"
550              "    not\n"
551              "And additionally you may use the static values:\n"
552              "    true\n"
553              "    false\n"
554              "Spaces must be present before and after parentheses.  If the\n"
555              "optional color arguments are used they specifies the colors that\n"
556              "messages matching this filter should be displayed in.\n\n"
557              "SEE ALSO: view, viewclass, viewuser\n"),
558
559  OWLCMD_ARGS("colorview", owl_command_colorview, OWL_CTX_INTERACTIVE,
560              "change the colors on the current filter",
561              "colorview <fgcolor> [<bgcolor>]",
562              "The colors of messages in the current filter will be changed\n"
563              "to <fgcolor>,<bgcolor>.  Use the 'show colors' command for a list\n"
564              "of valid colors.\n\n"
565              "SEE ALSO: 'show colors'\n"),
566
567  OWLCMD_ARGS("colorclass", owl_command_colorclass, OWL_CTX_INTERACTIVE,
568              "create a filter to color messages of the given class name",
569              "colorclass <class> <fgcolor> [<bgcolor>]",
570              "A filter will be created to color messages in <class>"
571              "in <fgcolor>,<bgcolor>.  Use the 'show colors' command for a list\n"
572              "of valid colors.\n\n"
573              "SEE ALSO: 'show colors'\n"),
574
575  OWLCMD_ARGS("view", owl_command_view, OWL_CTX_INTERACTIVE,
576              "view messages matching a filter",
577              "view [<viewname>] [-f <filter> | --home | -r ] [-s <style>]\n"
578              "view <filter>\n"
579              "view -d <expression>\n"
580              "view --home",
581              "The view command sets information associated with a particular view,\n"
582              "such as view's filter or style.  In the first general usage listed\n"
583              "above <viewname> is the name of the view to be changed.  If not\n"
584              "specified the default view 'main' will be used.  A filter can be set\n"
585              "for the view by listing a named filter after the -f argument.  If\n"
586              "the --home argument is used the filter will be set to the filter named\n"
587              "by the\n 'view_home' variable.  The style can be set by listing the\n"
588              "name style after the -s argument.\n"
589              "\n"
590              "The other usages listed above are abbreviated forms that simply set\n"
591              "the filter of the current view. The -d option allows you to write a\n"
592              "filter expression that will be dynamically created by owl and then\n"
593              "applied as the view's filter\n"
594              "SEE ALSO: filter, viewclass, viewuser\n"),
595
596  OWLCMD_ARGS("smartnarrow", owl_command_smartnarrow, OWL_CTX_INTERACTIVE,
597              "view only messages similar to the current message",
598              "smartnarrow [-i | --instance]  [-r | --related]",
599              "If the curmsg is a personal message narrow\n"
600              "   to the conversation with that user.\n"
601              "If the curmsg is a <MESSAGE, foo, *>\n"
602              "   message, narrow to the instance.\n"
603              "If the curmsg is a class message, narrow\n"
604              "    to the class.\n"
605              "If the curmsg is a class message and '-i' is specified\n"
606              "    then narrow to the class and instance.\n"
607              "If '-r' or '--related' is specified, behave as though the\n"
608              "    'narrow-related' variable was inverted."),
609
610  OWLCMD_ARGS("smartfilter", owl_command_smartfilter, OWL_CTX_INTERACTIVE,
611              "returns the name of a filter based on the current message",
612              "smartfilter [-i | --instance]",
613              "If the curmsg is a personal message, the filter is\n"
614              "   the conversation with that user.\n"
615              "If the curmsg is a <MESSAGE, foo, *>\n"
616              "   message, the filter is to that instance.\n"
617              "If the curmsg is a class message, the filter is that class.\n"
618              "If the curmsg is a class message and '-i' is specified\n"
619              "    the filter is to that class and instance.\n"),
620
621  OWLCMD_ARGS("viewclass", owl_command_viewclass, OWL_CTX_INTERACTIVE,
622              "view messages matching a particular class",
623              "viewclass <class>",
624              "The viewclass command will automatically create a filter\n"
625              "matching the specified class and switch the current view\n"
626              "to it.\n\n"
627              "SEE ALSO: filter, view, viewuser\n"),
628  OWLCMD_ALIAS("vc", "viewclass"),
629
630  OWLCMD_ARGS("viewuser", owl_command_viewuser, OWL_CTX_INTERACTIVE,
631              "view messages matching a particular user",
632              "viewuser <user>",
633              "The viewuser command will automatically create a filter\n"
634              "matching the specified user and switch the current\n"
635              "view to it.\n\n"
636              "SEE ALSO: filter, view, viewclass\n"),
637  OWLCMD_ALIAS("vu", "viewuser"),
638  OWLCMD_ALIAS("viewperson", "viewuser"),
639  OWLCMD_ALIAS("vp", "viewuser"),
640
641  OWLCMD_ARGS("show", owl_command_show, OWL_CTX_INTERACTIVE,
642              "show information",
643              "show colors\n"
644              "show commands\n"
645              "show command <command>\n"
646              "show errors\n"
647              "show filters\n"
648              "show filter <filter>\n"
649              "show keymaps\n"
650              "show keymap <keymap>\n"
651              "show license\n"
652              "show quickstart\n"
653              "show startup\n"
654              "show status\n"
655              "show styles\n"
656              "show subscriptions / show subs\n"
657              "show terminal\n"
658              "show variables\n"
659              "show variable <variable>\n"
660              "show version\n"
661              "show view [<view>]\n"
662              "show zpunts\n",
663
664              "Show colors will display a list of valid colors for the\n"
665              "     terminal."
666              "Show filters will list the names of all filters.\n"
667              "Show filter <filter> will show the definition of a particular\n"
668              "     filter.\n\n"
669              "Show startup will display the custom startup config\n\n"
670              "Show zpunts will show the active zpunt filters.\n\n"
671              "Show keymaps will list the names of all keymaps.\n"
672              "Show keymap <keymap> will show the key bindings in a keymap.\n\n"
673              "Show commands will list the names of all keymaps.\n"
674              "Show command <command> will provide information about a command.\n\n"
675              "Show styles will list the names of all styles available\n"
676              "for formatting messages.\n\n"
677              "Show variables will list the names of all variables.\n\n"
678              "Show errors will show a list of errors encountered by Owl.\n\n"
679              "SEE ALSO: filter, view, alias, bindkey, help\n"),
680 
681  OWLCMD_ARGS("delete", owl_command_delete, OWL_CTX_INTERACTIVE,
682              "mark a message for deletion",
683              "delete [ -id msgid ] [ --no-move ]\n"
684              "delete view\n"
685              "delete trash",
686              "If no message id is specified the current message is marked\n"
687              "for deletion.  Otherwise the message with the given message\n"
688              "id is marked for deletion.\n"
689              "If '--no-move' is specified, don't move after deletion.\n"
690              "If 'trash' is specified, deletes all trash/auto messages\n"
691              "in the current view.\n"
692              "If 'view' is specified, deletes all messages in the\n"
693              "current view.\n"),
694  OWLCMD_ALIAS("del", "delete"),
695
696  OWLCMD_ARGS("undelete", owl_command_undelete, OWL_CTX_INTERACTIVE,
697              "unmark a message for deletion",
698              "undelete [ -id msgid ] [ --no-move ]\n"
699              "undelete view",
700              "If no message id is specified the current message is\n"
701              "unmarked for deletion.  Otherwise the message with the\n"
702              "given message id is unmarked for deletion.\n"
703              "If '--no-move' is specified, don't move after deletion.\n"
704              "If 'view' is specified, undeletes all messages\n"
705              "in the current view.\n"),
706  OWLCMD_ALIAS("undel", "undelete"),
707
708  OWLCMD_VOID("beep", owl_command_beep, OWL_CTX_ANY,
709              "ring the terminal bell",
710              "beep",
711              "Beep will ring the terminal bell.\n"
712              "If the variable 'bell' has been\n"
713              "set to 'off' this command does nothing.\n"),
714
715  OWLCMD_ARGS("debug", owl_command_debug, OWL_CTX_ANY,
716              "prints a message into the debug log",
717              "debug <message>", ""),
718
719  OWLCMD_ARGS("getview", owl_command_getview, OWL_CTX_INTERACTIVE,
720              "returns the name of the filter for the current view",
721              "", ""),
722
723  OWLCMD_ARGS("getvar", owl_command_getvar, OWL_CTX_INTERACTIVE,
724              "returns the value of a variable",
725              "getvar <varname>", ""),
726
727  OWLCMD_ARGS("getfilter", owl_command_getfilter, OWL_CTX_INTERACTIVE,
728              "returns the definition of a filter",
729              "getfilter <filtername>", ""),
730
731  OWLCMD_ARGS("getstyle", owl_command_getstyle, OWL_CTX_INTERACTIVE,
732              "returns the name of the style for the current view",
733              "", ""),
734
735  OWLCMD_ARGS("search", owl_command_search, OWL_CTX_INTERACTIVE,
736              "search messages for a particular string",
737              "search [-r] [<string>]",
738              "The search command will find messages that contain the\n"
739              "specified string and move the cursor there.  If no string\n"
740              "argument is supplied then the previous one is used.  By\n"
741              "default searches are done forwards; if -r is used the search\n"
742              "is performed backwards"),
743
744  OWLCMD_ARGS("setsearch", owl_command_setsearch, OWL_CTX_INTERACTIVE,
745              "set the search highlight string without searching",
746              "setsearch <string>",
747              "The setsearch command highlights all occurrences of its\n"
748          "argument and makes it the default argument for future\n"
749          "search commands, but does not move the cursor.  With\n"
750          "no argument, it makes search highlighting inactive."),
751
752  OWLCMD_ARGS("aimlogin", owl_command_aimlogin, OWL_CTX_ANY,
753              "login to an AIM account",
754              "aimlogin <screenname> [<password>]\n",
755              ""),
756
757  OWLCMD_ARGS("aimlogout", owl_command_aimlogout, OWL_CTX_ANY,
758              "logout from AIM",
759              "aimlogout\n",
760              ""),
761
762  OWLCMD_ARGS("error", owl_command_error, OWL_CTX_ANY,
763              "Display an error message",
764              "error <message>",
765              ""),
766
767  OWLCMD_ARGS("message", owl_command_message, OWL_CTX_ANY,
768              "Display an informative message",
769              "message <message>",
770              ""),
771
772  OWLCMD_ARGS("add-cmd-history", owl_command_add_cmd_history, OWL_CTX_ANY,
773              "Add a command to the history",
774              "add-cmd-history <cmd>",
775              ""),
776
777  OWLCMD_ARGS("with-history", owl_command_with_history, OWL_CTX_ANY,
778              "Run a command and store it into the history",
779              "with-history <cmd>",
780              ""),
781
782  OWLCMD_VOID("yes", owl_command_yes, OWL_CTX_RECV,
783              "Answer yes to a question",
784              "yes",
785              ""),
786
787  OWLCMD_VOID("no", owl_command_no, OWL_CTX_RECV,
788              "Answer no to a question",
789              "no",
790              ""),
791
792  /****************************************************************/
793  /************************* EDIT-SPECIFIC ************************/
794  /****************************************************************/
795
796  OWLCMD_VOID_CTX("edit:move-next-word", owl_editwin_move_to_nextword, 
797                  OWL_CTX_EDIT,
798                  "moves cursor forward a word",
799                  "", ""),
800
801  OWLCMD_VOID_CTX("edit:move-prev-word", owl_editwin_move_to_previousword, 
802                  OWL_CTX_EDIT,
803                  "moves cursor backwards a word",
804                  "", ""),
805
806  OWLCMD_VOID_CTX("edit:move-to-buffer-start", owl_editwin_move_to_top,
807                  OWL_CTX_EDIT,
808                  "moves cursor to the top left (start) of the buffer",
809                  "", ""),
810
811  OWLCMD_VOID_CTX("edit:move-to-buffer-end", owl_editwin_move_to_end, 
812                  OWL_CTX_EDIT,
813                  "moves cursor to the bottom right (end) of the buffer",
814                  "", ""),
815
816  OWLCMD_VOID_CTX("edit:move-to-line-end", owl_editwin_move_to_line_end, 
817                  OWL_CTX_EDIT,
818                  "moves cursor to the end of the line",
819                  "", ""),
820
821  OWLCMD_VOID_CTX("edit:move-to-line-start", owl_editwin_move_to_line_start, 
822                  OWL_CTX_EDIT,
823                  "moves cursor to the beginning of the line",
824                  "", ""),
825
826  OWLCMD_VOID_CTX("edit:move-left", owl_editwin_key_left, 
827                  OWL_CTX_EDIT,
828                  "moves the cursor left by a character",
829                  "", ""),
830
831  OWLCMD_VOID_CTX("edit:move-right", owl_editwin_key_right,
832                  OWL_CTX_EDIT,
833                  "moves the cursor right by a character",
834                  "", ""),
835
836  OWLCMD_VOID_CTX("edit:delete-next-word", owl_editwin_delete_nextword,
837                  OWL_CTX_EDIT,
838                  "deletes the word to the right of the cursor",
839                  "", ""),
840
841  OWLCMD_VOID_CTX("edit:delete-prev-word", owl_editwin_delete_previousword,
842                  OWL_CTX_EDIT,
843                  "deletes the word to the left of the cursor",
844                  "", ""),
845
846  OWLCMD_VOID_CTX("edit:delete-prev-char", owl_editwin_backspace,
847                  OWL_CTX_EDIT,
848                  "deletes the character to the left of the cursor",
849                  "", ""),
850
851  OWLCMD_VOID_CTX("edit:delete-next-char", owl_editwin_delete_char, 
852                  OWL_CTX_EDIT,
853                  "deletes the character to the right of the cursor",
854                  "", ""),
855
856  OWLCMD_VOID_CTX("edit:delete-to-line-end", owl_editwin_delete_to_endofline,
857                  OWL_CTX_EDIT,
858                  "deletes from the cursor to the end of the line",
859                  "", ""),
860
861  OWLCMD_VOID_CTX("edit:delete-all", owl_editwin_clear, 
862                  OWL_CTX_EDIT,
863                  "deletes all of the contents of the buffer",
864                  "", ""),
865
866  OWLCMD_VOID_CTX("edit:transpose-chars", owl_editwin_transpose_chars,
867                  OWL_CTX_EDIT,
868                  "Interchange characters around point, moving forward one character.",
869                  "", ""),
870
871  OWLCMD_VOID_CTX("edit:fill-paragraph", owl_editwin_fill_paragraph, 
872                  OWL_CTX_EDIT,
873                  "fills the current paragraph to line-wrap well",
874                  "", ""),
875
876  OWLCMD_VOID_CTX("edit:recenter", owl_editwin_recenter, 
877                  OWL_CTX_EDIT,
878                  "recenters the buffer",
879                  "", ""),
880
881  OWLCMD_ARGS_CTX("edit:insert-text", owl_command_edit_insert_text, 
882                  OWL_CTX_EDIT,
883                  "inserts text into the buffer",
884                  "edit:insert-text <text>", ""),
885
886  OWLCMD_VOID_CTX("edit:cancel", owl_command_edit_cancel, 
887                  OWL_CTX_EDIT,
888                  "cancels the current command",
889                  "", ""),
890
891  OWLCMD_VOID_CTX("edit:history-next", owl_command_edit_history_next, 
892                  OWL_CTX_EDIT,
893                  "replaces the text with the next history",
894                  "", ""),
895
896  OWLCMD_VOID_CTX("edit:history-prev", owl_command_edit_history_prev, 
897                  OWL_CTX_EDIT,
898                  "replaces the text with the previous history",
899                  "", ""),
900
901  OWLCMD_VOID_CTX("edit:set-mark", owl_editwin_set_mark,
902                  OWL_CTX_EDIT,
903                  "sets the mark",
904                  "", ""),
905
906  OWLCMD_VOID_CTX("edit:exchange-point-and-mark", owl_editwin_exchange_point_and_mark,
907                  OWL_CTX_EDIT,
908                  "exchanges the point and the mark",
909                  "", ""),
910
911  OWLCMD_VOID_CTX("edit:copy-region-as-kill", owl_editwin_copy_region_as_kill,
912                  OWL_CTX_EDIT,
913                  "copy the text between the point and the mark",
914                  "", ""),
915
916  OWLCMD_VOID_CTX("edit:kill-region", owl_editwin_kill_region,
917                  OWL_CTX_EDIT,
918                  "kill text between the point and the mark",
919                  "", ""),
920
921  OWLCMD_VOID_CTX("edit:yank", owl_editwin_yank,
922                  OWL_CTX_EDIT,
923                  "insert the current text from the kill buffer",
924                  "", ""),
925
926  OWLCMD_ALIAS   ("editline:done", "edit:done"),
927  OWLCMD_ALIAS   ("editresponse:done", "edit:done"),
928
929  OWLCMD_VOID_CTX("edit:move-up-line", owl_editwin_key_up, 
930                  OWL_CTX_EDITMULTI,
931                  "moves the cursor up one line",
932                  "", ""),
933
934  OWLCMD_VOID_CTX("edit:move-down-line", owl_editwin_key_down, 
935                  OWL_CTX_EDITMULTI,
936                  "moves the cursor down one line",
937                  "", ""),
938
939  OWLCMD_VOID_CTX("edit:done", owl_command_edit_done, 
940                  OWL_CTX_EDIT,
941                  "Finishes entering text in the editwin.",
942                  "", ""),
943
944  OWLCMD_VOID_CTX("edit:done-or-delete", owl_command_edit_done_or_delete, 
945                  OWL_CTX_EDITMULTI,
946                  "completes the command, but only if at end of message",
947                  "", 
948                  "If only whitespace is to the right of the cursor,\n"
949                  "runs 'edit:done'.\n"\
950                  "Otherwise runs 'edit:delete-next-char'\n"),
951
952  OWLCMD_VOID_CTX("edit:forward-paragraph", owl_editwin_forward_paragraph,
953                  OWL_CTX_EDITMULTI,
954                  "Move forward to end of paragraph.",
955                  "",
956                  "Move the point to the end of the current paragraph"),
957
958  OWLCMD_VOID_CTX("edit:backward-paragraph", owl_editwin_backward_paragraph,
959                  OWL_CTX_EDITMULTI,
960                  "Move backward to the start of paragraph.",
961                  "",
962                  "Move the point to the start of the current paragraph"),
963
964  /****************************************************************/
965  /********************** POPLESS-SPECIFIC ************************/
966  /****************************************************************/
967
968  OWLCMD_VOID_CTX("popless:scroll-down-page", owl_viewwin_pagedown, 
969                  OWL_CTX_POPLESS,
970                  "scrolls down one page",
971                  "", ""),
972
973  OWLCMD_VOID_CTX("popless:scroll-down-line", owl_viewwin_linedown, 
974                  OWL_CTX_POPLESS,
975                  "scrolls down one line",
976                  "", ""),
977
978  OWLCMD_VOID_CTX("popless:scroll-up-page", owl_viewwin_pageup, 
979                  OWL_CTX_POPLESS,
980                  "scrolls up one page",
981                  "", ""),
982
983  OWLCMD_VOID_CTX("popless:scroll-up-line", owl_viewwin_lineup, 
984                  OWL_CTX_POPLESS,
985                  "scrolls up one line",
986                  "", ""),
987
988  OWLCMD_VOID_CTX("popless:scroll-to-top", owl_viewwin_top, 
989                  OWL_CTX_POPLESS,
990                  "scrolls to the top of the buffer",
991                  "", ""),
992
993  OWLCMD_VOID_CTX("popless:scroll-to-bottom", owl_viewwin_bottom, 
994                  OWL_CTX_POPLESS,
995                  "scrolls to the bottom of the buffer",
996                  "", ""),
997
998  OWLCMD_INT_CTX ("popless:scroll-right", owl_viewwin_right, 
999                  OWL_CTX_POPLESS,
1000                  "scrolls right in the buffer",
1001                  "popless:scroll-right <num-chars>", ""),
1002
1003  OWLCMD_INT_CTX ("popless:scroll-left", owl_viewwin_left, 
1004                  OWL_CTX_POPLESS,
1005                  "scrolls left in the buffer",
1006                  "popless:scroll-left <num-chars>", ""),
1007
1008  OWLCMD_VOID_CTX("popless:quit", owl_command_popless_quit, 
1009                  OWL_CTX_POPLESS,
1010                  "exits the popless window",
1011                  "", ""),
1012
1013  OWLCMD_ARGS_CTX("popless:start-command", owl_viewwin_start_command,
1014                  OWL_CTX_POPLESS,
1015                  "starts a command line in the popless",
1016                  "popless:start-command [initial-value]",
1017                  "Initializes the command field to initial-value"),
1018
1019  OWLCMD_ARGS_CTX("popless:search", owl_viewwin_command_search, OWL_CTX_POPLESS,
1020                  "search lines for a particular string",
1021                  "popless:search [-r] [<string>]",
1022                  "The popless:search command will find lines that contain the\n"
1023                  "specified string and scroll the popwin there.  If no string\n"
1024                  "argument is supplied then the previous one is used.  By\n"
1025                  "default searches are done forwards; if -r is used the search\n"
1026                  "is performed backwards"),
1027
1028  OWLCMD_ARGS_CTX("popless:start-search", owl_viewwin_command_start_search, OWL_CTX_POPLESS,
1029                  "starts a command line to search for particular string",
1030                  "popless:start-search [-r] [inital-value]",
1031                  "Initializes the command-line to search for initial-value. If\n"
1032                  "-r is used, the search will be performed backwards.\n\n"
1033                  "SEE ALSO: popless:search"),
1034
1035  OWLCMD_ALIAS("webzephyr", "zwrite " OWL_WEBZEPHYR_PRINCIPAL " -c " OWL_WEBZEPHYR_CLASS " -i"),
1036
1037  /* This line MUST be last! */
1038  { NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
1039
1040  };
1041
1042  owl_cmddict_add_from_list(cd, commands_to_init);
1043  owl_cmd *cmd;
1044  for (cmd = commands_to_init; cmd->name != NULL; cmd++)
1045    owl_cmd_cleanup(cmd);
1046}
1047
1048void owl_command_info(void)
1049{
1050  owl_function_info();
1051}
1052
1053void owl_command_nop(void)
1054{
1055}
1056
1057char *owl_command_help(int argc, const char *const *argv, const char *buff)
1058{
1059  if (argc!=2) {
1060    owl_help();
1061    return NULL;
1062  }
1063 
1064  owl_function_help_for_command(argv[1]);
1065  return NULL;
1066}
1067
1068char *owl_command_zlist(int argc, const char *const *argv, const char *buff)
1069{
1070  const char *file=NULL;
1071
1072  argc--;
1073  argv++;
1074  while (argc) {
1075    if (!strcmp(argv[0], "-f")) {
1076      if (argc==1) {
1077        owl_function_makemsg("zlist: -f needs an argument");
1078        return(NULL);
1079      }
1080      file=argv[1];
1081      argc-=2;
1082      argv+=2;
1083    } else {
1084      owl_function_makemsg("zlist: unknown argument");
1085      return(NULL);
1086    }
1087  }
1088  owl_function_buddylist(0, 1, file);
1089  return(NULL);
1090}
1091
1092void owl_command_alist(void)
1093{
1094  owl_function_buddylist(1, 0, NULL);
1095}
1096
1097void owl_command_blist(void)
1098{
1099  owl_function_buddylist(1, 1, NULL);
1100}
1101
1102void owl_command_toggleoneline(void)
1103{
1104  owl_function_toggleoneline();
1105}
1106
1107void owl_command_about(void)
1108{
1109  owl_function_about();
1110}
1111
1112void owl_command_version(void)
1113{
1114  owl_function_makemsg("BarnOwl version %s", OWL_VERSION_STRING);
1115}
1116
1117char *owl_command_aim(int argc, const char *const *argv, const char *buff)
1118{
1119  if (argc<2) {
1120    owl_function_makemsg("not enough arguments to aim command");
1121    return(NULL);
1122  }
1123
1124  if (!strcmp(argv[1], "search")) {
1125    if (argc!=3) {
1126      owl_function_makemsg("not enough arguments to aim search command");
1127      return(NULL);
1128    }
1129    owl_aim_search(argv[2]);
1130  } else {
1131    owl_function_makemsg("unknown subcommand '%s' for aim command", argv[1]);
1132    return(NULL);
1133  }
1134  return(NULL);
1135}
1136
1137char *owl_command_addbuddy(int argc, const char *const *argv, const char *buff)
1138{
1139  if (argc!=3) {
1140    owl_function_makemsg("usage: addbuddy <protocol> <buddyname>");
1141    return(NULL);
1142  }
1143
1144  if (!strcasecmp(argv[1], "aim")) {
1145    if (!owl_global_is_aimloggedin(&g)) {
1146      owl_function_makemsg("addbuddy: You must be logged into aim to use this command.");
1147      return(NULL);
1148    }
1149    /*
1150    owl_function_makemsg("This function is not yet operational.  Stay tuned.");
1151    return(NULL);
1152    */
1153    owl_aim_addbuddy(argv[2]);
1154    owl_function_makemsg("%s added as AIM buddy for %s", argv[2], owl_global_get_aim_screenname(&g));
1155  } else if (!strcasecmp(argv[1], "zephyr")) {
1156    owl_zephyr_addbuddy(argv[2]);
1157    owl_function_makemsg("%s added as zephyr buddy", argv[2]);
1158  } else {
1159    owl_function_makemsg("addbuddy: currently the only supported protocols are 'zephyr' and 'aim'");
1160  }
1161
1162  return(NULL);
1163}
1164
1165char *owl_command_delbuddy(int argc, const char *const *argv, const char *buff)
1166{
1167  if (argc!=3) {
1168    owl_function_makemsg("usage: delbuddy <protocol> <buddyname>");
1169    return(NULL);
1170  }
1171
1172  if (!strcasecmp(argv[1], "aim")) {
1173    if (!owl_global_is_aimloggedin(&g)) {
1174      owl_function_makemsg("delbuddy: You must be logged into aim to use this command.");
1175      return(NULL);
1176    }
1177    owl_aim_delbuddy(argv[2]);
1178    owl_function_makemsg("%s deleted as AIM buddy for %s", argv[2], owl_global_get_aim_screenname(&g));
1179  } else if (!strcasecmp(argv[1], "zephyr")) {
1180    owl_zephyr_delbuddy(argv[2]);
1181    owl_function_makemsg("%s deleted as zephyr buddy", argv[2]);
1182  } else {
1183    owl_function_makemsg("delbuddy: currently the only supported protocols are 'zephyr' and 'aim'");
1184  }
1185
1186  return(NULL);
1187}
1188
1189char *owl_command_join(int argc, const char *const *argv, const char *buff)
1190{
1191  if (argc!=3 && argc!=4) {
1192    owl_function_makemsg("usage: join <protocol> <buddyname> [exchange]");
1193    return(NULL);
1194  }
1195
1196  if (!strcasecmp(argv[1], "aim")) {
1197    if (!owl_global_is_aimloggedin(&g)) {
1198      owl_function_makemsg("join aim: You must be logged into aim to use this command.");
1199      return(NULL);
1200    }
1201    if (argc==3) {
1202      owl_aim_chat_join(argv[2], 4);
1203    } else {
1204      owl_aim_chat_join(argv[2], atoi(argv[3]));
1205    }
1206    /* owl_function_makemsg("%s deleted as AIM buddy for %s", argv[2], owl_global_get_aim_screenname(&g)); */
1207  } else {
1208    owl_function_makemsg("join: currently the only supported protocol is 'aim'");
1209  }
1210  return(NULL);
1211}
1212
1213char *owl_command_startup(int argc, const char *const *argv, const char *buff)
1214{
1215  const char *ptr;
1216
1217  if (argc<2) {
1218    owl_function_makemsg("usage: %s <commands> ...", argv[0]);
1219    return(NULL);
1220  }
1221
1222  ptr = skiptokens(buff, 1);
1223
1224  owl_function_command_norv(ptr);
1225  owl_function_addstartup(ptr);
1226
1227  return(NULL);
1228}
1229
1230char *owl_command_unstartup(int argc, const char *const *argv, const char *buff)
1231{
1232  const char *ptr;
1233
1234  if (argc<2) {
1235    owl_function_makemsg("usage: %s <commands> ...", argv[0]);
1236    return(NULL);
1237  }
1238
1239  ptr = skiptokens(buff, 1);
1240
1241  owl_function_delstartup(ptr);
1242
1243  return(NULL);
1244}
1245
1246char *owl_command_dump(int argc, const char *const *argv, const char *buff)
1247{
1248  char *filename;
1249 
1250  if (argc!=2) {
1251    owl_function_makemsg("usage: dump <filename>");
1252    return(NULL);
1253  }
1254  filename=owl_util_makepath(argv[1]);
1255  owl_function_dump(filename);
1256  g_free(filename);
1257  return(NULL);
1258}
1259
1260char *owl_command_source(int argc, const char *const *argv, const char *buff)
1261{
1262  if (argc!=2) {
1263    owl_function_makemsg("usage: source <filename>");
1264    return(NULL);
1265  }
1266
1267  owl_function_source(argv[1]);
1268  return(NULL);
1269}
1270
1271char *owl_command_next(int argc, const char *const *argv, const char *buff)
1272{
1273  char *filter=NULL;
1274  int skip_deleted=0, last_if_none=0;
1275  while (argc>1) {
1276    if (argc>=1 && !strcmp(argv[1], "--skip-deleted")) {
1277      skip_deleted=1;
1278      argc-=1; argv+=1; 
1279    } else if (argc>=1 && !strcmp(argv[1], "--last-if-none")) {
1280      last_if_none=1;
1281      argc-=1; argv+=1; 
1282    } else if (argc>=2 && !strcmp(argv[1], "--filter")) {
1283      filter = g_strdup(argv[2]);
1284      argc-=2; argv+=2; 
1285    } else if (argc>=2 && !strcmp(argv[1], "--smart-filter")) {
1286      filter = owl_function_smartfilter(0, 0);
1287      argc-=2; argv+=2; 
1288    } else if (argc>=2 && !strcmp(argv[1], "--smart-filter-instance")) {
1289      filter = owl_function_smartfilter(1, 0);
1290      argc-=2; argv+=2; 
1291    } else {
1292      owl_function_makemsg("Invalid arguments to command 'next'.");
1293      return(NULL);
1294    }
1295  }
1296  owl_function_nextmsg_full(filter, skip_deleted, last_if_none);
1297  g_free(filter);
1298  return(NULL);
1299}
1300
1301char *owl_command_prev(int argc, const char *const *argv, const char *buff)
1302{
1303  char *filter=NULL;
1304  int skip_deleted=0, first_if_none=0;
1305  while (argc>1) {
1306    if (argc>=1 && !strcmp(argv[1], "--skip-deleted")) {
1307      skip_deleted=1;
1308      argc-=1; argv+=1; 
1309    } else if (argc>=1 && !strcmp(argv[1], "--first-if-none")) {
1310      first_if_none=1;
1311      argc-=1; argv+=1; 
1312    } else if (argc>=2 && !strcmp(argv[1], "--filter")) {
1313      filter = g_strdup(argv[2]);
1314      argc-=2; argv+=2; 
1315    } else if (argc>=2 && !strcmp(argv[1], "--smart-filter")) {
1316      filter = owl_function_smartfilter(0, 0);
1317      argc-=2; argv+=2; 
1318    } else if (argc>=2 && !strcmp(argv[1], "--smart-filter-instance")) {
1319      filter = owl_function_smartfilter(1, 0);
1320      argc-=2; argv+=2; 
1321   } else {
1322      owl_function_makemsg("Invalid arguments to command 'prev'.");
1323      return(NULL);
1324    }
1325  }
1326  owl_function_prevmsg_full(filter, skip_deleted, first_if_none);
1327  g_free(filter);
1328  return(NULL);
1329}
1330
1331char *owl_command_smartnarrow(int argc, const char *const *argv, const char *buff)
1332{
1333  char *filtname = NULL;
1334
1335  char opt;
1336  int instance = 0, related = 0, i;
1337  const char **tmp_argv = g_new(const char *, argc);
1338
1339  static const struct option options[] = {
1340    {"instance", 0, 0, 'i'},
1341    {"related",  0, 0, 'r'},
1342    {NULL,       0, 0, 0}};
1343
1344  for (i = 0; i < argc; i++)
1345    tmp_argv[i] = argv[i];
1346
1347  optind = 0;
1348  while ((opt = getopt_long(argc, (char **)tmp_argv, "ir", options, NULL)) != -1) {
1349    switch (opt) {
1350      case 'i':
1351        instance = 1;
1352        break;
1353      case 'r':
1354        related = 1;
1355        break;
1356      default:
1357        owl_function_makemsg("Wrong number of arguments for %s (%c)", argv[0], opt);
1358        goto done;
1359    }
1360  }
1361
1362  filtname = owl_function_smartfilter(instance, related);
1363
1364  if (filtname) {
1365    owl_function_change_currentview_filter(filtname);
1366    g_free(filtname);
1367  }
1368
1369done:
1370  g_free(tmp_argv);
1371
1372  return NULL;
1373}
1374
1375CALLER_OWN char *owl_command_smartfilter(int argc, const char *const *argv, const char *buff)
1376{
1377  char *filtname = NULL;
1378
1379  if (argc == 1) {
1380    filtname = owl_function_smartfilter(0, 0);
1381  } else if (argc == 2 && (!strcmp(argv[1], "-i") || !strcmp(argv[1], "--instance"))) {
1382    filtname = owl_function_smartfilter(1, 0);
1383  } else {
1384    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);   
1385  }
1386  return filtname;
1387}
1388
1389void owl_command_expunge(void)
1390{
1391  owl_function_expunge();
1392}
1393
1394void owl_command_first(void)
1395{
1396  owl_global_set_rightshift(&g, 0);
1397  owl_function_firstmsg();
1398}
1399
1400void owl_command_last(void)
1401{
1402  owl_function_lastmsg();
1403}
1404
1405void owl_command_resize(void)
1406{
1407  owl_function_resize();
1408}
1409
1410void owl_command_redisplay(void)
1411{
1412  owl_function_full_redisplay();
1413}
1414
1415CALLER_OWN char *owl_command_get_shift(int argc, const char *const *argv, const char *buff)
1416{
1417  if(argc != 1)
1418  {
1419    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
1420    return NULL;
1421  }
1422  return g_strdup_printf("%d", owl_global_get_rightshift(&g));
1423}
1424
1425void owl_command_set_shift(int shift)
1426{
1427  owl_global_set_rightshift(&g, shift);
1428}
1429
1430void owl_command_unsuball(void)
1431{
1432  owl_function_unsuball();
1433}
1434
1435char *owl_command_loadsubs(int argc, const char *const *argv, const char *buff)
1436{
1437  if (argc == 2) {
1438    owl_function_loadsubs(argv[1]);
1439  } else if (argc == 1) {
1440    owl_function_loadsubs(NULL);
1441  } else {
1442    owl_function_makemsg("Wrong number of arguments for load-subs.");
1443    return(NULL);
1444  }
1445  return(NULL);
1446}
1447
1448
1449char *owl_command_loadloginsubs(int argc, const char *const *argv, const char *buff)
1450{
1451  if (argc == 2) {
1452    owl_function_loadloginsubs(argv[1]);
1453  } else if (argc == 1) {
1454    owl_function_loadloginsubs(NULL);
1455  } else {
1456    owl_function_makemsg("Wrong number of arguments for load-subs.");
1457    return(NULL);
1458  }
1459  return(NULL);
1460}
1461
1462void owl_command_suspend(void)
1463{
1464  owl_function_suspend();
1465}
1466
1467char *owl_command_start_command(int argc, const char *const *argv, const char *buff)
1468{
1469  buff = skiptokens(buff, 1);
1470  owl_function_start_command(buff);
1471  return(NULL);
1472}
1473
1474char *owl_command_zaway(int argc, const char *const *argv, const char *buff)
1475{
1476  if ((argc==1) ||
1477      ((argc==2) && !strcmp(argv[1], "on"))) {
1478    owl_global_set_zaway_msg(&g, owl_global_get_zaway_msg_default(&g));
1479    owl_function_zaway_on();
1480    return NULL;
1481  }
1482
1483  if (argc==2 && !strcmp(argv[1], "off")) {
1484    owl_function_zaway_off();
1485    return NULL;
1486  }
1487
1488  if (argc==2 && !strcmp(argv[1], "toggle")) {
1489    owl_function_zaway_toggle();
1490    return NULL;
1491  }
1492
1493  buff = skiptokens(buff, 1);
1494  owl_global_set_zaway_msg(&g, buff);
1495  owl_function_zaway_on();
1496  return NULL;
1497}
1498
1499
1500char *owl_command_aaway(int argc, const char *const *argv, const char *buff)
1501{
1502  if ((argc==1) ||
1503      ((argc==2) && !strcmp(argv[1], "on"))) {
1504    owl_global_set_aaway_msg(&g, owl_global_get_aaway_msg_default(&g));
1505    owl_function_aaway_on();
1506    return NULL;
1507  }
1508
1509  if (argc==2 && !strcmp(argv[1], "off")) {
1510    owl_function_aaway_off();
1511    return NULL;
1512  }
1513
1514  if (argc==2 && !strcmp(argv[1], "toggle")) {
1515    owl_function_aaway_toggle();
1516    return NULL;
1517  }
1518
1519  buff = skiptokens(buff, 1);
1520  owl_global_set_aaway_msg(&g, buff);
1521  owl_function_aaway_on();
1522  return NULL;
1523}
1524
1525
1526char *owl_command_away(int argc, const char *const *argv, const char *buff)
1527{
1528  if ((argc==1) ||
1529      ((argc==2) && !strcmp(argv[1], "on"))) {
1530    owl_global_set_aaway_msg(&g, owl_global_get_aaway_msg_default(&g));
1531    owl_global_set_zaway_msg(&g, owl_global_get_zaway_msg_default(&g));
1532    owl_function_aaway_on();
1533    owl_function_zaway_on();
1534    owl_function_makemsg("Away messages set.");
1535    return NULL;
1536  }
1537
1538  if (argc==2 && !strcmp(argv[1], "off")) {
1539    owl_function_aaway_off();
1540    owl_function_zaway_off();
1541    return NULL;
1542  }
1543
1544  if (argc==2 && !strcmp(argv[1], "toggle")) {
1545    /* if either one is on, turn it off, otherwise toggle both (turn
1546     *  them both on)
1547     */
1548    if (!owl_global_is_zaway(&g) && !owl_global_is_aaway(&g)) {
1549      owl_function_aaway_toggle();
1550      owl_function_zaway_toggle();
1551      owl_function_makemsg("Away messages set.");
1552    } else {
1553      if (owl_global_is_zaway(&g)) owl_function_zaway_toggle();
1554      if (owl_global_is_aaway(&g)) owl_function_aaway_toggle();
1555      owl_function_makemsg("Away messages off.");
1556    }
1557    return NULL;
1558  }
1559
1560  buff = skiptokens(buff, 1);
1561  owl_global_set_aaway_msg(&g, buff);
1562  owl_global_set_zaway_msg(&g, buff);
1563  owl_function_aaway_on();
1564  owl_function_zaway_on();
1565  owl_function_makemsg("Away messages set.");
1566  return NULL;
1567}
1568
1569char *owl_command_set(int argc, const char *const *argv, const char *buff)
1570{
1571  const char *var, *val;
1572  int  silent=0;
1573  int requirebool=0;
1574  owl_variable *v;
1575
1576  if (argc == 1) {
1577    owl_function_printallvars();
1578    return NULL;
1579  } 
1580
1581  if (argc > 1 && !strcmp("-q",argv[1])) {
1582    silent = 1;
1583    argc--; argv++;
1584  }
1585
1586  if (argc == 2) {
1587    var=argv[1];
1588    val="on";
1589    requirebool=1;
1590  } else if (argc == 3) {
1591    var=argv[1];
1592    val=argv[2];
1593  } else {
1594    owl_function_makemsg("Wrong number of arguments for set command");
1595    return NULL;
1596  }
1597
1598  v = owl_variable_get_var(owl_global_get_vardict(&g), var);
1599  if (v == NULL) {
1600    if (!silent) owl_function_error("Unknown variable '%s'", var);
1601  } else if (requirebool && owl_variable_get_type(v) != OWL_VARIABLE_BOOL) {
1602    if (!silent) owl_function_error("Variable '%s' is not a boolean", var);
1603  } else {
1604    owl_variable_set_fromstring(v, val, !silent);
1605  }
1606  return NULL;
1607}
1608
1609char *owl_command_unset(int argc, const char *const *argv, const char *buff)
1610{
1611  owl_variable *v;
1612  const char *var, *val;
1613  int  silent=0;
1614
1615  if (argc > 1 && !strcmp("-q",argv[1])) {
1616    silent = 1;
1617    argc--; argv++;
1618  }
1619  if (argc == 2) {
1620    var=argv[1];
1621    val="off";
1622  } else {
1623    owl_function_makemsg("Wrong number of arguments for unset command");
1624    return NULL;
1625  }
1626
1627  v = owl_variable_get_var(owl_global_get_vardict(&g), var);
1628  if (v == NULL) {
1629    if (!silent) owl_function_error("Unknown variable '%s'", var);
1630  } else if (owl_variable_get_type(v) != OWL_VARIABLE_BOOL) {
1631    if (!silent) owl_function_error("Variable '%s' is not a boolean", var);
1632  } else {
1633    owl_variable_set_fromstring(v, val, !silent);
1634  }
1635  return NULL;
1636}
1637
1638char *owl_command_print(int argc, const char *const *argv, const char *buff)
1639{
1640  const char *var;
1641  char *value;
1642  const owl_variable *v;
1643
1644  if (argc==1) {
1645    owl_function_printallvars();
1646    return NULL;
1647  } else if (argc!=2) {
1648    owl_function_makemsg("Wrong number of arguments for print command");
1649    return NULL;
1650  }
1651
1652  var=argv[1];
1653   
1654  v = owl_variable_get_var(owl_global_get_vardict(&g), var);
1655  if (v) {
1656    value = owl_variable_get_tostring(v);
1657    owl_function_makemsg("%s = '%s'", var, value);
1658    g_free(value);
1659  } else {
1660    owl_function_makemsg("Unknown variable '%s'.", var);
1661  }
1662  return NULL;
1663}
1664
1665
1666CALLER_OWN char *owl_command_exec(int argc, const char *const *argv, const char *buff)
1667{
1668  return owl_function_exec(argc, argv, buff, OWL_OUTPUT_RETURN);
1669}
1670
1671CALLER_OWN char *owl_command_pexec(int argc, const char *const *argv, const char *buff)
1672{
1673  return owl_function_exec(argc, argv, buff, OWL_OUTPUT_POPUP);
1674}
1675
1676CALLER_OWN char *owl_command_aexec(int argc, const char *const *argv, const char *buff)
1677{
1678  return owl_function_exec(argc, argv, buff, OWL_OUTPUT_ADMINMSG);
1679}
1680
1681CALLER_OWN char *owl_command_perl(int argc, const char *const *argv, const char *buff)
1682{
1683  return owl_function_perl(argc, argv, buff, OWL_OUTPUT_RETURN);
1684}
1685
1686CALLER_OWN char *owl_command_pperl(int argc, const char *const *argv, const char *buff)
1687{
1688  return owl_function_perl(argc, argv, buff, OWL_OUTPUT_POPUP);
1689}
1690
1691CALLER_OWN char *owl_command_aperl(int argc, const char *const *argv, const char *buff)
1692{
1693  return owl_function_perl(argc, argv, buff, OWL_OUTPUT_ADMINMSG);
1694}
1695
1696CALLER_OWN char *owl_command_multi(int argc, const char *const *argv, const char *buff)
1697{
1698  char *lastrv = NULL, *newbuff;
1699  char **commands;
1700  int  i;
1701  if (argc < 2) {
1702    owl_function_makemsg("Invalid arguments to 'multi' command.");   
1703    return NULL;
1704  }
1705  newbuff = g_strdup(skiptokens(buff, 1));
1706  if (!strcmp(argv[0], "(")) {
1707    for (i=strlen(newbuff)-1; i>=0; i--) {
1708      if (newbuff[i] == ')') {
1709        newbuff[i] = '\0';
1710        break;
1711      } else if (newbuff[i] != ' ') {
1712        owl_function_makemsg("Invalid arguments to 'multi' command.");   
1713        g_free(newbuff);
1714        return NULL;
1715      }
1716    }
1717  }
1718  commands = g_strsplit_set(newbuff, ";", 0);
1719  for (i = 0; commands[i] != NULL; i++) {
1720    g_free(lastrv);
1721    lastrv = owl_function_command(commands[i]);
1722  }
1723  g_free(newbuff);
1724  g_strfreev(commands);
1725  return lastrv;
1726}
1727
1728
1729char *owl_command_alias(int argc, const char *const *argv, const char *buff)
1730{
1731  if (argc < 3) {
1732    owl_function_makemsg("Invalid arguments to 'alias' command.");
1733    return NULL;
1734  }
1735  buff = skiptokens(buff, 2);
1736  owl_function_command_alias(argv[1], buff);
1737  return (NULL);
1738}
1739
1740
1741char *owl_command_bindkey(int argc, const char *const *argv, const char *buff)
1742{
1743  owl_keymap *km;
1744  int ret;
1745
1746  if (argc < 5 || strcmp(argv[3], "command")) {
1747    owl_function_makemsg("Usage: bindkey <keymap> <binding> command <cmd>");
1748    return NULL;
1749  }
1750  km = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), argv[1]);
1751  if (!km) {
1752    owl_function_makemsg("No such keymap '%s'", argv[1]);
1753    return NULL;
1754  }
1755  buff = skiptokens(buff, 4);
1756  ret = owl_keymap_create_binding(km, argv[2], buff, NULL, "*user*");
1757  if (ret!=0) {
1758    owl_function_makemsg("Unable to bind '%s' in keymap '%s' to '%s'.",
1759                         argv[2], argv[1], buff);
1760    return NULL;
1761  }
1762  return NULL;
1763}
1764
1765
1766char *owl_command_unbindkey(int argc, const char *const *argv, const char *buf)
1767{
1768  owl_keymap *km;
1769  int ret;
1770
1771  if (argc < 3) {
1772    owl_function_makemsg("Usage: bindkey <keymap> <binding>");
1773    return NULL;
1774  }
1775  km = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), argv[1]);
1776  if (!km) {
1777    owl_function_makemsg("No such keymap '%s'", argv[1]);
1778    return NULL;
1779  }
1780  ret = owl_keymap_remove_binding(km, argv[2]);
1781  if (ret == -1) {
1782    owl_function_makemsg("Unable to unbind '%s' in keymap '%s'.",
1783                         argv[2], argv[1]);
1784    return NULL;
1785  } else if (ret == -2) {
1786    owl_function_makemsg("No such binding '%s' in keymap '%s'.",
1787                         argv[2], argv[1]);
1788  }
1789  return NULL;
1790}
1791
1792
1793void owl_command_quit(void)
1794{
1795  owl_function_quit();
1796}
1797
1798char *owl_command_debug(int argc, const char *const *argv, const char *buff)
1799{
1800  if (argc<2) {
1801    owl_function_makemsg("Need at least one argument to debug command");
1802    return(NULL);
1803  }
1804
1805  if (!owl_global_is_debug_fast(&g)) {
1806    owl_function_makemsg("Debugging is not turned on");
1807    return(NULL);
1808  }
1809
1810  owl_function_debugmsg("%s", argv[1]);
1811  return(NULL);
1812}
1813
1814char *owl_command_term(int argc, const char *const *argv, const char *buff)
1815{
1816  if (argc<2) {
1817    owl_function_makemsg("Need at least one argument to the term command");
1818    return(NULL);
1819  }
1820
1821  if (!strcmp(argv[1], "raise")) {
1822    owl_function_xterm_raise();
1823  } else if (!strcmp(argv[1], "deiconify")) {
1824    owl_function_xterm_deiconify();
1825  } else {
1826    owl_function_makemsg("Unknown terminal subcommand");
1827  }
1828  return(NULL);
1829}
1830
1831char *owl_command_zlog(int argc, const char *const *argv, const char *buff)
1832{
1833  if ((argc<2) || (argc>3)) {
1834    owl_function_makemsg("Wrong number of arguments for zlog command");
1835    return(NULL);
1836  }
1837
1838  if (!strcmp(argv[1], "in")) {
1839    if (argc>2) {
1840      owl_global_set_tty(&g, argv[2]);
1841    }
1842    owl_zephyr_zlog_in();
1843  } else if (!strcmp(argv[1], "out")) {
1844    if (argc!=2) {
1845      owl_function_makemsg("Wrong number of arguments for zlog command");
1846      return(NULL);
1847    }
1848    owl_zephyr_zlog_out();
1849  } else {
1850    owl_function_makemsg("Invalid subcommand for zlog");
1851  }
1852  return(NULL);
1853}
1854
1855char *owl_command_subscribe(int argc, const char *const *argv, const char *buff)
1856{
1857  const char *class, *instance, *recip="";
1858  int temp=0;
1859  int ret=0;
1860
1861  if (argc < 2) {
1862    owl_function_makemsg("Not enough arguments to the subscribe command");
1863    return(NULL);
1864  }
1865  argc--;
1866  argv++;
1867
1868  if (!strcmp(argv[0], "-t")) {
1869    temp=1;
1870    argc--;
1871    argv++;
1872  }
1873  if (argc < 1) {
1874    owl_function_makemsg("Not enough arguments to the subscribe command");
1875    return(NULL);
1876  }
1877
1878  if (argc > 3) {
1879    owl_function_makemsg("Too many arguments to the subscribe command");
1880    return(NULL);
1881  }
1882
1883  class = argv[0];
1884
1885  if (argc == 1) {
1886    instance = "*";
1887  } else {
1888    instance = argv[1];
1889  }
1890
1891  if (argc <= 2) {
1892    recip="";
1893  } else if (argc==3) {
1894    recip=argv[2];
1895  }
1896
1897  ret = owl_function_subscribe(class, instance, recip);
1898  if (!temp && !ret) {
1899    owl_zephyr_addsub(NULL, class, instance, recip);
1900  }
1901  return(NULL);
1902}
1903
1904
1905char *owl_command_unsubscribe(int argc, const char *const *argv, const char *buff)
1906{
1907  const char *class, *instance, *recip="";
1908  int temp=0;
1909
1910  if (argc < 2) {
1911    owl_function_makemsg("Not enough arguments to the unsubscribe command");
1912    return(NULL);
1913  }
1914  argc--;
1915  argv++;
1916
1917  if (!strcmp(argv[0], "-t")) {
1918    temp=1;
1919    argc--;
1920    argv++;
1921  }
1922  if (argc < 1) {
1923    owl_function_makemsg("Not enough arguments to the unsubscribe command");
1924    return(NULL);
1925  }
1926
1927  if (argc > 3) {
1928    owl_function_makemsg("Too many arguments to the unsubscribe command");
1929    return(NULL);
1930  }
1931
1932  class = argv[0];
1933
1934  if (argc == 1) {
1935    instance = "*";
1936  } else {
1937    instance = argv[1];
1938  }
1939
1940  if (argc <= 2) {
1941    recip="";
1942  } else if (argc==3) {
1943    recip=argv[2];
1944  }
1945
1946  owl_function_unsubscribe(class, instance, recip);
1947  if (!temp) {
1948    owl_zephyr_delsub(NULL, class, instance, recip);
1949  }
1950  return(NULL);
1951}
1952
1953char *owl_command_echo(int argc, const char *const *argv, const char *buff)
1954{
1955  buff = skiptokens(buff, 1);
1956  owl_function_popless_text(buff);
1957  return NULL;
1958}
1959
1960void owl_command_getsubs(void)
1961{
1962  owl_function_getsubs();
1963}
1964
1965void owl_command_status(void)
1966{
1967  owl_function_status();
1968}
1969
1970char *owl_command_zwrite(int argc, const char *const *argv, const char *buff)
1971{
1972  owl_zwrite *z;
1973
1974  if (!owl_global_is_havezephyr(&g)) {
1975    owl_function_makemsg("Zephyr is not available");
1976    return(NULL);
1977  }
1978  /* check for a zwrite -m */
1979  z = owl_zwrite_new(buff);
1980  if (!z) {
1981    owl_function_error("Error in zwrite arguments");
1982    return NULL;
1983  }
1984
1985  if (owl_zwrite_is_message_set(z)) {
1986    owl_function_zwrite(z, NULL);
1987    owl_zwrite_delete(z);
1988    return NULL;
1989  }
1990
1991  if (argc < 2) {
1992    owl_zwrite_delete(z);
1993    owl_function_makemsg("Not enough arguments to the zwrite command.");
1994  } else {
1995    owl_function_zwrite_setup(z);
1996  }
1997  return(NULL);
1998}
1999
2000char *owl_command_aimwrite(int argc, const char *const *argv, const char *buff)
2001{
2002  char *message = NULL;
2003  GString *recip = g_string_new("");
2004  const char *const *myargv;
2005  int myargc;
2006 
2007  if (!owl_global_is_aimloggedin(&g)) {
2008    owl_function_error("You are not logged in to AIM.");
2009    goto err;
2010  }
2011
2012  /* Skip argv[0]. */
2013  myargv = argv+1;
2014  myargc = argc-1;
2015  while (myargc) {
2016    if (!strcmp(myargv[0], "-m")) {
2017      if (myargc <= 1) {
2018        owl_function_error("No message specified.");
2019        goto err;
2020      }
2021      /* Once we have -m, gobble up everything else on the line */
2022      myargv++;
2023      myargc--;
2024      message = g_strjoinv(" ", (char**)myargv);
2025      break;
2026    } else {
2027      /* squish arguments together to make one screenname w/o spaces for now */
2028      g_string_append(recip, myargv[0]);
2029      myargv++;
2030      myargc--;
2031    }
2032  }
2033
2034  if (recip->str[0] == '\0') {
2035    owl_function_error("No recipient specified");
2036    goto err;
2037  }
2038
2039  if (message != NULL)
2040    owl_function_aimwrite(recip->str, message, false);
2041  else
2042    owl_function_aimwrite_setup(recip->str);
2043 err:
2044  g_string_free(recip, true);
2045  g_free(message);
2046  return NULL;
2047}
2048
2049char *owl_command_loopwrite(int argc, const char *const *argv, const char *buff)
2050{
2051  owl_function_loopwrite_setup();
2052  return(NULL);
2053}
2054
2055char *owl_command_reply(int argc, const char *const *argv, const char *buff)
2056{
2057  int edit=0;
2058 
2059  if (argc>=2 && !strcmp("-e", argv[1])) {
2060    edit=1;
2061    argv++;
2062    argc--;
2063  }
2064
2065  if ((argc==1) || (argc==2 && !strcmp(argv[1], "all"))) {   
2066    owl_function_reply(0, !edit);
2067  } else if (argc==2 && !strcmp(argv[1], "sender")) {
2068    owl_function_reply(1, !edit);
2069  } else if (argc==2 && !strcmp(argv[1], "zaway")) {
2070    const owl_message *m;
2071    const owl_view    *v;
2072    v = owl_global_get_current_view(&g);   
2073    m = owl_view_get_element(v, owl_global_get_curmsg(&g));
2074    if (m) owl_zephyr_zaway(m);
2075  } else {
2076    owl_function_makemsg("Invalid arguments to the reply command.");
2077  }
2078  return NULL;
2079}
2080
2081char *owl_command_filter(int argc, const char *const *argv, const char *buff)
2082{
2083  owl_function_create_filter(argc, argv);
2084  return NULL;
2085}
2086
2087char *owl_command_zlocate(int argc, const char *const *argv, const char *buff)
2088{
2089  int auth;
2090 
2091  if (argc<2) {
2092    owl_function_makemsg("Too few arguments for zlocate command");
2093    return NULL;
2094  }
2095
2096  auth=1;
2097  if (!strcmp(argv[1], "-d")) {
2098    if (argc>2) {
2099      auth=0;
2100      argc--;
2101      argv++;
2102    } else {
2103      owl_function_makemsg("Missing arguments for zlocate command");
2104      return NULL;
2105    }
2106  }
2107
2108  argc--;
2109  argv++;
2110  owl_function_zlocate(argc, argv, auth);
2111  return NULL;
2112}
2113
2114
2115/* Backwards compatability has made this kind of complicated:
2116 * view [<viewname>] [-f <filter> | -d <expression> | --home | -r ] [-s <style>]
2117 * view <filter>
2118 * view -d <expression>
2119 * view --home
2120 */
2121char *owl_command_view(int argc, const char *const *argv, const char *buff)
2122{
2123  /* First take the 'view --home' and 'view -r' cases */
2124  if (argc == 2) {
2125    if (!strcmp(argv[1], "--home")) {
2126      owl_function_change_currentview_filter(owl_global_get_view_home(&g));
2127      return(NULL);
2128    } else if (!strcmp(argv[1], "-r")) {
2129      char *foo;
2130      foo=owl_function_create_negative_filter(owl_view_get_filtname(owl_global_get_current_view(&g)));
2131      owl_function_change_currentview_filter(foo);
2132      g_free(foo);
2133      return(NULL);
2134    }
2135  }
2136
2137  /* Now look for 'view <filter>' */
2138  if (argc==2) {
2139    owl_function_change_currentview_filter(argv[1]);
2140    return(NULL);
2141  }
2142
2143  /* Now get 'view -d <expression>' */
2144  if (argc>=3 && !strcmp(argv[1], "-d")) {
2145    const char **myargv;
2146    int i;
2147
2148    /* Allocate one more than argc for the trailing NULL. */
2149    myargv = g_new0(const char*, argc+1);
2150    myargv[0]="";
2151    myargv[1]="owl-dynamic";
2152    for (i=2; i<argc; i++) {
2153      myargv[i]=argv[i];
2154    }
2155    owl_function_create_filter(argc, myargv);
2156    owl_function_change_currentview_filter("owl-dynamic");
2157    g_free(myargv);
2158    return NULL;
2159  }
2160
2161  /* Finally handle the general case */
2162  if (argc<3) {
2163    owl_function_makemsg("Too few arguments to the view command.");
2164    return(NULL);
2165  }
2166  argc--;
2167  argv++;
2168  if (strcmp(argv[0], "-f") &&
2169      strcmp(argv[0], "-d") &&
2170      strcmp(argv[0], "--home") &&
2171      strcmp(argv[0], "-s") &&
2172      strcmp(argv[0], "-r")) {
2173    if (strcmp(argv[0], "main")) {
2174      owl_function_makemsg("No view named '%s'", argv[0]);
2175      return(NULL);
2176    }
2177    argc--;
2178    argv++;
2179  }
2180  while (argc) {
2181    if (!strcmp(argv[0], "-f")) {
2182      if (argc<2) {
2183        owl_function_makemsg("Too few argments to the view command");
2184        return(NULL);
2185      }
2186      owl_function_change_currentview_filter(argv[1]);
2187      argc-=2;
2188      argv+=2;
2189    } else if (!strcmp(argv[0], "--home")) {
2190      owl_function_change_currentview_filter(owl_global_get_view_home(&g));
2191      argc--;
2192      argv++;
2193    } else if (!strcmp(argv[0], "-s")) {
2194      if (argc<2) {
2195        owl_function_makemsg("Too few argments to the view command");
2196        return(NULL);
2197      }
2198      owl_function_change_style(owl_global_get_current_view(&g), argv[1]);
2199      argc-=2;
2200      argv+=2;
2201    } else {
2202      owl_function_makemsg("Too few argments to the view command");
2203      return(NULL);
2204    }
2205   
2206  }
2207  return(NULL);
2208}
2209
2210char *owl_command_show(int argc, const char *const *argv, const char *buff)
2211{
2212  if (argc<2) {
2213    owl_function_help_for_command("show");
2214    return NULL;
2215  }
2216
2217  if (!strcmp(argv[1], "filter") || !strcmp(argv[1], "filters")) {
2218    if (argc==2) {
2219      owl_function_show_filters();
2220    } else {
2221      owl_function_show_filter(argv[2]);
2222    }
2223  } else if (argc==2 
2224             && (!strcmp(argv[1], "zpunts") || !strcmp(argv[1], "zpunted"))) {
2225    owl_function_show_zpunts();
2226  } else if (!strcmp(argv[1], "command") || !strcmp(argv[1], "commands")) {
2227    if (argc==2) {
2228      owl_function_show_commands();
2229    } else {
2230      owl_function_show_command(argv[2]);
2231    }
2232  } else if (!strcmp(argv[1], "variable") || !strcmp(argv[1], "variables")) {
2233    if (argc==2) {
2234      owl_function_show_variables();
2235    } else {
2236      owl_function_show_variable(argv[2]);
2237    }
2238  } else if (!strcmp(argv[1], "keymap") || !strcmp(argv[1], "keymaps")) {
2239    if (argc==2) {
2240      owl_function_show_keymaps();
2241    } else {
2242      owl_function_show_keymap(argv[2]);
2243    }
2244  } else if (!strcmp(argv[1], "view")) {
2245    if (argc==3) {
2246      owl_function_show_view(argv[2]);
2247    } else {
2248      owl_function_show_view(NULL);
2249    }
2250  } else if (!strcmp(argv[1], "colors")) {
2251    owl_function_show_colors();
2252  } else if (!strcmp(argv[1], "styles")) {
2253    owl_function_show_styles();
2254  } else if (!strcmp(argv[1], "subs") || !strcmp(argv[1], "subscriptions")) {
2255    owl_function_getsubs();
2256  } else if (!strcmp(argv[1], "terminal") || !strcmp(argv[1], "term")) {
2257    owl_function_show_term();
2258  } else if (!strcmp(argv[1], "version")) {
2259    owl_function_about();
2260  } else if (!strcmp(argv[1], "status")) {
2261    owl_function_status();
2262  } else if (!strcmp(argv[1], "license")) {
2263    owl_function_show_license();
2264  } else if (!strcmp(argv[1], "quickstart")) {
2265    owl_function_show_quickstart();
2266  } else if (!strcmp(argv[1], "startup")) {
2267    const char *filename;
2268   
2269    filename=owl_global_get_startupfile(&g);
2270    owl_function_popless_file(filename);
2271  } else if (!strcmp(argv[1], "errors")) {
2272    owl_function_showerrs();
2273  } else {
2274    owl_function_makemsg("Unknown subcommand for 'show' command (see 'help show' for allowed args)");
2275    return NULL;
2276  }
2277  return NULL;
2278}
2279
2280char *owl_command_viewclass(int argc, const char *const *argv, const char *buff)
2281{
2282  char *filtname;
2283  if (argc!=2) {
2284    owl_function_makemsg("Wrong number of arguments to viewclass command");
2285    return NULL;
2286  }
2287  filtname = owl_function_classinstfilt(argv[1], NULL, owl_global_is_narrow_related(&g));
2288  if (filtname) {
2289    owl_function_change_currentview_filter(filtname);
2290    g_free(filtname);
2291  }
2292  return NULL;
2293}
2294
2295char *owl_command_viewuser(int argc, const char *const *argv, const char *buff)
2296{
2297  char *filtname;
2298  char *longuser;
2299  if (argc!=2) {
2300    owl_function_makemsg("Wrong number of arguments to viewuser command");
2301    return NULL;
2302  }
2303  longuser = long_zuser(argv[1]);
2304  filtname = owl_function_zuserfilt(longuser);
2305  g_free(longuser);
2306  if (filtname) {
2307    owl_function_change_currentview_filter(filtname);
2308    g_free(filtname);
2309  }
2310  return NULL;
2311}
2312
2313
2314void owl_command_pop_message(void)
2315{
2316  owl_function_curmsg_to_popwin();
2317}
2318
2319char *owl_command_delete(int argc, const char *const *argv, const char *buff)
2320{
2321  int move_after = 1;
2322
2323  if (argc>1 && !strcmp(argv[1], "--no-move")) {
2324    move_after = 0;
2325    argc--; 
2326    argv++;
2327  }
2328
2329  if (argc==1) {
2330    owl_function_deletecur(move_after);
2331    return NULL;
2332  }
2333
2334  if (argc==2 && !strcmp(argv[1], "view")) {
2335    owl_function_delete_curview_msgs(1);
2336    return NULL;
2337  }
2338
2339  if (argc==2 && !strcmp(argv[1], "trash")) {
2340    owl_function_delete_automsgs();
2341    return NULL;
2342  }
2343
2344  if (argc==3 && (!strcmp(argv[1], "-id") || !strcmp(argv[1], "--id"))) {
2345    owl_function_delete_by_id(atoi(argv[2]), 1);
2346    return NULL;
2347  }
2348
2349  owl_function_makemsg("Unknown arguments to delete command");
2350  return NULL;
2351}
2352
2353char *owl_command_undelete(int argc, const char *const *argv, const char *buff)
2354{
2355  int move_after = 1;
2356
2357  if (argc>1 && !strcmp(argv[1], "--no-move")) {
2358    move_after = 0;
2359    argc--; 
2360    argv++;
2361  }
2362
2363  if (argc==1) {
2364    owl_function_undeletecur(move_after);
2365    return NULL;
2366  }
2367
2368  if (argc==2 && !strcmp(argv[1], "view")) {
2369    owl_function_delete_curview_msgs(0);
2370    return NULL;
2371  }
2372
2373  if (argc==3 && (!strcmp(argv[1], "-id") || !strcmp(argv[1], "--id"))) {
2374    owl_function_delete_by_id(atoi(argv[2]), 0);
2375    return NULL;
2376  }
2377
2378  owl_function_makemsg("Unknown arguments to delete command");
2379  return NULL;
2380}
2381
2382void owl_command_beep(void)
2383{
2384  owl_function_beep();
2385}
2386
2387char *owl_command_colorview(int argc, const char *const *argv, const char *buff)
2388{
2389  if (argc < 2 || argc > 3) {
2390    owl_function_makemsg("Wrong number of arguments to colorview command");
2391    return NULL;
2392  }
2393  owl_function_color_current_filter(argv[1], (argc == 3 ? argv[2] : NULL));
2394  return NULL;
2395}
2396
2397char *owl_command_colorclass(int argc, const char *const *argv, const char *buff)
2398{
2399  char *filtname;
2400 
2401  if (argc < 3 || argc > 4) {
2402    owl_function_makemsg("Wrong number of arguments to colorclass command");
2403    return NULL;
2404  }
2405
2406  filtname=owl_function_classinstfilt(argv[1], NULL, owl_global_is_narrow_related(&g));
2407  if (filtname) {
2408    (void) owl_function_color_filter(filtname, argv[2], (argc == 4 ? argv[3] : NULL));
2409    g_free(filtname);
2410  }
2411  return NULL;
2412}
2413
2414char *owl_command_zpunt(int argc, const char *const *argv, const char *buff)
2415{
2416  owl_command_zpunt_and_zunpunt(argc, argv, 0);
2417  return NULL;
2418}
2419
2420char *owl_command_zunpunt(int argc, const char *const *argv, const char *buff)
2421{
2422  owl_command_zpunt_and_zunpunt(argc, argv, 1);
2423  return NULL;
2424}
2425
2426void owl_command_zpunt_and_zunpunt(int argc, const char *const *argv, int type)
2427{
2428  /* if type==0 then zpunt
2429   * if type==1 then zunpunt
2430   */
2431  const char *class, *inst, *recip;
2432
2433  class="message";
2434  inst="";
2435  recip="*";
2436
2437  if (argc==1) {
2438    /* show current punt filters */
2439    owl_function_show_zpunts();
2440    return;
2441  } else if (argc==2) {
2442    inst=argv[1];
2443  } else if (argc==3) {
2444    class=argv[1];
2445    inst=argv[2];
2446  } else if (argc==4) {
2447    class=argv[1];
2448    inst=argv[2];
2449    recip=argv[3];
2450  } else {
2451    owl_function_makemsg("Wrong number of arguments to the zpunt command");
2452    return;
2453  }
2454
2455  owl_function_zpunt(class, inst, recip, type);
2456  if (type==0) {
2457    owl_function_makemsg("<%s, %s, %s> added to punt list.", class, inst, recip);
2458  } else if (type==1) {
2459    owl_function_makemsg("<%s, %s, %s> removed from punt list.", class, inst, recip);
2460  }
2461}
2462
2463char *owl_command_smartzpunt(int argc, const char *const *argv, const char *buff)
2464{
2465  if (argc == 1) {
2466    owl_function_smartzpunt(0);
2467  } else if (argc == 2 && (!strcmp(argv[1], "-i") || !strcmp(argv[1], "--instance"))) {
2468    owl_function_smartzpunt(1);
2469  } else {
2470    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);   
2471  }
2472  return NULL;
2473}
2474
2475char *owl_command_punt(int argc, const char *const *argv, const char *buff)
2476{
2477  owl_command_punt_unpunt(argc, argv, buff, 0);
2478  return NULL;
2479}
2480
2481char *owl_command_unpunt(int argc, const char *const *argv, const char *buff)
2482{
2483  owl_command_punt_unpunt(argc, argv, buff, 1);
2484  return NULL;
2485}
2486
2487void owl_command_punt_unpunt(int argc, const char *const * argv, const char *buff, int unpunt)
2488{
2489  GPtrArray * fl;
2490  int i;
2491
2492  fl = owl_global_get_puntlist(&g);
2493  if(argc == 1) {
2494    owl_function_show_zpunts();
2495  } else if(argc == 2) {
2496    /* Handle :unpunt <number> */
2497    if(unpunt && (i=atoi(argv[1])) !=0) {
2498      i--;      /* Accept 1-based indexing */
2499      if (i < fl->len) {
2500        owl_filter_delete(g_ptr_array_remove_index(fl, i));
2501        return;
2502      } else {
2503        owl_function_makemsg("No such filter number: %d.", i+1);
2504      }
2505    }
2506    const char *filter[] = {"filter", argv[1]};
2507    owl_function_punt(2, filter, unpunt);
2508  } else {
2509    /* Pass in argv[1]..argv[argc-1]. */
2510    owl_function_punt(argc - 1, argv + 1, unpunt);
2511  }
2512}
2513
2514
2515char *owl_command_getview(int argc, const char *const *argv, const char *buff)
2516{
2517  const char *filtname;
2518  if (argc != 1) {
2519    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
2520    return NULL;
2521  }
2522  filtname = owl_view_get_filtname(owl_global_get_current_view(&g));
2523  if (filtname) return g_strdup(filtname);
2524  return NULL;
2525}
2526
2527CALLER_OWN char *owl_command_getvar(int argc, const char *const *argv, const char *buff)
2528{
2529  const owl_variable *v;
2530  if (argc != 2) {
2531    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
2532    return NULL;
2533  }
2534  v = owl_variable_get_var(owl_global_get_vardict(&g), argv[1]);
2535  if (v == NULL) return NULL;
2536  return owl_variable_get_tostring(v);
2537}
2538
2539char *owl_command_getfilter(int argc, const char *const *argv, const char *buf)
2540{
2541  const owl_filter *f;
2542  if (argc != 2) {
2543    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
2544    return NULL;
2545  }
2546  f = owl_global_get_filter(&g, argv[1]);
2547  if (!f) {
2548    return NULL;
2549  }
2550  return owl_filter_print(f);
2551}
2552
2553char *owl_command_search(int argc, const char *const *argv, const char *buff)
2554{
2555  int direction;
2556  const char *buffstart;
2557
2558  direction=OWL_DIRECTION_DOWNWARDS;
2559  buffstart=skiptokens(buff, 1);
2560  if (argc>1 && !strcmp(argv[1], "-r")) {
2561    direction=OWL_DIRECTION_UPWARDS;
2562    buffstart=skiptokens(buff, 2);
2563  }
2564   
2565  if (argc==1 || (argc==2 && !strcmp(argv[1], "-r"))) {
2566    /* When continuing a search, don't consider the current message. */
2567    owl_function_search_helper(false, direction);
2568  } else {
2569    owl_function_set_search(buffstart);
2570    owl_function_search_helper(true, direction);
2571  }
2572 
2573  return(NULL);
2574}
2575
2576char *owl_command_setsearch(int argc, const char *const *argv, const char *buff)
2577{
2578  const char *buffstart;
2579
2580  buffstart=skiptokens(buff, 1);
2581  owl_function_set_search(*buffstart ? buffstart : NULL);
2582 
2583  return(NULL);
2584}
2585
2586char *owl_command_aimlogin(int argc, const char *const *argv, const char *buff)
2587{
2588  if ((argc<2) || (argc>3)) {
2589    owl_function_makemsg("Wrong number of arguments to aimlogin command");
2590    return(NULL);
2591  }
2592
2593  /* if we get two arguments, ask for the password */
2594  if (argc==2) {
2595    owl_editwin *e = owl_function_start_password("AIM Password: ");
2596    owl_editwin_set_cbdata(e, g_strdup(argv[1]), g_free);
2597    owl_editwin_set_callback(e, owl_callback_aimlogin);
2598    return(NULL);
2599  } else {
2600    owl_function_aimlogin(argv[1], argv[2]);
2601  }
2602
2603  /* this is a test */
2604  return(NULL);
2605}
2606
2607char *owl_command_aimlogout(int argc, const char *const *argv, const char *buff)
2608{
2609  /* clear the buddylist */
2610  owl_buddylist_clear(owl_global_get_buddylist(&g));
2611
2612  owl_aim_logout();
2613  return(NULL);
2614}
2615
2616CALLER_OWN char *owl_command_getstyle(int argc, const char *const *argv, const char *buff)
2617{
2618  const char *stylename;
2619  if (argc != 1) {
2620    owl_function_makemsg("Wrong number of arguments for %s", argv[0]);
2621    return NULL;
2622  }
2623  stylename = owl_view_get_style_name(owl_global_get_current_view(&g));
2624  if (stylename) return g_strdup(stylename);
2625  return NULL;
2626}
2627
2628char *owl_command_error(int argc, const char *const *argv, const char *buff)
2629{
2630    buff = skiptokens(buff, 1);
2631    owl_function_error("%s", buff);
2632    return NULL;
2633}
2634
2635char *owl_command_message(int argc, const char *const *argv, const char *buff)
2636{
2637    buff = skiptokens(buff, 1);
2638    owl_function_makemsg("%s", buff);
2639    return NULL;
2640}
2641
2642char *owl_command_add_cmd_history(int argc, const char *const *argv, const char *buff)
2643{
2644  owl_history *hist;
2645  const char *ptr;
2646
2647  if (argc < 2) {
2648    owl_function_makemsg("usage: %s <commands> ...", argv[0]);
2649    return NULL;
2650  }
2651
2652  ptr = skiptokens(buff, 1);
2653  hist = owl_global_get_cmd_history(&g);
2654  owl_history_store(hist, ptr, false);
2655  /* owl_function_makemsg("History '%s' stored successfully", ptr+1); */
2656  return NULL;
2657}
2658
2659CALLER_OWN char *owl_command_with_history(int argc, const char *const *argv, const char *buff)
2660{
2661  owl_history *hist;
2662  const char *ptr;
2663
2664  if (argc < 2) {
2665    owl_function_makemsg("usage: %s <commands> ...", argv[0]);
2666    return NULL;
2667  }
2668
2669  ptr = skiptokens(buff, 1);
2670  if (!ptr) {
2671    owl_function_makemsg("Parse error finding command");
2672    return NULL;
2673  }
2674
2675  hist = owl_global_get_cmd_history(&g);
2676  owl_history_store(hist, ptr, false);
2677  return owl_function_command(ptr);
2678}
2679
2680void owl_command_yes(void)
2681{
2682  owl_message *m;
2683  const owl_view *v;
2684  const char *cmd;
2685
2686  v = owl_global_get_current_view(&g);
2687
2688  /* bail if there's no current message */
2689  if (owl_view_get_size(v) < 1) {
2690    owl_function_error("No current message.");
2691    return;
2692  }
2693
2694  m = owl_view_get_element(v, owl_global_get_curmsg(&g));
2695  if(!owl_message_is_question(m)) {
2696    owl_function_error("That message isn't a question.");
2697    return;
2698  }
2699  if(owl_message_is_answered(m)) {
2700    owl_function_error("You already answered that question.");
2701    return;
2702  }
2703  cmd = owl_message_get_attribute_value(m, "yescommand");
2704  if(!cmd) {
2705    owl_function_error("No 'yes' command!");
2706    return;
2707  }
2708
2709  owl_function_command_norv(cmd);
2710  owl_message_set_isanswered(m);
2711  return;
2712}
2713
2714void owl_command_no(void)
2715{
2716  owl_message *m;
2717  const owl_view *v;
2718  const char *cmd;
2719
2720  v = owl_global_get_current_view(&g);
2721
2722  /* bail if there's no current message */
2723  if (owl_view_get_size(v) < 1) {
2724    owl_function_error("No current message.");
2725    return;
2726  }
2727
2728  m = owl_view_get_element(v, owl_global_get_curmsg(&g));
2729  if(!owl_message_is_question(m)) {
2730    owl_function_error("That message isn't a question.");
2731    return;
2732  }
2733  if(owl_message_is_answered(m)) {
2734    owl_function_error("You already answered that question.");
2735    return;
2736  }
2737  cmd = owl_message_get_attribute_value(m, "nocommand");
2738  if(!cmd) {
2739    owl_function_error("No 'no' command!");
2740    return;
2741  }
2742
2743  owl_function_command_norv(cmd);
2744  owl_message_set_isanswered(m);
2745  return;
2746}
2747
2748/*********************************************************************/
2749/************************** EDIT SPECIFIC ****************************/
2750/*********************************************************************/
2751
2752void owl_command_edit_cancel(owl_editwin *e)
2753{
2754  owl_history *hist;
2755
2756  owl_function_makemsg("Command cancelled.");
2757
2758  hist = owl_editwin_get_history(e);
2759  if (hist)
2760    owl_history_store(hist, owl_editwin_get_text(e), false);
2761
2762  owl_global_pop_context(&g);
2763}
2764
2765void owl_command_edit_history_prev(owl_editwin *e)
2766{
2767  owl_history *hist;
2768  const char *ptr;
2769
2770  hist=owl_editwin_get_history(e);
2771  if (!hist)
2772    return;
2773  if (!owl_history_is_touched(hist))
2774    owl_history_store(hist, owl_editwin_get_text(e), true);
2775  ptr=owl_history_get_prev(hist);
2776  if (ptr) {
2777    owl_editwin_clear(e);
2778    owl_editwin_insert_string(e, ptr);
2779  } else {
2780    owl_function_beep();
2781  }
2782}
2783
2784void owl_command_edit_history_next(owl_editwin *e)
2785{
2786  owl_history *hist;
2787  const char *ptr;
2788
2789  hist=owl_editwin_get_history(e);
2790  if (!hist)
2791    return;
2792  ptr=owl_history_get_next(hist);
2793  if (ptr) {
2794    owl_editwin_clear(e);
2795    owl_editwin_insert_string(e, ptr);
2796  } else {
2797    owl_function_beep();
2798  }
2799}
2800
2801char *owl_command_edit_insert_text(owl_editwin *e, int argc, const char *const *argv, const char *buff)
2802{
2803  buff = skiptokens(buff, 1);
2804  owl_editwin_insert_string(e, buff);
2805  return NULL;
2806}
2807
2808void owl_command_edit_done(owl_editwin *e)
2809{
2810  owl_history *hist=owl_editwin_get_history(e);
2811
2812  if (hist)
2813    owl_history_store(hist, owl_editwin_get_text(e), false);
2814
2815  /* Take a reference to the editwin, so that it survives the pop
2816   * context. TODO: We should perhaps refcount or otherwise protect
2817   * the context so that, even if a command pops a context, the
2818   * context itself will last until the command returns. */
2819  owl_editwin_ref(e);
2820  owl_global_pop_context(&g);
2821
2822  owl_editwin_do_callback(e);
2823  owl_editwin_unref(e);
2824}
2825
2826void owl_command_edit_done_or_delete(owl_editwin *e)
2827{
2828  if (owl_editwin_is_at_end(e)) {
2829    owl_command_edit_done(e);
2830  } else {
2831    owl_editwin_delete_char(e);
2832  }
2833}
2834
2835
2836/*********************************************************************/
2837/*********************** POPLESS SPECIFIC ****************************/
2838/*********************************************************************/
2839
2840void owl_command_popless_quit(owl_viewwin *vw)
2841{
2842  owl_popwin *pw;
2843  pw = owl_global_get_popwin(&g);
2844  owl_global_set_popwin(&g, NULL);
2845  /* Kind of a hack, but you can only have one active viewwin right
2846   * now anyway. */
2847  if (vw == owl_global_get_viewwin(&g))
2848    owl_global_set_viewwin(&g, NULL);
2849  owl_viewwin_delete(vw);
2850  owl_popwin_delete(pw);
2851  owl_global_pop_context(&g);
2852}
Note: See TracBrowser for help on using the repository browser.