aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorMatthew Fernandez <matthew.fernandez@gmail.com>2017-11-02 22:13:18 -0700
committerMatthew Fernandez <matthew.fernandez@gmail.com>2017-11-07 20:45:10 -0800
commit320908419788ca67f81cb869bed7249dab1be8a4 (patch)
treedff1a7d12784fa9cf689452f0a122c14c3c63550 /misc
parentf68ab95164dc5ba4ca198e25b7401b06d690e699 (diff)
downloadbugseverywhere-320908419788ca67f81cb869bed7249dab1be8a4.tar.gz
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.
Diffstat (limited to 'misc')
-rw-r--r--misc/completion/be.zsh15
1 files changed, 0 insertions, 15 deletions
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