Mercurial > p > roundup > code
diff doc/design.txt @ 4368:f4a863d88a99
fix
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 30 Mar 2010 22:57:42 +0000 |
| parents | 7ad0918ee8bd |
| children | 32b24abfe98e |
line wrap: on
line diff
--- a/doc/design.txt Sat Mar 20 04:29:45 2010 +0000 +++ b/doc/design.txt Tue Mar 30 22:57:42 2010 +0000 @@ -1008,7 +1008,7 @@ Command Interface Specification ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -A single command, roundup, provides basic access to the hyperdatabase +A single command, ``roundup-admin``, provides basic access to the hyperdatabase from the command line:: roundup-admin help @@ -1039,11 +1039,12 @@ are both accepted; an empty string, a single item, or a list of items joined by commas is accepted. -When multiple items are specified to the roundup get or roundup set +When multiple items are specified to the roundup-admin get or roundup-admin set commands, the specified properties are retrieved or set on all the listed items. -When multiple results are returned by the roundup get or roundup find +When multiple results are returned by the roundup-admin get or +roundup-admin find commands, they are printed one per line (default) or joined by commas (with the -list) option. @@ -1055,8 +1056,8 @@ "spam", for example, you could execute the following command from the directory where the database dumps its files:: - shell% for issue in `roundup find issue status=in-progress`; do - > grep -l spam `roundup get $issue messages` + shell% for issue in `roundup-admin find issue status=in-progress`; do + > grep -l spam `roundup-admin get $issue messages` > done msg23 msg49 @@ -1066,8 +1067,8 @@ Or, using the -list option, this can be written as a single command:: - shell% grep -l spam `roundup get \ - \`roundup find -list issue status=in-progress\` messages` + shell% grep -l spam `roundup-admin get \ + \`roundup-admin find -list issue status=in-progress\` messages` msg23 msg49 msg50 @@ -1156,7 +1157,7 @@ The e-mail interface also provides a simple way to set properties on issues. At the end of the subject line, ``propname=value`` pairs can be specified in square brackets, using the same conventions as for the -roundup ``set`` shell command. +roundup-admin ``set`` shell command. Web User Interface
