aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/new.py
Commit message (Collapse)AuthorAgeFilesLines
* Use _get_user_id() in New, remove unused 'user-id' prop. from Commit.W. Trevor King2010-01-211-0/+6
| | | | | Added creator field to bugs without creator information. Mostly this is due to the recent lack of creator-setting in `be new`.
* Updated copyright informationW. Trevor King2010-01-011-1/+1
|
* Added UserInterface and other improved abstractions for command handlingW. Trevor King2009-12-311-4/+6
|
* Transition to Command-format complete.W. Trevor King2009-12-151-0/+2
| | | | | | | | 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 severity to Command-format, also added Command._get_*()W. Trevor King2009-12-141-3/+4
| | | | | | | | | | | | | | The old .requires_* thing was rediculous. The new ._get_*() callbacks allow the caller to provide a means for getting the expensive structures, which the command can use, or not, as required. This will also make it easier to implement the completion callbacks. The callbacks should probably have matching .set_*() methods, to avoid the current cache tweaking cmd._storage = ... etc. But that can wait for now...
* Transitioned new to Command-formatW. Trevor King2009-12-141-49/+58
|
* Initial directory restructuring to clarify dependenciesW. Trevor King2009-12-071-0/+83