Merged be.target-as-bug
authorW. Trevor King <wking@drexel.edu>
Sun, 6 Dec 2009 05:44:22 +0000 (00:44 -0500)
committerW. Trevor King <wking@drexel.edu>
Sun, 6 Dec 2009 05:44:22 +0000 (00:44 -0500)
commit61010c1c6b055ef8fd33b01c088e3d095914e89a
treee967aadbc99dee314b5fc3deb8036369e79a4c99
parentaf8bd49a6215029c08676a3d4a59cfcab1d80976
parentff1ca79e6781447dbad6279d6c4cdad44fad5cdd
Merged be.target-as-bug

Highlights:
 * targets are now a special type of bug (severity 'target'), so you
   can do all the things you do with normal bugs to them as well
   (e.g. comment on them, link them into dependency trees, etc.)
 * new command `be due` to get/set bug due dates.
 * changes to `be depend`
   * added options --status, --severity
 * changes to `be list`
   * added blacklist capability to --status, --severity, --assigned
   * removed options --target, --cur-target
   Replace:
     'be list --target TARGET' with
     'be depend --status -closed,fixed,wontfix --severity -target \
        $(be target --resolve TARGET)'
     'be list --cur-target' with
     'be depend --status -closed,fixed,wontfix --severity -target \
        $(be target --resolve)'
 * changes to `be target`
   * added option --resolve
   * removed option --list
   Replace:
     'be target --list' with 'be list --status all --severity target'
 * new function cmdutil.select_values() for whitelist/blacklist selection.
 * assorted cleanups and bugfixes