blob: d31adcc8e706f28398a26102c18b79dee87bafbc (
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
|
#!/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
__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 "%s: %s" % (name, desc)
else:
try:
try:
execute(sys.argv[1], sys.argv[2:])
except KeyError, e:
raise UserError("Unknown command \"%s\"" % e.args[0])
except UserError, e:
print e
sys.exit(1)
|