diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-01 14:43:03 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-01 14:43:03 -0500 |
commit | 5f26c407789a2f8fc51d89b6d0c590253b50c754 (patch) | |
tree | d28eea2fc972bdce77acddbcc9328ad316724f12 /libbe/ui/command_line.py | |
parent | d313d3651ae5875fda86491e693e1963d2de91a5 (diff) | |
download | bugseverywhere-5f26c407789a2f8fc51d89b6d0c590253b50c754.tar.gz |
Added libbe.command.serve and libbe.storage.http for HTTP backend.
Now the following works:
some-BE-dir$ ./be serve
$ ./be --repo http://localhost:8000 list
I haven't come up with a clean idea for testing this yet, so other
commands may be broken, but once we get the testing working, it
shouldn't be too hard to get everything working over HTTP :).
Diffstat (limited to 'libbe/ui/command_line.py')
-rw-r--r-- | libbe/ui/command_line.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/ui/command_line.py b/libbe/ui/command_line.py index f57983f..7ba6cf5 100644 --- a/libbe/ui/command_line.py +++ b/libbe/ui/command_line.py @@ -299,7 +299,7 @@ def main(): command = Class(ui=ui) ui.setup_command(command) - if command.name in ['comment', 'commit']: + if command.name in ['comment', 'commit', 'serve']: paginate = 'never' else: paginate = 'auto' |