From 320908419788ca67f81cb869bed7249dab1be8a4 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Thu, 2 Nov 2017 22:13:18 -0700 Subject: remove serve-storage and HTTP storage driver This functionality is now better fulfilled by using an off-the-shelf network file system technology to share the BE object directory. This has the advantage of a more comprehensive and integrated security model as well. --- misc/completion/be.zsh | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'misc') diff --git a/misc/completion/be.zsh b/misc/completion/be.zsh index 1d6744e..dee8017 100644 --- a/misc/completion/be.zsh +++ b/misc/completion/be.zsh @@ -21,7 +21,6 @@ __be_commands () { merge:'Merge duplicate bugs' new:'Create a new bug' remove:'Remove (delete) a bug and its comments' - serve:'Serve bug directory storage over HTTP' set:'Change bug directory settings' severity:'Change a bug’s severity level' show:'Show a particular bug, comment, or combination of both' @@ -226,20 +225,6 @@ _be-remove () { && return 0 } -_be-serve () { - local curcontext="$curcontext" state line expl ret=1 - - _arguments -C \ - '(-h --help)'{-h,--help}'[Print a help message]' \ - '--complete[Print a list of possible completions]' \ - '--port=-[Bind server to port]' \ - '--host=-[Set host string]' \ - '(-r --read-only)'{-r,--read-only}'[Disable operations that require writing]' \ - '(-n --notify)'{-n,--notify=-}'[Send notification emails for changes]' \ - '(-s --ssl)'{-s,--ssl}'[Use CherryPy to serve HTTPS (HTTP over SSL/TLS)]' \ - && return 0 -} - _be-set () { local curcontext="$curcontext" state line expl ret=1 -- cgit