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 | -30/+14 |
| | | | | | | | | | | | 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 | -23/+0 |
| | | | | 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 | -13/+19 |
| | |||||
* | Split Bug and Comment class out to bug.py from bugdir.py | W. Trevor King | 2008-11-14 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Added caveat about using short bug names to unique_name(). | W. Trevor King | 2008-11-14 | 1 | -0/+4 |
| | |||||
* | Cleaned up and docstringed libbe.cmdutil.unique_name(). | W. Trevor King | 2008-11-14 | 1 | -3/+6 |
| | | | | | Now the first bug will have a 3 char short name (used to be one char, with the second bug having a 3 char name). | ||||
* | Merge both lines | Aaron Bentley | 2006-04-04 | 1 | -0/+48 |
|\ | |||||
| * | Added reply handling to comments | Aaron Bentley | 2006-04-03 | 1 | -0/+48 |
| | | |||||
* | | Refactored the command listing | Aaron Bentley | 2006-04-01 | 1 | -0/+9 |
|/ | |||||
* | Auto-decode user input to unicode | Aaron Bentley | 2006-01-26 | 1 | -1/+3 |
| | |||||
* | got tests passing | Aaron Bentley | 2005-12-21 | 1 | -3/+0 |
| | |||||
* | Forced be to show minimum 3 digits, because 3 is common. | Aaron Bentley | 2005-05-17 | 1 | -0/+2 |
| | |||||
* | Added appropriate copyright notices, GPLed. | Aaron Bentley | 2005-05-16 | 1 | -0/+16 |
| | |||||
* | Changed layout of the displaying bugs (list and show commands) | Oleg Romanyshyn | 2005-04-22 | 1 | -2/+5 |
| | |||||
* | Moved FileString and get_file() into utility.py | Aaron Bentley | 2005-03-23 | 1 | -0/+6 |
| | |||||
* | Pulled in Fai's optparser | Aaron Bentley | 2005-03-22 | 1 | -1/+30 |
| | |||||
* | Stopped showing targets under target-specific headings | Aaron Bentley | 2005-03-21 | 1 | -2/+2 |
| | |||||
* | Fixed test cases so they're not machine-specific | Aaron Bentley | 2005-03-20 | 1 | -2/+2 |
| | |||||
* | Used cmdutil tree_root wrapper to avoid tracebacks on wrong tree | Aaron Bentley | 2005-03-18 | 1 | -0/+23 |
| | |||||
* | Organized list by who the bugs are assigned to | Aaron Bentley | 2005-03-18 | 1 | -0/+9 |
| | |||||
* | Corrected capitalization of target | Aaron Bentley | 2005-03-18 | 1 | -1/+1 |
| | |||||
* | Added "assign" command | Aaron Bentley | 2005-03-18 | 1 | -3/+7 |
| | |||||
* | Added unit testing framework | Aaron Bentley | 2005-03-11 | 1 | -0/+19 |
| | |||||
* | Added exceptions for missing commands, handled -, plugin command exec | Aaron Bentley | 2005-03-11 | 1 | -3/+10 |
| | |||||
* | Implemented plugin system for viewing commands | Aaron Bentley | 2005-03-11 | 1 | -0/+9 |
| | |||||
* | Added severity command | Aaron Bentley | 2005-03-11 | 1 | -1/+12 |
| | |||||
* | Removed friendly bug name | Aaron Bentley | 2005-03-11 | 1 | -7/+1 |
| | |||||
* | Tweaked summary message | Aaron Bentley | 2005-03-10 | 1 | -1/+1 |
| | |||||
* | Tweaked summary display | Aaron Bentley | 2005-03-10 | 1 | -2/+2 |
| | |||||
* | Implemented show command | Aaron Bentley | 2005-03-09 | 1 | -0/+11 |
| | |||||
* | added bugs, Switched to using uuid prefixes to ensure uniqueness | Aaron Bentley | 2005-03-09 | 1 | -3/+16 |
| | |||||
* | Added ability to create, close, open bugs | Aaron Bentley | 2005-03-09 | 1 | -0/+16 |
| | |||||
* | Moved code into bugdir, handled unknown commands | Aaron Bentley | 2005-03-09 | 1 | -70/+3 |
| | |||||
* | Added basic bug-listing functionality | Aaron Bentley | 2005-03-09 | 1 | -0/+73 |