~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-11 04:02:41 UTC
  • mfrom: (5017.2.2 tariff)
  • Revision ID: pqm@pqm.ubuntu.com-20100211040241-w6n021dz0uus341n
(mbp) add import-tariff tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
from bzrlib.lazy_import import lazy_import
22
22
lazy_import(globals(), """
 
23
import codecs
23
24
import cStringIO
24
25
import sys
25
26
import time
32
33
    bzrdir,
33
34
    directory_service,
34
35
    delta,
35
 
    config as _mod_config,
 
36
    config,
36
37
    errors,
37
38
    globbing,
38
39
    hooks,
53
54
    )
54
55
from bzrlib.branch import Branch
55
56
from bzrlib.conflicts import ConflictList
56
 
from bzrlib.transport import memory
57
57
from bzrlib.revisionspec import RevisionSpec, RevisionInfo
58
58
from bzrlib.smtp_connection import SMTPConnection
59
59
from bzrlib.workingtree import WorkingTree
60
60
""")
61
61
 
62
 
from bzrlib.commands import (
63
 
    Command,
64
 
    builtin_command_registry,
65
 
    display_command,
66
 
    )
 
62
from bzrlib.commands import Command, display_command
67
63
from bzrlib.option import (
68
64
    ListOption,
69
65
    Option,
74
70
from bzrlib.trace import mutter, note, warning, is_quiet, get_verbosity_level
75
71
 
76
72
 
77
 
@symbol_versioning.deprecated_function(symbol_versioning.deprecated_in((2, 3, 0)))
78
73
def tree_files(file_list, default_branch=u'.', canonicalize=True,
79
74
    apply_view=True):
80
 
    return internal_tree_files(file_list, default_branch, canonicalize,
81
 
        apply_view)
 
75
    try:
 
76
        return internal_tree_files(file_list, default_branch, canonicalize,
 
77
            apply_view)
 
78
    except errors.FileInWrongBranch, e:
 
79
        raise errors.BzrCommandError("%s is not in the same branch as %s" %
 
80
                                     (e.path, file_list[0]))
82
81
 
83
82
 
84
83
def tree_files_for_add(file_list):
148
147
 
149
148
# XXX: Bad function name; should possibly also be a class method of
150
149
# WorkingTree rather than a function.
151
 
@symbol_versioning.deprecated_function(symbol_versioning.deprecated_in((2, 3, 0)))
152
150
def internal_tree_files(file_list, default_branch=u'.', canonicalize=True,
153
151
    apply_view=True):
154
152
    """Convert command-line paths to a WorkingTree and relative paths.
155
153
 
156
 
    Deprecated: use WorkingTree.open_containing_paths instead.
157
 
 
158
154
    This is typically used for command-line processors that take one or
159
155
    more filenames, and infer the workingtree that contains them.
160
156
 
170
166
 
171
167
    :return: workingtree, [relative_paths]
172
168
    """
173
 
    return WorkingTree.open_containing_paths(
174
 
        file_list, default_directory='.',
175
 
        canonicalize=True,
176
 
        apply_view=True)
 
169
    if file_list is None or len(file_list) == 0:
 
170
        tree = WorkingTree.open_containing(default_branch)[0]
 
171
        if tree.supports_views() and apply_view:
 
172
            view_files = tree.views.lookup_view()
 
173
            if view_files:
 
174
                file_list = view_files
 
175
                view_str = views.view_display_str(view_files)
 
176
                note("Ignoring files outside view. View is %s" % view_str)
 
177
        return tree, file_list
 
178
    tree = WorkingTree.open_containing(osutils.realpath(file_list[0]))[0]
 
179
    return tree, safe_relpath_files(tree, file_list, canonicalize,
 
180
        apply_view=apply_view)
 
181
 
 
182
 
 
183
def safe_relpath_files(tree, file_list, canonicalize=True, apply_view=True):
 
184
    """Convert file_list into a list of relpaths in tree.
 
185
 
 
186
    :param tree: A tree to operate on.
 
187
    :param file_list: A list of user provided paths or None.
 
188
    :param apply_view: if True and a view is set, apply it or check that
 
189
        specified files are within it
 
190
    :return: A list of relative paths.
 
191
    :raises errors.PathNotChild: When a provided path is in a different tree
 
192
        than tree.
 
193
    """
 
194
    if file_list is None:
 
195
        return None
 
196
    if tree.supports_views() and apply_view:
 
197
        view_files = tree.views.lookup_view()
 
198
    else:
 
199
        view_files = []
 
200
    new_list = []
 
201
    # tree.relpath exists as a "thunk" to osutils, but canonical_relpath
 
202
    # doesn't - fix that up here before we enter the loop.
 
203
    if canonicalize:
 
204
        fixer = lambda p: osutils.canonical_relpath(tree.basedir, p)
 
205
    else:
 
206
        fixer = tree.relpath
 
207
    for filename in file_list:
 
208
        try:
 
209
            relpath = fixer(osutils.dereference_path(filename))
 
210
            if  view_files and not osutils.is_inside_any(view_files, relpath):
 
211
                raise errors.FileOutsideView(filename, view_files)
 
212
            new_list.append(relpath)
 
213
        except errors.PathNotChild:
 
214
            raise errors.FileInWrongBranch(tree.branch, filename)
 
215
    return new_list
177
216
 
178
217
 
179
218
def _get_view_info_for_change_reporter(tree):
188
227
    return view_info
189
228
 
190
229
 
191
 
def _open_directory_or_containing_tree_or_branch(filename, directory):
192
 
    """Open the tree or branch containing the specified file, unless
193
 
    the --directory option is used to specify a different branch."""
194
 
    if directory is not None:
195
 
        return (None, Branch.open(directory), filename)
196
 
    return bzrdir.BzrDir.open_containing_tree_or_branch(filename)
197
 
 
198
 
 
199
230
# TODO: Make sure no commands unconditionally use the working directory as a
200
231
# branch.  If a filename argument is used, the first of them should be used to
201
232
# specify the branch.  (Perhaps this can be factored out into some kind of
203
234
# opens the branch?)
204
235
 
205
236
class cmd_status(Command):
206
 
    __doc__ = """Display status summary.
 
237
    """Display status summary.
207
238
 
208
239
    This reports on versioned and unknown files, reporting them
209
240
    grouped by state.  Possible states are:
279
310
            raise errors.BzrCommandError('bzr status --revision takes exactly'
280
311
                                         ' one or two revision specifiers')
281
312
 
282
 
        tree, relfile_list = WorkingTree.open_containing_paths(file_list)
 
313
        tree, relfile_list = tree_files(file_list)
283
314
        # Avoid asking for specific files when that is not needed.
284
315
        if relfile_list == ['']:
285
316
            relfile_list = None
296
327
 
297
328
 
298
329
class cmd_cat_revision(Command):
299
 
    __doc__ = """Write out metadata for a revision.
 
330
    """Write out metadata for a revision.
300
331
 
301
332
    The revision to print can either be specified by a specific
302
333
    revision identifier, or you can use --revision.
304
335
 
305
336
    hidden = True
306
337
    takes_args = ['revision_id?']
307
 
    takes_options = ['directory', 'revision']
 
338
    takes_options = ['revision']
308
339
    # cat-revision is more for frontends so should be exact
309
340
    encoding = 'strict'
310
341
 
311
 
    def print_revision(self, revisions, revid):
312
 
        stream = revisions.get_record_stream([(revid,)], 'unordered', True)
313
 
        record = stream.next()
314
 
        if record.storage_kind == 'absent':
315
 
            raise errors.NoSuchRevision(revisions, revid)
316
 
        revtext = record.get_bytes_as('fulltext')
317
 
        self.outf.write(revtext.decode('utf-8'))
318
 
 
319
342
    @display_command
320
 
    def run(self, revision_id=None, revision=None, directory=u'.'):
 
343
    def run(self, revision_id=None, revision=None):
321
344
        if revision_id is not None and revision is not None:
322
345
            raise errors.BzrCommandError('You can only supply one of'
323
346
                                         ' revision_id or --revision')
324
347
        if revision_id is None and revision is None:
325
348
            raise errors.BzrCommandError('You must supply either'
326
349
                                         ' --revision or a revision_id')
327
 
        b = WorkingTree.open_containing(directory)[0].branch
328
 
 
329
 
        revisions = b.repository.revisions
330
 
        if revisions is None:
331
 
            raise errors.BzrCommandError('Repository %r does not support '
332
 
                'access to raw revision texts')
333
 
 
334
 
        b.repository.lock_read()
335
 
        try:
336
 
            # TODO: jam 20060112 should cat-revision always output utf-8?
337
 
            if revision_id is not None:
338
 
                revision_id = osutils.safe_revision_id(revision_id, warn=False)
339
 
                try:
340
 
                    self.print_revision(revisions, revision_id)
341
 
                except errors.NoSuchRevision:
342
 
                    msg = "The repository %s contains no revision %s." % (
343
 
                        b.repository.base, revision_id)
344
 
                    raise errors.BzrCommandError(msg)
345
 
            elif revision is not None:
346
 
                for rev in revision:
347
 
                    if rev is None:
348
 
                        raise errors.BzrCommandError(
349
 
                            'You cannot specify a NULL revision.')
350
 
                    rev_id = rev.as_revision_id(b)
351
 
                    self.print_revision(revisions, rev_id)
352
 
        finally:
353
 
            b.repository.unlock()
354
 
        
 
350
        b = WorkingTree.open_containing(u'.')[0].branch
 
351
 
 
352
        # TODO: jam 20060112 should cat-revision always output utf-8?
 
353
        if revision_id is not None:
 
354
            revision_id = osutils.safe_revision_id(revision_id, warn=False)
 
355
            try:
 
356
                self.outf.write(b.repository.get_revision_xml(revision_id).decode('utf-8'))
 
357
            except errors.NoSuchRevision:
 
358
                msg = "The repository %s contains no revision %s." % (b.repository.base,
 
359
                    revision_id)
 
360
                raise errors.BzrCommandError(msg)
 
361
        elif revision is not None:
 
362
            for rev in revision:
 
363
                if rev is None:
 
364
                    raise errors.BzrCommandError('You cannot specify a NULL'
 
365
                                                 ' revision.')
 
366
                rev_id = rev.as_revision_id(b)
 
367
                self.outf.write(b.repository.get_revision_xml(rev_id).decode('utf-8'))
 
368
 
355
369
 
356
370
class cmd_dump_btree(Command):
357
 
    __doc__ = """Dump the contents of a btree index file to stdout.
 
371
    """Dump the contents of a btree index file to stdout.
358
372
 
359
373
    PATH is a btree index file, it can be any URL. This includes things like
360
374
    .bzr/repository/pack-names, or .bzr/repository/indices/a34b3a...ca4a4.iix
424
438
        for node in bt.iter_all_entries():
425
439
            # Node is made up of:
426
440
            # (index, key, value, [references])
427
 
            try:
428
 
                refs = node[3]
429
 
            except IndexError:
430
 
                refs_as_tuples = None
431
 
            else:
432
 
                refs_as_tuples = static_tuple.as_tuples(refs)
 
441
            refs_as_tuples = static_tuple.as_tuples(node[3])
433
442
            as_tuple = (tuple(node[1]), node[2], refs_as_tuples)
434
443
            self.outf.write('%s\n' % (as_tuple,))
435
444
 
436
445
 
437
446
class cmd_remove_tree(Command):
438
 
    __doc__ = """Remove the working tree from a given branch/checkout.
 
447
    """Remove the working tree from a given branch/checkout.
439
448
 
440
449
    Since a lightweight checkout is little more than a working tree
441
450
    this will refuse to run against one.
443
452
    To re-create the working tree, use "bzr checkout".
444
453
    """
445
454
    _see_also = ['checkout', 'working-trees']
446
 
    takes_args = ['location*']
 
455
    takes_args = ['location?']
447
456
    takes_options = [
448
457
        Option('force',
449
458
               help='Remove the working tree even if it has '
450
 
                    'uncommitted or shelved changes.'),
 
459
                    'uncommitted changes.'),
451
460
        ]
452
461
 
453
 
    def run(self, location_list, force=False):
454
 
        if not location_list:
455
 
            location_list=['.']
456
 
 
457
 
        for location in location_list:
458
 
            d = bzrdir.BzrDir.open(location)
459
 
            
460
 
            try:
461
 
                working = d.open_workingtree()
462
 
            except errors.NoWorkingTree:
463
 
                raise errors.BzrCommandError("No working tree to remove")
464
 
            except errors.NotLocalUrl:
465
 
                raise errors.BzrCommandError("You cannot remove the working tree"
466
 
                                             " of a remote path")
467
 
            if not force:
468
 
                if (working.has_changes()):
469
 
                    raise errors.UncommittedChanges(working)
470
 
                if working.get_shelf_manager().last_shelf() is not None:
471
 
                    raise errors.ShelvedChanges(working)
472
 
 
473
 
            if working.user_url != working.branch.user_url:
474
 
                raise errors.BzrCommandError("You cannot remove the working tree"
475
 
                                             " from a lightweight checkout")
476
 
 
477
 
            d.destroy_workingtree()
 
462
    def run(self, location='.', force=False):
 
463
        d = bzrdir.BzrDir.open(location)
 
464
 
 
465
        try:
 
466
            working = d.open_workingtree()
 
467
        except errors.NoWorkingTree:
 
468
            raise errors.BzrCommandError("No working tree to remove")
 
469
        except errors.NotLocalUrl:
 
470
            raise errors.BzrCommandError("You cannot remove the working tree"
 
471
                                         " of a remote path")
 
472
        if not force:
 
473
            if (working.has_changes()):
 
474
                raise errors.UncommittedChanges(working)
 
475
 
 
476
        working_path = working.bzrdir.root_transport.base
 
477
        branch_path = working.branch.bzrdir.root_transport.base
 
478
        if working_path != branch_path:
 
479
            raise errors.BzrCommandError("You cannot remove the working tree"
 
480
                                         " from a lightweight checkout")
 
481
 
 
482
        d.destroy_workingtree()
478
483
 
479
484
 
480
485
class cmd_revno(Command):
481
 
    __doc__ = """Show current revision number.
 
486
    """Show current revision number.
482
487
 
483
488
    This is equal to the number of revisions on this branch.
484
489
    """
494
499
        if tree:
495
500
            try:
496
501
                wt = WorkingTree.open_containing(location)[0]
497
 
                self.add_cleanup(wt.lock_read().unlock)
 
502
                wt.lock_read()
498
503
            except (errors.NoWorkingTree, errors.NotLocalUrl):
499
504
                raise errors.NoWorkingTree(location)
 
505
            self.add_cleanup(wt.unlock)
500
506
            revid = wt.last_revision()
501
507
            try:
502
508
                revno_t = wt.branch.revision_id_to_dotted_revno(revid)
505
511
            revno = ".".join(str(n) for n in revno_t)
506
512
        else:
507
513
            b = Branch.open_containing(location)[0]
508
 
            self.add_cleanup(b.lock_read().unlock)
 
514
            b.lock_read()
 
515
            self.add_cleanup(b.unlock)
509
516
            revno = b.revno()
510
517
        self.cleanup_now()
511
518
        self.outf.write(str(revno) + '\n')
512
519
 
513
520
 
514
521
class cmd_revision_info(Command):
515
 
    __doc__ = """Show revision number and revision id for a given revision identifier.
 
522
    """Show revision number and revision id for a given revision identifier.
516
523
    """
517
524
    hidden = True
518
525
    takes_args = ['revision_info*']
519
526
    takes_options = [
520
527
        'revision',
521
 
        custom_help('directory',
 
528
        Option('directory',
522
529
            help='Branch to examine, '
523
 
                 'rather than the one containing the working directory.'),
 
530
                 'rather than the one containing the working directory.',
 
531
            short_name='d',
 
532
            type=unicode,
 
533
            ),
524
534
        Option('tree', help='Show revno of working tree'),
525
535
        ]
526
536
 
531
541
        try:
532
542
            wt = WorkingTree.open_containing(directory)[0]
533
543
            b = wt.branch
534
 
            self.add_cleanup(wt.lock_read().unlock)
 
544
            wt.lock_read()
 
545
            self.add_cleanup(wt.unlock)
535
546
        except (errors.NoWorkingTree, errors.NotLocalUrl):
536
547
            wt = None
537
548
            b = Branch.open_containing(directory)[0]
538
 
            self.add_cleanup(b.lock_read().unlock)
 
549
            b.lock_read()
 
550
            self.add_cleanup(b.unlock)
539
551
        revision_ids = []
540
552
        if revision is not None:
541
553
            revision_ids.extend(rev.as_revision_id(b) for rev in revision)
569
581
 
570
582
 
571
583
class cmd_add(Command):
572
 
    __doc__ = """Add specified files or directories.
 
584
    """Add specified files or directories.
573
585
 
574
586
    In non-recursive mode, all the named items are added, regardless
575
587
    of whether they were previously ignored.  A warning is given if
640
652
                should_print=(not is_quiet()))
641
653
 
642
654
        if base_tree:
643
 
            self.add_cleanup(base_tree.lock_read().unlock)
 
655
            base_tree.lock_read()
 
656
            self.add_cleanup(base_tree.unlock)
644
657
        tree, file_list = tree_files_for_add(file_list)
645
658
        added, ignored = tree.smart_add(file_list, not
646
659
            no_recurse, action=action, save=not dry_run)
654
667
 
655
668
 
656
669
class cmd_mkdir(Command):
657
 
    __doc__ = """Create a new versioned directory.
 
670
    """Create a new versioned directory.
658
671
 
659
672
    This is equivalent to creating the directory and then adding it.
660
673
    """
664
677
 
665
678
    def run(self, dir_list):
666
679
        for d in dir_list:
 
680
            os.mkdir(d)
667
681
            wt, dd = WorkingTree.open_containing(d)
668
 
            base = os.path.dirname(dd)
669
 
            id = wt.path2id(base)
670
 
            if id != None:
671
 
                os.mkdir(d)
672
 
                wt.add([dd])
673
 
                self.outf.write('added %s\n' % d)
674
 
            else:
675
 
                raise errors.NotVersionedError(path=base)
 
682
            wt.add([dd])
 
683
            self.outf.write('added %s\n' % d)
676
684
 
677
685
 
678
686
class cmd_relpath(Command):
679
 
    __doc__ = """Show path of a file relative to root"""
 
687
    """Show path of a file relative to root"""
680
688
 
681
689
    takes_args = ['filename']
682
690
    hidden = True
691
699
 
692
700
 
693
701
class cmd_inventory(Command):
694
 
    __doc__ = """Show inventory of the current working copy or a revision.
 
702
    """Show inventory of the current working copy or a revision.
695
703
 
696
704
    It is possible to limit the output to a particular entry
697
705
    type using the --kind option.  For example: --kind file.
717
725
            raise errors.BzrCommandError('invalid kind %r specified' % (kind,))
718
726
 
719
727
        revision = _get_one_revision('inventory', revision)
720
 
        work_tree, file_list = WorkingTree.open_containing_paths(file_list)
721
 
        self.add_cleanup(work_tree.lock_read().unlock)
 
728
        work_tree, file_list = tree_files(file_list)
 
729
        work_tree.lock_read()
 
730
        self.add_cleanup(work_tree.unlock)
722
731
        if revision is not None:
723
732
            tree = revision.as_tree(work_tree.branch)
724
733
 
725
734
            extra_trees = [work_tree]
726
 
            self.add_cleanup(tree.lock_read().unlock)
 
735
            tree.lock_read()
 
736
            self.add_cleanup(tree.unlock)
727
737
        else:
728
738
            tree = work_tree
729
739
            extra_trees = []
750
760
 
751
761
 
752
762
class cmd_mv(Command):
753
 
    __doc__ = """Move or rename a file.
 
763
    """Move or rename a file.
754
764
 
755
765
    :Usage:
756
766
        bzr mv OLDNAME NEWNAME
788
798
            names_list = []
789
799
        if len(names_list) < 2:
790
800
            raise errors.BzrCommandError("missing file argument")
791
 
        tree, rel_names = WorkingTree.open_containing_paths(names_list, canonicalize=False)
792
 
        self.add_cleanup(tree.lock_tree_write().unlock)
 
801
        tree, rel_names = tree_files(names_list, canonicalize=False)
 
802
        tree.lock_tree_write()
 
803
        self.add_cleanup(tree.unlock)
793
804
        self._run(tree, names_list, rel_names, after)
794
805
 
795
806
    def run_auto(self, names_list, after, dry_run):
799
810
        if after:
800
811
            raise errors.BzrCommandError('--after cannot be specified with'
801
812
                                         ' --auto.')
802
 
        work_tree, file_list = WorkingTree.open_containing_paths(
803
 
            names_list, default_directory='.')
804
 
        self.add_cleanup(work_tree.lock_tree_write().unlock)
 
813
        work_tree, file_list = tree_files(names_list, default_branch='.')
 
814
        work_tree.lock_tree_write()
 
815
        self.add_cleanup(work_tree.unlock)
805
816
        rename_map.RenameMap.guess_renames(work_tree, dry_run)
806
817
 
807
818
    def _run(self, tree, names_list, rel_names, after):
886
897
 
887
898
 
888
899
class cmd_pull(Command):
889
 
    __doc__ = """Turn this branch into a mirror of another branch.
 
900
    """Turn this branch into a mirror of another branch.
890
901
 
891
902
    By default, this command only works on branches that have not diverged.
892
903
    Branches are considered diverged if the destination branch's most recent 
915
926
    takes_options = ['remember', 'overwrite', 'revision',
916
927
        custom_help('verbose',
917
928
            help='Show logs of pulled revisions.'),
918
 
        custom_help('directory',
 
929
        Option('directory',
919
930
            help='Branch to pull into, '
920
 
                 'rather than the one containing the working directory.'),
 
931
                 'rather than the one containing the working directory.',
 
932
            short_name='d',
 
933
            type=unicode,
 
934
            ),
921
935
        Option('local',
922
936
            help="Perform a local pull in a bound "
923
937
                 "branch.  Local pulls are not applied to "
938
952
        try:
939
953
            tree_to = WorkingTree.open_containing(directory)[0]
940
954
            branch_to = tree_to.branch
941
 
            self.add_cleanup(tree_to.lock_write().unlock)
942
955
        except errors.NoWorkingTree:
943
956
            tree_to = None
944
957
            branch_to = Branch.open_containing(directory)[0]
945
 
            self.add_cleanup(branch_to.lock_write().unlock)
946
 
 
 
958
        
947
959
        if local and not branch_to.get_bound_location():
948
960
            raise errors.LocalRequiresBoundBranch()
949
961
 
979
991
        else:
980
992
            branch_from = Branch.open(location,
981
993
                possible_transports=possible_transports)
982
 
            self.add_cleanup(branch_from.lock_read().unlock)
983
994
 
984
995
            if branch_to.get_parent() is None or remember:
985
996
                branch_to.set_parent(branch_from.base)
986
997
 
 
998
        if branch_from is not branch_to:
 
999
            branch_from.lock_read()
 
1000
            self.add_cleanup(branch_from.unlock)
987
1001
        if revision is not None:
988
1002
            revision_id = revision.as_revision_id(branch_from)
989
1003
 
 
1004
        branch_to.lock_write()
 
1005
        self.add_cleanup(branch_to.unlock)
990
1006
        if tree_to is not None:
991
1007
            view_info = _get_view_info_for_change_reporter(tree_to)
992
1008
            change_reporter = delta._ChangeReporter(
1007
1023
 
1008
1024
 
1009
1025
class cmd_push(Command):
1010
 
    __doc__ = """Update a mirror of this branch.
 
1026
    """Update a mirror of this branch.
1011
1027
 
1012
1028
    The target branch will not have its working tree populated because this
1013
1029
    is both expensive, and is not supported on remote file systems.
1037
1053
        Option('create-prefix',
1038
1054
               help='Create the path leading up to the branch '
1039
1055
                    'if it does not already exist.'),
1040
 
        custom_help('directory',
 
1056
        Option('directory',
1041
1057
            help='Branch to push from, '
1042
 
                 'rather than the one containing the working directory.'),
 
1058
                 'rather than the one containing the working directory.',
 
1059
            short_name='d',
 
1060
            type=unicode,
 
1061
            ),
1043
1062
        Option('use-existing-dir',
1044
1063
               help='By default push will fail if the target'
1045
1064
                    ' directory exists, but does not already'
1071
1090
        # Get the source branch
1072
1091
        (tree, br_from,
1073
1092
         _unused) = bzrdir.BzrDir.open_containing_tree_or_branch(directory)
 
1093
        if strict is None:
 
1094
            strict = br_from.get_config().get_user_option_as_bool('push_strict')
 
1095
        if strict is None: strict = True # default value
1074
1096
        # Get the tip's revision_id
1075
1097
        revision = _get_one_revision('push', revision)
1076
1098
        if revision is not None:
1077
1099
            revision_id = revision.in_history(br_from).rev_id
1078
1100
        else:
1079
1101
            revision_id = None
1080
 
        if tree is not None and revision_id is None:
1081
 
            tree.check_changed_or_out_of_date(
1082
 
                strict, 'push_strict',
1083
 
                more_error='Use --no-strict to force the push.',
1084
 
                more_warning='Uncommitted changes will not be pushed.')
 
1102
        if strict and tree is not None and revision_id is None:
 
1103
            if (tree.has_changes()):
 
1104
                raise errors.UncommittedChanges(
 
1105
                    tree, more='Use --no-strict to force the push.')
 
1106
            if tree.last_revision() != tree.branch.last_revision():
 
1107
                # The tree has lost sync with its branch, there is little
 
1108
                # chance that the user is aware of it but he can still force
 
1109
                # the push with --no-strict
 
1110
                raise errors.OutOfDateTree(
 
1111
                    tree, more='Use --no-strict to force the push.')
 
1112
 
1085
1113
        # Get the stacked_on branch, if any
1086
1114
        if stacked_on is not None:
1087
1115
            stacked_on = urlutils.normalize_url(stacked_on)
1119
1147
 
1120
1148
 
1121
1149
class cmd_branch(Command):
1122
 
    __doc__ = """Create a new branch that is a copy of an existing branch.
 
1150
    """Create a new branch that is a copy of an existing branch.
1123
1151
 
1124
1152
    If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will
1125
1153
    be used.  In other words, "branch ../foo/bar" will attempt to create ./bar.
1134
1162
 
1135
1163
    _see_also = ['checkout']
1136
1164
    takes_args = ['from_location', 'to_location?']
1137
 
    takes_options = ['revision',
1138
 
        Option('hardlink', help='Hard-link working tree files where possible.'),
1139
 
        Option('files-from', type=str,
1140
 
               help="Get file contents from this tree."),
 
1165
    takes_options = ['revision', Option('hardlink',
 
1166
        help='Hard-link working tree files where possible.'),
1141
1167
        Option('no-tree',
1142
1168
            help="Create a branch without a working-tree."),
1143
1169
        Option('switch',
1161
1187
 
1162
1188
    def run(self, from_location, to_location=None, revision=None,
1163
1189
            hardlink=False, stacked=False, standalone=False, no_tree=False,
1164
 
            use_existing_dir=False, switch=False, bind=False,
1165
 
            files_from=None):
 
1190
            use_existing_dir=False, switch=False, bind=False):
1166
1191
        from bzrlib import switch as _mod_switch
1167
1192
        from bzrlib.tag import _merge_tags_if_possible
1168
1193
        accelerator_tree, br_from = bzrdir.BzrDir.open_tree_or_branch(
1169
1194
            from_location)
1170
 
        if not (hardlink or files_from):
1171
 
            # accelerator_tree is usually slower because you have to read N
1172
 
            # files (no readahead, lots of seeks, etc), but allow the user to
1173
 
            # explicitly request it
1174
 
            accelerator_tree = None
1175
 
        if files_from is not None and files_from != from_location:
1176
 
            accelerator_tree = WorkingTree.open(files_from)
1177
1195
        revision = _get_one_revision('branch', revision)
1178
 
        self.add_cleanup(br_from.lock_read().unlock)
 
1196
        br_from.lock_read()
 
1197
        self.add_cleanup(br_from.unlock)
1179
1198
        if revision is not None:
1180
1199
            revision_id = revision.as_revision_id(br_from)
1181
1200
        else:
1241
1260
 
1242
1261
 
1243
1262
class cmd_checkout(Command):
1244
 
    __doc__ = """Create a new checkout of an existing branch.
 
1263
    """Create a new checkout of an existing branch.
1245
1264
 
1246
1265
    If BRANCH_LOCATION is omitted, checkout will reconstitute a working tree for
1247
1266
    the branch found in '.'. This is useful if you have removed the working tree
1286
1305
            to_location = branch_location
1287
1306
        accelerator_tree, source = bzrdir.BzrDir.open_tree_or_branch(
1288
1307
            branch_location)
1289
 
        if not (hardlink or files_from):
1290
 
            # accelerator_tree is usually slower because you have to read N
1291
 
            # files (no readahead, lots of seeks, etc), but allow the user to
1292
 
            # explicitly request it
1293
 
            accelerator_tree = None
1294
1308
        revision = _get_one_revision('checkout', revision)
1295
 
        if files_from is not None and files_from != branch_location:
 
1309
        if files_from is not None:
1296
1310
            accelerator_tree = WorkingTree.open(files_from)
1297
1311
        if revision is not None:
1298
1312
            revision_id = revision.as_revision_id(source)
1315
1329
 
1316
1330
 
1317
1331
class cmd_renames(Command):
1318
 
    __doc__ = """Show list of renamed files.
 
1332
    """Show list of renamed files.
1319
1333
    """
1320
1334
    # TODO: Option to show renames between two historical versions.
1321
1335
 
1326
1340
    @display_command
1327
1341
    def run(self, dir=u'.'):
1328
1342
        tree = WorkingTree.open_containing(dir)[0]
1329
 
        self.add_cleanup(tree.lock_read().unlock)
 
1343
        tree.lock_read()
 
1344
        self.add_cleanup(tree.unlock)
1330
1345
        new_inv = tree.inventory
1331
1346
        old_tree = tree.basis_tree()
1332
 
        self.add_cleanup(old_tree.lock_read().unlock)
 
1347
        old_tree.lock_read()
 
1348
        self.add_cleanup(old_tree.unlock)
1333
1349
        old_inv = old_tree.inventory
1334
1350
        renames = []
1335
1351
        iterator = tree.iter_changes(old_tree, include_unchanged=True)
1345
1361
 
1346
1362
 
1347
1363
class cmd_update(Command):
1348
 
    __doc__ = """Update a tree to have the latest code committed to its branch.
 
1364
    """Update a tree to have the latest code committed to its branch.
1349
1365
 
1350
1366
    This will perform a merge into the working tree, and may generate
1351
1367
    conflicts. If you have any local changes, you will still
1373
1389
        master = branch.get_master_branch(
1374
1390
            possible_transports=possible_transports)
1375
1391
        if master is not None:
 
1392
            tree.lock_write()
1376
1393
            branch_location = master.base
1377
 
            tree.lock_write()
1378
1394
        else:
 
1395
            tree.lock_tree_write()
1379
1396
            branch_location = tree.branch.base
1380
 
            tree.lock_tree_write()
1381
1397
        self.add_cleanup(tree.unlock)
1382
1398
        # get rid of the final '/' and be ready for display
1383
 
        branch_location = urlutils.unescape_for_display(
1384
 
            branch_location.rstrip('/'),
1385
 
            self.outf.encoding)
 
1399
        branch_location = urlutils.unescape_for_display(branch_location[:-1],
 
1400
                                                        self.outf.encoding)
1386
1401
        existing_pending_merges = tree.get_parent_ids()[1:]
1387
1402
        if master is None:
1388
1403
            old_tip = None
1396
1411
        else:
1397
1412
            revision_id = branch.last_revision()
1398
1413
        if revision_id == _mod_revision.ensure_null(tree.last_revision()):
1399
 
            revno = branch.revision_id_to_dotted_revno(revision_id)
1400
 
            note("Tree is up to date at revision %s of branch %s" %
1401
 
                ('.'.join(map(str, revno)), branch_location))
 
1414
            revno = branch.revision_id_to_revno(revision_id)
 
1415
            note("Tree is up to date at revision %d of branch %s" %
 
1416
                (revno, branch_location))
1402
1417
            return 0
1403
1418
        view_info = _get_view_info_for_change_reporter(tree)
1404
1419
        change_reporter = delta._ChangeReporter(
1416
1431
                                  "bzr update --revision only works"
1417
1432
                                  " for a revision in the branch history"
1418
1433
                                  % (e.revision))
1419
 
        revno = tree.branch.revision_id_to_dotted_revno(
 
1434
        revno = tree.branch.revision_id_to_revno(
1420
1435
            _mod_revision.ensure_null(tree.last_revision()))
1421
 
        note('Updated to revision %s of branch %s' %
1422
 
             ('.'.join(map(str, revno)), branch_location))
1423
 
        parent_ids = tree.get_parent_ids()
1424
 
        if parent_ids[1:] and parent_ids[1:] != existing_pending_merges:
 
1436
        note('Updated to revision %d of branch %s' %
 
1437
             (revno, branch_location))
 
1438
        if tree.get_parent_ids()[1:] != existing_pending_merges:
1425
1439
            note('Your local commits will now show as pending merges with '
1426
1440
                 "'bzr status', and can be committed with 'bzr commit'.")
1427
1441
        if conflicts != 0:
1431
1445
 
1432
1446
 
1433
1447
class cmd_info(Command):
1434
 
    __doc__ = """Show information about a working tree, branch or repository.
 
1448
    """Show information about a working tree, branch or repository.
1435
1449
 
1436
1450
    This command will show all known locations and formats associated to the
1437
1451
    tree, branch or repository.
1475
1489
 
1476
1490
 
1477
1491
class cmd_remove(Command):
1478
 
    __doc__ = """Remove files or directories.
 
1492
    """Remove files or directories.
1479
1493
 
1480
 
    This makes Bazaar stop tracking changes to the specified files. Bazaar will
1481
 
    delete them if they can easily be recovered using revert otherwise they
1482
 
    will be backed up (adding an extention of the form .~#~). If no options or
1483
 
    parameters are given Bazaar will scan for files that are being tracked by
1484
 
    Bazaar but missing in your tree and stop tracking them for you.
 
1494
    This makes bzr stop tracking changes to the specified files. bzr will delete
 
1495
    them if they can easily be recovered using revert. If no options or
 
1496
    parameters are given bzr will scan for files that are being tracked by bzr
 
1497
    but missing in your tree and stop tracking them for you.
1485
1498
    """
1486
1499
    takes_args = ['file*']
1487
1500
    takes_options = ['verbose',
1489
1502
        RegistryOption.from_kwargs('file-deletion-strategy',
1490
1503
            'The file deletion mode to be used.',
1491
1504
            title='Deletion Strategy', value_switches=True, enum_switch=False,
1492
 
            safe='Backup changed files (default).',
 
1505
            safe='Only delete files if they can be'
 
1506
                 ' safely recovered (default).',
1493
1507
            keep='Delete from bzr but leave the working copy.',
1494
1508
            force='Delete all the specified files, even if they can not be '
1495
1509
                'recovered and even if they are non-empty directories.')]
1498
1512
 
1499
1513
    def run(self, file_list, verbose=False, new=False,
1500
1514
        file_deletion_strategy='safe'):
1501
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
 
1515
        tree, file_list = tree_files(file_list)
1502
1516
 
1503
1517
        if file_list is not None:
1504
1518
            file_list = [f for f in file_list]
1505
1519
 
1506
 
        self.add_cleanup(tree.lock_write().unlock)
 
1520
        tree.lock_write()
 
1521
        self.add_cleanup(tree.unlock)
1507
1522
        # Heuristics should probably all move into tree.remove_smart or
1508
1523
        # some such?
1509
1524
        if new:
1528
1543
 
1529
1544
 
1530
1545
class cmd_file_id(Command):
1531
 
    __doc__ = """Print file_id of a particular file or directory.
 
1546
    """Print file_id of a particular file or directory.
1532
1547
 
1533
1548
    The file_id is assigned when the file is first added and remains the
1534
1549
    same through all revisions where the file exists, even when it is
1550
1565
 
1551
1566
 
1552
1567
class cmd_file_path(Command):
1553
 
    __doc__ = """Print path of file_ids to a file or directory.
 
1568
    """Print path of file_ids to a file or directory.
1554
1569
 
1555
1570
    This prints one line for each directory down to the target,
1556
1571
    starting at the branch root.
1572
1587
 
1573
1588
 
1574
1589
class cmd_reconcile(Command):
1575
 
    __doc__ = """Reconcile bzr metadata in a branch.
 
1590
    """Reconcile bzr metadata in a branch.
1576
1591
 
1577
1592
    This can correct data mismatches that may have been caused by
1578
1593
    previous ghost operations or bzr upgrades. You should only
1592
1607
 
1593
1608
    _see_also = ['check']
1594
1609
    takes_args = ['branch?']
1595
 
    takes_options = [
1596
 
        Option('canonicalize-chks',
1597
 
               help='Make sure CHKs are in canonical form (repairs '
1598
 
                    'bug 522637).',
1599
 
               hidden=True),
1600
 
        ]
1601
1610
 
1602
 
    def run(self, branch=".", canonicalize_chks=False):
 
1611
    def run(self, branch="."):
1603
1612
        from bzrlib.reconcile import reconcile
1604
1613
        dir = bzrdir.BzrDir.open(branch)
1605
 
        reconcile(dir, canonicalize_chks=canonicalize_chks)
 
1614
        reconcile(dir)
1606
1615
 
1607
1616
 
1608
1617
class cmd_revision_history(Command):
1609
 
    __doc__ = """Display the list of revision ids on a branch."""
 
1618
    """Display the list of revision ids on a branch."""
1610
1619
 
1611
1620
    _see_also = ['log']
1612
1621
    takes_args = ['location?']
1622
1631
 
1623
1632
 
1624
1633
class cmd_ancestry(Command):
1625
 
    __doc__ = """List all revisions merged into this branch."""
 
1634
    """List all revisions merged into this branch."""
1626
1635
 
1627
1636
    _see_also = ['log', 'revision-history']
1628
1637
    takes_args = ['location?']
1647
1656
 
1648
1657
 
1649
1658
class cmd_init(Command):
1650
 
    __doc__ = """Make a directory into a versioned branch.
 
1659
    """Make a directory into a versioned branch.
1651
1660
 
1652
1661
    Use this to create an empty branch, or before importing an
1653
1662
    existing project.
1756
1765
 
1757
1766
 
1758
1767
class cmd_init_repository(Command):
1759
 
    __doc__ = """Create a shared repository for branches to share storage space.
 
1768
    """Create a shared repository for branches to share storage space.
1760
1769
 
1761
1770
    New branches created under the repository directory will store their
1762
1771
    revisions in the repository, not in the branch directory.  For branches
1816
1825
 
1817
1826
 
1818
1827
class cmd_diff(Command):
1819
 
    __doc__ = """Show differences in the working tree, between revisions or branches.
 
1828
    """Show differences in the working tree, between revisions or branches.
1820
1829
 
1821
1830
    If no arguments are given, all changes for the current tree are listed.
1822
1831
    If files are given, only the changes in those files are listed.
1884
1893
        Same as 'bzr diff' but prefix paths with old/ and new/::
1885
1894
 
1886
1895
            bzr diff --prefix old/:new/
1887
 
            
1888
 
        Show the differences using a custom diff program with options::
1889
 
        
1890
 
            bzr diff --using /usr/bin/diff --diff-options -wu
1891
1896
    """
1892
1897
    _see_also = ['status']
1893
1898
    takes_args = ['file*']
1912
1917
            help='Use this command to compare files.',
1913
1918
            type=unicode,
1914
1919
            ),
1915
 
        RegistryOption('format',
1916
 
            help='Diff format to use.',
1917
 
            lazy_registry=('bzrlib.diff', 'format_registry'),
1918
 
            value_switches=False, title='Diff format'),
1919
1920
        ]
1920
1921
    aliases = ['di', 'dif']
1921
1922
    encoding_type = 'exact'
1922
1923
 
1923
1924
    @display_command
1924
1925
    def run(self, revision=None, file_list=None, diff_options=None,
1925
 
            prefix=None, old=None, new=None, using=None, format=None):
1926
 
        from bzrlib.diff import (get_trees_and_branches_to_diff_locked,
1927
 
            show_diff_trees)
 
1926
            prefix=None, old=None, new=None, using=None):
 
1927
        from bzrlib.diff import get_trees_and_branches_to_diff, show_diff_trees
1928
1928
 
1929
1929
        if (prefix is None) or (prefix == '0'):
1930
1930
            # diff -p0 format
1944
1944
            raise errors.BzrCommandError('bzr diff --revision takes exactly'
1945
1945
                                         ' one or two revision specifiers')
1946
1946
 
1947
 
        if using is not None and format is not None:
1948
 
            raise errors.BzrCommandError('--using and --format are mutually '
1949
 
                'exclusive.')
1950
 
 
1951
1947
        (old_tree, new_tree,
1952
1948
         old_branch, new_branch,
1953
 
         specific_files, extra_trees) = get_trees_and_branches_to_diff_locked(
1954
 
            file_list, revision, old, new, self.add_cleanup, apply_view=True)
1955
 
        # GNU diff on Windows uses ANSI encoding for filenames
1956
 
        path_encoding = osutils.get_diff_header_encoding()
 
1949
         specific_files, extra_trees) = get_trees_and_branches_to_diff(
 
1950
            file_list, revision, old, new, apply_view=True)
1957
1951
        return show_diff_trees(old_tree, new_tree, sys.stdout,
1958
1952
                               specific_files=specific_files,
1959
1953
                               external_diff_options=diff_options,
1960
1954
                               old_label=old_label, new_label=new_label,
1961
 
                               extra_trees=extra_trees,
1962
 
                               path_encoding=path_encoding,
1963
 
                               using=using,
1964
 
                               format_cls=format)
 
1955
                               extra_trees=extra_trees, using=using)
1965
1956
 
1966
1957
 
1967
1958
class cmd_deleted(Command):
1968
 
    __doc__ = """List files deleted in the working tree.
 
1959
    """List files deleted in the working tree.
1969
1960
    """
1970
1961
    # TODO: Show files deleted since a previous revision, or
1971
1962
    # between two revisions.
1974
1965
    # level of effort but possibly much less IO.  (Or possibly not,
1975
1966
    # if the directories are very large...)
1976
1967
    _see_also = ['status', 'ls']
1977
 
    takes_options = ['directory', 'show-ids']
 
1968
    takes_options = ['show-ids']
1978
1969
 
1979
1970
    @display_command
1980
 
    def run(self, show_ids=False, directory=u'.'):
1981
 
        tree = WorkingTree.open_containing(directory)[0]
1982
 
        self.add_cleanup(tree.lock_read().unlock)
 
1971
    def run(self, show_ids=False):
 
1972
        tree = WorkingTree.open_containing(u'.')[0]
 
1973
        tree.lock_read()
 
1974
        self.add_cleanup(tree.unlock)
1983
1975
        old = tree.basis_tree()
1984
 
        self.add_cleanup(old.lock_read().unlock)
 
1976
        old.lock_read()
 
1977
        self.add_cleanup(old.unlock)
1985
1978
        for path, ie in old.inventory.iter_entries():
1986
1979
            if not tree.has_id(ie.file_id):
1987
1980
                self.outf.write(path)
1992
1985
 
1993
1986
 
1994
1987
class cmd_modified(Command):
1995
 
    __doc__ = """List files modified in working tree.
 
1988
    """List files modified in working tree.
1996
1989
    """
1997
1990
 
1998
1991
    hidden = True
1999
1992
    _see_also = ['status', 'ls']
2000
 
    takes_options = ['directory', 'null']
 
1993
    takes_options = [
 
1994
            Option('null',
 
1995
                   help='Write an ascii NUL (\\0) separator '
 
1996
                   'between files rather than a newline.')
 
1997
            ]
2001
1998
 
2002
1999
    @display_command
2003
 
    def run(self, null=False, directory=u'.'):
2004
 
        tree = WorkingTree.open_containing(directory)[0]
 
2000
    def run(self, null=False):
 
2001
        tree = WorkingTree.open_containing(u'.')[0]
2005
2002
        td = tree.changes_from(tree.basis_tree())
2006
2003
        for path, id, kind, text_modified, meta_modified in td.modified:
2007
2004
            if null:
2011
2008
 
2012
2009
 
2013
2010
class cmd_added(Command):
2014
 
    __doc__ = """List files added in working tree.
 
2011
    """List files added in working tree.
2015
2012
    """
2016
2013
 
2017
2014
    hidden = True
2018
2015
    _see_also = ['status', 'ls']
2019
 
    takes_options = ['directory', 'null']
 
2016
    takes_options = [
 
2017
            Option('null',
 
2018
                   help='Write an ascii NUL (\\0) separator '
 
2019
                   'between files rather than a newline.')
 
2020
            ]
2020
2021
 
2021
2022
    @display_command
2022
 
    def run(self, null=False, directory=u'.'):
2023
 
        wt = WorkingTree.open_containing(directory)[0]
2024
 
        self.add_cleanup(wt.lock_read().unlock)
 
2023
    def run(self, null=False):
 
2024
        wt = WorkingTree.open_containing(u'.')[0]
 
2025
        wt.lock_read()
 
2026
        self.add_cleanup(wt.unlock)
2025
2027
        basis = wt.basis_tree()
2026
 
        self.add_cleanup(basis.lock_read().unlock)
 
2028
        basis.lock_read()
 
2029
        self.add_cleanup(basis.unlock)
2027
2030
        basis_inv = basis.inventory
2028
2031
        inv = wt.inventory
2029
2032
        for file_id in inv:
2032
2035
            if inv.is_root(file_id) and len(basis_inv) == 0:
2033
2036
                continue
2034
2037
            path = inv.id2path(file_id)
2035
 
            if not os.access(osutils.pathjoin(wt.basedir, path), os.F_OK):
 
2038
            if not os.access(osutils.abspath(path), os.F_OK):
2036
2039
                continue
2037
2040
            if null:
2038
2041
                self.outf.write(path + '\0')
2041
2044
 
2042
2045
 
2043
2046
class cmd_root(Command):
2044
 
    __doc__ = """Show the tree root directory.
 
2047
    """Show the tree root directory.
2045
2048
 
2046
2049
    The root is the nearest enclosing directory with a .bzr control
2047
2050
    directory."""
2071
2074
 
2072
2075
 
2073
2076
class cmd_log(Command):
2074
 
    __doc__ = """Show historical log for a branch or subset of a branch.
 
2077
    """Show historical log for a branch or subset of a branch.
2075
2078
 
2076
2079
    log is bzr's default tool for exploring the history of a branch.
2077
2080
    The branch to use is taken from the first parameter. If no parameters
2238
2241
                   help='Show just the specified revision.'
2239
2242
                   ' See also "help revisionspec".'),
2240
2243
            'log-format',
2241
 
            RegistryOption('authors',
2242
 
                'What names to list as authors - first, all or committer.',
2243
 
                title='Authors',
2244
 
                lazy_registry=('bzrlib.log', 'author_list_registry'),
2245
 
            ),
2246
2244
            Option('levels',
2247
2245
                   short_name='n',
2248
2246
                   help='Number of levels to display - 0 for all, 1 for flat.',
2263
2261
                   help='Show changes made in each revision as a patch.'),
2264
2262
            Option('include-merges',
2265
2263
                   help='Show merged revisions like --levels 0 does.'),
2266
 
            Option('exclude-common-ancestry',
2267
 
                   help='Display only the revisions that are not part'
2268
 
                   ' of both ancestries (require -rX..Y)'
2269
 
                   )
2270
2264
            ]
2271
2265
    encoding_type = 'replace'
2272
2266
 
2282
2276
            message=None,
2283
2277
            limit=None,
2284
2278
            show_diff=False,
2285
 
            include_merges=False,
2286
 
            authors=None,
2287
 
            exclude_common_ancestry=False,
2288
 
            ):
 
2279
            include_merges=False):
2289
2280
        from bzrlib.log import (
2290
2281
            Logger,
2291
2282
            make_log_request_dict,
2292
2283
            _get_info_for_log_files,
2293
2284
            )
2294
2285
        direction = (forward and 'forward') or 'reverse'
2295
 
        if (exclude_common_ancestry
2296
 
            and (revision is None or len(revision) != 2)):
2297
 
            raise errors.BzrCommandError(
2298
 
                '--exclude-common-ancestry requires -r with two revisions')
2299
2286
        if include_merges:
2300
2287
            if levels is None:
2301
2288
                levels = 0
2317
2304
        if file_list:
2318
2305
            # find the file ids to log and check for directory filtering
2319
2306
            b, file_info_list, rev1, rev2 = _get_info_for_log_files(
2320
 
                revision, file_list, self.add_cleanup)
 
2307
                revision, file_list)
 
2308
            self.add_cleanup(b.unlock)
2321
2309
            for relpath, file_id, kind in file_info_list:
2322
2310
                if file_id is None:
2323
2311
                    raise errors.BzrCommandError(
2341
2329
                location = '.'
2342
2330
            dir, relpath = bzrdir.BzrDir.open_containing(location)
2343
2331
            b = dir.open_branch()
2344
 
            self.add_cleanup(b.lock_read().unlock)
 
2332
            b.lock_read()
 
2333
            self.add_cleanup(b.unlock)
2345
2334
            rev1, rev2 = _get_revision_range(revision, b, self.name())
2346
2335
 
2347
2336
        # Decide on the type of delta & diff filtering to use
2367
2356
                        show_timezone=timezone,
2368
2357
                        delta_format=get_verbosity_level(),
2369
2358
                        levels=levels,
2370
 
                        show_advice=levels is None,
2371
 
                        author_list_handler=authors)
 
2359
                        show_advice=levels is None)
2372
2360
 
2373
2361
        # Choose the algorithm for doing the logging. It's annoying
2374
2362
        # having multiple code paths like this but necessary until
2393
2381
            direction=direction, specific_fileids=file_ids,
2394
2382
            start_revision=rev1, end_revision=rev2, limit=limit,
2395
2383
            message_search=message, delta_type=delta_type,
2396
 
            diff_type=diff_type, _match_using_deltas=match_using_deltas,
2397
 
            exclude_common_ancestry=exclude_common_ancestry,
2398
 
            )
 
2384
            diff_type=diff_type, _match_using_deltas=match_using_deltas)
2399
2385
        Logger(b, rqst).show(lf)
2400
2386
 
2401
2387
 
2420
2406
            raise errors.BzrCommandError(
2421
2407
                "bzr %s doesn't accept two revisions in different"
2422
2408
                " branches." % command_name)
2423
 
        if start_spec.spec is None:
2424
 
            # Avoid loading all the history.
2425
 
            rev1 = RevisionInfo(branch, None, None)
2426
 
        else:
2427
 
            rev1 = start_spec.in_history(branch)
 
2409
        rev1 = start_spec.in_history(branch)
2428
2410
        # Avoid loading all of history when we know a missing
2429
2411
        # end of range means the last revision ...
2430
2412
        if end_spec.spec is None:
2459
2441
 
2460
2442
 
2461
2443
class cmd_touching_revisions(Command):
2462
 
    __doc__ = """Return revision-ids which affected a particular file.
 
2444
    """Return revision-ids which affected a particular file.
2463
2445
 
2464
2446
    A more user-friendly interface is "bzr log FILE".
2465
2447
    """
2472
2454
        tree, relpath = WorkingTree.open_containing(filename)
2473
2455
        file_id = tree.path2id(relpath)
2474
2456
        b = tree.branch
2475
 
        self.add_cleanup(b.lock_read().unlock)
 
2457
        b.lock_read()
 
2458
        self.add_cleanup(b.unlock)
2476
2459
        touching_revs = log.find_touching_revisions(b, file_id)
2477
2460
        for revno, revision_id, what in touching_revs:
2478
2461
            self.outf.write("%6d %s\n" % (revno, what))
2479
2462
 
2480
2463
 
2481
2464
class cmd_ls(Command):
2482
 
    __doc__ = """List files in a tree.
 
2465
    """List files in a tree.
2483
2466
    """
2484
2467
 
2485
2468
    _see_also = ['status', 'cat']
2491
2474
                   help='Recurse into subdirectories.'),
2492
2475
            Option('from-root',
2493
2476
                   help='Print paths relative to the root of the branch.'),
2494
 
            Option('unknown', short_name='u',
2495
 
                help='Print unknown files.'),
 
2477
            Option('unknown', help='Print unknown files.'),
2496
2478
            Option('versioned', help='Print versioned files.',
2497
2479
                   short_name='V'),
2498
 
            Option('ignored', short_name='i',
2499
 
                help='Print ignored files.'),
2500
 
            Option('kind', short_name='k',
 
2480
            Option('ignored', help='Print ignored files.'),
 
2481
            Option('null',
 
2482
                   help='Write an ascii NUL (\\0) separator '
 
2483
                   'between files rather than a newline.'),
 
2484
            Option('kind',
2501
2485
                   help='List entries of a particular kind: file, directory, symlink.',
2502
2486
                   type=unicode),
2503
 
            'null',
2504
2487
            'show-ids',
2505
 
            'directory',
2506
2488
            ]
2507
2489
    @display_command
2508
2490
    def run(self, revision=None, verbose=False,
2509
2491
            recursive=False, from_root=False,
2510
2492
            unknown=False, versioned=False, ignored=False,
2511
 
            null=False, kind=None, show_ids=False, path=None, directory=None):
 
2493
            null=False, kind=None, show_ids=False, path=None):
2512
2494
 
2513
2495
        if kind and kind not in ('file', 'directory', 'symlink'):
2514
2496
            raise errors.BzrCommandError('invalid kind specified')
2526
2508
                raise errors.BzrCommandError('cannot specify both --from-root'
2527
2509
                                             ' and PATH')
2528
2510
            fs_path = path
2529
 
        tree, branch, relpath = \
2530
 
            _open_directory_or_containing_tree_or_branch(fs_path, directory)
 
2511
        tree, branch, relpath = bzrdir.BzrDir.open_containing_tree_or_branch(
 
2512
            fs_path)
2531
2513
 
2532
2514
        # Calculate the prefix to use
2533
2515
        prefix = None
2548
2530
                view_str = views.view_display_str(view_files)
2549
2531
                note("Ignoring files outside view. View is %s" % view_str)
2550
2532
 
2551
 
        self.add_cleanup(tree.lock_read().unlock)
 
2533
        tree.lock_read()
 
2534
        self.add_cleanup(tree.unlock)
2552
2535
        for fp, fc, fkind, fid, entry in tree.list_files(include_root=False,
2553
2536
            from_dir=relpath, recursive=recursive):
2554
2537
            # Apply additional masking
2596
2579
 
2597
2580
 
2598
2581
class cmd_unknowns(Command):
2599
 
    __doc__ = """List unknown files.
 
2582
    """List unknown files.
2600
2583
    """
2601
2584
 
2602
2585
    hidden = True
2603
2586
    _see_also = ['ls']
2604
 
    takes_options = ['directory']
2605
2587
 
2606
2588
    @display_command
2607
 
    def run(self, directory=u'.'):
2608
 
        for f in WorkingTree.open_containing(directory)[0].unknowns():
 
2589
    def run(self):
 
2590
        for f in WorkingTree.open_containing(u'.')[0].unknowns():
2609
2591
            self.outf.write(osutils.quotefn(f) + '\n')
2610
2592
 
2611
2593
 
2612
2594
class cmd_ignore(Command):
2613
 
    __doc__ = """Ignore specified files or patterns.
 
2595
    """Ignore specified files or patterns.
2614
2596
 
2615
2597
    See ``bzr help patterns`` for details on the syntax of patterns.
2616
2598
 
2625
2607
    using this command or directly by using an editor, be sure to commit
2626
2608
    it.
2627
2609
    
2628
 
    Bazaar also supports a global ignore file ~/.bazaar/ignore. On Windows
2629
 
    the global ignore file can be found in the application data directory as
2630
 
    C:\\Documents and Settings\\<user>\\Application Data\\Bazaar\\2.0\\ignore.
2631
 
    Global ignores are not touched by this command. The global ignore file
2632
 
    can be edited directly using an editor.
2633
 
 
2634
2610
    Patterns prefixed with '!' are exceptions to ignore patterns and take
2635
2611
    precedence over regular ignores.  Such exceptions are used to specify
2636
2612
    files that should be versioned which would otherwise be ignored.
2676
2652
 
2677
2653
    _see_also = ['status', 'ignored', 'patterns']
2678
2654
    takes_args = ['name_pattern*']
2679
 
    takes_options = ['directory',
2680
 
        Option('default-rules',
2681
 
               help='Display the default ignore rules that bzr uses.')
 
2655
    takes_options = [
 
2656
        Option('old-default-rules',
 
2657
               help='Write out the ignore rules bzr < 0.9 always used.')
2682
2658
        ]
2683
2659
 
2684
 
    def run(self, name_pattern_list=None, default_rules=None,
2685
 
            directory=u'.'):
 
2660
    def run(self, name_pattern_list=None, old_default_rules=None):
2686
2661
        from bzrlib import ignores
2687
 
        if default_rules is not None:
2688
 
            # dump the default rules and exit
2689
 
            for pattern in ignores.USER_DEFAULTS:
2690
 
                self.outf.write("%s\n" % pattern)
 
2662
        if old_default_rules is not None:
 
2663
            # dump the rules and exit
 
2664
            for pattern in ignores.OLD_DEFAULTS:
 
2665
                print pattern
2691
2666
            return
2692
2667
        if not name_pattern_list:
2693
2668
            raise errors.BzrCommandError("ignore requires at least one "
2694
 
                "NAME_PATTERN or --default-rules.")
 
2669
                                  "NAME_PATTERN or --old-default-rules")
2695
2670
        name_pattern_list = [globbing.normalize_pattern(p)
2696
2671
                             for p in name_pattern_list]
2697
 
        bad_patterns = ''
2698
 
        for p in name_pattern_list:
2699
 
            if not globbing.Globster.is_pattern_valid(p):
2700
 
                bad_patterns += ('\n  %s' % p)
2701
 
        if bad_patterns:
2702
 
            msg = ('Invalid ignore pattern(s) found. %s' % bad_patterns)
2703
 
            ui.ui_factory.show_error(msg)
2704
 
            raise errors.InvalidPattern('')
2705
2672
        for name_pattern in name_pattern_list:
2706
2673
            if (name_pattern[0] == '/' or
2707
2674
                (len(name_pattern) > 1 and name_pattern[1] == ':')):
2708
2675
                raise errors.BzrCommandError(
2709
2676
                    "NAME_PATTERN should not be an absolute path")
2710
 
        tree, relpath = WorkingTree.open_containing(directory)
 
2677
        tree, relpath = WorkingTree.open_containing(u'.')
2711
2678
        ignores.tree_ignores_add_patterns(tree, name_pattern_list)
2712
2679
        ignored = globbing.Globster(name_pattern_list)
2713
2680
        matches = []
2714
 
        self.add_cleanup(tree.lock_read().unlock)
 
2681
        tree.lock_read()
2715
2682
        for entry in tree.list_files():
2716
2683
            id = entry[3]
2717
2684
            if id is not None:
2718
2685
                filename = entry[0]
2719
2686
                if ignored.match(filename):
2720
 
                    matches.append(filename)
 
2687
                    matches.append(filename.encode('utf-8'))
 
2688
        tree.unlock()
2721
2689
        if len(matches) > 0:
2722
 
            self.outf.write("Warning: the following files are version controlled and"
2723
 
                  " match your ignore pattern:\n%s"
2724
 
                  "\nThese files will continue to be version controlled"
2725
 
                  " unless you 'bzr remove' them.\n" % ("\n".join(matches),))
 
2690
            print "Warning: the following files are version controlled and" \
 
2691
                  " match your ignore pattern:\n%s" \
 
2692
                  "\nThese files will continue to be version controlled" \
 
2693
                  " unless you 'bzr remove' them." % ("\n".join(matches),)
2726
2694
 
2727
2695
 
2728
2696
class cmd_ignored(Command):
2729
 
    __doc__ = """List ignored files and the patterns that matched them.
 
2697
    """List ignored files and the patterns that matched them.
2730
2698
 
2731
2699
    List all the ignored files and the ignore pattern that caused the file to
2732
2700
    be ignored.
2738
2706
 
2739
2707
    encoding_type = 'replace'
2740
2708
    _see_also = ['ignore', 'ls']
2741
 
    takes_options = ['directory']
2742
2709
 
2743
2710
    @display_command
2744
 
    def run(self, directory=u'.'):
2745
 
        tree = WorkingTree.open_containing(directory)[0]
2746
 
        self.add_cleanup(tree.lock_read().unlock)
 
2711
    def run(self):
 
2712
        tree = WorkingTree.open_containing(u'.')[0]
 
2713
        tree.lock_read()
 
2714
        self.add_cleanup(tree.unlock)
2747
2715
        for path, file_class, kind, file_id, entry in tree.list_files():
2748
2716
            if file_class != 'I':
2749
2717
                continue
2753
2721
 
2754
2722
 
2755
2723
class cmd_lookup_revision(Command):
2756
 
    __doc__ = """Lookup the revision-id from a revision-number
 
2724
    """Lookup the revision-id from a revision-number
2757
2725
 
2758
2726
    :Examples:
2759
2727
        bzr lookup-revision 33
2760
2728
    """
2761
2729
    hidden = True
2762
2730
    takes_args = ['revno']
2763
 
    takes_options = ['directory']
2764
2731
 
2765
2732
    @display_command
2766
 
    def run(self, revno, directory=u'.'):
 
2733
    def run(self, revno):
2767
2734
        try:
2768
2735
            revno = int(revno)
2769
2736
        except ValueError:
2770
 
            raise errors.BzrCommandError("not a valid revision-number: %r"
2771
 
                                         % revno)
2772
 
        revid = WorkingTree.open_containing(directory)[0].branch.get_rev_id(revno)
2773
 
        self.outf.write("%s\n" % revid)
 
2737
            raise errors.BzrCommandError("not a valid revision-number: %r" % revno)
 
2738
 
 
2739
        print WorkingTree.open_containing(u'.')[0].branch.get_rev_id(revno)
2774
2740
 
2775
2741
 
2776
2742
class cmd_export(Command):
2777
 
    __doc__ = """Export current or past revision to a destination directory or archive.
 
2743
    """Export current or past revision to a destination directory or archive.
2778
2744
 
2779
2745
    If no revision is specified this exports the last committed revision.
2780
2746
 
2802
2768
      =================       =========================
2803
2769
    """
2804
2770
    takes_args = ['dest', 'branch_or_subdir?']
2805
 
    takes_options = ['directory',
 
2771
    takes_options = [
2806
2772
        Option('format',
2807
2773
               help="Type of file to export to.",
2808
2774
               type=unicode),
2812
2778
        Option('root',
2813
2779
               type=str,
2814
2780
               help="Name of the root directory inside the exported file."),
2815
 
        Option('per-file-timestamps',
2816
 
               help='Set modification time of files to that of the last '
2817
 
                    'revision in which it was changed.'),
2818
2781
        ]
2819
2782
    def run(self, dest, branch_or_subdir=None, revision=None, format=None,
2820
 
        root=None, filters=False, per_file_timestamps=False, directory=u'.'):
 
2783
        root=None, filters=False):
2821
2784
        from bzrlib.export import export
2822
2785
 
2823
2786
        if branch_or_subdir is None:
2824
 
            tree = WorkingTree.open_containing(directory)[0]
 
2787
            tree = WorkingTree.open_containing(u'.')[0]
2825
2788
            b = tree.branch
2826
2789
            subdir = None
2827
2790
        else:
2830
2793
 
2831
2794
        rev_tree = _get_one_revision_tree('export', revision, branch=b, tree=tree)
2832
2795
        try:
2833
 
            export(rev_tree, dest, format, root, subdir, filtered=filters,
2834
 
                   per_file_timestamps=per_file_timestamps)
 
2796
            export(rev_tree, dest, format, root, subdir, filtered=filters)
2835
2797
        except errors.NoSuchExportFormat, e:
2836
2798
            raise errors.BzrCommandError('Unsupported export format: %s' % e.format)
2837
2799
 
2838
2800
 
2839
2801
class cmd_cat(Command):
2840
 
    __doc__ = """Write the contents of a file as of a given revision to standard output.
 
2802
    """Write the contents of a file as of a given revision to standard output.
2841
2803
 
2842
2804
    If no revision is nominated, the last revision is used.
2843
2805
 
2846
2808
    """
2847
2809
 
2848
2810
    _see_also = ['ls']
2849
 
    takes_options = ['directory',
 
2811
    takes_options = [
2850
2812
        Option('name-from-revision', help='The path name in the old tree.'),
2851
2813
        Option('filters', help='Apply content filters to display the '
2852
2814
                'convenience form.'),
2857
2819
 
2858
2820
    @display_command
2859
2821
    def run(self, filename, revision=None, name_from_revision=False,
2860
 
            filters=False, directory=None):
 
2822
            filters=False):
2861
2823
        if revision is not None and len(revision) != 1:
2862
2824
            raise errors.BzrCommandError("bzr cat --revision takes exactly"
2863
2825
                                         " one revision specifier")
2864
2826
        tree, branch, relpath = \
2865
 
            _open_directory_or_containing_tree_or_branch(filename, directory)
2866
 
        self.add_cleanup(branch.lock_read().unlock)
 
2827
            bzrdir.BzrDir.open_containing_tree_or_branch(filename)
 
2828
        branch.lock_read()
 
2829
        self.add_cleanup(branch.unlock)
2867
2830
        return self._run(tree, branch, relpath, filename, revision,
2868
2831
                         name_from_revision, filters)
2869
2832
 
2872
2835
        if tree is None:
2873
2836
            tree = b.basis_tree()
2874
2837
        rev_tree = _get_one_revision_tree('cat', revision, branch=b)
2875
 
        self.add_cleanup(rev_tree.lock_read().unlock)
 
2838
        rev_tree.lock_read()
 
2839
        self.add_cleanup(rev_tree.unlock)
2876
2840
 
2877
2841
        old_file_id = rev_tree.path2id(relpath)
2878
2842
 
2921
2885
 
2922
2886
 
2923
2887
class cmd_local_time_offset(Command):
2924
 
    __doc__ = """Show the offset in seconds from GMT to local time."""
 
2888
    """Show the offset in seconds from GMT to local time."""
2925
2889
    hidden = True
2926
2890
    @display_command
2927
2891
    def run(self):
2928
 
        self.outf.write("%s\n" % osutils.local_time_offset())
 
2892
        print osutils.local_time_offset()
2929
2893
 
2930
2894
 
2931
2895
 
2932
2896
class cmd_commit(Command):
2933
 
    __doc__ = """Commit changes into a new revision.
 
2897
    """Commit changes into a new revision.
2934
2898
 
2935
2899
    An explanatory message needs to be given for each commit. This is
2936
2900
    often done by using the --message option (getting the message from the
3044
3008
                         "the master branch until a normal commit "
3045
3009
                         "is performed."
3046
3010
                    ),
3047
 
             Option('show-diff', short_name='p',
 
3011
             Option('show-diff',
3048
3012
                    help='When no message is supplied, show the diff along'
3049
3013
                    ' with the status summary in the message editor.'),
3050
3014
             ]
3099
3063
 
3100
3064
        properties = {}
3101
3065
 
3102
 
        tree, selected_list = WorkingTree.open_containing_paths(selected_list)
 
3066
        tree, selected_list = tree_files(selected_list)
3103
3067
        if selected_list == ['']:
3104
3068
            # workaround - commit of root of tree should be exactly the same
3105
3069
            # as just default commit in that tree, and succeed even though
3130
3094
                    '(use --file "%(f)s" to take commit message from that file)'
3131
3095
                    % { 'f': message })
3132
3096
                ui.ui_factory.show_warning(warning_msg)
3133
 
            if '\r' in message:
3134
 
                message = message.replace('\r\n', '\n')
3135
 
                message = message.replace('\r', '\n')
3136
 
            if file:
3137
 
                raise errors.BzrCommandError(
3138
 
                    "please specify either --message or --file")
3139
3097
 
3140
3098
        def get_message(commit_obj):
3141
3099
            """Callback to get commit message"""
3142
 
            if file:
3143
 
                f = open(file)
3144
 
                try:
3145
 
                    my_message = f.read().decode(osutils.get_user_encoding())
3146
 
                finally:
3147
 
                    f.close()
3148
 
            elif message is not None:
3149
 
                my_message = message
3150
 
            else:
3151
 
                # No message supplied: make one up.
3152
 
                # text is the status of the tree
3153
 
                text = make_commit_message_template_encoded(tree,
 
3100
            my_message = message
 
3101
            if my_message is not None and '\r' in my_message:
 
3102
                my_message = my_message.replace('\r\n', '\n')
 
3103
                my_message = my_message.replace('\r', '\n')
 
3104
            if my_message is None and not file:
 
3105
                t = make_commit_message_template_encoded(tree,
3154
3106
                        selected_list, diff=show_diff,
3155
3107
                        output_encoding=osutils.get_user_encoding())
3156
 
                # start_message is the template generated from hooks
3157
 
                # XXX: Warning - looks like hooks return unicode,
3158
 
                # make_commit_message_template_encoded returns user encoding.
3159
 
                # We probably want to be using edit_commit_message instead to
3160
 
                # avoid this.
3161
3108
                start_message = generate_commit_message_template(commit_obj)
3162
 
                my_message = edit_commit_message_encoded(text,
 
3109
                my_message = edit_commit_message_encoded(t,
3163
3110
                    start_message=start_message)
3164
3111
                if my_message is None:
3165
3112
                    raise errors.BzrCommandError("please specify a commit"
3166
3113
                        " message with either --message or --file")
 
3114
            elif my_message and file:
 
3115
                raise errors.BzrCommandError(
 
3116
                    "please specify either --message or --file")
 
3117
            if file:
 
3118
                my_message = codecs.open(file, 'rt',
 
3119
                                         osutils.get_user_encoding()).read()
3167
3120
            if my_message == "":
3168
3121
                raise errors.BzrCommandError("empty commit message specified")
3169
3122
            return my_message
3179
3132
                        reporter=None, verbose=verbose, revprops=properties,
3180
3133
                        authors=author, timestamp=commit_stamp,
3181
3134
                        timezone=offset,
3182
 
                        exclude=tree.safe_relpath_files(exclude))
 
3135
                        exclude=safe_relpath_files(tree, exclude))
3183
3136
        except PointlessCommit:
 
3137
            # FIXME: This should really happen before the file is read in;
 
3138
            # perhaps prepare the commit; get the message; then actually commit
3184
3139
            raise errors.BzrCommandError("No changes to commit."
3185
3140
                              " Use --unchanged to commit anyhow.")
3186
3141
        except ConflictsInTree:
3191
3146
            raise errors.BzrCommandError("Commit refused because there are"
3192
3147
                              " unknown files in the working tree.")
3193
3148
        except errors.BoundBranchOutOfDate, e:
3194
 
            e.extra_help = ("\n"
3195
 
                'To commit to master branch, run update and then commit.\n'
3196
 
                'You can also pass --local to commit to continue working '
3197
 
                'disconnected.')
3198
 
            raise
 
3149
            raise errors.BzrCommandError(str(e) + "\n"
 
3150
            'To commit to master branch, run update and then commit.\n'
 
3151
            'You can also pass --local to commit to continue working '
 
3152
            'disconnected.')
3199
3153
 
3200
3154
 
3201
3155
class cmd_check(Command):
3202
 
    __doc__ = """Validate working tree structure, branch consistency and repository history.
 
3156
    """Validate working tree structure, branch consistency and repository history.
3203
3157
 
3204
3158
    This command checks various invariants about branch and repository storage
3205
3159
    to detect data corruption or bzr bugs.
3269
3223
 
3270
3224
 
3271
3225
class cmd_upgrade(Command):
3272
 
    __doc__ = """Upgrade branch storage to current format.
 
3226
    """Upgrade branch storage to current format.
3273
3227
 
3274
3228
    The check command or bzr developers may sometimes advise you to run
3275
3229
    this command. When the default format has changed you may also be warned
3293
3247
 
3294
3248
 
3295
3249
class cmd_whoami(Command):
3296
 
    __doc__ = """Show or set bzr user id.
 
3250
    """Show or set bzr user id.
3297
3251
 
3298
3252
    :Examples:
3299
3253
        Show the email of the current user::
3304
3258
 
3305
3259
            bzr whoami "Frank Chu <fchu@example.com>"
3306
3260
    """
3307
 
    takes_options = [ 'directory',
3308
 
                      Option('email',
 
3261
    takes_options = [ Option('email',
3309
3262
                             help='Display email address only.'),
3310
3263
                      Option('branch',
3311
3264
                             help='Set identity for the current branch instead of '
3315
3268
    encoding_type = 'replace'
3316
3269
 
3317
3270
    @display_command
3318
 
    def run(self, email=False, branch=False, name=None, directory=None):
 
3271
    def run(self, email=False, branch=False, name=None):
3319
3272
        if name is None:
3320
 
            if directory is None:
3321
 
                # use branch if we're inside one; otherwise global config
3322
 
                try:
3323
 
                    c = Branch.open_containing(u'.')[0].get_config()
3324
 
                except errors.NotBranchError:
3325
 
                    c = _mod_config.GlobalConfig()
3326
 
            else:
3327
 
                c = Branch.open(directory).get_config()
 
3273
            # use branch if we're inside one; otherwise global config
 
3274
            try:
 
3275
                c = Branch.open_containing('.')[0].get_config()
 
3276
            except errors.NotBranchError:
 
3277
                c = config.GlobalConfig()
3328
3278
            if email:
3329
3279
                self.outf.write(c.user_email() + '\n')
3330
3280
            else:
3333
3283
 
3334
3284
        # display a warning if an email address isn't included in the given name.
3335
3285
        try:
3336
 
            _mod_config.extract_email_address(name)
 
3286
            config.extract_email_address(name)
3337
3287
        except errors.NoEmailInUsername, e:
3338
3288
            warning('"%s" does not seem to contain an email address.  '
3339
3289
                    'This is allowed, but not recommended.', name)
3340
3290
 
3341
3291
        # use global config unless --branch given
3342
3292
        if branch:
3343
 
            if directory is None:
3344
 
                c = Branch.open_containing(u'.')[0].get_config()
3345
 
            else:
3346
 
                c = Branch.open(directory).get_config()
 
3293
            c = Branch.open_containing('.')[0].get_config()
3347
3294
        else:
3348
 
            c = _mod_config.GlobalConfig()
 
3295
            c = config.GlobalConfig()
3349
3296
        c.set_user_option('email', name)
3350
3297
 
3351
3298
 
3352
3299
class cmd_nick(Command):
3353
 
    __doc__ = """Print or set the branch nickname.
 
3300
    """Print or set the branch nickname.
3354
3301
 
3355
3302
    If unset, the tree root directory name is used as the nickname.
3356
3303
    To print the current nickname, execute with no argument.
3361
3308
 
3362
3309
    _see_also = ['info']
3363
3310
    takes_args = ['nickname?']
3364
 
    takes_options = ['directory']
3365
 
    def run(self, nickname=None, directory=u'.'):
3366
 
        branch = Branch.open_containing(directory)[0]
 
3311
    def run(self, nickname=None):
 
3312
        branch = Branch.open_containing(u'.')[0]
3367
3313
        if nickname is None:
3368
3314
            self.printme(branch)
3369
3315
        else:
3371
3317
 
3372
3318
    @display_command
3373
3319
    def printme(self, branch):
3374
 
        self.outf.write('%s\n' % branch.nick)
 
3320
        print branch.nick
3375
3321
 
3376
3322
 
3377
3323
class cmd_alias(Command):
3378
 
    __doc__ = """Set/unset and display aliases.
 
3324
    """Set/unset and display aliases.
3379
3325
 
3380
3326
    :Examples:
3381
3327
        Show the current aliases::
3418
3364
                'bzr alias --remove expects an alias to remove.')
3419
3365
        # If alias is not found, print something like:
3420
3366
        # unalias: foo: not found
3421
 
        c = _mod_config.GlobalConfig()
 
3367
        c = config.GlobalConfig()
3422
3368
        c.unset_alias(alias_name)
3423
3369
 
3424
3370
    @display_command
3425
3371
    def print_aliases(self):
3426
3372
        """Print out the defined aliases in a similar format to bash."""
3427
 
        aliases = _mod_config.GlobalConfig().get_aliases()
 
3373
        aliases = config.GlobalConfig().get_aliases()
3428
3374
        for key, value in sorted(aliases.iteritems()):
3429
3375
            self.outf.write('bzr alias %s="%s"\n' % (key, value))
3430
3376
 
3440
3386
 
3441
3387
    def set_alias(self, alias_name, alias_command):
3442
3388
        """Save the alias in the global config."""
3443
 
        c = _mod_config.GlobalConfig()
 
3389
        c = config.GlobalConfig()
3444
3390
        c.set_alias(alias_name, alias_command)
3445
3391
 
3446
3392
 
3447
3393
class cmd_selftest(Command):
3448
 
    __doc__ = """Run internal test suite.
 
3394
    """Run internal test suite.
3449
3395
 
3450
3396
    If arguments are given, they are regular expressions that say which tests
3451
3397
    should run.  Tests matching any expression are run, and other tests are
3498
3444
            from bzrlib.tests import stub_sftp
3499
3445
            return stub_sftp.SFTPAbsoluteServer
3500
3446
        if typestring == "memory":
3501
 
            from bzrlib.tests import test_server
3502
 
            return memory.MemoryServer
 
3447
            from bzrlib.transport.memory import MemoryServer
 
3448
            return MemoryServer
3503
3449
        if typestring == "fakenfs":
3504
 
            from bzrlib.tests import test_server
3505
 
            return test_server.FakeNFSServer
 
3450
            from bzrlib.transport.fakenfs import FakeNFSServer
 
3451
            return FakeNFSServer
3506
3452
        msg = "No known transport type %s. Supported types are: sftp\n" %\
3507
3453
            (typestring)
3508
3454
        raise errors.BzrCommandError(msg)
3519
3465
                                 'throughout the test suite.',
3520
3466
                            type=get_transport_type),
3521
3467
                     Option('benchmark',
3522
 
                            help='Run the benchmarks rather than selftests.',
3523
 
                            hidden=True),
 
3468
                            help='Run the benchmarks rather than selftests.'),
3524
3469
                     Option('lsprof-timed',
3525
3470
                            help='Generate lsprof output for benchmarked'
3526
3471
                                 ' sections of code.'),
3527
3472
                     Option('lsprof-tests',
3528
3473
                            help='Generate lsprof output for each test.'),
 
3474
                     Option('cache-dir', type=str,
 
3475
                            help='Cache intermediate benchmark output in this '
 
3476
                                 'directory.'),
3529
3477
                     Option('first',
3530
3478
                            help='Run all tests, but run specified tests first.',
3531
3479
                            short_name='f',
3565
3513
 
3566
3514
    def run(self, testspecs_list=None, verbose=False, one=False,
3567
3515
            transport=None, benchmark=None,
3568
 
            lsprof_timed=None,
 
3516
            lsprof_timed=None, cache_dir=None,
3569
3517
            first=False, list_only=False,
3570
3518
            randomize=None, exclude=None, strict=False,
3571
3519
            load_list=None, debugflag=None, starting_with=None, subunit=False,
3572
3520
            parallel=None, lsprof_tests=False):
3573
 
        from bzrlib import tests
3574
 
 
 
3521
        from bzrlib.tests import selftest
 
3522
        import bzrlib.benchmarks as benchmarks
 
3523
        from bzrlib.benchmarks import tree_creator
 
3524
 
 
3525
        # Make deprecation warnings visible, unless -Werror is set
 
3526
        symbol_versioning.activate_deprecation_warnings(override=False)
 
3527
 
 
3528
        if cache_dir is not None:
 
3529
            tree_creator.TreeCreator.CACHE_ROOT = osutils.abspath(cache_dir)
3575
3530
        if testspecs_list is not None:
3576
3531
            pattern = '|'.join(testspecs_list)
3577
3532
        else:
3583
3538
                raise errors.BzrCommandError("subunit not available. subunit "
3584
3539
                    "needs to be installed to use --subunit.")
3585
3540
            self.additional_selftest_args['runner_class'] = SubUnitBzrRunner
3586
 
            # On Windows, disable automatic conversion of '\n' to '\r\n' in
3587
 
            # stdout, which would corrupt the subunit stream. 
3588
 
            # FIXME: This has been fixed in subunit trunk (>0.0.5) so the
3589
 
            # following code can be deleted when it's sufficiently deployed
3590
 
            # -- vila/mgz 20100514
3591
 
            if (sys.platform == "win32"
3592
 
                and getattr(sys.stdout, 'fileno', None) is not None):
3593
 
                import msvcrt
3594
 
                msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
3595
3541
        if parallel:
3596
3542
            self.additional_selftest_args.setdefault(
3597
3543
                'suite_decorators', []).append(parallel)
3598
3544
        if benchmark:
3599
 
            raise errors.BzrCommandError(
3600
 
                "--benchmark is no longer supported from bzr 2.2; "
3601
 
                "use bzr-usertest instead")
3602
 
        test_suite_factory = None
 
3545
            test_suite_factory = benchmarks.test_suite
 
3546
            # Unless user explicitly asks for quiet, be verbose in benchmarks
 
3547
            verbose = not is_quiet()
 
3548
            # TODO: should possibly lock the history file...
 
3549
            benchfile = open(".perf_history", "at", buffering=1)
 
3550
            self.add_cleanup(benchfile.close)
 
3551
        else:
 
3552
            test_suite_factory = None
 
3553
            benchfile = None
3603
3554
        selftest_kwargs = {"verbose": verbose,
3604
3555
                          "pattern": pattern,
3605
3556
                          "stop_on_failure": one,
3607
3558
                          "test_suite_factory": test_suite_factory,
3608
3559
                          "lsprof_timed": lsprof_timed,
3609
3560
                          "lsprof_tests": lsprof_tests,
 
3561
                          "bench_history": benchfile,
3610
3562
                          "matching_tests_first": first,
3611
3563
                          "list_only": list_only,
3612
3564
                          "random_seed": randomize,
3617
3569
                          "starting_with": starting_with
3618
3570
                          }
3619
3571
        selftest_kwargs.update(self.additional_selftest_args)
3620
 
 
3621
 
        # Make deprecation warnings visible, unless -Werror is set
3622
 
        cleanup = symbol_versioning.activate_deprecation_warnings(
3623
 
            override=False)
3624
 
        try:
3625
 
            result = tests.selftest(**selftest_kwargs)
3626
 
        finally:
3627
 
            cleanup()
 
3572
        result = selftest(**selftest_kwargs)
3628
3573
        return int(not result)
3629
3574
 
3630
3575
 
3631
3576
class cmd_version(Command):
3632
 
    __doc__ = """Show version of bzr."""
 
3577
    """Show version of bzr."""
3633
3578
 
3634
3579
    encoding_type = 'replace'
3635
3580
    takes_options = [
3646
3591
 
3647
3592
 
3648
3593
class cmd_rocks(Command):
3649
 
    __doc__ = """Statement of optimism."""
 
3594
    """Statement of optimism."""
3650
3595
 
3651
3596
    hidden = True
3652
3597
 
3653
3598
    @display_command
3654
3599
    def run(self):
3655
 
        self.outf.write("It sure does!\n")
 
3600
        print "It sure does!"
3656
3601
 
3657
3602
 
3658
3603
class cmd_find_merge_base(Command):
3659
 
    __doc__ = """Find and print a base revision for merging two branches."""
 
3604
    """Find and print a base revision for merging two branches."""
3660
3605
    # TODO: Options to specify revisions on either side, as if
3661
3606
    #       merging only part of the history.
3662
3607
    takes_args = ['branch', 'other']
3668
3613
 
3669
3614
        branch1 = Branch.open_containing(branch)[0]
3670
3615
        branch2 = Branch.open_containing(other)[0]
3671
 
        self.add_cleanup(branch1.lock_read().unlock)
3672
 
        self.add_cleanup(branch2.lock_read().unlock)
 
3616
        branch1.lock_read()
 
3617
        self.add_cleanup(branch1.unlock)
 
3618
        branch2.lock_read()
 
3619
        self.add_cleanup(branch2.unlock)
3673
3620
        last1 = ensure_null(branch1.last_revision())
3674
3621
        last2 = ensure_null(branch2.last_revision())
3675
3622
 
3676
3623
        graph = branch1.repository.get_graph(branch2.repository)
3677
3624
        base_rev_id = graph.find_unique_lca(last1, last2)
3678
3625
 
3679
 
        self.outf.write('merge base is revision %s\n' % base_rev_id)
 
3626
        print 'merge base is revision %s' % base_rev_id
3680
3627
 
3681
3628
 
3682
3629
class cmd_merge(Command):
3683
 
    __doc__ = """Perform a three-way merge.
 
3630
    """Perform a three-way merge.
3684
3631
 
3685
3632
    The source of the merge can be specified either in the form of a branch,
3686
3633
    or in the form of a path to a file containing a merge directive generated
3769
3716
                ' completely merged into the source, pull from the'
3770
3717
                ' source rather than merging.  When this happens,'
3771
3718
                ' you do not need to commit the result.'),
3772
 
        custom_help('directory',
 
3719
        Option('directory',
3773
3720
               help='Branch to merge into, '
3774
 
                    'rather than the one containing the working directory.'),
 
3721
                    'rather than the one containing the working directory.',
 
3722
               short_name='d',
 
3723
               type=unicode,
 
3724
               ),
3775
3725
        Option('preview', help='Instead of merging, show a diff of the'
3776
3726
               ' merge.'),
3777
3727
        Option('interactive', help='Select changes interactively.',
3810
3760
            unversioned_filter=tree.is_ignored, view_info=view_info)
3811
3761
        pb = ui.ui_factory.nested_progress_bar()
3812
3762
        self.add_cleanup(pb.finished)
3813
 
        self.add_cleanup(tree.lock_write().unlock)
 
3763
        tree.lock_write()
 
3764
        self.add_cleanup(tree.unlock)
3814
3765
        if location is not None:
3815
3766
            try:
3816
3767
                mergeable = bundle.read_mergeable_from_url(location,
3877
3828
    def _do_preview(self, merger):
3878
3829
        from bzrlib.diff import show_diff_trees
3879
3830
        result_tree = self._get_preview(merger)
3880
 
        path_encoding = osutils.get_diff_header_encoding()
3881
3831
        show_diff_trees(merger.this_tree, result_tree, self.outf,
3882
 
                        old_label='', new_label='',
3883
 
                        path_encoding=path_encoding)
 
3832
                        old_label='', new_label='')
3884
3833
 
3885
3834
    def _do_merge(self, merger, change_reporter, allow_pending, verified):
3886
3835
        merger.change_reporter = change_reporter
4039
3988
 
4040
3989
 
4041
3990
class cmd_remerge(Command):
4042
 
    __doc__ = """Redo a merge.
 
3991
    """Redo a merge.
4043
3992
 
4044
3993
    Use this if you want to try a different merge technique while resolving
4045
3994
    conflicts.  Some merge techniques are better than others, and remerge
4070
4019
 
4071
4020
    def run(self, file_list=None, merge_type=None, show_base=False,
4072
4021
            reprocess=False):
4073
 
        from bzrlib.conflicts import restore
4074
4022
        if merge_type is None:
4075
4023
            merge_type = _mod_merge.Merge3Merger
4076
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
4077
 
        self.add_cleanup(tree.lock_write().unlock)
 
4024
        tree, file_list = tree_files(file_list)
 
4025
        tree.lock_write()
 
4026
        self.add_cleanup(tree.unlock)
4078
4027
        parents = tree.get_parent_ids()
4079
4028
        if len(parents) != 2:
4080
4029
            raise errors.BzrCommandError("Sorry, remerge only works after normal"
4133
4082
 
4134
4083
 
4135
4084
class cmd_revert(Command):
4136
 
    __doc__ = """Revert files to a previous revision.
 
4085
    """Revert files to a previous revision.
4137
4086
 
4138
4087
    Giving a list of files will revert only those files.  Otherwise, all files
4139
4088
    will be reverted.  If the revision is not specified with '--revision', the
4189
4138
 
4190
4139
    def run(self, revision=None, no_backup=False, file_list=None,
4191
4140
            forget_merges=None):
4192
 
        tree, file_list = WorkingTree.open_containing_paths(file_list)
4193
 
        self.add_cleanup(tree.lock_tree_write().unlock)
 
4141
        tree, file_list = tree_files(file_list)
 
4142
        tree.lock_write()
 
4143
        self.add_cleanup(tree.unlock)
4194
4144
        if forget_merges:
4195
4145
            tree.set_parent_ids(tree.get_parent_ids()[:1])
4196
4146
        else:
4204
4154
 
4205
4155
 
4206
4156
class cmd_assert_fail(Command):
4207
 
    __doc__ = """Test reporting of assertion failures"""
 
4157
    """Test reporting of assertion failures"""
4208
4158
    # intended just for use in testing
4209
4159
 
4210
4160
    hidden = True
4214
4164
 
4215
4165
 
4216
4166
class cmd_help(Command):
4217
 
    __doc__ = """Show help on a command or other topic.
 
4167
    """Show help on a command or other topic.
4218
4168
    """
4219
4169
 
4220
4170
    _see_also = ['topics']
4233
4183
 
4234
4184
 
4235
4185
class cmd_shell_complete(Command):
4236
 
    __doc__ = """Show appropriate completions for context.
 
4186
    """Show appropriate completions for context.
4237
4187
 
4238
4188
    For a list of all available commands, say 'bzr shell-complete'.
4239
4189
    """
4248
4198
 
4249
4199
 
4250
4200
class cmd_missing(Command):
4251
 
    __doc__ = """Show unmerged/unpulled revisions between two branches.
 
4201
    """Show unmerged/unpulled revisions between two branches.
4252
4202
 
4253
4203
    OTHER_BRANCH may be local or remote.
4254
4204
 
4285
4235
    _see_also = ['merge', 'pull']
4286
4236
    takes_args = ['other_branch?']
4287
4237
    takes_options = [
4288
 
        'directory',
4289
4238
        Option('reverse', 'Reverse the order of revisions.'),
4290
4239
        Option('mine-only',
4291
4240
               'Display changes in the local branch only.'),
4313
4262
            theirs_only=False,
4314
4263
            log_format=None, long=False, short=False, line=False,
4315
4264
            show_ids=False, verbose=False, this=False, other=False,
4316
 
            include_merges=False, revision=None, my_revision=None,
4317
 
            directory=u'.'):
 
4265
            include_merges=False, revision=None, my_revision=None):
4318
4266
        from bzrlib.missing import find_unmerged, iter_log_revisions
4319
4267
        def message(s):
4320
4268
            if not is_quiet():
4333
4281
        elif theirs_only:
4334
4282
            restrict = 'remote'
4335
4283
 
4336
 
        local_branch = Branch.open_containing(directory)[0]
4337
 
        self.add_cleanup(local_branch.lock_read().unlock)
4338
 
 
 
4284
        local_branch = Branch.open_containing(u".")[0]
4339
4285
        parent = local_branch.get_parent()
4340
4286
        if other_branch is None:
4341
4287
            other_branch = parent
4350
4296
        remote_branch = Branch.open(other_branch)
4351
4297
        if remote_branch.base == local_branch.base:
4352
4298
            remote_branch = local_branch
4353
 
        else:
4354
 
            self.add_cleanup(remote_branch.lock_read().unlock)
4355
4299
 
 
4300
        local_branch.lock_read()
 
4301
        self.add_cleanup(local_branch.unlock)
4356
4302
        local_revid_range = _revision_range_to_revid_range(
4357
4303
            _get_revision_range(my_revision, local_branch,
4358
4304
                self.name()))
4359
4305
 
 
4306
        remote_branch.lock_read()
 
4307
        self.add_cleanup(remote_branch.unlock)
4360
4308
        remote_revid_range = _revision_range_to_revid_range(
4361
4309
            _get_revision_range(revision,
4362
4310
                remote_branch, self.name()))
4412
4360
            message("Branches are up to date.\n")
4413
4361
        self.cleanup_now()
4414
4362
        if not status_code and parent is None and other_branch is not None:
4415
 
            self.add_cleanup(local_branch.lock_write().unlock)
 
4363
            local_branch.lock_write()
 
4364
            self.add_cleanup(local_branch.unlock)
4416
4365
            # handle race conditions - a parent might be set while we run.
4417
4366
            if local_branch.get_parent() is None:
4418
4367
                local_branch.set_parent(remote_branch.base)
4420
4369
 
4421
4370
 
4422
4371
class cmd_pack(Command):
4423
 
    __doc__ = """Compress the data within a repository.
4424
 
 
4425
 
    This operation compresses the data within a bazaar repository. As
4426
 
    bazaar supports automatic packing of repository, this operation is
4427
 
    normally not required to be done manually.
4428
 
 
4429
 
    During the pack operation, bazaar takes a backup of existing repository
4430
 
    data, i.e. pack files. This backup is eventually removed by bazaar
4431
 
    automatically when it is safe to do so. To save disk space by removing
4432
 
    the backed up pack files, the --clean-obsolete-packs option may be
4433
 
    used.
4434
 
 
4435
 
    Warning: If you use --clean-obsolete-packs and your machine crashes
4436
 
    during or immediately after repacking, you may be left with a state
4437
 
    where the deletion has been written to disk but the new packs have not
4438
 
    been. In this case the repository may be unusable.
4439
 
    """
 
4372
    """Compress the data within a repository."""
4440
4373
 
4441
4374
    _see_also = ['repositories']
4442
4375
    takes_args = ['branch_or_repo?']
4443
 
    takes_options = [
4444
 
        Option('clean-obsolete-packs', 'Delete obsolete packs to save disk space.'),
4445
 
        ]
4446
4376
 
4447
 
    def run(self, branch_or_repo='.', clean_obsolete_packs=False):
 
4377
    def run(self, branch_or_repo='.'):
4448
4378
        dir = bzrdir.BzrDir.open_containing(branch_or_repo)[0]
4449
4379
        try:
4450
4380
            branch = dir.open_branch()
4451
4381
            repository = branch.repository
4452
4382
        except errors.NotBranchError:
4453
4383
            repository = dir.open_repository()
4454
 
        repository.pack(clean_obsolete_packs=clean_obsolete_packs)
 
4384
        repository.pack()
4455
4385
 
4456
4386
 
4457
4387
class cmd_plugins(Command):
4458
 
    __doc__ = """List the installed plugins.
 
4388
    """List the installed plugins.
4459
4389
 
4460
4390
    This command displays the list of installed plugins including
4461
4391
    version of plugin and a short description of each.
4492
4422
                doc = '(no description)'
4493
4423
            result.append((name_ver, doc, plugin.path()))
4494
4424
        for name_ver, doc, path in sorted(result):
4495
 
            self.outf.write("%s\n" % name_ver)
4496
 
            self.outf.write("   %s\n" % doc)
 
4425
            print name_ver
 
4426
            print '   ', doc
4497
4427
            if verbose:
4498
 
                self.outf.write("   %s\n" % path)
4499
 
            self.outf.write("\n")
 
4428
                print '   ', path
 
4429
            print
4500
4430
 
4501
4431
 
4502
4432
class cmd_testament(Command):
4503
 
    __doc__ = """Show testament (signing-form) of a revision."""
 
4433
    """Show testament (signing-form) of a revision."""
4504
4434
    takes_options = [
4505
4435
            'revision',
4506
4436
            Option('long', help='Produce long-format testament.'),
4518
4448
            b = Branch.open_containing(branch)[0]
4519
4449
        else:
4520
4450
            b = Branch.open(branch)
4521
 
        self.add_cleanup(b.lock_read().unlock)
 
4451
        b.lock_read()
 
4452
        self.add_cleanup(b.unlock)
4522
4453
        if revision is None:
4523
4454
            rev_id = b.last_revision()
4524
4455
        else:
4531
4462
 
4532
4463
 
4533
4464
class cmd_annotate(Command):
4534
 
    __doc__ = """Show the origin of each line in a file.
 
4465
    """Show the origin of each line in a file.
4535
4466
 
4536
4467
    This prints out the given file with an annotation on the left side
4537
4468
    indicating which revision, author and date introduced the change.
4548
4479
                     Option('long', help='Show commit date in annotations.'),
4549
4480
                     'revision',
4550
4481
                     'show-ids',
4551
 
                     'directory',
4552
4482
                     ]
4553
4483
    encoding_type = 'exact'
4554
4484
 
4555
4485
    @display_command
4556
4486
    def run(self, filename, all=False, long=False, revision=None,
4557
 
            show_ids=False, directory=None):
 
4487
            show_ids=False):
4558
4488
        from bzrlib.annotate import annotate_file, annotate_file_tree
4559
4489
        wt, branch, relpath = \
4560
 
            _open_directory_or_containing_tree_or_branch(filename, directory)
 
4490
            bzrdir.BzrDir.open_containing_tree_or_branch(filename)
4561
4491
        if wt is not None:
4562
 
            self.add_cleanup(wt.lock_read().unlock)
 
4492
            wt.lock_read()
 
4493
            self.add_cleanup(wt.unlock)
4563
4494
        else:
4564
 
            self.add_cleanup(branch.lock_read().unlock)
 
4495
            branch.lock_read()
 
4496
            self.add_cleanup(branch.unlock)
4565
4497
        tree = _get_one_revision_tree('annotate', revision, branch=branch)
4566
 
        self.add_cleanup(tree.lock_read().unlock)
 
4498
        tree.lock_read()
 
4499
        self.add_cleanup(tree.unlock)
4567
4500
        if wt is not None:
4568
4501
            file_id = wt.path2id(relpath)
4569
4502
        else:
4582
4515
 
4583
4516
 
4584
4517
class cmd_re_sign(Command):
4585
 
    __doc__ = """Create a digital signature for an existing revision."""
 
4518
    """Create a digital signature for an existing revision."""
4586
4519
    # TODO be able to replace existing ones.
4587
4520
 
4588
4521
    hidden = True # is this right ?
4589
4522
    takes_args = ['revision_id*']
4590
 
    takes_options = ['directory', 'revision']
 
4523
    takes_options = ['revision']
4591
4524
 
4592
 
    def run(self, revision_id_list=None, revision=None, directory=u'.'):
 
4525
    def run(self, revision_id_list=None, revision=None):
4593
4526
        if revision_id_list is not None and revision is not None:
4594
4527
            raise errors.BzrCommandError('You can only supply one of revision_id or --revision')
4595
4528
        if revision_id_list is None and revision is None:
4596
4529
            raise errors.BzrCommandError('You must supply either --revision or a revision_id')
4597
 
        b = WorkingTree.open_containing(directory)[0].branch
4598
 
        self.add_cleanup(b.lock_write().unlock)
 
4530
        b = WorkingTree.open_containing(u'.')[0].branch
 
4531
        b.lock_write()
 
4532
        self.add_cleanup(b.unlock)
4599
4533
        return self._run(b, revision_id_list, revision)
4600
4534
 
4601
4535
    def _run(self, b, revision_id_list, revision):
4647
4581
 
4648
4582
 
4649
4583
class cmd_bind(Command):
4650
 
    __doc__ = """Convert the current branch into a checkout of the supplied branch.
4651
 
    If no branch is supplied, rebind to the last bound location.
 
4584
    """Convert the current branch into a checkout of the supplied branch.
4652
4585
 
4653
4586
    Once converted into a checkout, commits must succeed on the master branch
4654
4587
    before they will be applied to the local branch.
4660
4593
 
4661
4594
    _see_also = ['checkouts', 'unbind']
4662
4595
    takes_args = ['location?']
4663
 
    takes_options = ['directory']
 
4596
    takes_options = []
4664
4597
 
4665
 
    def run(self, location=None, directory=u'.'):
4666
 
        b, relpath = Branch.open_containing(directory)
 
4598
    def run(self, location=None):
 
4599
        b, relpath = Branch.open_containing(u'.')
4667
4600
        if location is None:
4668
4601
            try:
4669
4602
                location = b.get_old_bound_location()
4688
4621
 
4689
4622
 
4690
4623
class cmd_unbind(Command):
4691
 
    __doc__ = """Convert the current checkout into a regular branch.
 
4624
    """Convert the current checkout into a regular branch.
4692
4625
 
4693
4626
    After unbinding, the local branch is considered independent and subsequent
4694
4627
    commits will be local only.
4696
4629
 
4697
4630
    _see_also = ['checkouts', 'bind']
4698
4631
    takes_args = []
4699
 
    takes_options = ['directory']
 
4632
    takes_options = []
4700
4633
 
4701
 
    def run(self, directory=u'.'):
4702
 
        b, relpath = Branch.open_containing(directory)
 
4634
    def run(self):
 
4635
        b, relpath = Branch.open_containing(u'.')
4703
4636
        if not b.unbind():
4704
4637
            raise errors.BzrCommandError('Local branch is not bound')
4705
4638
 
4706
4639
 
4707
4640
class cmd_uncommit(Command):
4708
 
    __doc__ = """Remove the last committed revision.
 
4641
    """Remove the last committed revision.
4709
4642
 
4710
4643
    --verbose will print out what is being removed.
4711
4644
    --dry-run will go through all the motions, but not actually
4751
4684
            b = control.open_branch()
4752
4685
 
4753
4686
        if tree is not None:
4754
 
            self.add_cleanup(tree.lock_write().unlock)
 
4687
            tree.lock_write()
 
4688
            self.add_cleanup(tree.unlock)
4755
4689
        else:
4756
 
            self.add_cleanup(b.lock_write().unlock)
 
4690
            b.lock_write()
 
4691
            self.add_cleanup(b.unlock)
4757
4692
        return self._run(b, tree, dry_run, verbose, revision, force, local=local)
4758
4693
 
4759
4694
    def _run(self, b, tree, dry_run, verbose, revision, force, local=False):
4777
4712
                rev_id = b.get_rev_id(revno)
4778
4713
 
4779
4714
        if rev_id is None or _mod_revision.is_null(rev_id):
4780
 
            self.outf.write('No revisions to uncommit.\n')
 
4715
            ui.ui_factory.note('No revisions to uncommit.')
4781
4716
            return 1
4782
4717
 
 
4718
        log_collector = ui.ui_factory.make_output_stream()
4783
4719
        lf = log_formatter('short',
4784
 
                           to_file=self.outf,
 
4720
                           to_file=log_collector,
4785
4721
                           show_timezone='original')
4786
4722
 
4787
4723
        show_log(b,
4792
4728
                 end_revision=last_revno)
4793
4729
 
4794
4730
        if dry_run:
4795
 
            self.outf.write('Dry-run, pretending to remove'
4796
 
                            ' the above revisions.\n')
 
4731
            ui.ui_factory.note('Dry-run, pretending to remove the above revisions.')
4797
4732
        else:
4798
 
            self.outf.write('The above revision(s) will be removed.\n')
 
4733
            ui.ui_factory.note('The above revision(s) will be removed.')
4799
4734
 
4800
4735
        if not force:
4801
 
            if not ui.ui_factory.get_boolean('Are you sure'):
4802
 
                self.outf.write('Canceled')
 
4736
            if not ui.ui_factory.get_boolean('Are you sure [y/N]? '):
 
4737
                ui.ui_factory.note('Canceled')
4803
4738
                return 0
4804
4739
 
4805
4740
        mutter('Uncommitting from {%s} to {%s}',
4806
4741
               last_rev_id, rev_id)
4807
4742
        uncommit(b, tree=tree, dry_run=dry_run, verbose=verbose,
4808
4743
                 revno=revno, local=local)
4809
 
        self.outf.write('You can restore the old tip by running:\n'
4810
 
             '  bzr pull . -r revid:%s\n' % last_rev_id)
 
4744
        ui.ui_factory.note('You can restore the old tip by running:\n'
 
4745
             '  bzr pull . -r revid:%s' % last_rev_id)
4811
4746
 
4812
4747
 
4813
4748
class cmd_break_lock(Command):
4814
 
    __doc__ = """Break a dead lock.
4815
 
 
4816
 
    This command breaks a lock on a repository, branch, working directory or
4817
 
    config file.
 
4749
    """Break a dead lock on a repository, branch or working directory.
4818
4750
 
4819
4751
    CAUTION: Locks should only be broken when you are sure that the process
4820
4752
    holding the lock has been stopped.
4825
4757
    :Examples:
4826
4758
        bzr break-lock
4827
4759
        bzr break-lock bzr+ssh://example.com/bzr/foo
4828
 
        bzr break-lock --conf ~/.bazaar
4829
4760
    """
4830
 
 
4831
4761
    takes_args = ['location?']
4832
 
    takes_options = [
4833
 
        Option('config',
4834
 
               help='LOCATION is the directory where the config lock is.'),
4835
 
        ]
4836
4762
 
4837
 
    def run(self, location=None, config=False):
 
4763
    def run(self, location=None, show=False):
4838
4764
        if location is None:
4839
4765
            location = u'.'
4840
 
        if config:
4841
 
            conf = _mod_config.LockableConfig(file_name=location)
4842
 
            conf.break_lock()
4843
 
        else:
4844
 
            control, relpath = bzrdir.BzrDir.open_containing(location)
4845
 
            try:
4846
 
                control.break_lock()
4847
 
            except NotImplementedError:
4848
 
                pass
 
4766
        control, relpath = bzrdir.BzrDir.open_containing(location)
 
4767
        try:
 
4768
            control.break_lock()
 
4769
        except NotImplementedError:
 
4770
            pass
4849
4771
 
4850
4772
 
4851
4773
class cmd_wait_until_signalled(Command):
4852
 
    __doc__ = """Test helper for test_start_and_stop_bzr_subprocess_send_signal.
 
4774
    """Test helper for test_start_and_stop_bzr_subprocess_send_signal.
4853
4775
 
4854
4776
    This just prints a line to signal when it is ready, then blocks on stdin.
4855
4777
    """
4863
4785
 
4864
4786
 
4865
4787
class cmd_serve(Command):
4866
 
    __doc__ = """Run the bzr server."""
 
4788
    """Run the bzr server."""
4867
4789
 
4868
4790
    aliases = ['server']
4869
4791
 
4880
4802
                    'result in a dynamically allocated port.  The default port '
4881
4803
                    'depends on the protocol.',
4882
4804
               type=str),
4883
 
        custom_help('directory',
4884
 
               help='Serve contents of this directory.'),
 
4805
        Option('directory',
 
4806
               help='Serve contents of this directory.',
 
4807
               type=unicode),
4885
4808
        Option('allow-writes',
4886
4809
               help='By default the server is a readonly server.  Supplying '
4887
4810
                    '--allow-writes enables write access to the contents of '
4914
4837
 
4915
4838
    def run(self, port=None, inet=False, directory=None, allow_writes=False,
4916
4839
            protocol=None):
4917
 
        from bzrlib import transport
 
4840
        from bzrlib.transport import get_transport, transport_server_registry
4918
4841
        if directory is None:
4919
4842
            directory = os.getcwd()
4920
4843
        if protocol is None:
4921
 
            protocol = transport.transport_server_registry.get()
 
4844
            protocol = transport_server_registry.get()
4922
4845
        host, port = self.get_host_and_port(port)
4923
4846
        url = urlutils.local_path_to_url(directory)
4924
4847
        if not allow_writes:
4925
4848
            url = 'readonly+' + url
4926
 
        t = transport.get_transport(url)
4927
 
        protocol(t, host, port, inet)
 
4849
        transport = get_transport(url)
 
4850
        protocol(transport, host, port, inet)
4928
4851
 
4929
4852
 
4930
4853
class cmd_join(Command):
4931
 
    __doc__ = """Combine a tree into its containing tree.
 
4854
    """Combine a tree into its containing tree.
4932
4855
 
4933
4856
    This command requires the target tree to be in a rich-root format.
4934
4857
 
4974
4897
 
4975
4898
 
4976
4899
class cmd_split(Command):
4977
 
    __doc__ = """Split a subdirectory of a tree into a separate tree.
 
4900
    """Split a subdirectory of a tree into a separate tree.
4978
4901
 
4979
4902
    This command will produce a target tree in a format that supports
4980
4903
    rich roots, like 'rich-root' or 'rich-root-pack'.  These formats cannot be
5000
4923
 
5001
4924
 
5002
4925
class cmd_merge_directive(Command):
5003
 
    __doc__ = """Generate a merge directive for auto-merge tools.
 
4926
    """Generate a merge directive for auto-merge tools.
5004
4927
 
5005
4928
    A directive requests a merge to be performed, and also provides all the
5006
4929
    information necessary to do so.  This means it must either include a
5023
4946
    _see_also = ['send']
5024
4947
 
5025
4948
    takes_options = [
5026
 
        'directory',
5027
4949
        RegistryOption.from_kwargs('patch-type',
5028
4950
            'The type of patch to include in the directive.',
5029
4951
            title='Patch type',
5042
4964
    encoding_type = 'exact'
5043
4965
 
5044
4966
    def run(self, submit_branch=None, public_branch=None, patch_type='bundle',
5045
 
            sign=False, revision=None, mail_to=None, message=None,
5046
 
            directory=u'.'):
 
4967
            sign=False, revision=None, mail_to=None, message=None):
5047
4968
        from bzrlib.revision import ensure_null, NULL_REVISION
5048
4969
        include_patch, include_bundle = {
5049
4970
            'plain': (False, False),
5050
4971
            'diff': (True, False),
5051
4972
            'bundle': (True, True),
5052
4973
            }[patch_type]
5053
 
        branch = Branch.open(directory)
 
4974
        branch = Branch.open('.')
5054
4975
        stored_submit_branch = branch.get_submit_branch()
5055
4976
        if submit_branch is None:
5056
4977
            submit_branch = stored_submit_branch
5101
5022
 
5102
5023
 
5103
5024
class cmd_send(Command):
5104
 
    __doc__ = """Mail or create a merge-directive for submitting changes.
 
5025
    """Mail or create a merge-directive for submitting changes.
5105
5026
 
5106
5027
    A merge directive provides many things needed for requesting merges:
5107
5028
 
5141
5062
    given, in which case it is sent to a file.
5142
5063
 
5143
5064
    Mail is sent using your preferred mail program.  This should be transparent
5144
 
    on Windows (it uses MAPI).  On Unix, it requires the xdg-email utility.
 
5065
    on Windows (it uses MAPI).  On Linux, it requires the xdg-email utility.
5145
5066
    If the preferred client can't be found (or used), your editor will be used.
5146
5067
 
5147
5068
    To use a specific mail program, set the mail_client configuration option.
5189
5110
               short_name='f',
5190
5111
               type=unicode),
5191
5112
        Option('output', short_name='o',
5192
 
               help='Write merge directive to this file or directory; '
 
5113
               help='Write merge directive to this file; '
5193
5114
                    'use - for stdout.',
5194
5115
               type=unicode),
5195
5116
        Option('strict',
5218
5139
 
5219
5140
 
5220
5141
class cmd_bundle_revisions(cmd_send):
5221
 
    __doc__ = """Create a merge-directive for submitting changes.
 
5142
    """Create a merge-directive for submitting changes.
5222
5143
 
5223
5144
    A merge directive provides many things needed for requesting merges:
5224
5145
 
5291
5212
 
5292
5213
 
5293
5214
class cmd_tag(Command):
5294
 
    __doc__ = """Create, remove or modify a tag naming a revision.
 
5215
    """Create, remove or modify a tag naming a revision.
5295
5216
 
5296
5217
    Tags give human-meaningful names to revisions.  Commands that take a -r
5297
5218
    (--revision) option can be given -rtag:X, where X is any previously
5305
5226
 
5306
5227
    To rename a tag (change the name but keep it on the same revsion), run ``bzr
5307
5228
    tag new-name -r tag:old-name`` and then ``bzr tag --delete oldname``.
5308
 
 
5309
 
    If no tag name is specified it will be determined through the 
5310
 
    'automatic_tag_name' hook. This can e.g. be used to automatically tag
5311
 
    upstream releases by reading configure.ac. See ``bzr help hooks`` for
5312
 
    details.
5313
5229
    """
5314
5230
 
5315
5231
    _see_also = ['commit', 'tags']
5316
 
    takes_args = ['tag_name?']
 
5232
    takes_args = ['tag_name']
5317
5233
    takes_options = [
5318
5234
        Option('delete',
5319
5235
            help='Delete this tag rather than placing it.',
5320
5236
            ),
5321
 
        custom_help('directory',
5322
 
            help='Branch in which to place the tag.'),
 
5237
        Option('directory',
 
5238
            help='Branch in which to place the tag.',
 
5239
            short_name='d',
 
5240
            type=unicode,
 
5241
            ),
5323
5242
        Option('force',
5324
5243
            help='Replace existing tags.',
5325
5244
            ),
5326
5245
        'revision',
5327
5246
        ]
5328
5247
 
5329
 
    def run(self, tag_name=None,
 
5248
    def run(self, tag_name,
5330
5249
            delete=None,
5331
5250
            directory='.',
5332
5251
            force=None,
5333
5252
            revision=None,
5334
5253
            ):
5335
5254
        branch, relpath = Branch.open_containing(directory)
5336
 
        self.add_cleanup(branch.lock_write().unlock)
 
5255
        branch.lock_write()
 
5256
        self.add_cleanup(branch.unlock)
5337
5257
        if delete:
5338
 
            if tag_name is None:
5339
 
                raise errors.BzrCommandError("No tag specified to delete.")
5340
5258
            branch.tags.delete_tag(tag_name)
5341
5259
            self.outf.write('Deleted tag %s.\n' % tag_name)
5342
5260
        else:
5348
5266
                revision_id = revision[0].as_revision_id(branch)
5349
5267
            else:
5350
5268
                revision_id = branch.last_revision()
5351
 
            if tag_name is None:
5352
 
                tag_name = branch.automatic_tag_name(revision_id)
5353
 
                if tag_name is None:
5354
 
                    raise errors.BzrCommandError(
5355
 
                        "Please specify a tag name.")
5356
5269
            if (not force) and branch.tags.has_tag(tag_name):
5357
5270
                raise errors.TagAlreadyExists(tag_name)
5358
5271
            branch.tags.set_tag(tag_name, revision_id)
5360
5273
 
5361
5274
 
5362
5275
class cmd_tags(Command):
5363
 
    __doc__ = """List tags.
 
5276
    """List tags.
5364
5277
 
5365
5278
    This command shows a table of tag names and the revisions they reference.
5366
5279
    """
5367
5280
 
5368
5281
    _see_also = ['tag']
5369
5282
    takes_options = [
5370
 
        custom_help('directory',
5371
 
            help='Branch whose tags should be displayed.'),
 
5283
        Option('directory',
 
5284
            help='Branch whose tags should be displayed.',
 
5285
            short_name='d',
 
5286
            type=unicode,
 
5287
            ),
5372
5288
        RegistryOption.from_kwargs('sort',
5373
5289
            'Sort tags by different criteria.', title='Sorting',
5374
5290
            alpha='Sort tags lexicographically (default).',
5391
5307
        if not tags:
5392
5308
            return
5393
5309
 
5394
 
        self.add_cleanup(branch.lock_read().unlock)
 
5310
        branch.lock_read()
 
5311
        self.add_cleanup(branch.unlock)
5395
5312
        if revision:
5396
5313
            graph = branch.repository.get_graph()
5397
5314
            rev1, rev2 = _get_revision_range(revision, branch, self.name())
5430
5347
 
5431
5348
 
5432
5349
class cmd_reconfigure(Command):
5433
 
    __doc__ = """Reconfigure the type of a bzr directory.
 
5350
    """Reconfigure the type of a bzr directory.
5434
5351
 
5435
5352
    A target configuration must be specified.
5436
5353
 
5521
5438
 
5522
5439
 
5523
5440
class cmd_switch(Command):
5524
 
    __doc__ = """Set the branch of a checkout and update.
 
5441
    """Set the branch of a checkout and update.
5525
5442
 
5526
5443
    For lightweight checkouts, this changes the branch being referenced.
5527
5444
    For heavyweight checkouts, this checks that there are no local commits
5544
5461
    """
5545
5462
 
5546
5463
    takes_args = ['to_location?']
5547
 
    takes_options = ['directory',
5548
 
                     Option('force',
 
5464
    takes_options = [Option('force',
5549
5465
                        help='Switch even if local commits will be lost.'),
5550
5466
                     'revision',
5551
5467
                     Option('create-branch', short_name='b',
5554
5470
                    ]
5555
5471
 
5556
5472
    def run(self, to_location=None, force=False, create_branch=False,
5557
 
            revision=None, directory=u'.'):
 
5473
            revision=None):
5558
5474
        from bzrlib import switch
5559
 
        tree_location = directory
 
5475
        tree_location = '.'
5560
5476
        revision = _get_one_revision('switch', revision)
5561
5477
        control_dir = bzrdir.BzrDir.open_containing(tree_location)[0]
5562
5478
        if to_location is None:
5563
5479
            if revision is None:
5564
5480
                raise errors.BzrCommandError('You must supply either a'
5565
5481
                                             ' revision or a location')
5566
 
            to_location = tree_location
 
5482
            to_location = '.'
5567
5483
        try:
5568
5484
            branch = control_dir.open_branch()
5569
5485
            had_explicit_nick = branch.get_config().has_explicit_nickname()
5618
5534
 
5619
5535
 
5620
5536
class cmd_view(Command):
5621
 
    __doc__ = """Manage filtered views.
 
5537
    """Manage filtered views.
5622
5538
 
5623
5539
    Views provide a mask over the tree so that users can focus on
5624
5540
    a subset of a tree when doing their work. After creating a view,
5704
5620
            name=None,
5705
5621
            switch=None,
5706
5622
            ):
5707
 
        tree, file_list = WorkingTree.open_containing_paths(file_list,
5708
 
            apply_view=False)
 
5623
        tree, file_list = tree_files(file_list, apply_view=False)
5709
5624
        current_view, view_dict = tree.views.get_view_info()
5710
5625
        if name is None:
5711
5626
            name = current_view
5773
5688
 
5774
5689
 
5775
5690
class cmd_hooks(Command):
5776
 
    __doc__ = """Show hooks."""
 
5691
    """Show hooks."""
5777
5692
 
5778
5693
    hidden = True
5779
5694
 
5792
5707
                    self.outf.write("    <no hooks installed>\n")
5793
5708
 
5794
5709
 
5795
 
class cmd_remove_branch(Command):
5796
 
    __doc__ = """Remove a branch.
5797
 
 
5798
 
    This will remove the branch from the specified location but 
5799
 
    will keep any working tree or repository in place.
5800
 
 
5801
 
    :Examples:
5802
 
 
5803
 
      Remove the branch at repo/trunk::
5804
 
 
5805
 
        bzr remove-branch repo/trunk
5806
 
 
5807
 
    """
5808
 
 
5809
 
    takes_args = ["location?"]
5810
 
 
5811
 
    aliases = ["rmbranch"]
5812
 
 
5813
 
    def run(self, location=None):
5814
 
        if location is None:
5815
 
            location = "."
5816
 
        branch = Branch.open_containing(location)[0]
5817
 
        branch.bzrdir.destroy_branch()
5818
 
        
5819
 
 
5820
5710
class cmd_shelve(Command):
5821
 
    __doc__ = """Temporarily set aside some changes from the current tree.
 
5711
    """Temporarily set aside some changes from the current tree.
5822
5712
 
5823
5713
    Shelve allows you to temporarily put changes you've made "on the shelf",
5824
5714
    ie. out of the way, until a later time when you can bring them back from
5845
5735
    takes_args = ['file*']
5846
5736
 
5847
5737
    takes_options = [
5848
 
        'directory',
5849
5738
        'revision',
5850
5739
        Option('all', help='Shelve all changes.'),
5851
5740
        'message',
5860
5749
    _see_also = ['unshelve']
5861
5750
 
5862
5751
    def run(self, revision=None, all=False, file_list=None, message=None,
5863
 
            writer=None, list=False, destroy=False, directory=u'.'):
 
5752
            writer=None, list=False, destroy=False):
5864
5753
        if list:
5865
5754
            return self.run_for_list()
5866
5755
        from bzrlib.shelf_ui import Shelver
5868
5757
            writer = bzrlib.option.diff_writer_registry.get()
5869
5758
        try:
5870
5759
            shelver = Shelver.from_args(writer(sys.stdout), revision, all,
5871
 
                file_list, message, destroy=destroy, directory=directory)
 
5760
                file_list, message, destroy=destroy)
5872
5761
            try:
5873
5762
                shelver.run()
5874
5763
            finally:
5878
5767
 
5879
5768
    def run_for_list(self):
5880
5769
        tree = WorkingTree.open_containing('.')[0]
5881
 
        self.add_cleanup(tree.lock_read().unlock)
 
5770
        tree.lock_read()
 
5771
        self.add_cleanup(tree.unlock)
5882
5772
        manager = tree.get_shelf_manager()
5883
5773
        shelves = manager.active_shelves()
5884
5774
        if len(shelves) == 0:
5893
5783
 
5894
5784
 
5895
5785
class cmd_unshelve(Command):
5896
 
    __doc__ = """Restore shelved changes.
 
5786
    """Restore shelved changes.
5897
5787
 
5898
5788
    By default, the most recently shelved changes are restored. However if you
5899
5789
    specify a shelf by id those changes will be restored instead.  This works
5902
5792
 
5903
5793
    takes_args = ['shelf_id?']
5904
5794
    takes_options = [
5905
 
        'directory',
5906
5795
        RegistryOption.from_kwargs(
5907
5796
            'action', help="The action to perform.",
5908
5797
            enum_switch=False, value_switches=True,
5916
5805
    ]
5917
5806
    _see_also = ['shelve']
5918
5807
 
5919
 
    def run(self, shelf_id=None, action='apply', directory=u'.'):
 
5808
    def run(self, shelf_id=None, action='apply'):
5920
5809
        from bzrlib.shelf_ui import Unshelver
5921
 
        unshelver = Unshelver.from_args(shelf_id, action, directory=directory)
 
5810
        unshelver = Unshelver.from_args(shelf_id, action)
5922
5811
        try:
5923
5812
            unshelver.run()
5924
5813
        finally:
5926
5815
 
5927
5816
 
5928
5817
class cmd_clean_tree(Command):
5929
 
    __doc__ = """Remove unwanted files from working tree.
 
5818
    """Remove unwanted files from working tree.
5930
5819
 
5931
5820
    By default, only unknown files, not ignored files, are deleted.  Versioned
5932
5821
    files are never deleted.
5940
5829
 
5941
5830
    To check what clean-tree will do, use --dry-run.
5942
5831
    """
5943
 
    takes_options = ['directory',
5944
 
                     Option('ignored', help='Delete all ignored files.'),
 
5832
    takes_options = [Option('ignored', help='Delete all ignored files.'),
5945
5833
                     Option('detritus', help='Delete conflict files, merge'
5946
5834
                            ' backups, and failed selftest dirs.'),
5947
5835
                     Option('unknown',
5950
5838
                            ' deleting them.'),
5951
5839
                     Option('force', help='Do not prompt before deleting.')]
5952
5840
    def run(self, unknown=False, ignored=False, detritus=False, dry_run=False,
5953
 
            force=False, directory=u'.'):
 
5841
            force=False):
5954
5842
        from bzrlib.clean_tree import clean_tree
5955
5843
        if not (unknown or ignored or detritus):
5956
5844
            unknown = True
5957
5845
        if dry_run:
5958
5846
            force = True
5959
 
        clean_tree(directory, unknown=unknown, ignored=ignored,
5960
 
                   detritus=detritus, dry_run=dry_run, no_prompt=force)
 
5847
        clean_tree('.', unknown=unknown, ignored=ignored, detritus=detritus,
 
5848
                   dry_run=dry_run, no_prompt=force)
5961
5849
 
5962
5850
 
5963
5851
class cmd_reference(Command):
5964
 
    __doc__ = """list, view and set branch locations for nested trees.
 
5852
    """list, view and set branch locations for nested trees.
5965
5853
 
5966
5854
    If no arguments are provided, lists the branch locations for nested trees.
5967
5855
    If one argument is provided, display the branch location for that tree.
6007
5895
            self.outf.write('%s %s\n' % (path, location))
6008
5896
 
6009
5897
 
6010
 
def _register_lazy_builtins():
6011
 
    # register lazy builtins from other modules; called at startup and should
6012
 
    # be only called once.
6013
 
    for (name, aliases, module_name) in [
6014
 
        ('cmd_bundle_info', [], 'bzrlib.bundle.commands'),
6015
 
        ('cmd_dpush', [], 'bzrlib.foreign'),
6016
 
        ('cmd_version_info', [], 'bzrlib.cmd_version_info'),
6017
 
        ('cmd_resolve', ['resolved'], 'bzrlib.conflicts'),
6018
 
        ('cmd_conflicts', [], 'bzrlib.conflicts'),
6019
 
        ('cmd_sign_my_commits', [], 'bzrlib.sign_my_commits'),
6020
 
        ]:
6021
 
        builtin_command_registry.register_lazy(name, aliases, module_name)
 
5898
# these get imported and then picked up by the scan for cmd_*
 
5899
# TODO: Some more consistent way to split command definitions across files;
 
5900
# we do need to load at least some information about them to know of
 
5901
# aliases.  ideally we would avoid loading the implementation until the
 
5902
# details were needed.
 
5903
from bzrlib.cmd_version_info import cmd_version_info
 
5904
from bzrlib.conflicts import cmd_resolve, cmd_conflicts, restore
 
5905
from bzrlib.bundle.commands import (
 
5906
    cmd_bundle_info,
 
5907
    )
 
5908
from bzrlib.foreign import cmd_dpush
 
5909
from bzrlib.sign_my_commits import cmd_sign_my_commits
 
5910
from bzrlib.weave_commands import cmd_versionedfile_list, \
 
5911
        cmd_weave_plan_merge, cmd_weave_merge_text