Changeset 15283bb
- Timestamp:
- Oct 21, 2003, 9:31:52 AM (21 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- db2dd3d
- Parents:
- a836200
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
ra836200 r15283bb 1 1 $Id$ 2 2 3 2.0.10-pre-1 3 2.0.11-pre-1 4 Updated basic help 5 6 2.0.10 4 7 Allow 'hostname' in filters. 5 8 Fixed bug in reporting when no one is subbed to a class -
commands.c
r49d467c r15283bb 569 569 570 570 OWLCMD_ARGS("show", owl_command_show, OWL_CTX_INTERACTIVE, 571 "show information \n",571 "show information", 572 572 "show colors\n" 573 573 "show commands\n" -
help.c
r55faab7 r15283bb 4 4 static const char fileIdent[] = "$Id$"; 5 5 6 void owl_help() { 6 void owl_help() 7 { 7 8 owl_fmtext fm; 8 9 char *varname; … … 43 44 " u Undelete a message marked for deletion\n" 44 45 " x Expunge deleted messages\n" 45 " X Expunge deleted messages and switch view\n"46 " X Expunge deleted messages and switch to home view\n" 46 47 " T Mark all 'trash' messages for deletion\n" 47 48 " M-D Mark all messages in current view for deletion\n" … … 49 50 "\n" 50 51 " z Start a zwrite command\n" 52 " a Start an aimwrite command\n" 51 53 " r Reply to the current message\n" 52 54 " R Reply to sender\n" 53 55 " C-r Reply but allow editing of reply line\n" 54 56 "\n" 55 " M-n View zephyrs toselected conversation\n"56 " M-N View zephyrs to selected converstaion byinstance\n"57 " M-n View zephyrs in selected conversation\n" 58 " M-N View zephyrs in selected converstaion of instance\n" 57 59 " V Change to back to home view ('all' by default)\n" 58 60 " v Start a view command\n" 59 61 "\n" 60 " l Print a list of users in .anyone that are logged in\n"62 " l Print a zephyr/AIM buddy listing\n" 61 63 " A Toggle zaway\n" 62 " w Open a URL in the message in netscape\n" 64 " o Toggle one-line display mode\n" 65 " w Open a URL in the current message\n" 63 66 " C-l Refresh the screen\n" 64 " C-z Suspend \n"67 " C-z Suspend Owl\n" 65 68 " h Print this help message\n" 66 69 " : , M-x Enter command mode\n" … … 81 84 "\n" 82 85 " zwrite Send a zephyr\n" 83 " reply Reply to the current zephyr\n" 86 " aimlogin Login to AIM\n" 87 " aimwrite Send an AIM message\n" 84 88 "\n" 85 " zlog Send a login or logout notification\n" 89 " addbuddy Add a zephyr or AIM buddy\n" 90 " zaway Turn zaway on or off, or set the message\n" 91 " zlocate Locate a user\n" 86 92 " subscribe Subscribe to a zephyr class or instance\n" 87 93 " unsubscribe Unsubscribe to a zephyr class or instance\n" 94 " blist Print a list of zephyr and AIM buddies logged in\n" 95 " search Search for a text string\n" 96 "\n" 97 " set Set a variable (see list below)\n" 98 " print Print a variable's value (variables listed below)\n" 99 " startup Set a command to be run at every Owl startup\n" 100 " unstartup Remove a command to be run at every Owl startup\n" 101 "\n" 102 " getsubs Print a list of current subscriptions\n" 88 103 " unsuball Unsubscribe from all zephyr classes\n" 89 " getsubs Print a list of current subscriptions\n" 90 " zlocate Locate a user\n" 91 " zlist Print a list of users in .anyone that are logged in\n" 104 " load-subs Load zephyr subscriptions from a file\n" 105 " zpunt Supress messages from a zephyr triplet\n" 106 " zlog Send a login or logout notification\n" 107 " zlist Print a list of zephyr buddies logged in\n" 108 " alist Print a list of AIM buddies logged in\n" 92 109 " info Print detailed information about the current message\n" 93 110 " filter Create a message filter\n" … … 96 113 " viewclass View messages to a particular class\n" 97 114 " expunge Expunge messages marked for deletion\n" 98 " zaway Turn zaway on or off, or set the message\n" 99 " load-subs Load zephyr subscriptions from a file\n" 100 " search Search for a text string\n" 101 "\n" 102 " set Set a variable (see list below)\n" 103 " print Print a variable's value (variables listed below)\n" 115 " bindkey Create a new key binding\n" 116 " alias Create a command alias\n" 117 " dump\n" 104 118 "\n" 105 119 " about Print information about owl\n" -
logging.c
r269ed34 r15283bb 7 7 static const char fileIdent[] = "$Id$"; 8 8 9 void owl_log_outgoing_zephyr(char *to, char *text) { 9 void owl_log_outgoing_zephyr(char *to, char *text) 10 { 10 11 FILE *file; 11 12 char filename[MAXPATHLEN], *logpath; … … 94 95 } 95 96 96 void owl_log_incoming(owl_message *m) { 97 void owl_log_incoming(owl_message *m) 98 { 97 99 FILE *file, *allfile; 98 100 char filename[MAXPATHLEN], allfilename[MAXPATHLEN], *logpath; -
owl.h
r49d467c r15283bb 19 19 static const char owl_h_fileIdent[] = "$Id$"; 20 20 21 #define OWL_VERSION 2.0.1 0-pre-122 #define OWL_VERSION_STRING "2.0.1 0-pre-1"21 #define OWL_VERSION 2.0.11-pre-1 22 #define OWL_VERSION_STRING "2.0.11-pre-1" 23 23 24 24 /* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset
for help on using the changeset viewer.