Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updated copyright information | W. Trevor King | 2010-01-01 | 1 | -1/+15 |
| | |||||
* | Fixed up the completion helpers in libbe.command.util | W. Trevor King | 2009-12-29 | 1 | -5/+74 |
| | | | | | | | | | | This entailed a fairly thorough cleanup of libbe.util.id. Remaining unimplemented completion helpers: * complete_assigned() * complete_extra_strings() Since these would require scanning all (active?) bugs to compile lists, and I was feeling lazy... | ||||
* | Fixed libbe.command.diff + ugly BugDir.duplicate_bugdir implementation | W. Trevor King | 2009-12-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | duplicate_bugdir() works, but for the vcs backends, it could require shelling out for _every_ file read. This could, and probably will, be horribly slow. Still it works ;). I'm not sure what a better implementation would be. The old implementation checked out the entire earlier state into a temporary directory pros: single shell out, simple upgrade implementation cons: wouldn't work well for HTTP backens I think a good solution would run along the lines of the currently commented out code in duplicate_bugdir(), where a VersionedStorage.changed_since(revision) call would give you a list of changed files. diff could work off of that directly, without the need to generate a whole duplicate bugdir. I'm stuck on how to handle upgrades though... Also removed trailing whitespace from all python files. | ||||
* | Transition to Command-format complete. | W. Trevor King | 2009-12-15 | 1 | -1/+1 |
| | | | | | | | | Well, except for going through and updating the _long_help() strings. $ python test.py libbe.command succeeds for everything except Diff and Subscribe, which is expected since I haven't fixed up libbe.diff yet. | ||||
* | Transitioned depend to Command format | W. Trevor King | 2009-12-14 | 1 | -2/+3 |
| | |||||
* | Transitioned comment to Command format | W. Trevor King | 2009-12-14 | 1 | -0/+18 |
| | |||||
* | Transitioned assign to Command format | W. Trevor King | 2009-12-14 | 1 | -0/+2 |
| | |||||
* | Moved be to libbe.ui.command_line and transitioned to Command format. | W. Trevor King | 2009-12-12 | 1 | -4/+31 |
| | |||||
* | Moved command completion from libbe.ui.util to libbe.command.util | W. Trevor King | 2009-12-12 | 1 | -0/+69 |