Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed broken doctest and inconsitent indentation from not wrapping comments. | W. Trevor King | 2008-11-24 | 1 | -15/+0 |
| | | | | | Also emptied becommands/__init__.py. I didn't understand the plugin interface when I wrote it. | ||||
* | Another major rewrite. Now BugDir, Bug, and Comment are more distinct. | W. Trevor King | 2008-11-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | 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 King | 2008-11-16 | 1 | -0/+15 |
| | | | | | | | | | | | 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. | ||||
* | Modularized commands into files | Aaron Bentley | 2005-03-11 | 1 | -0/+0 |