# Bazaar revision bundle v0.9 # # message: # simple rename of commands: # - 'deleted' to 'removed' # - 'renames' to 'renamed' # # original command names are aliased to the new commands. # # committer: Kevin Krouse # date: Sat 2007-08-25 15:44:42.913000107 -0700 === modified file bzrlib/builtins.py --- bzrlib/builtins.py +++ bzrlib/builtins.py @@ -962,7 +962,7 @@ source.create_checkout(to_location, revision_id, lightweight) -class cmd_renames(Command): +class cmd_renamed(Command): """Show list of renamed files. """ # TODO: Option to show renames between two historical versions. @@ -970,6 +970,7 @@ # TODO: Only show renames under dir, rather than in the whole branch. _see_also = ['status'] takes_args = ['dir?'] + aliases = ['renames'] @display_command def run(self, dir=u'.'): @@ -1487,7 +1488,7 @@ old_label=old_label, new_label=new_label) -class cmd_deleted(Command): +class cmd_removed(Command): """List files deleted in the working tree. """ # TODO: Show files deleted since a previous revision, or @@ -1498,6 +1499,7 @@ # if the directories are very large...) _see_also = ['status', 'ls'] takes_options = ['show-ids'] + aliases = ['deleted'] @display_command def run(self, show_ids=False): === modified directory // last-changed:bzr@robojudo.com-20070825224442-l88n07d ... yt2w8txav # revision id: bzr@robojudo.com-20070825224442-l88n07dyt2w8txav # sha1: 0648092b064766c333cee98ca506d32c5406ba9d # inventory sha1: fa59b6b51a2206753f22e8bd3eb071cf4a3c8957 # parent ids: # pqm@pqm.ubuntu.com-20070817132000-jr6dro4qkhf7uzwp # base id: pqm@pqm.ubuntu.com-20070817132000-jr6dro4qkhf7uzwp # properties: # branch-nick: bzr.134796-rename-commands # bugs: https://launchpad.net/bugs/134796 fixed