aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/show.py
Commit message (Collapse)AuthorAgeFilesLines
* Go back to lazy bug loading to get execution speed back up.W. Trevor King2008-11-231-1/+1
| | | | Fixes bug b3c6da51-3a30-42c9-8c75-587c7a1705c5
* `be show` now supports showing multiple bugs with a single call.W. Trevor King2008-11-231-6/+4
|
* Another major rewrite. Now BugDir, Bug, and Comment are more distinct.W. Trevor King2008-11-211-15/+24
| | | | | | | | | | | | | | | I pushed a lot of the little helper functions into the main classes, which makes it easier for me to keep track of what's going on. I'm now at the point where I can run through `python test.py` with each of the backends (by changing the search order in rcs.py _get_matching_rcs) without any unexpected errors for each backend (except Arch). I can also run `test_usage.sh` without non-Arch errors either. However, don't consider this a stable commit yet. The bzr backend is *really*slow*, and the other's aren't blazingly fast either. I think I'm rewriting the entire database every time I save it :p. Still, it passes the checks. and I don't like it when zounds of changes build up.
* 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