blob: b7ca7263723a671239e7df4ac751eb6292549f20 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/usr/bin/env python
from libbe.cmdutil import *
from libbe.bugdir import tree_root, create_bug_dir
from libbe import names, plugin, cmdutil
import sys
import os
import becommands.severity
import becommands.list
import becommands.show
import becommands.set_root
import becommands.new
import becommands.close
import becommands.open
import becommands.inprogress
__doc__ = """Bugs Everywhere - Distributed bug tracking
Supported becommands
set-root: assign the root directory for bug tracking
new: Create a new bug
list: list bugs
show: show a particular bug
close: close a bug
open: re-open a bug
severity: %s
Unimplemented becommands
comment: append a comment to a bug
""" % becommands.severity.__desc__
if len(sys.argv) == 1:
cmdlist = []
print """Bugs Everywhere - Distributed bug tracking
Supported commands"""
for name, module in cmdutil.iter_commands():
cmdlist.append((name, module.__doc__))
for name, desc in cmdlist:
print "be %s\n %s" % (name, desc)
else:
try:
try:
sys.exit(execute(sys.argv[1], sys.argv[2:]))
except KeyError, e:
raise UserError("Unknown command \"%s\"" % e.args[0])
except cmdutil.GetHelp:
print cmdutil.help(sys.argv[1])
sys.exit(0)
except cmdutil.UsageError:
print cmdutil.help(sys.argv[1])
sys.exit(1)
except UserError, e:
print e
sys.exit(1)
|