aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/ui/command_line.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-01-01 14:43:03 -0500
committerW. Trevor King <wking@drexel.edu>2010-01-01 14:43:03 -0500
commit5f26c407789a2f8fc51d89b6d0c590253b50c754 (patch)
treed28eea2fc972bdce77acddbcc9328ad316724f12 /libbe/ui/command_line.py
parentd313d3651ae5875fda86491e693e1963d2de91a5 (diff)
downloadbugseverywhere-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.py2
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'