source: commands.c @ fd472a7

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