aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/show.py
Commit message (Collapse)AuthorAgeFilesLines
* Added 'remove' command to remove bugs. Use __desc__ for command help.W. Trevor King2008-11-161-2/+3
| | | | | | | | | | | Using the __desc__ reduces documentation duplication. It's also better than using __doc__, because __doc__ could (should?) be more than one-line long, and we just want a short description to jog our memories in the complete command list. Also moved unique_name from cmdutil.py to names.py to avoid the bug->cmdutil->bugdir->bug cyclic include.
* Moved libbe.cmdutil.bug_summary() to libbe.bug.Bug.string().W. Trevor King2008-11-151-1/+1
| | | | This seems like a natual place for a function that only operates on Bugs.
* becommands/show.py gives more specific bug information.W. Trevor King2008-11-151-6/+0
|
* Split Bug and Comment class out to bug.py from bugdir.pyW. Trevor King2008-11-141-2/+3
| | | | | | | | | | | | | | | | | | | | | Comment should probably have it's own file too... I also tried to clean up the interface for setting status and severity. Both attributes involve selecting strings from predefined lists. The lists of valid strings (and descriptions of each string) are now defined in bug.py. The bug.py lists are then used to generate appropriate help strings in becommands/status.py and severity.py. This should make it easier to keep the help strings in synch with the validation information. The original status strings weren't documented, and I didn't know what they all ment, so I elimanted some of them. 'in-progress' and 'disabled' are no longer with us. Of course, it would be simple to add them back in if people don't agree with me on that. Due to the loss of 'disabled' I had to change the status of two bugs (11e and 597) to 'closed'. I removed becommands/inprogress.py as well. It's functionality was replaced by the more general status.py command, which mimics the severity.py command.
* Merge help updatesAaron Bentley2006-04-031-1/+13
|\
| * added help to 'show'.Thomas Gerigk2006-04-031-1/+14
| |
* | Added reply handling to commentsAaron Bentley2006-04-031-5/+8
|/
* Added appropriate copyright notices, GPLed.Aaron Bentley2005-05-161-0/+16
|
* Updated comment formattingAaron Bentley2005-03-231-3/+3
|
* Added comment support to show, added comment commandAaron Bentley2005-03-231-0/+5
|
* Added datestamps to bugsAaron Bentley2005-03-231-3/+9
|
* Used cmdutil tree_root wrapper to avoid tracebacks on wrong treeAaron Bentley2005-03-181-1/+1
|
* Implemented plugin system for viewing commandsAaron Bentley2005-03-111-0/+1
|
* Modularized commands into filesAaron Bentley2005-03-111-0/+9