Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added 'remove' command to remove bugs. Use __desc__ for command help. | W. Trevor King | 2008-11-16 | 1 | -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 King | 2008-11-15 | 1 | -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 King | 2008-11-15 | 1 | -6/+0 |
| | |||||
* | Split Bug and Comment class out to bug.py from bugdir.py | W. Trevor King | 2008-11-14 | 1 | -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 updates | Aaron Bentley | 2006-04-03 | 1 | -1/+13 |
|\ | |||||
| * | added help to 'show'. | Thomas Gerigk | 2006-04-03 | 1 | -1/+14 |
| | | |||||
* | | Added reply handling to comments | Aaron Bentley | 2006-04-03 | 1 | -5/+8 |
|/ | |||||
* | Added appropriate copyright notices, GPLed. | Aaron Bentley | 2005-05-16 | 1 | -0/+16 |
| | |||||
* | Updated comment formatting | Aaron Bentley | 2005-03-23 | 1 | -3/+3 |
| | |||||
* | Added comment support to show, added comment command | Aaron Bentley | 2005-03-23 | 1 | -0/+5 |
| | |||||
* | Added datestamps to bugs | Aaron Bentley | 2005-03-23 | 1 | -3/+9 |
| | |||||
* | Used cmdutil tree_root wrapper to avoid tracebacks on wrong tree | Aaron Bentley | 2005-03-18 | 1 | -1/+1 |
| | |||||
* | Implemented plugin system for viewing commands | Aaron Bentley | 2005-03-11 | 1 | -0/+1 |
| | |||||
* | Modularized commands into files | Aaron Bentley | 2005-03-11 | 1 | -0/+9 |