aboutsummaryrefslogtreecommitdiffstats
path: root/becommands
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-05 22:00:04 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-05 22:00:04 -0500
commitfadbadc2bf763351ef572c5a584964f42b349f96 (patch)
tree3da2ca2c1934eac0054c19cd259053c5067b7d00 /becommands
parent0295c3f04ac457081559064ddf965dc507d04553 (diff)
downloadbugseverywhere-fadbadc2bf763351ef572c5a584964f42b349f96.tar.gz
Removed target stuff from becommands/list.py and tweaked options.
Now --status, --severity, and --assigned all use cmdutil.select_values() for nice whitelist/blacklist selection.
Diffstat (limited to 'becommands')
-rw-r--r--becommands/depend.py9
-rw-r--r--becommands/list.py54
2 files changed, 26 insertions, 37 deletions
diff --git a/becommands/depend.py b/becommands/depend.py
index d19845d..1a2b905 100644
--- a/becommands/depend.py
+++ b/becommands/depend.py
@@ -95,9 +95,9 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
return 0
allowed_status_values = \
- cmdutil.select_values(options.limit_status, bug.status_values)
+ cmdutil.select_values(options.status, bug.status_values)
allowed_severity_values = \
- cmdutil.select_values(options.limit_severity, bug.severity_values)
+ cmdutil.select_values(options.severity, bug.severity_values)
bugA = cmdutil.bug_from_id(bd, args[0])
@@ -149,10 +149,9 @@ def get_parser():
parser.add_option("-s", "--show-status", action="store_true",
dest="show_status", default=False,
help="Show status of blocking bugs")
- parser.add_option("--status", dest="limit_status", metavar="STATUS",
+ parser.add_option("--status", dest="status", metavar="STATUS",
help="Only show bugs matching the STATUS specifier")
- parser.add_option("--severity", dest="limit_severity",
- metavar="SEVERITY",
+ parser.add_option("--severity", dest="severity", metavar="SEVERITY",
help="Only show bugs matching the SEVERITY specifier")
parser.add_option("-t", "--tree-depth", metavar="DEPTH", default=None,
type="int", dest="tree_depth",
diff --git a/becommands/list.py b/becommands/list.py
index 2749228..fa5647b 100644
--- a/becommands/list.py
+++ b/becommands/list.py
@@ -33,8 +33,7 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
>>> os.chdir(bd.root)
>>> execute([], manipulate_encodings=False)
a:om: Bug A
- >>> execute(["--status", "all"], manipulate_encodings=False)
- a:om: Bug A
+ >>> execute(["--status", "closed"], manipulate_encodings=False)
b:cm: Bug B
>>> bd.cleanup()
"""
@@ -60,7 +59,7 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
if options.status == "all":
status = bug.status_values
else:
- status = options.status.split(',')
+ status = cmdutil.select_values(options.status, bug.status_values)
else:
status = []
if options.active == True:
@@ -78,7 +77,8 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
if options.severity == "all":
severity = bug.severity_values
else:
- severity = options.severity.split(',')
+ severity = cmdutil.select_values(options.severity,
+ bug.severity_values)
else:
severity = []
if options.wishlist == True:
@@ -93,7 +93,14 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
if options.assigned == "all":
assigned = "all"
else:
- assigned = options.assigned.split(',')
+ possible_assignees = []
+ for _bug in bd:
+ if _bug.assigned != None \
+ and not _bug.assigned in possible_assignees:
+ possible_assignees.append(_bug.assigned)
+ assigned = cmdutil.select_values(options.assigned,
+ possible_assignees)
+ print 'assigned', assigned
else:
assigned = []
if options.mine == True:
@@ -103,18 +110,6 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
for i in range(len(assigned)):
if assigned[i] == '-':
assigned[i] = bd.user_id
- # select target
- if options.target != None:
- if options.target == "all":
- target = "all"
- else:
- target = options.target.split(',')
- else:
- target = []
- if options.cur_target == True:
- target.append(bd.target)
- if target == []: # set the default value
- target = "all"
if options.extra_strings != None:
extra_string_regexps = [re.compile(x) for x in options.extra_strings.split(',')]
@@ -125,8 +120,6 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
return False
if assigned != "all" and not bug.assigned in assigned:
return False
- if target != "all" and not bug.target in target:
- return False
if options.extra_strings != None:
if len(bug.extra_strings) == 0 and len(extra_string_regexps) > 0:
return False
@@ -167,29 +160,26 @@ def execute(args, manipulate_encodings=True, restrict_file_access=False):
def get_parser():
parser = cmdutil.CmdOptionParser("be list [options]")
- parser.add_option("-s", "--status", metavar="STATUS", dest="status",
- help="List bugs matching STATUS", default=None)
- parser.add_option("-v", "--severity", metavar="SEVERITY", dest="severity",
- help="List bugs matching SEVERITY", default=None)
+ parser.add_option("--status", dest="status", metavar="STATUS",
+ help="Only show bugs matching the STATUS specifier")
+ parser.add_option("--severity", dest="severity", metavar="SEVERITY",
+ help="Only show bugs matching the SEVERITY specifier")
parser.add_option("-a", "--assigned", metavar="ASSIGNED", dest="assigned",
help="List bugs matching ASSIGNED", default=None)
- parser.add_option("-t", "--target", metavar="TARGET", dest="target",
- help="List bugs matching TARGET", default=None)
parser.add_option("-e", "--extra-strings", metavar="STRINGS", dest="extra_strings",
help="List bugs matching _all_ extra strings in comma-seperated list STRINGS. e.g. --extra-strings TAG:working,TAG:xml", default=None)
parser.add_option("-S", "--sort", metavar="SORT-BY", dest="sort_by",
help="Adjust bug-sort criteria with comma-separated list SORT-BY. e.g. \"--sort creator,time\". Available criteria: %s" % ','.join(AVAILABLE_CMPS), default=None)
# boolean options. All but uuids and xml are special cases of long forms
bools = (("u", "uuids", "Only print the bug UUIDS"),
+ ("x", "xml", "Dump as XML"),
("w", "wishlist", "List bugs with 'wishlist' severity"),
("i", "important", "List bugs with >= 'serious' severity"),
("A", "active", "List all active bugs"),
("U", "unconfirmed", "List unconfirmed bugs"),
("o", "open", "List open bugs"),
("T", "test", "List bugs in testing"),
- ("m", "mine", "List bugs assigned to you"),
- ("c", "cur-target", "List bugs for the current target"),
- ("x", "xml", "Dump as XML"))
+ ("m", "mine", "List bugs assigned to you"))
for s in bools:
attr = s[1].replace('-','_')
short = "-%c" % s[0]
@@ -216,10 +206,12 @@ There are several criteria that you can filter by:
* status
* severity
* assigned (who the bug is assigned to)
- * target (bugfix deadline)
Allowed values for each criterion may be given in a comma seperated
list. The special string "all" may be used with any of these options
-to match all values of the criterion.
+to match all values of the criterion. As with the --status and
+--severity options for `be depend`, starting the list with a minus
+sign makes your selections a blacklist instead of the default
+whitelist.
status
%s
@@ -227,8 +219,6 @@ severity
%s
assigned
free form, with the string '-' being a shortcut for yourself.
-target
- free form
In addition, there are some shortcut options that set boolean flags.
The boolean options are ignored if the matching string option is used.