aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command/status.py
Commit message (Collapse)AuthorAgeFilesLines
* Merget patch from Matthew Fernandez to fix some typosGianluca Montecchi2017-01-241-1/+1
|
* Ran update-copyright.py.W. Trevor King2012-10-161-1/+1
|
* Rewrite commands to use bugdirs instead of a single bugdir.W. Trevor King2012-08-291-5/+6
| | | | | | | 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 King2012-02-161-10/+10
|
* Run update_copyright.py.W. Trevor King2011-05-251-0/+2
|
* Move Tim Guirgies' help for status/severity overrides to .W. Trevor King2011-05-251-20/+2
|
* Remove "be set" reference in favour of actual helpTim Guirgies2011-05-251-1/+19
| | | | | | | | Because "be set severity blah" does not actually work, referring users there to set custom severity levels is just cruel (I spent a half hour trying to figure out what I was doing wrong). Thus, it is much easier to, at least for now, state in the help message what they must do in order to get custom severities and statuses.
* Teach be status --help to load per tree configTim Guirgies2011-05-251-0/+4
| | | | | | Again, there is discrepancy between severity.py and status.py. I thought this feature was extremely useful in severity.py and it should be put into status.py too.
* Bumped to version 1.0.01.0.0Chris Ball2011-01-081-1/+4
|
* Ran update_copyright.pyW. Trevor King2010-06-221-11/+12
|
* Updated copyright informationW. Trevor King2010-01-011-1/+1
|
* Added UserInterface and other improved abstractions for command handlingW. Trevor King2009-12-311-5/+8
|
* Fixed libbe.command.diff + ugly BugDir.duplicate_bugdir implementationW. Trevor King2009-12-151-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.
* Transitioned show to Command-formatW. Trevor King2009-12-151-2/+2
|
* Transitioned status to Command-formatW. Trevor King2009-12-141-79/+66
|
* Initial directory restructuring to clarify dependenciesW. Trevor King2009-12-071-0/+118