source: trunk/athena/bin/discuss/client/cmds.ct @ 23803

Revision 23803, 2.4 KB checked in by broder, 15 years ago (diff)
In discuss: * Add one-character aliases to discuss. Patch by Ben Kaduk. (Trac: #238)
Line 
1        command_table   discuss_cmds;
2
3        request         new_trans, "Enter a new transaction.",
4                        talk, enter, send, t;
5
6        request         prt_trans, "Print a transaction.",
7                        print, pr, p, show;
8
9        request         prt_trans, "Print next transaction.",
10                        next, n;
11
12        request         prt_trans, "Print previous transation.",
13                        prev, back, b;
14
15        request         prt_trans, "Print next reference.",
16                        nref;
17       
18        request         prt_trans, "Print previous reference.",
19                        pref;
20
21        request         write_trans, "Write a transaction into a file.",
22                        write, w;
23
24        request         goto_mtg, "Go to specified meeting.",
25                        goto, go, g;
26
27        request         del_trans, "Delete a transaction.",
28                        delete, dl, d;
29
30        request         ret_trans, "Retrieve a deleted transaction.",
31                        retrieve, rt;
32
33        request         repl, "Reply to a transaction.",
34                        reply, rp;
35
36        request         randrp, "Reply to a random transaction.",
37                        randrp, (dont_list);
38
39        request         list, "List transactions.",
40                        list, ls;
41
42# ****NOTE **** Before you re-enable this, change the name from nlist(), since
43#this conflicts with the libc routine nlist()
44#       request         nlist, "New list command.",
45#                       nlist, nls, (dont_list);
46
47        request         ss_help, "Show help file on topic.",
48                        help;
49
50        request         status, "Show status information.",
51                        status;
52
53        request         status, "Show status information.",
54                        ".", (dont_list);
55
56        request         list_meetings, "List meetings.",
57                        list_meetings, lsm;
58
59        request         check_meetings, "Check for changed meetings.",
60                        check_meetings, ckm;
61
62        request         next_meeting, "Go to next changed meeting.",
63                        next_meeting, nm;
64
65        request         add_mtg,
66                        "Add a meeting to list of those to be searched.",
67                        add_meeting, add_mtg, am;
68
69        request         del_mtg,
70                        "Delete meeting from list of those to be searched.",
71                        delete_meeting, del_mtg, dm;
72
73        request         announce_mtg, "Announce a meeting's existence",
74                        announce_meeting, ann_mtg, anm;
75
76        request         list_acl, "List access control list.",
77                        list_acl, la;
78
79        request         set_acl, "Add principal to access control list.",
80                        set_acl, sa;
81
82        request         del_acl, "Remove principal from ACL.",
83                        delete_acl, da;
84
85        request         rn, "Print new transactions in changed meetings.",
86                        read_new, rn;
87
88        request         set_cmd, "Set options.",
89                        set;
90
91        request         switch_cmd, "Switch on flags",
92                        switch_on,swn;
93
94        request         switch_cmd, "Switch off flags",
95                        switch_off,swf;
96
97        request         ss_list_requests, "List available commands.",
98                        list_requests, lr, "?";
99
100        unimplemented   ss_list_help, "List available help.",
101                        list_help, lh;
102
103        request         ss_quit, "Quit.",
104                        quit, exit, q;
105
106        end;
Note: See TracBrowser for help on using the repository browser.