aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-14 08:45:20 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-14 08:45:20 -0500
commitc855cd95fb777e2eef36b9f4bc05a01d8dc571f8 (patch)
tree5d518956cb34a410a1833e88e61b220e056f0d6b
parentdf1d5b187ff68dc182a3b04294c3e37a8d580e49 (diff)
downloadbugseverywhere-c855cd95fb777e2eef36b9f4bc05a01d8dc571f8.tar.gz
Transitioned due to Command format
-rw-r--r--libbe/command/assign.py3
-rw-r--r--libbe/command/due.py100
2 files changed, 53 insertions, 50 deletions
diff --git a/libbe/command/assign.py b/libbe/command/assign.py
index f844610..e43a1bc 100644
--- a/libbe/command/assign.py
+++ b/libbe/command/assign.py
@@ -25,7 +25,7 @@ import libbe.command.util
class Assign (libbe.command.Command):
"""Assign an individual or group to fix a bug
- >>> import os, sys
+ >>> import sys
>>> import libbe.bugdir
>>> bd = libbe.bugdir.SimpleBugDir(memory=False)
>>> cmd = Assign()
@@ -52,7 +52,6 @@ class Assign (libbe.command.Command):
True
>>> bd.cleanup()
"""
-
name = 'assign'
def __init__(self, *args, **kwargs):
diff --git a/libbe/command/due.py b/libbe/command/due.py
index 0b8d1e9..372f10a 100644
--- a/libbe/command/due.py
+++ b/libbe/command/due.py
@@ -13,73 +13,77 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-"""Set bug due dates"""
-from libbe import cmdutil, bugdir, utility
-__desc__ = __doc__
-DUE_TAG="DUE:"
+import libbe
+import libbe.command
+import libbe.command.util
+import libbe.util.utility
-def execute(args, manipulate_encodings=True, restrict_file_access=False,
- dir="."):
- """
- >>> import os
- >>> bd = bugdir.SimpleBugDir()
- >>> bd.save()
- >>> os.chdir(bd.root)
- >>> execute(["a"], manipulate_encodings=False)
+DUE_TAG = 'DUE:'
+
+class Due (libbe.command.Command):
+ """Set bug due dates
+
+ >>> import sys
+ >>> import libbe.bugdir
+ >>> bd = libbe.bugdir.SimpleBugDir(memory=False)
+ >>> cmd = Due()
+ >>> cmd._setup_io = lambda i_enc,o_enc : None
+ >>> cmd.stdout = sys.stdout
+
+ >>> ret = cmd.run(bd.storage, bd, {}, ['/a'])
No due date assigned.
- >>> execute(["a", "Thu, 01 Jan 1970 00:00:00 +0000"], manipulate_encodings=False)
- >>> execute(["a"], manipulate_encodings=False)
+ >>> ret = cmd.run(bd.storage, bd, {}, ['/a', 'Thu, 01 Jan 1970 00:00:00 +0000'])
+ >>> ret = cmd.run(bd.storage, bd, {}, ['/a'])
Thu, 01 Jan 1970 00:00:00 +0000
- >>> execute(["a", "none"], manipulate_encodings=False) # doctest: +NORMALIZE_WHITESPACE
- >>> execute(["a"], manipulate_encodings=False)
+ >>> ret = cmd.run(bd.storage, bd, {}, ['/a', 'none'])
+ >>> ret = cmd.run(bd.storage, bd, {}, ['/a'])
No due date assigned.
>>> bd.cleanup()
"""
- parser = get_parser()
- options, args = parser.parse_args(args)
- cmdutil.default_complete(options, args, parser,
- bugid_args={0: lambda bug : bug.active==True})
-
- if len(args) not in (1, 2):
- raise cmdutil.UsageError('Incorrect number of arguments.')
- bd = bugdir.BugDir(from_disk=True,
- manipulate_encodings=manipulate_encodings,
- root=dir)
- bug = cmdutil.bug_from_id(bd, args[0])
- if len(args) == 1:
- due_time = get_due(bug)
- if due_time is None:
- print "No due date assigned."
- else:
- print utility.time_to_str(due_time)
- else:
- if args[1] == "none":
- remove_due(bug)
- else:
- due_time = utility.str_to_time(args[1])
- set_due(bug, due_time)
+ name = 'due'
+
+ def __init__(self, *args, **kwargs):
+ libbe.command.Command.__init__(self, *args, **kwargs)
+ self.requires_bugdir = True
+ self.args.extend([
+ libbe.command.Argument(
+ name='bug-id', metavar='BUG-ID',
+ completion_callback=libbe.command.util.complete_bug_id),
+ libbe.command.Argument(
+ name='due', metavar='DUE', optional=True),
+ ])
-def get_parser():
- parser = cmdutil.CmdOptionParser("be due BUG-ID [DATE]")
- return parser
+ def _run(self, storage, bugdir, **params):
+ bug,dummy_comment = libbe.command.util.bug_comment_from_user_id(
+ bugdir, params['bug-id'])
+ if params['due'] == None:
+ due_time = get_due(bug)
+ if due_time is None:
+ print >> self.stdout, 'No due date assigned.'
+ else:
+ print >> self.stdout, libbe.util.utility.time_to_str(due_time)
+ else:
+ if params['due'] == 'none':
+ remove_due(bug)
+ else:
+ due_time = libbe.util.utility.str_to_time(params['due'])
+ set_due(bug, due_time)
-longhelp="""
+ def _long_help(self):
+ return """
If no DATE is specified, the bug's current due date is printed. If
DATE is specified, it will be assigned to the bug.
"""
-def help():
- return get_parser().help_str() + longhelp
-
# internal helper functions
def _generate_due_string(time):
- return "%s%s" % (DUE_TAG, utility.time_to_str(time))
+ return "%s%s" % (DUE_TAG, libbe.util.utility.time_to_str(time))
def _parse_due_string(string):
assert string.startswith(DUE_TAG)
- return utility.str_to_time(string[len(DUE_TAG):])
+ return libbe.util.utility.str_to_time(string[len(DUE_TAG):])
# functions exposed to other modules