diff options
author | W. Trevor King <wking@drexel.edu> | 2009-08-31 13:43:32 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-08-31 13:43:32 -0400 |
commit | 6d3fc831cdbba47a90b03706f25af1682abe862b (patch) | |
tree | 488a20266ba19106940b6eb4d2f7d257f2d67ab6 /becommands/diff.py | |
parent | 8cfbfcdb25fd2663a23adb4f2f6730240bd0da25 (diff) | |
download | bugseverywhere-6d3fc831cdbba47a90b03706f25af1682abe862b.tar.gz |
RCS -> VCS, BUGDIR_DISK_VERSION -> v1.2
Diffstat (limited to 'becommands/diff.py')
-rw-r--r-- | becommands/diff.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/becommands/diff.py b/becommands/diff.py index 034823d..b6ac5b0 100644 --- a/becommands/diff.py +++ b/becommands/diff.py @@ -25,12 +25,12 @@ def execute(args, manipulate_encodings=True): >>> import os >>> bd = bugdir.SimpleBugDir() >>> bd.set_sync_with_disk(True) - >>> original = bd.rcs.commit("Original status") + >>> original = bd.vcs.commit("Original status") >>> bug = bd.bug_from_uuid("a") >>> bug.status = "closed" - >>> changed = bd.rcs.commit("Closed bug a") + >>> changed = bd.vcs.commit("Closed bug a") >>> os.chdir(bd.root) - >>> if bd.rcs.versioned == True: + >>> if bd.vcs.versioned == True: ... execute([original], manipulate_encodings=False) ... else: ... print "Modified bugs:\\n a:cm: Bug A\\n Changed bug settings:\\n status: open -> closed" @@ -38,12 +38,12 @@ def execute(args, manipulate_encodings=True): a:cm: Bug A Changed bug settings: status: open -> closed - >>> if bd.rcs.versioned == True: + >>> if bd.vcs.versioned == True: ... execute(["--modified", original], manipulate_encodings=False) ... else: ... print "a" a - >>> if bd.rcs.versioned == False: + >>> if bd.vcs.versioned == False: ... execute([original], manipulate_encodings=False) ... else: ... print "This directory is not revision-controlled." @@ -61,11 +61,11 @@ def execute(args, manipulate_encodings=True): raise cmdutil.UsageError("Too many arguments.") bd = bugdir.BugDir(from_disk=True, manipulate_encodings=manipulate_encodings) - if bd.rcs.versioned == False: + if bd.vcs.versioned == False: print "This directory is not revision-controlled." else: if revision == None: # get the most recent revision - revision = bd.rcs.revision_id(-1) + revision = bd.vcs.revision_id(-1) old_bd = bd.duplicate_bugdir(revision) d = diff.Diff(old_bd, bd) tree = d.report_tree() @@ -104,10 +104,10 @@ def get_parser(): return parser longhelp=""" -Uses the RCS to compare the current tree with a previous tree, and +Uses the VCS to compare the current tree with a previous tree, and prints a pretty report. If REVISION is given, it is a specifier for the particular previous tree to use. Specifiers are specific to their -RCS. +VCS. For Arch your specifier must be a fully-qualified revision name. |