aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/util/subproc.py
Commit message (Collapse)AuthorAgeFilesLines
* Make BE working with non-ASCII username.Matěj Cepl2013-07-221-1/+3
| | | | Signed-off-by: Matěj Cepl <mcepl@redhat.com>
* Transition to libbe.LOG for loggingW. Trevor King2013-01-241-6/+3
| | | | | | | This makes it easier to tweak log verbosity and redirect logs to other handlers. For example, the WSGI servers are unstable with stderr closed, and crash with an IOError if they try to print a warning to stderr.
* Ran update-copyright.py.W. Trevor King2012-10-161-1/+1
|
* Remove util.subproc.Pipe, as we no longer use it in BE.W. Trevor King2012-02-251-139/+0
| | | | | | | | | | This was at one point used by `update_copyright.py`. Now that that is an external package (and doesn't use `Pipe` anymore either), we can safely remove this code. As a side benifit, the Pipe doctests will no longer be there to fail on OS X and other systems sufficiently different from my development box.
* Add update-copyright as a submodule and update release.py accordingly.W. Trevor King2012-02-161-3/+3
| | | | Also add `**kwargs` to `invoke` so we can specify the environment.
* Ran update-copyright.py.W. Trevor King2012-02-161-10/+10
|
* Run update_copyright.py.W. Trevor King2011-05-251-1/+2
|
* Add --notify to `be serve`.W. Trevor King2011-04-161-6/+19
|
* Cleanup libbe.util.subproc.Pipe docstring.W. Trevor King2011-04-151-8/+8
|
* Bumped to version 1.0.01.0.0Chris Ball2011-01-081-1/+1
|
* Ran update_copyright.pyW. Trevor King2010-06-221-11/+12
|
* Generate string properly in libbe.util.subproc.CommandErrorW. Trevor King2010-01-191-1/+1
|
* Updated copyright informationW. Trevor King2010-01-011-1/+1
|
* Fixed libbe.command.diff + ugly BugDir.duplicate_bugdir implementationW. Trevor King2009-12-151-4/+4
| | | | | | | | | | | | | | | | | | | | | 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.
* Initial directory restructuring to clarify dependenciesW. Trevor King2009-12-071-0/+223