aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/util
Commit message (Collapse)AuthorAgeFilesLines
* Don't raise MultipleIDMatches if one of the matches is exact.W. Trevor King2010-01-211-0/+2
|
* Generate string properly in libbe.util.subproc.CommandErrorW. Trevor King2010-01-191-1/+1
|
* Updated copyright informationW. Trevor King2010-01-017-7/+21
|
* Fixed up the completion helpers in libbe.command.utilW. Trevor King2009-12-291-90/+196
| | | | | | | | | | 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.storage.util.upgradeW. Trevor King2009-12-271-1/+0
| | | | | | | | | | | | | Note that it only upgrades on-disk versions, so you can't use a non-VCS storage backend whose version isn't your command's current storage version. See #bea/110/bd1# for reasoning. To see the on-disk storage version, look at .be/version To see your command's supported storage version, look at be --full-version I added test_upgrade.sh to exercise the upgrade mechanism on BE's own repository.
* Fixed libbe.command.diff + ugly BugDir.duplicate_bugdir implementationW. Trevor King2009-12-155-14/+14
| | | | | | | | | | | | | | | | | | | | | 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.
* Transitioned html to Command-formatW. Trevor King2009-12-141-1/+1
|
* Transitioned comment to Command formatW. Trevor King2009-12-141-0/+22
|
* Added parse_user() calls to AssignW. Trevor King2009-12-141-23/+36
|
* Converted libbe.storage.vcs.base to new Storage format.W. Trevor King2009-12-131-1/+1
|
* Moved be to libbe.ui.command_line and transitioned to Command format.W. Trevor King2009-12-121-1/+1
|
* Added libbe.ui.util.user for managing user ids.W. Trevor King2009-12-121-27/+9
|
* Added libbe.command.base (with Command class) and moved list command to new ↵W. Trevor King2009-12-122-34/+35
| | | | format.
* Moved bugdir, bug, and comment over to new id implementation.W. Trevor King2009-12-101-5/+23
|
* Rethought libbe.util.id moduleW. Trevor King2009-12-091-40/+254
|
* Reworked test.py to handle deeper directory structureW. Trevor King2009-12-081-0/+75
|
* Transitioned bugdir.py to new storage format.W. Trevor King2009-12-082-12/+46
|
* Extend libbe.util.id to handle id (path) creation.W. Trevor King2009-12-081-3/+46
|
* Added libbe.storage.base and test suite.W. Trevor King2009-12-081-0/+10
|
* Initial directory restructuring to clarify dependenciesW. Trevor King2009-12-075-0/+700