source: commands.c @ 40458b9

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