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