Changeset 451db9e for commands.c
- Timestamp:
- Sep 18, 2008, 6:51:15 PM (16 years ago)
- Branches:
- master, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 0eb4036
- Parents:
- 7ba9ead9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.c
rfd472a7 r451db9e 51 51 "when owl is started and a logout notification is sent when owl\n" 52 52 "is exited. This behavior can be changed with the 'startuplogin'\n" 53 "and 'shu downlogout' variables. If a tty is specified for zlog in\n"53 "and 'shutdownlogout' variables. If a tty is specified for zlog in\n" 54 54 "then the owl variable 'tty' will be set to that string, causing\n" 55 55 "it to be used as the zephyr location tty.\n"), … … 194 194 "subscribe to a zephyr class, instance, recipient", 195 195 "subscribe [-t] <class> [instance [recipient]]", 196 "Subscribe t he specified class and instance. If the\n"196 "Subscribe to the specified class and instance. If the\n" 197 197 "instance or recipient is not listed on the command\n" 198 198 "line they default to * (the wildcard recipient).\n" … … 265 265 "zpunt <instance>", 266 266 "The zpunt command will supress message to the specified\n" 267 "zephyr triplet. In the second usage messages a s supressed\n"267 "zephyr triplet. In the second usage messages are suppressed\n" 268 268 "for class MESSAGE and the named instance.\n\n" 269 269 "SEE ALSO: zunpunt, show zpunts\n"), … … 273 273 "zunpunt <class> <instance> [recipient]\n" 274 274 "zunpunt <instance>", 275 "The zunpunt command will allow messages that were previo sly\n"275 "The zunpunt command will allow messages that were previously\n" 276 276 "suppressed to be received again.\n\n" 277 277 "SEE ALSO: zpunt, show zpunts\n"), … … 547 547 " true\n" 548 548 " false\n" 549 "Spaces must be present before and after parenthes is. If the\n"549 "Spaces must be present before and after parentheses. If the\n" 550 550 "optional color arguments are used they specifies the colors that\n" 551 551 "messages matching this filter should be displayed in.\n\n" … … 594 594 "If the curmsg is a personal message narrow\n" 595 595 " to the conversation with that user.\n" 596 "If the curmsg is a class message, instance foo, recip *\n"597 " message, narrow to the class, inst.\n"598 "If the curmsg is a class message thennarrow\n"596 "If the curmsg is a <MESSAGE, foo, *>\n" 597 " message, narrow to the instance.\n" 598 "If the curmsg is a class message, narrow\n" 599 599 " to the class.\n" 600 "If the curmsg is a class message and '-i' is speci ed\n"601 " then narrow to the class , instance\n"),600 "If the curmsg is a class message and '-i' is specified\n" 601 " then narrow to the class and instance.\n"), 602 602 603 603 OWLCMD_ARGS("smartfilter", owl_command_smartfilter, OWL_CTX_INTERACTIVE, … … 606 606 "If the curmsg is a personal message, the filter is\n" 607 607 " the conversation with that user.\n" 608 "If the curmsg is a class message, instance foo, recip *\n"609 " message, the filter is t he class, inst.\n"608 "If the curmsg is a <MESSAGE, foo, *>\n" 609 " message, the filter is to that instance.\n" 610 610 "If the curmsg is a class message, the filter is that class.\n" 611 611 "If the curmsg is a class message and '-i' is specied\n" 612 " the filter is t hat <class,instance> pair\n"),612 " the filter is to that class and instance.\n"), 613 613 614 614 OWLCMD_ARGS("viewclass", owl_command_viewclass, OWL_CTX_INTERACTIVE, … … 676 676 "If no message id is specified the current message is marked\n" 677 677 "for deletion. Otherwise the message with the given message\n" 678 "id is marked for del tion.\n"678 "id is marked for deletion.\n" 679 679 "If '--no-move' is specified, don't move after deletion.\n" 680 680 "If 'trash' is specified, deletes all trash/auto messages\n" … … 690 690 "If no message id is specified the current message is\n" 691 691 "unmarked for deletion. Otherwise the message with the\n" 692 "given message id is marked for undeltion.\n"692 "given message id is unmarked for deletion.\n" 693 693 "If '--no-move' is specified, don't move after deletion.\n" 694 694 "If 'view' is specified, undeletes all messages\n" … … 729 729 "specified string and move the cursor there. If no string\n" 730 730 "argument is supplied then the previous one is used. By\n" 731 "default searches are done fo wards,if -r is used the search\n"731 "default searches are done forwards; if -r is used the search\n" 732 732 "is performed backwards"), 733 733 … … 738 738 "argument and makes it the default argument for future\n" 739 739 "search commands, but does not move the cursor. With\n" 740 "no argument, it makes search inactive."),740 "no argument, it makes search highlighting inactive."), 741 741 742 742 OWLCMD_ARGS("aimlogin", owl_command_aimlogin, OWL_CTX_ANY, … … 2616 2616 cmd = owl_message_get_attribute_value(m, "yescommand"); 2617 2617 if(!cmd) { 2618 owl_function_error("No yescommand!");2618 owl_function_error("No 'yes' command!"); 2619 2619 return; 2620 2620 } … … 2650 2650 cmd = owl_message_get_attribute_value(m, "nocommand"); 2651 2651 if(!cmd) { 2652 owl_function_error("No nocommand!");2652 owl_function_error("No 'no' command!"); 2653 2653 return; 2654 2654 }
Note: See TracChangeset
for help on using the changeset viewer.