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 | -27/+4 |
| | | | | | | | | | | | 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. | ||||
* | Split Bug and Comment class out to bug.py from bugdir.py | W. Trevor King | 2008-11-14 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Don't require python2.4 for "be". | Chris Ball | 2008-05-16 | 1 | -1/+1 |
| | |||||
* | Fix help printing (Lee Braiden) | Aaron Bentley | 2006-04-17 | 1 | -1/+1 |
| | |||||
* | Refactored the command listing | Aaron Bentley | 2006-04-01 | 1 | -8/+1 |
| | |||||
* | Patch from Thomas Gerigk to add a 'help' command | Aaron Bentley | 2006-04-01 | 1 | -1/+1 |
| | |||||
* | be now uses subprocess, so it requires Python 2.4 | Aaron Bentley | 2005-12-23 | 1 | -1/+1 |
| | |||||
* | Made -h, help, --help work | Aaron Bentley | 2005-05-17 | 1 | -1/+1 |
| | |||||
* | Added appropriate copyright notices, GPLed. | Aaron Bentley | 2005-05-16 | 1 | -0/+18 |
| | |||||
* | Added new status - "in-progress" | Oleg Romanyshyn | 2005-04-22 | 1 | -0/+1 |
| | |||||
* | Switched to exception help handling | Aaron Bentley | 2005-03-22 | 1 | -1/+7 |
| | |||||
* | Changed help format to look like bzr's | Aaron Bentley | 2005-03-17 | 1 | -1/+1 |
| | |||||
* | Removed unused code | Aaron Bentley | 2005-03-11 | 1 | -1/+0 |
| | |||||
* | Added exceptions for missing commands, handled -, plugin command exec | Aaron Bentley | 2005-03-11 | 1 | -9/+1 |
| | |||||
* | Implemented plugin system for viewing commands | Aaron Bentley | 2005-03-11 | 1 | -2/+9 |
| | |||||
* | Modularized commands into files | Aaron Bentley | 2005-03-11 | 1 | -57/+17 |
| | |||||
* | Added severity command | Aaron Bentley | 2005-03-11 | 1 | -7/+11 |
| | |||||
* | Removed friendly bug name | Aaron Bentley | 2005-03-11 | 1 | -1/+0 |
| | |||||
* | Ensured bug list shows unique ids | Aaron Bentley | 2005-03-10 | 1 | -3/+3 |
| | |||||
* | Implemented show command | Aaron Bentley | 2005-03-09 | 1 | -8/+10 |
| | |||||
* | Added creator to bug listing | Aaron Bentley | 2005-03-09 | 1 | -2/+3 |
| | |||||
* | Fixed up Bugs Everywhere command listings | Aaron Bentley | 2005-03-09 | 1 | -4/+9 |
| | |||||
* | Implemented set-root command | Aaron Bentley | 2005-03-09 | 1 | -1/+6 |
| | |||||
* | Added ability to create, close, open bugs | Aaron Bentley | 2005-03-09 | 1 | -5/+27 |
| | |||||
* | Added support for severity, creator, target | Aaron Bentley | 2005-03-09 | 1 | -2/+18 |
| | |||||
* | Implemented bug status and "active" flag | Aaron Bentley | 2005-03-09 | 1 | -2/+2 |
| | |||||
* | Moved code into bugdir, handled unknown commands | Aaron Bentley | 2005-03-09 | 1 | -7/+13 |
| | |||||
* | Added basic bug-listing functionality | Aaron Bentley | 2005-03-09 | 1 | -0/+30 |