Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Ran update-copyright.py. | W. Trevor King | 2012-10-16 | 1 | -1/+1 |
| | |||||
* | Rewrite commands to use bugdirs instead of a single bugdir. | W. Trevor King | 2012-08-29 | 1 | -9/+13 |
| | | | | | | | The bulk of the work is in regard to XML, with new BugDir.xml and .from_xml methods to support the new <bugdir> entity. I also split the guts import_xml's ._run method into sub-methods to make the import logic more obvious. | ||||
* | Ran update-copyright.py. | W. Trevor King | 2012-02-16 | 1 | -10/+10 |
| | |||||
* | Run update_copyright.py. | W. Trevor King | 2011-05-25 | 1 | -0/+2 |
| | |||||
* | Merge commit 'refs/merge-requests/3' of git://gitorious.org/be/be | Chris Ball | 2011-01-08 | 1 | -2/+4 |
|\ | |||||
| * | Respected all sorting criteria, not only the last. | Robert Lehmann | 2010-11-26 | 1 | -1/+1 |
| | | |||||
| * | Safeguard List._sort_bugs from accumulating values in its default parameters. | Robert Lehmann | 2010-11-26 | 1 | -1/+3 |
| | | |||||
| * | Use a clean getattr() instead of eval(). | Robert Lehmann | 2010-11-26 | 1 | -1/+1 |
| | | |||||
* | | Bumped to version 1.0.01.0.0 | Chris Ball | 2011-01-08 | 1 | -1/+1 |
|/ | |||||
* | Move Filter, parse_status, and parse_severity from list to depend. | W. Trevor King | 2010-10-28 | 1 | -66/+1 |
| | | | | This breaks an import dependency cycle. | ||||
* | libbe.command.depend now shares libbe.command.list's status/severity parsing ↵ | W. Trevor King | 2010-10-28 | 1 | -19/+27 |
| | | | | for consistency. | ||||
* | Fixed `list --sort ...` bug. | W. Trevor King | 2010-10-28 | 1 | -1/+3 |
| | |||||
* | Add `list --sort time` test reproducing Gianluca's bug. | W. Trevor King | 2010-10-28 | 1 | -0/+1 |
| | |||||
* | `be list` without --extra-strings now lists bugs with extra strings. | W. Trevor King | 2010-06-26 | 1 | -1/+1 |
| | | | | | The previous implementation would not show them unless an explicitly matching regexp was passed in with --extra-strings. | ||||
* | Reworked `be list --extra-strings REGEXP` logic. | W. Trevor King | 2010-06-25 | 1 | -2/+8 |
| | | | | | | Previous implementation only matched if *every* regexp matched *every* string. Current implementation matches is *any* regexp matches *any* string. | ||||
* | Added --tags to `be list`. | W. Trevor King | 2010-06-25 | 1 | -4/+16 |
| | | | | | And broke out tagging functions in libbe.command.tag, so they are accessible to other commands. | ||||
* | Ran update_copyright.py | W. Trevor King | 2010-06-22 | 1 | -12/+13 |
| | |||||
* | Fixed List --severity handling, added --important | W. Trevor King | 2010-01-23 | 1 | -2/+3 |
| | |||||
* | Modern ID format in `be list` _long_help | W. Trevor King | 2010-01-23 | 1 | -5/+5 |
| | |||||
* | Fix typos in untested parts of List and Import_XML for test_usage.py | W. Trevor King | 2010-01-23 | 1 | -3/+3 |
| | |||||
* | Added `be list --mine` | W. Trevor King | 2010-01-23 | 1 | -6/+10 |
| | |||||
* | Converted `be list --xml` to <be-xml> format. | W. Trevor King | 2010-01-21 | 1 | -2/+2 |
| | | | | | | | | Fixed up be-xml-to-mbox following the recent libbe restructuring. Moved stdout manipulation in be-mail-to-xml into the if __name__ == '__main__' block, in case some other module wants to recycle some of its functions/methods. | ||||
* | Add entry points for functionality needed by CFBE (and probably other UIs) | W. Trevor King | 2010-01-20 | 1 | -13/+23 |
| | |||||
* | Changed `be list --uuids` to `be list --ids` | W. Trevor King | 2010-01-03 | 1 | -5/+5 |
| | |||||
* | Updated copyright information | W. Trevor King | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | Added UserInterface and other improved abstractions for command handling | W. Trevor King | 2009-12-31 | 1 | -6/+8 |
| | |||||
* | Fixed libbe.command.diff + ugly BugDir.duplicate_bugdir implementation | W. Trevor King | 2009-12-15 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | 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 severity to Command-format, also added Command._get_*() | W. Trevor King | 2009-12-14 | 1 | -4/+6 |
| | | | | | | | | | | | | | | 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 merge to Command-format | W. Trevor King | 2009-12-14 | 1 | -2/+2 |
| | |||||
* | Transitioned depend to Command format | W. Trevor King | 2009-12-14 | 1 | -2/+3 |
| | |||||
* | Transitioned init to Command format | W. Trevor King | 2009-12-14 | 1 | -3/+3 |
| | |||||
* | Transitioned assign to Command format | W. Trevor King | 2009-12-14 | 1 | -16/+11 |
| | |||||
* | Converted libbe.storage.vcs.base to new Storage format. | W. Trevor King | 2009-12-13 | 1 | -7/+9 |
| | |||||
* | Moved be to libbe.ui.command_line and transitioned to Command format. | W. Trevor King | 2009-12-12 | 1 | -0/+1 |
| | |||||
* | Moved command completion from libbe.ui.util to libbe.command.util | W. Trevor King | 2009-12-12 | 1 | -11/+10 |
| | |||||
* | Added libbe.command.base (with Command class) and moved list command to new ↵ | W. Trevor King | 2009-12-12 | 1 | -159/+181 |
| | | | | format. | ||||
* | Initial directory restructuring to clarify dependencies | W. Trevor King | 2009-12-07 | 1 | -0/+240 |