Changeset 15283bb


Ignore:
Timestamp:
Oct 21, 2003, 9:31:52 AM (20 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
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
Message:
Updated basic help
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    ra836200 r15283bb  
    11$Id$
    22
    3 2.0.10-pre-1
     32.0.11-pre-1
     4        Updated basic help
     5       
     62.0.10
    47        Allow 'hostname' in filters.
    58        Fixed bug in reporting when no one is subbed to a class
  • commands.c

    r49d467c r15283bb  
    569569
    570570  OWLCMD_ARGS("show", owl_command_show, OWL_CTX_INTERACTIVE,
    571               "show information\n",
     571              "show information",
    572572              "show colors\n"
    573573              "show commands\n"
  • help.c

    r55faab7 r15283bb  
    44static const char fileIdent[] = "$Id$";
    55
    6 void owl_help() {
     6void owl_help()
     7{
    78  owl_fmtext fm;
    89  char *varname;
     
    4344     "    u             Undelete a message marked for deletion\n"
    4445     "    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"
    4647     "    T             Mark all 'trash' messages for deletion\n"
    4748     "    M-D           Mark all messages in current view for deletion\n"
     
    4950     "\n"
    5051     "    z             Start a zwrite command\n"
     52     "    a             Start an aimwrite command\n"
    5153     "    r             Reply to the current message\n"
    5254     "    R             Reply to sender\n"
    5355     "    C-r           Reply but allow editing of reply line\n"
    5456     "\n"
    55      "    M-n           View zephyrs to selected conversation\n"
    56      "    M-N           View zephyrs to selected converstaion by instance\n"
     57     "    M-n           View zephyrs in selected conversation\n"
     58     "    M-N           View zephyrs in selected converstaion of instance\n"
    5759     "    V             Change to back to home view ('all' by default)\n"
    5860     "    v             Start a view command\n"
    5961     "\n"
    60      "    l             Print a list of users in .anyone that are logged in\n"
     62     "    l             Print a zephyr/AIM buddy listing\n"
    6163     "    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"
    6366     "    C-l           Refresh the screen\n"
    64      "    C-z           Suspend\n"
     67     "    C-z           Suspend Owl\n"
    6568     "    h             Print this help message\n"
    6669     "    : , M-x       Enter command mode\n"
     
    8184     "\n"
    8285     "    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"
    8488     "\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"
    8692     "    subscribe     Subscribe to a zephyr class or instance\n"
    8793     "    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"
    88103     "    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"
    92109     "    info          Print detailed information about the current message\n"
    93110     "    filter        Create a message filter\n"
     
    96113     "    viewclass     View messages to a particular class\n"
    97114     "    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"
    104118     "\n"
    105119     "    about         Print information about owl\n"
  • logging.c

    r269ed34 r15283bb  
    77static const char fileIdent[] = "$Id$";
    88
    9 void owl_log_outgoing_zephyr(char *to, char *text) {
     9void owl_log_outgoing_zephyr(char *to, char *text)
     10{
    1011  FILE *file;
    1112  char filename[MAXPATHLEN], *logpath;
     
    9495}
    9596
    96 void owl_log_incoming(owl_message *m) {
     97void owl_log_incoming(owl_message *m)
     98{
    9799  FILE *file, *allfile;
    98100  char filename[MAXPATHLEN], allfilename[MAXPATHLEN], *logpath;
  • owl.h

    r49d467c r15283bb  
    1919static const char owl_h_fileIdent[] = "$Id$";
    2020
    21 #define OWL_VERSION         2.0.10-pre-1
    22 #define OWL_VERSION_STRING "2.0.10-pre-1"
     21#define OWL_VERSION         2.0.11-pre-1
     22#define OWL_VERSION_STRING "2.0.11-pre-1"
    2323
    2424/* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset for help on using the changeset viewer.