Code

issue2550729: Fix password history display for anydbm backend, thanks to
[roundup.git] / doc / user_guide.txt
1 ==========
2 User Guide
3 ==========
5 .. contents::
7 .. hint::
8    This document will refer to *issues* as the primary store of
9    information in the tracker. This is the default of the classic template,
10    but may vary in any given installation.
13 Your Tracker in a Nutshell
14 ==========================
16 Your tracker holds information about issues in bundles we call *items*.
17 An item may be an *issue* (a bug or feature request) or a *user*. The
18 issue-ness or user-ness is called the item's *class*. So, for bug
19 reports and features, the class is "issue", and for users the class is
20 "user".
22 Each item in the tracker has an ID number that identifies it along with
23 its item class. To identify a particular issue or user, we combine the
24 class with the number to create a unique label, so that user 1 (who,
25 incidentally, is *always* the "admin" user) is referred to as "user1".
26 Issue number 315 is referred to as "issue315". We call that label the
27 item's *designator*.
29 Items in the database are never deleted, they're just "retired". You
30 can still refer to them by ID - hence removing an item won't break
31 references to the item. It's just that the item won't appear in any
32 listings.
35 Accessing the Tracker
36 ---------------------
38 You may access your tracker through one of three ways:
40 1. through the `web interface`_,
41 2. through the `e-mail gateway`_, or
42 3. using the `command line tool`_.
44 The last is usually only used by administrators. Most users will use the
45 web and e-mail interfaces. All three are explained below.
48 Issue life cycles in Roundup
49 ----------------------------
51 New issues may be submitted via the web or e-mail.
53 By default, the issue will have the status "unread". If another message
54 is received for the issue, its status will change to "chatting". 
56 The "home" page for a tracker will generally display all issues which
57 are not "resolved".
59 If an issue is closed, and a new message is received then it'll be
60 reopened to the state of "chatting".
62 The full set of **prority** and **status** values are:
64 =========== =====================================
65 Priority    Description
66 =========== =====================================
67 "critical"  panic: work is stopped!
68 "urgent"    important, but not deadly
69 "bug"       lost work or incorrect results
70 "feature"   want missing functionality
71 "wish"      avoidable bugs, missing conveniences
72 =========== =====================================
74 ============= =====================================
75 Status        Description
76 ============= =====================================
77 "unread"      submitted but no action yet
78 "deferred"    intentionally set aside
79 "chatting"    under review or seeking clarification
80 "need-eg"     need a reproducible example of a bug
81 "in-progress" understood; development in progress
82 "testing"     we think it's done; others, please test
83 "done-cbb"    okay for now, but could be better
84 "resolved"    fix has been released
85 ============= =====================================
88 Entering values in your Tracker
89 -------------------------------
91 All interfaces to your tracker use the same format for entering values.
92 This means the web interface for entering a new issue, the web interface
93 for searching issues, the e-mail interface and even the command-line
94 administration tool.
97 String and Numeric properties
98 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
100 These fields just take a simple text value, like ``It's broken``.
103 Boolean properties
104 ~~~~~~~~~~~~~~~~~~
106 These fields take a value which indicates "yes"/"no", "true"/"false",
107 "1"/"0" or "on"/"off".
110 Constrained (link and multilink) properties
111 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
113 Fields like "Assigned To" and "Keywords" hold references to items in other
114 classes ("user" and "keyword" in those two cases.)
116 Sometimes, the selection is done through a menu, like in the "Assigned
117 To" field.
119 Where the input is not a simple menu selection, we use a comma-separated
120 list of values to indicated which values of "user" or "keyword" are
121 interesting. The values may be either numeric ids or the names of items.
122 The special value "-1" may be used to match items where the property is
123 not set. For example, the following searches on the issues:
125 ``assignedto=richard,george``
126   match issues which are assigned to richard or george.
127 ``assignedto=-1``
128   match issues that are not assigned to a user.
129 ``assignedto=2,3,40``
130   match issues that are assigned to users 2, 3 or 40.
131 ``keyword=user interface``
132   match issues with the keyword "user interface" in their keyword list
133 ``keyword=web interface,e-mail interface``
134   match issues with the keyword "web interface" or "e-mail interface" in
135   their keyword list
136 ``keyword=-1``
137   match issues with no keywords set
140 Date properties
141 ~~~~~~~~~~~~~~~
143 Date-and-time stamps are specified with the date in
144 international standard format (``yyyy-mm-dd``) joined to the time
145 (``hh:mm:ss``) by a period ``.``.  Dates in this form can be easily
146 compared and are fairly readable when printed.  An example of a valid
147 stamp is ``2000-06-24.13:03:59``. We'll call this the "full date
148 format".  When Timestamp objects are printed as strings, they appear in
149 the full date format.
151 For user input, some partial forms are also permitted: the whole time or
152 just the seconds may be omitted; and the whole date may be omitted or
153 just the year may be omitted.  If the time is given, the time is
154 interpreted in the user's local time zone. The Date constructor takes
155 care of these conversions. In the following examples, suppose that
156 ``yyyy`` is the current year, ``mm`` is the current month, and ``dd`` is
157 the current day of the month.
159 -   "2000-04-17" means <Date 2000-04-17.00:00:00>
160 -   "01-25" means <Date yyyy-01-25.00:00:00>
161 -   "2000-04-17.03:45" means <Date 2000-04-17.08:45:00>
162 -   "08-13.22:13" means <Date yyyy-08-14.03:13:00>
163 -   "11-07.09:32:43" means <Date yyyy-11-07.14:32:43>
164 -   "14:25" means
165 -   <Date yyyy-mm-dd.19:25:00>
166 -   "8:47:11" means
167 -   <Date yyyy-mm-dd.13:47:11>
168 -   the special date "." means "right now"
171 When searching, a plain date entered as a search field will match that date
172 exactly in the database.  We may also accept ranges of dates. You can
173 specify range of dates in one of two formats:
175 1. English syntax::
177     [From <value>][To <value>]
179    Keywords "From" and "To" are case insensitive. Keyword "From" is
180    optional.
182 2. "Geek" syntax::
184     [<value>];[<value>]
186 Either first or second ``<value>`` can be omitted in both syntaxes.
188 For example, if you enter string "from 9:00" to "Creation date" field,
189 roundup will find  all issues, that were created today since 9 AM.
191 The ``<value>`` may also be an interval, as described in the next section.
192 Searching of "-2m; -1m" on activity field gives you issues which were
193 active between period of time since 2 months up-till month ago.
195 Other possible examples (consider local time is 2003-03-08.22:07:48):
197 - "from 2-12 to 4-2" means
198   <Range from 2003-02-12.00:00:00 to 2003-04-02.00:00:00>
199 - "FROM 18:00 TO +2m" means
200   <Range from 2003-03-08.18:00:00 to 2003-05-08.20:07:48>
201 - "12:00;" means
202   <Range from 2003-03-08.12:00:00 to None>
203 - "tO +3d" means
204   <Range from None to 2003-03-11.20:07:48>
205 - "2002-11-10; 2002-12-12" means
206   <Range from 2002-11-10.00:00:00 to 2002-12-12.00:00:00>
207 - "; 20:00 +1d" means
208   <Range from None to 2003-03-09.20:00:00>
209 - "2003" means
210   <Range from 2003-01-01.00:00:00 to 2003-12-31.23:59:59>
211 - "2003-04" means
212   <Range from 2003-04-01.00:00:00 to 2003-04-30.23:59:59>
213     
215 Interval properties
216 ~~~~~~~~~~~~~~~~~~~
218 Date intervals are specified using the suffixes "y", "m", and "d".  The
219 suffix "w" (for "week") means 7 days. Time intervals are specified in
220 hh:mm:ss format (the seconds may be omitted, but the hours and minutes
221 may not).
223 -   "3y" means three years
224 -   "2y 1m" means two years and one month
225 -   "1m 25d" means one month and 25 days
226 -   "2w 3d" means two weeks and three days
227 -   "1d 2:50" means one day, two hours, and 50 minutes
228 -   "14:00" means 14 hours
229 -   "0:04:33" means four minutes and 33 seconds
232 Simple support for collision detection
233 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
235 Item edit pages remember when the item was last edited. When a form is
236 submitted, the user will be informed if someone else has edited the item
237 at the same time they tried to.
240 Web Interface
241 =============
243 .. note::
244    This document contains screenshots of the default look and feel.
245    Your site may have a slightly (or very) different look, but the
246    functionality will be very similar, and the concepts still hold.
248 The web interface is broken up into the following parts:
250 1. `lists of items`_,
251 2. `display, edit or entry of an item`_, and
252 3. `searching page`_.
255 Lists of Items
256 --------------
258 The first thing you'll see when you log into Roundup will be a list of
259 open (ie. not resolved) issues. This list has been generated by a bunch
260 of controls `under the covers`_ but for now, you can see something like:
262 .. image:: images/index_logged_out.png
264 The screen is divided up into three sections. There's a title which tells
265 you where you are, a sidebar which contains useful navigation tools and a
266 body which usually displays either a list of items or a single item from
267 the tracker.
269 You may either register or log in. Registration takes you to:
271 .. image:: images/registration.png
273 Once you're logged in, the sidebar changes to:
275 .. image:: images/index_logged_in.png
277 You can now get to your "My Details" page:
279 .. image:: images/my_details.png
282 Display, edit or entry of an item
283 ---------------------------------
285 Create a new issue with "create new" under the issue subheading. This
286 will take you to:
288 .. image:: images/new_issue.png
290 Editing an issue uses the same form, though now you'll see attached files
291 and messages, and the issue history at the bottom of the page:
293 .. image:: images/edit_issue.png
296 Searching Page
297 --------------
299 See `entering values in your tracker`_ for an explanation of what you
300 may type into the search form.
303 Saving queries
304 ~~~~~~~~~~~~~~
306 You may save queries in the tracker by giving the query a name. Each user
307 may only have one query with a given name - if a subsequent search is
308 performed with the same query name supplied, then it will edit the
309 existing query of the same name.
311 Queries may be marked as "private". These queries are only visible to the
312 user that created them. If they're not marked "private" then all other
313 users may include the query in their list of "Your Queries". Marking it as
314 private at a later date does not affect users already using the query, nor
315 does deleting the query.
317 If a user subsequently creates or edits a public query, a new personal
318 version of that query is made, with the same editing rules as described
319 above.
322 Under the covers
323 ~~~~~~~~~~~~~~~~
325 The searching page converts your selections into the following
326 arguments:
328 ============ =============================================================
329 Argument     Description
330 ============ =============================================================
331 @sort        sort by prop name, optionally preceeded with '-' to give
332              descending or nothing for ascending sorting. The sort
333              argument can have several props separated with comma.
334 @group       group by prop name, optionally preceeded with '-' or to sort
335              in descending or nothing for ascending order. The group
336              argument can have several props separated with comma.
337 @columns     selects the columns that should be displayed. Default is
338              all.                     
339 @filter      indicates which properties are being used in filtering.
340              Default is none.
341 propname     selects the values the item properties given by propname must
342              have (very basic search/filter).
343 @search_text performs a full-text search (message bodies, issue titles,
344              etc)
345 ============ =============================================================
347 You may manually write URLS that contain these arguments, like so
348 (whitespace has been added for clarity)::
350     /issue?status=unread,in-progress,resolved&
351         keyword=security,ui&
352         @group=priority,-status&
353         @sort=-activity&
354         @filters=status,keyword&
355         @columns=title,status,fixer
358 Access Controls
359 ---------------
361 User access is controlled through Permissions. These are are grouped
362 into Roles, and users have a comma-separated list of Roles assigned to
363 them.
365 Permissions divide access controls up into answering questions like:
367 - may the user edit issues ("Edit", "issue")
368 - is the user allowed to use the web interface ("Web Access")
369 - may the user edit other user's Roles through the web ("Web Roles")
371 Any number of new Permissions and Roles may be created as described in
372 the customisation documentation. Examples of new access controls are:
374 - only managers may sign off issues as complete
375 - don't give users who register through e-mail web access
376 - let some users edit the details of all users
379 E-Mail Gateway
380 ==============
382 Roundup trackers may be used to facilitate e-mail conversations around
383 issues. The "nosy" list attached to each issue indicates the users who
384 should receive e-mail when messages are added to the issue.
386 When e-mail comes into a tracker that identifies an issue in the subject
387 line, the content of the e-mail is attached to the issue.
389 You may even create new issues from e-mail messages.
391 E-mail sent to a tracker is examined for several pieces of information:
393 1. `subject-line information`_ identifying the purpose of the e-mail
394 2. `sender identification`_ using the sender of the message
395 3. `e-mail message content`_ which is to be extracted
396 4. e-mail attachments which should be associated with the message
399 Subject-line information
400 ------------------------
402 The subject line of the incoming message is examined to find one of:
404 1. the item that the message is responding to,
405 2. the type of item the message should create, or
406 3. we default the item class and try some trickiness
408 If the subject line contains a prefix in ``[square brackets]`` then
409 we're looking at case 1 or 2 above. Any "re:" or "fwd:" prefixes are
410 stripped off the subject line before we start looking for real
411 information.
413 If an item designator (class name and id number, for example
414 ``issue123``) is found there, a new "msg" item is added to the
415 "messages" property for that item, and any new "file" items are added to
416 the "files" property for the item.
418 If just an item class name is found there, we attempt to create a new
419 item of that class with its "messages" property initialized to contain
420 the new "msg" item and its "files" property initialized to contain any
421 new "file" items.
423 The third case above - where no ``[information]`` is provided, the
424 tracker's ``MAIL_DEFAULT_CLASS`` configuration variable defines what
425 class of item the message relates to. We try to match the subject line
426 to an existing item of the default class, and if there's a match, the
427 message is related to that matched item. If not, then a new item of the
428 default class is created.
431 Setting Properties
432 ~~~~~~~~~~~~~~~~~~
434 The e-mail interface also provides a simple way to set properties on
435 items. At the end of the subject line, propname=value pairs can be
436 specified in square brackets, using the same conventions as for the
437 roundup set shell command.
439 For example,
441 - setting the priority of an issue::
443    Subject: Re: [issue2] the coffee machine is broken! [priority=urgent]
445 - adding yourself to a nosy list::
447    Subject: Re: [issue2] we're out of widgets [nosy=+richard]
449 - setting the nosy list to just you and cliff::
451    Subject: Re: [issue2] we're out of widgets [nosy=richard,cliff]
453 - removing yourself from a nosy list and setting the priority::
455    Subject: Re: [issue2] we're out of widgets [nosy=-richard;priority=bug]
457 In all cases, the message relates to issue 2. The ``Re:`` prefix is
458 stripped off.
461 Automatic Properties
462 ~~~~~~~~~~~~~~~~~~~~
464 **status of new issues**
465  When a new message is received that is not identified as being related
466  to an existing issue, it creates a new issue. The status of the new
467  issue is defaulted to "unread".
469 **reopening of resolved issues**
470  When a message is is received for a resolved issue, the issue status is
471  automatically reset to "chatting" to indicate new information has been
472  received.
475 Sender identification
476 ---------------------
478 If the sender of an e-mail is unknown to Roundup (looking up both user
479 primary e-mail addresses and their alternate addresses) then a new user
480 may be created, depending on tracker configuration (see the `Admin
481 Guide`_ section "Users and Security" for configuration details.)
483 .. _`Admin Guide`: admin_guide.html
485 The new user will have their username set to the "user" part of
486 "user@domain" in their e-mail address. Their password will be
487 completely randomised, and they'll have to visit the web interface to
488 have it changed. Some sites don't allow web access by users who register
489 via e-mail like this.
492 E-Mail Message Content
493 ----------------------
495 Roundup only associates plain text (MIME type ``text/plain``) as
496 messages for items. Any other parts of a message are associated as
497 downloadable files. If no plain text part is found, the message is
498 rejected.
500 To do this, incoming messages are examined for multiple parts:
502 * In a multipart/mixed message or part, each subpart is extracted and
503   examined. The text/plain subparts are assembled to form the textual
504   body of the message, to be stored in the file associated with a "msg"
505   class item. Any parts of other types are each stored in separate files
506   and given "file" class items that are linked to the "msg" item.
507 * In a multipart/alternative message or part, we look for a text/plain
508   subpart and ignore the other parts.
510 If the message is a response to a previous message, and contains quoted
511 sections, then these will be stripped out of the message if the
512 ``EMAIL_KEEP_QUOTED_TEXT`` configuration variable is set to ``'no'``.
514 Message summary
515 ~~~~~~~~~~~~~~~
517 The "summary" property on message items is taken from the first
518 non-quoting section in the message body. The message body is divided
519 into sections by blank lines. Sections where the second and all
520 subsequent lines begin with a ">" or "|" character are considered
521 "quoting sections". The first line of the first non-quoting section
522 becomes the summary of the message.
525 Address handling
526 ----------------
528 All of the addresses in the ``To:`` and ``Cc:`` headers of the incoming
529 message are looked up among the tracker users, and the corresponding
530 users are placed in the "recipients" property on the new "msg" item. The
531 address in the ``From:`` header similarly determines the "author"
532 property of the new "msg" item. The default handling for addresses that
533 don't have corresponding users is to create new users with no passwords
534 and a username equal to the address.
536 The addresses mentioned in the ``To:``, ``From:`` and ``Cc:`` headers of
537 the message may be added to the `nosy list`_ depending on:
539 ``ADD_AUTHOR_TO_NOSY``
540  Does the author of a message get placed on the nosy list automatically?
541  If 'new' is used, then the author will only be added when a message
542  creates a new issue. If 'yes', then the author will be added on
543  followups too. If 'no', they're never added to the nosy.
545 ``ADD_RECIPIENTS_TO_NOSY``
546  Do the recipients (To:, Cc:) of a message get placed on the nosy list?
547  If 'new' is used, then the recipients will only be added when a message
548  creates a new issue. If 'yes', then the recipients will be added on
549  followups too. If 'no', they're never added to the nosy.
552 Nosy List
553 ~~~~~~~~~
555 Roundup watches for additions to the "messages" property of items.
557 When a new message is added, it is sent to all the users on the "nosy"
558 list for the item that are not already on the "recipients" list of the
559 message. Those users are then appended to the "recipients" property on
560 the message, so multiple copies of a message are never sent to the same
561 user. The journal recorded by the hyperdatabase on the "recipients"
562 property then provides a log of when the message was sent to whom.
564 If the author of the message is also in the nosy list for the item that
565 the message is attached to, then the config var ``MESSAGES_TO_AUTHOR``
566 is queried to determine if they get a nosy list copy of the message too.
569 Mail gateway script command line
570 --------------------------------
572 Usage::
574   roundup-mailgw [[-C class] -S field=value]* <instance home> [method]
576 The roundup mail gateway may be called in one of three ways:
578  - with an instance home as the only argument,
579  - with both an instance home and a mail spool file, or
580  - with both an instance home and a pop server account.
581  
582 It also supports optional -C and -S arguments that allows you to set a
583 fields for a class created by the roundup-mailgw. The default class if
584 not specified is msg, but the other classes: issue, file, user can also
585 be used. The -S or --set options uses the same
586 property=value[;property=value] notation accepted by the command line
587 roundup command or the commands that can be given on the Subject line of
588 an e-mail message.
590 It can let you set the type of the message on a per e-mail address basis.
592 PIPE:
593  In the first case, the mail gateway reads a single message from the
594  standard input and submits the message to the roundup.mailgw module.
596 UNIX mailbox:
597  In the second case, the gateway reads all messages from the mail spool
598  file and submits each in turn to the roundup.mailgw module. The file is
599  emptied once all messages have been successfully handled. The file is
600  specified as::
602    mailbox /path/to/mailbox
604 POP:
605  In the third case, the gateway reads all messages from the POP server
606  specified and submits each in turn to the roundup.mailgw module. The
607  server is specified as::
609     pop username:password@server
611  The username and password may be omitted::
613     pop username@server
614     pop server
616  are both valid. The username and/or password will be prompted for if
617  not supplied on the command-line.
619 POPS:
620  Connect to a POP server over ssl. This requires python 2.4 or later.
621  This supports the same notation as POP::
623     pops username:password@server
625 APOP:
626  Same as POP, but using Authenticated POP::
628     apop username:password@server
630 IMAP:
631  Connect to an IMAP server. This supports the same notation as that of
632  POP mail::
634     imap username:password@server
636  It also allows you to specify a specific mailbox other than INBOX using
637  this format::
639     imap username:password@server mailbox
641 IMAPS:
642  Connect to an IMAP server over ssl.
643  This supports the same notation as IMAP::
645     imaps username:password@server [mailbox]
647 IMAPS_CRAM:
648  Connect to an IMAP server over ssl using CRAM-MD5 authentication.
649  This supports the same notation as IMAP::
651     imaps_cram username:password@server [mailbox]
653 Command Line Tool
654 =================
656 The basic usage is::
658  Usage: roundup-admin [options] [<command> <arguments>]
660  Options:
661   -i instance home  -- specify the issue tracker "home directory" to administer
662   -u                -- the user[:password] to use for commands
663   -d                -- print full designators not just class id numbers
664   -c                -- when outputting lists of data, comma-separate them.
665                Same as '-S ","'.
666   -S <string>       -- when outputting lists of data, string-separate them
667   -s                -- when outputting lists of data, space-separate them.
668                Same as '-S " "'.
670   Only one of -s, -c or -S can be specified.
672  Help:
673   roundup-admin -h
674   roundup-admin help                       -- this help
675   roundup-admin help <command>             -- command-specific help
676   roundup-admin help all                   -- all available help
678  Commands: 
679   commit
680   create classname property=value ...
681   display designator[,designator]*
682   export [class[,class]] export_dir
683   find classname propname=value ...
684   get property designator[,designator]*
685   help topic
686   history designator
687   import import_dir
688   initialise [adminpw]
689   install [template [backend [admin password]]]
690   list classname [property]
691   pack period | date
692   reindex
693   retire designator[,designator]*
694   rollback
695   security [Role name]
696   set items property=value property=value ...
697   specification classname
698   table classname [property[,property]*]
699  Commands may be abbreviated as long as the abbreviation matches only one
700  command, e.g. l == li == lis == list.
703 All commands (except help) require a tracker specifier. This is just the
704 path to the roundup tracker you're working with. A roundup tracker is
705 where roundup keeps the database and configuration file that defines an
706 issue tracker. It may be thought of as the issue tracker's "home
707 directory". It may be specified in the environment variable
708 ``TRACKER_HOME`` or on the command line as "``-i tracker``".
710 A designator is a classname and an itemid concatenated, eg. bug1,
711 user10, ... Property values are represented as strings in command
712 arguments and in the printed results:
714 - Strings are, well, strings.
715 - Password values will display as their encoded value.
716 - Date values are printed in the full date format in the local time
717   zone, and accepted in the full format or any of the partial formats
718   explained below.::
719   
720     Input of...        Means...
721     "2000-04-17.03:45" 2000-04-17.03:45:00
722     "2000-04-17"       2000-04-17.00:00:00
723     "01-25"            yyyy-01-25.00:00:00
724     "08-13.22:13"      yyyy-08-13.22:13:00
725     "11-07.09:32:43"   yyyy-11-07.09:32:43
726     "14:25"            yyyy-mm-dd.14:25:00
727     "8:47:11"          yyyy-mm-dd.08:47:11
728     "2003"             2003-01-01.00:00:00
729     "2003-04"          2003-04-01.00:00:00
730     "."                "right now"
731     
732 - Link values are printed as item designators. When given as an
733   argument, item designators and key strings are both accepted.
734 - Multilink values are printed as lists of item designators joined by
735   commas. When given as an argument, item designators and key strings
736   are both accepted; an empty string, a single item, or a list of items
737   joined by commas is accepted.
738   
739 When multiple items are specified to the roundup get or roundup set
740 commands, the specified properties are retrieved or set on all the
741 listed items.  When multiple results are returned by the roundup get or
742 roundup find commands, they are printed one per line (default) or joined
743 by commas (with the "``-c``" option).
745 Where the command changes data, a login name/password is required. The
746 login may be specified as either "``name``" or "``name:password``".
748 - ``ROUNDUP_LOGIN`` environment variable
749 - the "``-u``" command-line option
751 If either the name or password is not supplied, they are obtained from
752 the command-line.
755 Using with the shell
756 --------------------
758 With version 0.6.0 or newer of roundup (which introduced support for
759 multiple designators to display and the -d, -S and -s flags):
761 To find all messages regarding chatting issues that contain the word
762 "spam", for example, you could execute the following command from the
763 directory where the database dumps its files::
765     shell% for issue in `roundup-admin -ds find issue status=chatting`; do
766     > grep -l spam `roundup-admin -ds ' ' get messages $issue`
767     > done
768     msg23
769     msg49
770     msg50
771     msg61
772     shell%
774 Or, using the -dc option, this can be written as a single command::
776     shell% grep -l spam `roundup get messages \
777         \`roundup -dc find issue status=chatting\``
778     msg23
779     msg49
780     msg50
781     msg61
782     shell%
784 You can also display issue contents::
786     shell% roundup-admin display `roundup-admin -dc get messages \
787                issue3,issue1`
788     files: []
789     inreplyto: None
790     recipients: []
791     author: 1
792     date: 2003-02-16.21:23:03
793     messageid: None
794     summary: jkdskldjf
795     files: []
796     inreplyto: None
797     recipients: []
798     author: 1
799     date: 2003-02-15.01:59:11
800     messageid: None
801     summary: jlkfjadsf    
802     
803 or status::
805     shell% roundup-admin get name `/tools/roundup/bin/roundup-admin \
806           -dc -i /var/roundup/sysadmin get status issue3,issue1`
807     unread
808     deferred
810 or status on a single line::
812     shell% echo `roundup-admin get name \`/tools/roundup/bin/roundup-admin \
813              -dc -i /var/roundup/sysadmin get status issue3,issue1\``
814     unread deferred
816 which is the same as::
818     shell% roundup-admin -s get name `/tools/roundup/bin/roundup-admin \
819              -dc -i /var/roundup/sysadmin get status issue3,issue1`
820     unread deferred
822 Also the tautological::
824    shell% roundup-admin get name \
825       `roundup-admin -dc get status \`roundup-admin -dc find issue \
826           status=chatting\``
827    chatting
828    chatting
830 Remember the roundup commands that accept multiple designators accept
831 them ',' separated so using '-dc' is almost always required.