~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Patch Queue Manager
  • Date: 2011-10-14 16:54:26 UTC
  • mfrom: (6216.1.1 remove-this-file)
  • Revision ID: pqm@pqm.ubuntu.com-20111014165426-tjix4e6idryf1r2z
(jelmer) Remove an accidentally committed .THIS file. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
18
18
 
19
19
import os
20
20
 
 
21
import bzrlib.bzrdir
 
22
 
21
23
from bzrlib.lazy_import import lazy_import
22
24
lazy_import(globals(), """
23
 
import codecs
24
25
import cStringIO
25
26
import sys
26
27
import time
30
31
    bugtracker,
31
32
    bundle,
32
33
    btree_index,
33
 
    bzrdir,
 
34
    controldir,
34
35
    directory_service,
35
36
    delta,
36
 
    config,
 
37
    config as _mod_config,
37
38
    errors,
38
39
    globbing,
39
40
    hooks,
45
46
    rename_map,
46
47
    revision as _mod_revision,
47
48
    static_tuple,
48
 
    symbol_versioning,
49
49
    timestamp,
50
50
    transport,
51
51
    ui,
52
52
    urlutils,
53
53
    views,
 
54
    gpg,
54
55
    )
55
56
from bzrlib.branch import Branch
56
57
from bzrlib.conflicts import ConflictList
58
59
from bzrlib.revisionspec import RevisionSpec, RevisionInfo
59
60
from bzrlib.smtp_connection import SMTPConnection
60
61
from bzrlib.workingtree import WorkingTree
 
62
from bzrlib.i18n import gettext, ngettext
61
63
""")
62
64
 
63
65
from bzrlib.commands import (
73
75
    _parse_revision_str,
74
76
    )
75
77
from bzrlib.trace import mutter, note, warning, is_quiet, get_verbosity_level
 
78
from bzrlib import (
 
79
    symbol_versioning,
 
80
    )
76
81
 
77
82
 
78
83
@symbol_versioning.deprecated_function(symbol_versioning.deprecated_in((2, 3, 0)))
110
115
            if view_files:
111
116
                file_list = view_files
112
117
                view_str = views.view_display_str(view_files)
113
 
                note("Ignoring files outside view. View is %s" % view_str)
 
118
                note(gettext("Ignoring files outside view. View is %s") % view_str)
114
119
    return tree, file_list
115
120
 
116
121
 
118
123
    if revisions is None:
119
124
        return None
120
125
    if len(revisions) != 1:
121
 
        raise errors.BzrCommandError(
122
 
            'bzr %s --revision takes exactly one revision identifier' % (
 
126
        raise errors.BzrCommandError(gettext(
 
127
            'bzr %s --revision takes exactly one revision identifier') % (
123
128
                command_name,))
124
129
    return revisions[0]
125
130
 
194
199
    the --directory option is used to specify a different branch."""
195
200
    if directory is not None:
196
201
        return (None, Branch.open(directory), filename)
197
 
    return bzrdir.BzrDir.open_containing_tree_or_branch(filename)
 
202
    return controldir.ControlDir.open_containing_tree_or_branch(filename)
198
203
 
199
204
 
200
205
# TODO: Make sure no commands unconditionally use the working directory as a
230
235
    unknown
231
236
        Not versioned and not matching an ignore pattern.
232
237
 
233
 
    Additionally for directories, symlinks and files with an executable
234
 
    bit, Bazaar indicates their type using a trailing character: '/', '@'
235
 
    or '*' respectively.
 
238
    Additionally for directories, symlinks and files with a changed
 
239
    executable bit, Bazaar indicates their type using a trailing
 
240
    character: '/', '@' or '*' respectively. These decorations can be
 
241
    disabled using the '--no-classify' option.
236
242
 
237
243
    To see ignored files use 'bzr ignored'.  For details on the
238
244
    changes to file texts, use 'bzr diff'.
251
257
    To skip the display of pending merge information altogether, use
252
258
    the no-pending option or specify a file/directory.
253
259
 
254
 
    If a revision argument is given, the status is calculated against
255
 
    that revision, or between two revisions if two are provided.
 
260
    To compare the working directory to a specific revision, pass a
 
261
    single revision to the revision argument.
 
262
 
 
263
    To see which files have changed in a specific revision, or between
 
264
    two revisions, pass a revision range to the revision argument.
 
265
    This will produce the same results as calling 'bzr diff --summarize'.
256
266
    """
257
267
 
258
268
    # TODO: --no-recurse, --recurse options
265
275
                            short_name='V'),
266
276
                     Option('no-pending', help='Don\'t show pending merges.',
267
277
                           ),
 
278
                     Option('no-classify',
 
279
                            help='Do not mark object type using indicator.',
 
280
                           ),
268
281
                     ]
269
282
    aliases = ['st', 'stat']
270
283
 
273
286
 
274
287
    @display_command
275
288
    def run(self, show_ids=False, file_list=None, revision=None, short=False,
276
 
            versioned=False, no_pending=False, verbose=False):
 
289
            versioned=False, no_pending=False, verbose=False,
 
290
            no_classify=False):
277
291
        from bzrlib.status import show_tree_status
278
292
 
279
293
        if revision and len(revision) > 2:
280
 
            raise errors.BzrCommandError('bzr status --revision takes exactly'
281
 
                                         ' one or two revision specifiers')
 
294
            raise errors.BzrCommandError(gettext('bzr status --revision takes exactly'
 
295
                                         ' one or two revision specifiers'))
282
296
 
283
297
        tree, relfile_list = WorkingTree.open_containing_paths(file_list)
284
298
        # Avoid asking for specific files when that is not needed.
293
307
        show_tree_status(tree, show_ids=show_ids,
294
308
                         specific_files=relfile_list, revision=revision,
295
309
                         to_file=self.outf, short=short, versioned=versioned,
296
 
                         show_pending=(not no_pending), verbose=verbose)
 
310
                         show_pending=(not no_pending), verbose=verbose,
 
311
                         classify=not no_classify)
297
312
 
298
313
 
299
314
class cmd_cat_revision(Command):
320
335
    @display_command
321
336
    def run(self, revision_id=None, revision=None, directory=u'.'):
322
337
        if revision_id is not None and revision is not None:
323
 
            raise errors.BzrCommandError('You can only supply one of'
324
 
                                         ' revision_id or --revision')
 
338
            raise errors.BzrCommandError(gettext('You can only supply one of'
 
339
                                         ' revision_id or --revision'))
325
340
        if revision_id is None and revision is None:
326
 
            raise errors.BzrCommandError('You must supply either'
327
 
                                         ' --revision or a revision_id')
328
 
        b = WorkingTree.open_containing(directory)[0].branch
 
341
            raise errors.BzrCommandError(gettext('You must supply either'
 
342
                                         ' --revision or a revision_id'))
 
343
 
 
344
        b = controldir.ControlDir.open_containing_tree_or_branch(directory)[1]
329
345
 
330
346
        revisions = b.repository.revisions
331
347
        if revisions is None:
332
 
            raise errors.BzrCommandError('Repository %r does not support '
333
 
                'access to raw revision texts')
 
348
            raise errors.BzrCommandError(gettext('Repository %r does not support '
 
349
                'access to raw revision texts'))
334
350
 
335
351
        b.repository.lock_read()
336
352
        try:
340
356
                try:
341
357
                    self.print_revision(revisions, revision_id)
342
358
                except errors.NoSuchRevision:
343
 
                    msg = "The repository %s contains no revision %s." % (
 
359
                    msg = gettext("The repository {0} contains no revision {1}.").format(
344
360
                        b.repository.base, revision_id)
345
361
                    raise errors.BzrCommandError(msg)
346
362
            elif revision is not None:
347
363
                for rev in revision:
348
364
                    if rev is None:
349
365
                        raise errors.BzrCommandError(
350
 
                            'You cannot specify a NULL revision.')
 
366
                            gettext('You cannot specify a NULL revision.'))
351
367
                    rev_id = rev.as_revision_id(b)
352
368
                    self.print_revision(revisions, rev_id)
353
369
        finally:
409
425
                self.outf.write(page_bytes[:header_end])
410
426
                page_bytes = data
411
427
            self.outf.write('\nPage %d\n' % (page_idx,))
412
 
            decomp_bytes = zlib.decompress(page_bytes)
413
 
            self.outf.write(decomp_bytes)
414
 
            self.outf.write('\n')
 
428
            if len(page_bytes) == 0:
 
429
                self.outf.write('(empty)\n');
 
430
            else:
 
431
                decomp_bytes = zlib.decompress(page_bytes)
 
432
                self.outf.write(decomp_bytes)
 
433
                self.outf.write('\n')
415
434
 
416
435
    def _dump_entries(self, trans, basename):
417
436
        try:
456
475
            location_list=['.']
457
476
 
458
477
        for location in location_list:
459
 
            d = bzrdir.BzrDir.open(location)
460
 
            
 
478
            d = controldir.ControlDir.open(location)
 
479
 
461
480
            try:
462
481
                working = d.open_workingtree()
463
482
            except errors.NoWorkingTree:
464
 
                raise errors.BzrCommandError("No working tree to remove")
 
483
                raise errors.BzrCommandError(gettext("No working tree to remove"))
465
484
            except errors.NotLocalUrl:
466
 
                raise errors.BzrCommandError("You cannot remove the working tree"
467
 
                                             " of a remote path")
 
485
                raise errors.BzrCommandError(gettext("You cannot remove the working tree"
 
486
                                             " of a remote path"))
468
487
            if not force:
469
488
                if (working.has_changes()):
470
489
                    raise errors.UncommittedChanges(working)
472
491
                    raise errors.ShelvedChanges(working)
473
492
 
474
493
            if working.user_url != working.branch.user_url:
475
 
                raise errors.BzrCommandError("You cannot remove the working tree"
476
 
                                             " from a lightweight checkout")
 
494
                raise errors.BzrCommandError(gettext("You cannot remove the working tree"
 
495
                                             " from a lightweight checkout"))
477
496
 
478
497
            d.destroy_workingtree()
479
498
 
480
499
 
 
500
class cmd_repair_workingtree(Command):
 
501
    __doc__ = """Reset the working tree state file.
 
502
 
 
503
    This is not meant to be used normally, but more as a way to recover from
 
504
    filesystem corruption, etc. This rebuilds the working inventory back to a
 
505
    'known good' state. Any new modifications (adding a file, renaming, etc)
 
506
    will be lost, though modified files will still be detected as such.
 
507
 
 
508
    Most users will want something more like "bzr revert" or "bzr update"
 
509
    unless the state file has become corrupted.
 
510
 
 
511
    By default this attempts to recover the current state by looking at the
 
512
    headers of the state file. If the state file is too corrupted to even do
 
513
    that, you can supply --revision to force the state of the tree.
 
514
    """
 
515
 
 
516
    takes_options = ['revision', 'directory',
 
517
        Option('force',
 
518
               help='Reset the tree even if it doesn\'t appear to be'
 
519
                    ' corrupted.'),
 
520
    ]
 
521
    hidden = True
 
522
 
 
523
    def run(self, revision=None, directory='.', force=False):
 
524
        tree, _ = WorkingTree.open_containing(directory)
 
525
        self.add_cleanup(tree.lock_tree_write().unlock)
 
526
        if not force:
 
527
            try:
 
528
                tree.check_state()
 
529
            except errors.BzrError:
 
530
                pass # There seems to be a real error here, so we'll reset
 
531
            else:
 
532
                # Refuse
 
533
                raise errors.BzrCommandError(gettext(
 
534
                    'The tree does not appear to be corrupt. You probably'
 
535
                    ' want "bzr revert" instead. Use "--force" if you are'
 
536
                    ' sure you want to reset the working tree.'))
 
537
        if revision is None:
 
538
            revision_ids = None
 
539
        else:
 
540
            revision_ids = [r.as_revision_id(tree.branch) for r in revision]
 
541
        try:
 
542
            tree.reset_state(revision_ids)
 
543
        except errors.BzrError, e:
 
544
            if revision_ids is None:
 
545
                extra = (gettext(', the header appears corrupt, try passing -r -1'
 
546
                         ' to set the state to the last commit'))
 
547
            else:
 
548
                extra = ''
 
549
            raise errors.BzrCommandError(gettext('failed to reset the tree state{0}').format(extra))
 
550
 
 
551
 
481
552
class cmd_revno(Command):
482
553
    __doc__ = """Show current revision number.
483
554
 
488
559
    takes_args = ['location?']
489
560
    takes_options = [
490
561
        Option('tree', help='Show revno of working tree'),
 
562
        'revision',
491
563
        ]
492
564
 
493
565
    @display_command
494
 
    def run(self, tree=False, location=u'.'):
 
566
    def run(self, tree=False, location=u'.', revision=None):
 
567
        if revision is not None and tree:
 
568
            raise errors.BzrCommandError(gettext("--tree and --revision can "
 
569
                "not be used together"))
 
570
 
495
571
        if tree:
496
572
            try:
497
573
                wt = WorkingTree.open_containing(location)[0]
498
574
                self.add_cleanup(wt.lock_read().unlock)
499
575
            except (errors.NoWorkingTree, errors.NotLocalUrl):
500
576
                raise errors.NoWorkingTree(location)
 
577
            b = wt.branch
501
578
            revid = wt.last_revision()
502
 
            try:
503
 
                revno_t = wt.branch.revision_id_to_dotted_revno(revid)
504
 
            except errors.NoSuchRevision:
505
 
                revno_t = ('???',)
506
 
            revno = ".".join(str(n) for n in revno_t)
507
579
        else:
508
580
            b = Branch.open_containing(location)[0]
509
581
            self.add_cleanup(b.lock_read().unlock)
510
 
            revno = b.revno()
 
582
            if revision:
 
583
                if len(revision) != 1:
 
584
                    raise errors.BzrCommandError(gettext(
 
585
                        "Tags can only be placed on a single revision, "
 
586
                        "not on a range"))
 
587
                revid = revision[0].as_revision_id(b)
 
588
            else:
 
589
                revid = b.last_revision()
 
590
        try:
 
591
            revno_t = b.revision_id_to_dotted_revno(revid)
 
592
        except errors.NoSuchRevision:
 
593
            revno_t = ('???',)
 
594
        revno = ".".join(str(n) for n in revno_t)
511
595
        self.cleanup_now()
512
 
        self.outf.write(str(revno) + '\n')
 
596
        self.outf.write(revno + '\n')
513
597
 
514
598
 
515
599
class cmd_revision_info(Command):
584
668
    are added.  This search proceeds recursively into versioned
585
669
    directories.  If no names are given '.' is assumed.
586
670
 
 
671
    A warning will be printed when nested trees are encountered,
 
672
    unless they are explicitly ignored.
 
673
 
587
674
    Therefore simply saying 'bzr add' will version all files that
588
675
    are currently unknown.
589
676
 
605
692
    
606
693
    Any files matching patterns in the ignore list will not be added
607
694
    unless they are explicitly mentioned.
 
695
    
 
696
    In recursive mode, files larger than the configuration option 
 
697
    add.maximum_file_size will be skipped. Named items are never skipped due
 
698
    to file size.
608
699
    """
609
700
    takes_args = ['file*']
610
701
    takes_options = [
637
728
            action = bzrlib.add.AddFromBaseAction(base_tree, base_path,
638
729
                          to_file=self.outf, should_print=(not is_quiet()))
639
730
        else:
640
 
            action = bzrlib.add.AddAction(to_file=self.outf,
 
731
            action = bzrlib.add.AddWithSkipLargeAction(to_file=self.outf,
641
732
                should_print=(not is_quiet()))
642
733
 
643
734
        if base_tree:
650
741
            if verbose:
651
742
                for glob in sorted(ignored.keys()):
652
743
                    for path in ignored[glob]:
653
 
                        self.outf.write("ignored %s matching \"%s\"\n"
654
 
                                        % (path, glob))
 
744
                        self.outf.write(
 
745
                         gettext("ignored {0} matching \"{1}\"\n").format(
 
746
                         path, glob))
655
747
 
656
748
 
657
749
class cmd_mkdir(Command):
671
763
            if id != None:
672
764
                os.mkdir(d)
673
765
                wt.add([dd])
674
 
                self.outf.write('added %s\n' % d)
 
766
                if not is_quiet():
 
767
                    self.outf.write(gettext('added %s\n') % d)
675
768
            else:
676
769
                raise errors.NotVersionedError(path=base)
677
770
 
715
808
    @display_command
716
809
    def run(self, revision=None, show_ids=False, kind=None, file_list=None):
717
810
        if kind and kind not in ['file', 'directory', 'symlink']:
718
 
            raise errors.BzrCommandError('invalid kind %r specified' % (kind,))
 
811
            raise errors.BzrCommandError(gettext('invalid kind %r specified') % (kind,))
719
812
 
720
813
        revision = _get_one_revision('inventory', revision)
721
814
        work_tree, file_list = WorkingTree.open_containing_paths(file_list)
734
827
                                      require_versioned=True)
735
828
            # find_ids_across_trees may include some paths that don't
736
829
            # exist in 'tree'.
737
 
            entries = sorted((tree.id2path(file_id), tree.inventory[file_id])
738
 
                             for file_id in file_ids if file_id in tree)
 
830
            entries = sorted(
 
831
                (tree.id2path(file_id), tree.inventory[file_id])
 
832
                for file_id in file_ids if tree.has_id(file_id))
739
833
        else:
740
834
            entries = tree.inventory.entries()
741
835
 
784
878
        if auto:
785
879
            return self.run_auto(names_list, after, dry_run)
786
880
        elif dry_run:
787
 
            raise errors.BzrCommandError('--dry-run requires --auto.')
 
881
            raise errors.BzrCommandError(gettext('--dry-run requires --auto.'))
788
882
        if names_list is None:
789
883
            names_list = []
790
884
        if len(names_list) < 2:
791
 
            raise errors.BzrCommandError("missing file argument")
 
885
            raise errors.BzrCommandError(gettext("missing file argument"))
792
886
        tree, rel_names = WorkingTree.open_containing_paths(names_list, canonicalize=False)
793
887
        self.add_cleanup(tree.lock_tree_write().unlock)
794
888
        self._run(tree, names_list, rel_names, after)
795
889
 
796
890
    def run_auto(self, names_list, after, dry_run):
797
891
        if names_list is not None and len(names_list) > 1:
798
 
            raise errors.BzrCommandError('Only one path may be specified to'
799
 
                                         ' --auto.')
 
892
            raise errors.BzrCommandError(gettext('Only one path may be specified to'
 
893
                                         ' --auto.'))
800
894
        if after:
801
 
            raise errors.BzrCommandError('--after cannot be specified with'
802
 
                                         ' --auto.')
 
895
            raise errors.BzrCommandError(gettext('--after cannot be specified with'
 
896
                                         ' --auto.'))
803
897
        work_tree, file_list = WorkingTree.open_containing_paths(
804
898
            names_list, default_directory='.')
805
899
        self.add_cleanup(work_tree.lock_tree_write().unlock)
835
929
                    self.outf.write("%s => %s\n" % (src, dest))
836
930
        else:
837
931
            if len(names_list) != 2:
838
 
                raise errors.BzrCommandError('to mv multiple files the'
 
932
                raise errors.BzrCommandError(gettext('to mv multiple files the'
839
933
                                             ' destination must be a versioned'
840
 
                                             ' directory')
 
934
                                             ' directory'))
841
935
 
842
936
            # for cicp file-systems: the src references an existing inventory
843
937
            # item:
902
996
    match the remote one, use pull --overwrite. This will work even if the two
903
997
    branches have diverged.
904
998
 
905
 
    If there is no default location set, the first pull will set it.  After
906
 
    that, you can omit the location to use the default.  To change the
907
 
    default, use --remember. The value will only be saved if the remote
908
 
    location can be accessed.
 
999
    If there is no default location set, the first pull will set it (use
 
1000
    --no-remember to avoid setting it). After that, you can omit the
 
1001
    location to use the default.  To change the default, use --remember. The
 
1002
    value will only be saved if the remote location can be accessed.
 
1003
 
 
1004
    The --verbose option will display the revisions pulled using the log_format
 
1005
    configuration option. You can use a different format by overriding it with
 
1006
    -Olog_format=<other_format>.
909
1007
 
910
1008
    Note: The location can be specified either in the form of a branch,
911
1009
    or in the form of a path to a file containing a merge directive generated
924
1022
                 "branch.  Local pulls are not applied to "
925
1023
                 "the master branch."
926
1024
            ),
 
1025
        Option('show-base',
 
1026
            help="Show base revision text in conflicts.")
927
1027
        ]
928
1028
    takes_args = ['location?']
929
1029
    encoding_type = 'replace'
930
1030
 
931
 
    def run(self, location=None, remember=False, overwrite=False,
 
1031
    def run(self, location=None, remember=None, overwrite=False,
932
1032
            revision=None, verbose=False,
933
 
            directory=None, local=False):
 
1033
            directory=None, local=False,
 
1034
            show_base=False):
934
1035
        # FIXME: too much stuff is in the command class
935
1036
        revision_id = None
936
1037
        mergeable = None
945
1046
            branch_to = Branch.open_containing(directory)[0]
946
1047
            self.add_cleanup(branch_to.lock_write().unlock)
947
1048
 
 
1049
        if tree_to is None and show_base:
 
1050
            raise errors.BzrCommandError(gettext("Need working tree for --show-base."))
 
1051
 
948
1052
        if local and not branch_to.get_bound_location():
949
1053
            raise errors.LocalRequiresBoundBranch()
950
1054
 
959
1063
        stored_loc = branch_to.get_parent()
960
1064
        if location is None:
961
1065
            if stored_loc is None:
962
 
                raise errors.BzrCommandError("No pull location known or"
963
 
                                             " specified.")
 
1066
                raise errors.BzrCommandError(gettext("No pull location known or"
 
1067
                                             " specified."))
964
1068
            else:
965
1069
                display_url = urlutils.unescape_for_display(stored_loc,
966
1070
                        self.outf.encoding)
967
1071
                if not is_quiet():
968
 
                    self.outf.write("Using saved parent location: %s\n" % display_url)
 
1072
                    self.outf.write(gettext("Using saved parent location: %s\n") % display_url)
969
1073
                location = stored_loc
970
1074
 
971
1075
        revision = _get_one_revision('pull', revision)
972
1076
        if mergeable is not None:
973
1077
            if revision is not None:
974
 
                raise errors.BzrCommandError(
975
 
                    'Cannot use -r with merge directives or bundles')
 
1078
                raise errors.BzrCommandError(gettext(
 
1079
                    'Cannot use -r with merge directives or bundles'))
976
1080
            mergeable.install_revisions(branch_to.repository)
977
1081
            base_revision_id, revision_id, verified = \
978
1082
                mergeable.get_merge_request(branch_to.repository)
981
1085
            branch_from = Branch.open(location,
982
1086
                possible_transports=possible_transports)
983
1087
            self.add_cleanup(branch_from.lock_read().unlock)
984
 
 
985
 
            if branch_to.get_parent() is None or remember:
 
1088
            # Remembers if asked explicitly or no previous location is set
 
1089
            if (remember
 
1090
                or (remember is None and branch_to.get_parent() is None)):
986
1091
                branch_to.set_parent(branch_from.base)
987
1092
 
988
1093
        if revision is not None:
995
1100
                view_info=view_info)
996
1101
            result = tree_to.pull(
997
1102
                branch_from, overwrite, revision_id, change_reporter,
998
 
                possible_transports=possible_transports, local=local)
 
1103
                local=local, show_base=show_base)
999
1104
        else:
1000
1105
            result = branch_to.pull(
1001
1106
                branch_from, overwrite, revision_id, local=local)
1005
1110
            log.show_branch_change(
1006
1111
                branch_to, self.outf, result.old_revno,
1007
1112
                result.old_revid)
 
1113
        if getattr(result, 'tag_conflicts', None):
 
1114
            return 1
 
1115
        else:
 
1116
            return 0
1008
1117
 
1009
1118
 
1010
1119
class cmd_push(Command):
1027
1136
    do a merge (see bzr help merge) from the other branch, and commit that.
1028
1137
    After that you will be able to do a push without '--overwrite'.
1029
1138
 
1030
 
    If there is no default push location set, the first push will set it.
1031
 
    After that, you can omit the location to use the default.  To change the
1032
 
    default, use --remember. The value will only be saved if the remote
1033
 
    location can be accessed.
 
1139
    If there is no default push location set, the first push will set it (use
 
1140
    --no-remember to avoid setting it).  After that, you can omit the
 
1141
    location to use the default.  To change the default, use --remember. The
 
1142
    value will only be saved if the remote location can be accessed.
 
1143
 
 
1144
    The --verbose option will display the revisions pushed using the log_format
 
1145
    configuration option. You can use a different format by overriding it with
 
1146
    -Olog_format=<other_format>.
1034
1147
    """
1035
1148
 
1036
1149
    _see_also = ['pull', 'update', 'working-trees']
1057
1170
        Option('strict',
1058
1171
               help='Refuse to push if there are uncommitted changes in'
1059
1172
               ' the working tree, --no-strict disables the check.'),
 
1173
        Option('no-tree',
 
1174
               help="Don't populate the working tree, even for protocols"
 
1175
               " that support it."),
1060
1176
        ]
1061
1177
    takes_args = ['location?']
1062
1178
    encoding_type = 'replace'
1063
1179
 
1064
 
    def run(self, location=None, remember=False, overwrite=False,
 
1180
    def run(self, location=None, remember=None, overwrite=False,
1065
1181
        create_prefix=False, verbose=False, revision=None,
1066
1182
        use_existing_dir=False, directory=None, stacked_on=None,
1067
 
        stacked=False, strict=None):
 
1183
        stacked=False, strict=None, no_tree=False):
1068
1184
        from bzrlib.push import _show_push_branch
1069
1185
 
1070
1186
        if directory is None:
1071
1187
            directory = '.'
1072
1188
        # Get the source branch
1073
1189
        (tree, br_from,
1074
 
         _unused) = bzrdir.BzrDir.open_containing_tree_or_branch(directory)
 
1190
         _unused) = controldir.ControlDir.open_containing_tree_or_branch(directory)
1075
1191
        # Get the tip's revision_id
1076
1192
        revision = _get_one_revision('push', revision)
1077
1193
        if revision is not None:
1098
1214
                    # error by the feedback given to them. RBC 20080227.
1099
1215
                    stacked_on = parent_url
1100
1216
            if not stacked_on:
1101
 
                raise errors.BzrCommandError(
1102
 
                    "Could not determine branch to refer to.")
 
1217
                raise errors.BzrCommandError(gettext(
 
1218
                    "Could not determine branch to refer to."))
1103
1219
 
1104
1220
        # Get the destination location
1105
1221
        if location is None:
1106
1222
            stored_loc = br_from.get_push_location()
1107
1223
            if stored_loc is None:
1108
 
                raise errors.BzrCommandError(
1109
 
                    "No push location known or specified.")
 
1224
                raise errors.BzrCommandError(gettext(
 
1225
                    "No push location known or specified."))
1110
1226
            else:
1111
1227
                display_url = urlutils.unescape_for_display(stored_loc,
1112
1228
                        self.outf.encoding)
1113
 
                self.outf.write("Using saved push location: %s\n" % display_url)
 
1229
                note(gettext("Using saved push location: %s") % display_url)
1114
1230
                location = stored_loc
1115
1231
 
1116
1232
        _show_push_branch(br_from, revision_id, location, self.outf,
1117
1233
            verbose=verbose, overwrite=overwrite, remember=remember,
1118
1234
            stacked_on=stacked_on, create_prefix=create_prefix,
1119
 
            use_existing_dir=use_existing_dir)
 
1235
            use_existing_dir=use_existing_dir, no_tree=no_tree)
1120
1236
 
1121
1237
 
1122
1238
class cmd_branch(Command):
1131
1247
 
1132
1248
    To retrieve the branch as of a particular revision, supply the --revision
1133
1249
    parameter, as in "branch foo/bar -r 5".
 
1250
 
 
1251
    The synonyms 'clone' and 'get' for this command are deprecated.
1134
1252
    """
1135
1253
 
1136
1254
    _see_also = ['checkout']
1166
1284
            files_from=None):
1167
1285
        from bzrlib import switch as _mod_switch
1168
1286
        from bzrlib.tag import _merge_tags_if_possible
1169
 
        accelerator_tree, br_from = bzrdir.BzrDir.open_tree_or_branch(
 
1287
        if self.invoked_as in ['get', 'clone']:
 
1288
            ui.ui_factory.show_user_warning(
 
1289
                'deprecated_command',
 
1290
                deprecated_name=self.invoked_as,
 
1291
                recommended_name='branch',
 
1292
                deprecated_in_version='2.4')
 
1293
        accelerator_tree, br_from = controldir.ControlDir.open_tree_or_branch(
1170
1294
            from_location)
1171
1295
        if not (hardlink or files_from):
1172
1296
            # accelerator_tree is usually slower because you have to read N
1191
1315
            to_transport.mkdir('.')
1192
1316
        except errors.FileExists:
1193
1317
            if not use_existing_dir:
1194
 
                raise errors.BzrCommandError('Target directory "%s" '
1195
 
                    'already exists.' % to_location)
 
1318
                raise errors.BzrCommandError(gettext('Target directory "%s" '
 
1319
                    'already exists.') % to_location)
1196
1320
            else:
1197
1321
                try:
1198
 
                    bzrdir.BzrDir.open_from_transport(to_transport)
 
1322
                    to_dir = controldir.ControlDir.open_from_transport(
 
1323
                        to_transport)
1199
1324
                except errors.NotBranchError:
1200
 
                    pass
 
1325
                    to_dir = None
1201
1326
                else:
1202
 
                    raise errors.AlreadyBranchError(to_location)
 
1327
                    try:
 
1328
                        to_dir.open_branch()
 
1329
                    except errors.NotBranchError:
 
1330
                        pass
 
1331
                    else:
 
1332
                        raise errors.AlreadyBranchError(to_location)
1203
1333
        except errors.NoSuchFile:
1204
 
            raise errors.BzrCommandError('Parent of "%s" does not exist.'
 
1334
            raise errors.BzrCommandError(gettext('Parent of "%s" does not exist.')
1205
1335
                                         % to_location)
1206
 
        try:
1207
 
            # preserve whatever source format we have.
1208
 
            dir = br_from.bzrdir.sprout(to_transport.base, revision_id,
1209
 
                                        possible_transports=[to_transport],
1210
 
                                        accelerator_tree=accelerator_tree,
1211
 
                                        hardlink=hardlink, stacked=stacked,
1212
 
                                        force_new_repo=standalone,
1213
 
                                        create_tree_if_local=not no_tree,
1214
 
                                        source_branch=br_from)
1215
 
            branch = dir.open_branch()
1216
 
        except errors.NoSuchRevision:
1217
 
            to_transport.delete_tree('.')
1218
 
            msg = "The branch %s has no revision %s." % (from_location,
1219
 
                revision)
1220
 
            raise errors.BzrCommandError(msg)
 
1336
        else:
 
1337
            to_dir = None
 
1338
        if to_dir is None:
 
1339
            try:
 
1340
                # preserve whatever source format we have.
 
1341
                to_dir = br_from.bzrdir.sprout(to_transport.base, revision_id,
 
1342
                                            possible_transports=[to_transport],
 
1343
                                            accelerator_tree=accelerator_tree,
 
1344
                                            hardlink=hardlink, stacked=stacked,
 
1345
                                            force_new_repo=standalone,
 
1346
                                            create_tree_if_local=not no_tree,
 
1347
                                            source_branch=br_from)
 
1348
                branch = to_dir.open_branch()
 
1349
            except errors.NoSuchRevision:
 
1350
                to_transport.delete_tree('.')
 
1351
                msg = gettext("The branch {0} has no revision {1}.").format(
 
1352
                    from_location, revision)
 
1353
                raise errors.BzrCommandError(msg)
 
1354
        else:
 
1355
            branch = br_from.sprout(to_dir, revision_id=revision_id)
1221
1356
        _merge_tags_if_possible(br_from, branch)
1222
1357
        # If the source branch is stacked, the new branch may
1223
1358
        # be stacked whether we asked for that explicitly or not.
1224
1359
        # We therefore need a try/except here and not just 'if stacked:'
1225
1360
        try:
1226
 
            note('Created new stacked branch referring to %s.' %
 
1361
            note(gettext('Created new stacked branch referring to %s.') %
1227
1362
                branch.get_stacked_on_url())
1228
1363
        except (errors.NotStacked, errors.UnstackableBranchFormat,
1229
1364
            errors.UnstackableRepositoryFormat), e:
1230
 
            note('Branched %d revision(s).' % branch.revno())
 
1365
            note(ngettext('Branched %d revision.', 'Branched %d revisions.', branch.revno()) % branch.revno())
1231
1366
        if bind:
1232
1367
            # Bind to the parent
1233
1368
            parent_branch = Branch.open(from_location)
1234
1369
            branch.bind(parent_branch)
1235
 
            note('New branch bound to %s' % from_location)
 
1370
            note(gettext('New branch bound to %s') % from_location)
1236
1371
        if switch:
1237
1372
            # Switch to the new branch
1238
1373
            wt, _ = WorkingTree.open_containing('.')
1239
1374
            _mod_switch.switch(wt.bzrdir, branch)
1240
 
            note('Switched to branch: %s',
 
1375
            note(gettext('Switched to branch: %s'),
1241
1376
                urlutils.unescape_for_display(branch.base, 'utf-8'))
1242
1377
 
1243
1378
 
 
1379
class cmd_branches(Command):
 
1380
    __doc__ = """List the branches available at the current location.
 
1381
 
 
1382
    This command will print the names of all the branches at the current
 
1383
    location.
 
1384
    """
 
1385
 
 
1386
    takes_args = ['location?']
 
1387
    takes_options = [
 
1388
                  Option('recursive', short_name='R',
 
1389
                         help='Recursively scan for branches rather than '
 
1390
                              'just looking in the specified location.')]
 
1391
 
 
1392
    def run(self, location=".", recursive=False):
 
1393
        if recursive:
 
1394
            t = transport.get_transport(location)
 
1395
            if not t.listable():
 
1396
                raise errors.BzrCommandError(
 
1397
                    "Can't scan this type of location.")
 
1398
            for b in controldir.ControlDir.find_branches(t):
 
1399
                self.outf.write("%s\n" % urlutils.unescape_for_display(
 
1400
                    urlutils.relative_url(t.base, b.base),
 
1401
                    self.outf.encoding).rstrip("/"))
 
1402
        else:
 
1403
            dir = controldir.ControlDir.open_containing(location)[0]
 
1404
            for branch in dir.list_branches():
 
1405
                if branch.name is None:
 
1406
                    self.outf.write(gettext(" (default)\n"))
 
1407
                else:
 
1408
                    self.outf.write(" %s\n" % branch.name.encode(
 
1409
                        self.outf.encoding))
 
1410
 
 
1411
 
1244
1412
class cmd_checkout(Command):
1245
1413
    __doc__ = """Create a new checkout of an existing branch.
1246
1414
 
1285
1453
        if branch_location is None:
1286
1454
            branch_location = osutils.getcwd()
1287
1455
            to_location = branch_location
1288
 
        accelerator_tree, source = bzrdir.BzrDir.open_tree_or_branch(
 
1456
        accelerator_tree, source = controldir.ControlDir.open_tree_or_branch(
1289
1457
            branch_location)
1290
1458
        if not (hardlink or files_from):
1291
1459
            # accelerator_tree is usually slower because you have to read N
1346
1514
 
1347
1515
 
1348
1516
class cmd_update(Command):
1349
 
    __doc__ = """Update a tree to have the latest code committed to its branch.
1350
 
 
1351
 
    This will perform a merge into the working tree, and may generate
1352
 
    conflicts. If you have any local changes, you will still
1353
 
    need to commit them after the update for the update to be complete.
1354
 
 
1355
 
    If you want to discard your local changes, you can just do a
1356
 
    'bzr revert' instead of 'bzr commit' after the update.
1357
 
 
1358
 
    If the tree's branch is bound to a master branch, it will also update
 
1517
    __doc__ = """Update a working tree to a new revision.
 
1518
 
 
1519
    This will perform a merge of the destination revision (the tip of the
 
1520
    branch, or the specified revision) into the working tree, and then make
 
1521
    that revision the basis revision for the working tree.  
 
1522
 
 
1523
    You can use this to visit an older revision, or to update a working tree
 
1524
    that is out of date from its branch.
 
1525
    
 
1526
    If there are any uncommitted changes in the tree, they will be carried
 
1527
    across and remain as uncommitted changes after the update.  To discard
 
1528
    these changes, use 'bzr revert'.  The uncommitted changes may conflict
 
1529
    with the changes brought in by the change in basis revision.
 
1530
 
 
1531
    If the tree's branch is bound to a master branch, bzr will also update
1359
1532
    the branch from the master.
 
1533
 
 
1534
    You cannot update just a single file or directory, because each Bazaar
 
1535
    working tree has just a single basis revision.  If you want to restore a
 
1536
    file that has been removed locally, use 'bzr revert' instead of 'bzr
 
1537
    update'.  If you want to restore a file to its state in a previous
 
1538
    revision, use 'bzr revert' with a '-r' option, or use 'bzr cat' to write
 
1539
    out the old content of that file to a new location.
 
1540
 
 
1541
    The 'dir' argument, if given, must be the location of the root of a
 
1542
    working tree to update.  By default, the working tree that contains the 
 
1543
    current working directory is used.
1360
1544
    """
1361
1545
 
1362
1546
    _see_also = ['pull', 'working-trees', 'status-flags']
1363
1547
    takes_args = ['dir?']
1364
 
    takes_options = ['revision']
 
1548
    takes_options = ['revision',
 
1549
                     Option('show-base',
 
1550
                            help="Show base revision text in conflicts."),
 
1551
                     ]
1365
1552
    aliases = ['up']
1366
1553
 
1367
 
    def run(self, dir='.', revision=None):
 
1554
    def run(self, dir=None, revision=None, show_base=None):
1368
1555
        if revision is not None and len(revision) != 1:
1369
 
            raise errors.BzrCommandError(
1370
 
                        "bzr update --revision takes exactly one revision")
1371
 
        tree = WorkingTree.open_containing(dir)[0]
 
1556
            raise errors.BzrCommandError(gettext(
 
1557
                "bzr update --revision takes exactly one revision"))
 
1558
        if dir is None:
 
1559
            tree = WorkingTree.open_containing('.')[0]
 
1560
        else:
 
1561
            tree, relpath = WorkingTree.open_containing(dir)
 
1562
            if relpath:
 
1563
                # See bug 557886.
 
1564
                raise errors.BzrCommandError(gettext(
 
1565
                    "bzr update can only update a whole tree, "
 
1566
                    "not a file or subdirectory"))
1372
1567
        branch = tree.branch
1373
1568
        possible_transports = []
1374
1569
        master = branch.get_master_branch(
1398
1593
            revision_id = branch.last_revision()
1399
1594
        if revision_id == _mod_revision.ensure_null(tree.last_revision()):
1400
1595
            revno = branch.revision_id_to_dotted_revno(revision_id)
1401
 
            note("Tree is up to date at revision %s of branch %s" %
1402
 
                ('.'.join(map(str, revno)), branch_location))
 
1596
            note(gettext("Tree is up to date at revision {0} of branch {1}"
 
1597
                        ).format('.'.join(map(str, revno)), branch_location))
1403
1598
            return 0
1404
1599
        view_info = _get_view_info_for_change_reporter(tree)
1405
1600
        change_reporter = delta._ChangeReporter(
1410
1605
                change_reporter,
1411
1606
                possible_transports=possible_transports,
1412
1607
                revision=revision_id,
1413
 
                old_tip=old_tip)
 
1608
                old_tip=old_tip,
 
1609
                show_base=show_base)
1414
1610
        except errors.NoSuchRevision, e:
1415
 
            raise errors.BzrCommandError(
 
1611
            raise errors.BzrCommandError(gettext(
1416
1612
                                  "branch has no revision %s\n"
1417
1613
                                  "bzr update --revision only works"
1418
 
                                  " for a revision in the branch history"
 
1614
                                  " for a revision in the branch history")
1419
1615
                                  % (e.revision))
1420
1616
        revno = tree.branch.revision_id_to_dotted_revno(
1421
1617
            _mod_revision.ensure_null(tree.last_revision()))
1422
 
        note('Updated to revision %s of branch %s' %
1423
 
             ('.'.join(map(str, revno)), branch_location))
 
1618
        note(gettext('Updated to revision {0} of branch {1}').format(
 
1619
             '.'.join(map(str, revno)), branch_location))
1424
1620
        parent_ids = tree.get_parent_ids()
1425
1621
        if parent_ids[1:] and parent_ids[1:] != existing_pending_merges:
1426
 
            note('Your local commits will now show as pending merges with '
1427
 
                 "'bzr status', and can be committed with 'bzr commit'.")
 
1622
            note(gettext('Your local commits will now show as pending merges with '
 
1623
                 "'bzr status', and can be committed with 'bzr commit'."))
1428
1624
        if conflicts != 0:
1429
1625
            return 1
1430
1626
        else:
1471
1667
        else:
1472
1668
            noise_level = 0
1473
1669
        from bzrlib.info import show_bzrdir_info
1474
 
        show_bzrdir_info(bzrdir.BzrDir.open_containing(location)[0],
 
1670
        show_bzrdir_info(controldir.ControlDir.open_containing(location)[0],
1475
1671
                         verbose=noise_level, outfile=self.outf)
1476
1672
 
1477
1673
 
1478
1674
class cmd_remove(Command):
1479
1675
    __doc__ = """Remove files or directories.
1480
1676
 
1481
 
    This makes bzr stop tracking changes to the specified files. bzr will delete
1482
 
    them if they can easily be recovered using revert. If no options or
1483
 
    parameters are given bzr will scan for files that are being tracked by bzr
1484
 
    but missing in your tree and stop tracking them for you.
 
1677
    This makes Bazaar stop tracking changes to the specified files. Bazaar will
 
1678
    delete them if they can easily be recovered using revert otherwise they
 
1679
    will be backed up (adding an extention of the form .~#~). If no options or
 
1680
    parameters are given Bazaar will scan for files that are being tracked by
 
1681
    Bazaar but missing in your tree and stop tracking them for you.
1485
1682
    """
1486
1683
    takes_args = ['file*']
1487
1684
    takes_options = ['verbose',
1489
1686
        RegistryOption.from_kwargs('file-deletion-strategy',
1490
1687
            'The file deletion mode to be used.',
1491
1688
            title='Deletion Strategy', value_switches=True, enum_switch=False,
1492
 
            safe='Only delete files if they can be'
1493
 
                 ' safely recovered (default).',
 
1689
            safe='Backup changed files (default).',
1494
1690
            keep='Delete from bzr but leave the working copy.',
 
1691
            no_backup='Don\'t backup changed files.',
1495
1692
            force='Delete all the specified files, even if they can not be '
1496
 
                'recovered and even if they are non-empty directories.')]
 
1693
                'recovered and even if they are non-empty directories. '
 
1694
                '(deprecated, use no-backup)')]
1497
1695
    aliases = ['rm', 'del']
1498
1696
    encoding_type = 'replace'
1499
1697
 
1500
1698
    def run(self, file_list, verbose=False, new=False,
1501
1699
        file_deletion_strategy='safe'):
 
1700
        if file_deletion_strategy == 'force':
 
1701
            note(gettext("(The --force option is deprecated, rather use --no-backup "
 
1702
                "in future.)"))
 
1703
            file_deletion_strategy = 'no-backup'
 
1704
 
1502
1705
        tree, file_list = WorkingTree.open_containing_paths(file_list)
1503
1706
 
1504
1707
        if file_list is not None:
1512
1715
                specific_files=file_list).added
1513
1716
            file_list = sorted([f[0] for f in added], reverse=True)
1514
1717
            if len(file_list) == 0:
1515
 
                raise errors.BzrCommandError('No matching files.')
 
1718
                raise errors.BzrCommandError(gettext('No matching files.'))
1516
1719
        elif file_list is None:
1517
1720
            # missing files show up in iter_changes(basis) as
1518
1721
            # versioned-with-no-kind.
1525
1728
            file_deletion_strategy = 'keep'
1526
1729
        tree.remove(file_list, verbose=verbose, to_file=self.outf,
1527
1730
            keep_files=file_deletion_strategy=='keep',
1528
 
            force=file_deletion_strategy=='force')
 
1731
            force=(file_deletion_strategy=='no-backup'))
1529
1732
 
1530
1733
 
1531
1734
class cmd_file_id(Command):
1593
1796
 
1594
1797
    _see_also = ['check']
1595
1798
    takes_args = ['branch?']
 
1799
    takes_options = [
 
1800
        Option('canonicalize-chks',
 
1801
               help='Make sure CHKs are in canonical form (repairs '
 
1802
                    'bug 522637).',
 
1803
               hidden=True),
 
1804
        ]
1596
1805
 
1597
 
    def run(self, branch="."):
 
1806
    def run(self, branch=".", canonicalize_chks=False):
1598
1807
        from bzrlib.reconcile import reconcile
1599
 
        dir = bzrdir.BzrDir.open(branch)
1600
 
        reconcile(dir)
 
1808
        dir = controldir.ControlDir.open(branch)
 
1809
        reconcile(dir, canonicalize_chks=canonicalize_chks)
1601
1810
 
1602
1811
 
1603
1812
class cmd_revision_history(Command):
1611
1820
    @display_command
1612
1821
    def run(self, location="."):
1613
1822
        branch = Branch.open_containing(location)[0]
1614
 
        for revid in branch.revision_history():
 
1823
        self.add_cleanup(branch.lock_read().unlock)
 
1824
        graph = branch.repository.get_graph()
 
1825
        history = list(graph.iter_lefthand_ancestry(branch.last_revision(),
 
1826
            [_mod_revision.NULL_REVISION]))
 
1827
        for revid in reversed(history):
1615
1828
            self.outf.write(revid)
1616
1829
            self.outf.write('\n')
1617
1830
 
1635
1848
            b = wt.branch
1636
1849
            last_revision = wt.last_revision()
1637
1850
 
1638
 
        revision_ids = b.repository.get_ancestry(last_revision)
1639
 
        revision_ids.pop(0)
1640
 
        for revision_id in revision_ids:
 
1851
        self.add_cleanup(b.repository.lock_read().unlock)
 
1852
        graph = b.repository.get_graph()
 
1853
        revisions = [revid for revid, parents in
 
1854
            graph.iter_ancestry([last_revision])]
 
1855
        for revision_id in reversed(revisions):
 
1856
            if _mod_revision.is_null(revision_id):
 
1857
                continue
1641
1858
            self.outf.write(revision_id + '\n')
1642
1859
 
1643
1860
 
1674
1891
                help='Specify a format for this branch. '
1675
1892
                'See "help formats".',
1676
1893
                lazy_registry=('bzrlib.bzrdir', 'format_registry'),
1677
 
                converter=lambda name: bzrdir.format_registry.make_bzrdir(name),
 
1894
                converter=lambda name: controldir.format_registry.make_bzrdir(name),
1678
1895
                value_switches=True,
1679
1896
                title="Branch format",
1680
1897
                ),
1681
1898
         Option('append-revisions-only',
1682
1899
                help='Never change revnos or the existing log.'
1683
 
                '  Append revisions to it only.')
 
1900
                '  Append revisions to it only.'),
 
1901
         Option('no-tree',
 
1902
                'Create a branch without a working tree.')
1684
1903
         ]
1685
1904
    def run(self, location=None, format=None, append_revisions_only=False,
1686
 
            create_prefix=False):
 
1905
            create_prefix=False, no_tree=False):
1687
1906
        if format is None:
1688
 
            format = bzrdir.format_registry.make_bzrdir('default')
 
1907
            format = controldir.format_registry.make_bzrdir('default')
1689
1908
        if location is None:
1690
1909
            location = u'.'
1691
1910
 
1700
1919
            to_transport.ensure_base()
1701
1920
        except errors.NoSuchFile:
1702
1921
            if not create_prefix:
1703
 
                raise errors.BzrCommandError("Parent directory of %s"
 
1922
                raise errors.BzrCommandError(gettext("Parent directory of %s"
1704
1923
                    " does not exist."
1705
1924
                    "\nYou may supply --create-prefix to create all"
1706
 
                    " leading parent directories."
 
1925
                    " leading parent directories.")
1707
1926
                    % location)
1708
1927
            to_transport.create_prefix()
1709
1928
 
1710
1929
        try:
1711
 
            a_bzrdir = bzrdir.BzrDir.open_from_transport(to_transport)
 
1930
            a_bzrdir = controldir.ControlDir.open_from_transport(to_transport)
1712
1931
        except errors.NotBranchError:
1713
1932
            # really a NotBzrDir error...
1714
 
            create_branch = bzrdir.BzrDir.create_branch_convenience
 
1933
            create_branch = controldir.ControlDir.create_branch_convenience
 
1934
            if no_tree:
 
1935
                force_new_tree = False
 
1936
            else:
 
1937
                force_new_tree = None
1715
1938
            branch = create_branch(to_transport.base, format=format,
1716
 
                                   possible_transports=[to_transport])
 
1939
                                   possible_transports=[to_transport],
 
1940
                                   force_new_tree=force_new_tree)
1717
1941
            a_bzrdir = branch.bzrdir
1718
1942
        else:
1719
1943
            from bzrlib.transport.local import LocalTransport
1723
1947
                        raise errors.BranchExistsWithoutWorkingTree(location)
1724
1948
                raise errors.AlreadyBranchError(location)
1725
1949
            branch = a_bzrdir.create_branch()
1726
 
            a_bzrdir.create_workingtree()
 
1950
            if not no_tree and not a_bzrdir.has_workingtree():
 
1951
                a_bzrdir.create_workingtree()
1727
1952
        if append_revisions_only:
1728
1953
            try:
1729
1954
                branch.set_append_revisions_only(True)
1730
1955
            except errors.UpgradeRequired:
1731
 
                raise errors.BzrCommandError('This branch format cannot be set'
1732
 
                    ' to append-revisions-only.  Try --default.')
 
1956
                raise errors.BzrCommandError(gettext('This branch format cannot be set'
 
1957
                    ' to append-revisions-only.  Try --default.'))
1733
1958
        if not is_quiet():
1734
1959
            from bzrlib.info import describe_layout, describe_format
1735
1960
            try:
1739
1964
            repository = branch.repository
1740
1965
            layout = describe_layout(repository, branch, tree).lower()
1741
1966
            format = describe_format(a_bzrdir, repository, branch, tree)
1742
 
            self.outf.write("Created a %s (format: %s)\n" % (layout, format))
 
1967
            self.outf.write(gettext("Created a {0} (format: {1})\n").format(
 
1968
                  layout, format))
1743
1969
            if repository.is_shared():
1744
1970
                #XXX: maybe this can be refactored into transport.path_or_url()
1745
1971
                url = repository.bzrdir.root_transport.external_url()
1747
1973
                    url = urlutils.local_path_from_url(url)
1748
1974
                except errors.InvalidURL:
1749
1975
                    pass
1750
 
                self.outf.write("Using shared repository: %s\n" % url)
 
1976
                self.outf.write(gettext("Using shared repository: %s\n") % url)
1751
1977
 
1752
1978
 
1753
1979
class cmd_init_repository(Command):
1783
2009
    takes_options = [RegistryOption('format',
1784
2010
                            help='Specify a format for this repository. See'
1785
2011
                                 ' "bzr help formats" for details.',
1786
 
                            lazy_registry=('bzrlib.bzrdir', 'format_registry'),
1787
 
                            converter=lambda name: bzrdir.format_registry.make_bzrdir(name),
 
2012
                            lazy_registry=('bzrlib.controldir', 'format_registry'),
 
2013
                            converter=lambda name: controldir.format_registry.make_bzrdir(name),
1788
2014
                            value_switches=True, title='Repository format'),
1789
2015
                     Option('no-trees',
1790
2016
                             help='Branches in the repository will default to'
1794
2020
 
1795
2021
    def run(self, location, format=None, no_trees=False):
1796
2022
        if format is None:
1797
 
            format = bzrdir.format_registry.make_bzrdir('default')
 
2023
            format = controldir.format_registry.make_bzrdir('default')
1798
2024
 
1799
2025
        if location is None:
1800
2026
            location = '.'
1823
2049
    "bzr diff -p1" is equivalent to "bzr diff --prefix old/:new/", and
1824
2050
    produces patches suitable for "patch -p1".
1825
2051
 
 
2052
    Note that when using the -r argument with a range of revisions, the
 
2053
    differences are computed between the two specified revisions.  That
 
2054
    is, the command does not show the changes introduced by the first 
 
2055
    revision in the range.  This differs from the interpretation of 
 
2056
    revision ranges used by "bzr log" which includes the first revision
 
2057
    in the range.
 
2058
 
1826
2059
    :Exit values:
1827
2060
        1 - changed
1828
2061
        2 - unrepresentable changes
1846
2079
 
1847
2080
            bzr diff -r1..3 xxx
1848
2081
 
1849
 
        To see the changes introduced in revision X::
 
2082
        The changes introduced by revision 2 (equivalent to -r1..2)::
 
2083
 
 
2084
            bzr diff -c2
 
2085
 
 
2086
        To see the changes introduced by revision X::
1850
2087
        
1851
2088
            bzr diff -cX
1852
2089
 
1856
2093
 
1857
2094
            bzr diff -r<chosen_parent>..X
1858
2095
 
1859
 
        The changes introduced by revision 2 (equivalent to -r1..2)::
 
2096
        The changes between the current revision and the previous revision
 
2097
        (equivalent to -c-1 and -r-2..-1)
1860
2098
 
1861
 
            bzr diff -c2
 
2099
            bzr diff -r-2..
1862
2100
 
1863
2101
        Show just the differences for file NEWS::
1864
2102
 
1879
2117
        Same as 'bzr diff' but prefix paths with old/ and new/::
1880
2118
 
1881
2119
            bzr diff --prefix old/:new/
 
2120
            
 
2121
        Show the differences using a custom diff program with options::
 
2122
        
 
2123
            bzr diff --using /usr/bin/diff --diff-options -wu
1882
2124
    """
1883
2125
    _see_also = ['status']
1884
2126
    takes_args = ['file*']
1885
2127
    takes_options = [
1886
2128
        Option('diff-options', type=str,
1887
 
               help='Pass these options to the diff program.'),
 
2129
               help='Pass these options to the external diff program.'),
1888
2130
        Option('prefix', type=str,
1889
2131
               short_name='p',
1890
2132
               help='Set prefixes added to old and new filenames, as '
1904
2146
            type=unicode,
1905
2147
            ),
1906
2148
        RegistryOption('format',
 
2149
            short_name='F',
1907
2150
            help='Diff format to use.',
1908
2151
            lazy_registry=('bzrlib.diff', 'format_registry'),
1909
 
            value_switches=False, title='Diff format'),
 
2152
            title='Diff format'),
1910
2153
        ]
1911
2154
    aliases = ['di', 'dif']
1912
2155
    encoding_type = 'exact'
1927
2170
        elif ':' in prefix:
1928
2171
            old_label, new_label = prefix.split(":")
1929
2172
        else:
1930
 
            raise errors.BzrCommandError(
 
2173
            raise errors.BzrCommandError(gettext(
1931
2174
                '--prefix expects two values separated by a colon'
1932
 
                ' (eg "old/:new/")')
1933
 
 
1934
 
        if using is not None and diff_options is not None:
1935
 
            raise errors.BzrCommandError(
1936
 
            '--diff-options and --using are mutually exclusive.')
 
2175
                ' (eg "old/:new/")'))
1937
2176
 
1938
2177
        if revision and len(revision) > 2:
1939
 
            raise errors.BzrCommandError('bzr diff --revision takes exactly'
1940
 
                                         ' one or two revision specifiers')
 
2178
            raise errors.BzrCommandError(gettext('bzr diff --revision takes exactly'
 
2179
                                         ' one or two revision specifiers'))
1941
2180
 
1942
2181
        if using is not None and format is not None:
1943
 
            raise errors.BzrCommandError('--using and --format are mutually '
1944
 
                'exclusive.')
 
2182
            raise errors.BzrCommandError(gettext(
 
2183
                '{0} and {1} are mutually exclusive').format(
 
2184
                '--using', '--format'))
1945
2185
 
1946
2186
        (old_tree, new_tree,
1947
2187
         old_branch, new_branch,
1997
2237
    @display_command
1998
2238
    def run(self, null=False, directory=u'.'):
1999
2239
        tree = WorkingTree.open_containing(directory)[0]
 
2240
        self.add_cleanup(tree.lock_read().unlock)
2000
2241
        td = tree.changes_from(tree.basis_tree())
 
2242
        self.cleanup_now()
2001
2243
        for path, id, kind, text_modified, meta_modified in td.modified:
2002
2244
            if null:
2003
2245
                self.outf.write(path + '\0')
2022
2264
        basis_inv = basis.inventory
2023
2265
        inv = wt.inventory
2024
2266
        for file_id in inv:
2025
 
            if file_id in basis_inv:
 
2267
            if basis_inv.has_id(file_id):
2026
2268
                continue
2027
2269
            if inv.is_root(file_id) and len(basis_inv) == 0:
2028
2270
                continue
2053
2295
    try:
2054
2296
        return int(limitstring)
2055
2297
    except ValueError:
2056
 
        msg = "The limit argument must be an integer."
 
2298
        msg = gettext("The limit argument must be an integer.")
2057
2299
        raise errors.BzrCommandError(msg)
2058
2300
 
2059
2301
 
2061
2303
    try:
2062
2304
        return int(s)
2063
2305
    except ValueError:
2064
 
        msg = "The levels argument must be an integer."
 
2306
        msg = gettext("The levels argument must be an integer.")
2065
2307
        raise errors.BzrCommandError(msg)
2066
2308
 
2067
2309
 
2177
2419
 
2178
2420
    :Other filtering:
2179
2421
 
2180
 
      The --message option can be used for finding revisions that match a
2181
 
      regular expression in a commit message.
 
2422
      The --match option can be used for finding revisions that match a
 
2423
      regular expression in a commit message, committer, author or bug.
 
2424
      Specifying the option several times will match any of the supplied
 
2425
      expressions. --match-author, --match-bugs, --match-committer and
 
2426
      --match-message can be used to only match a specific field.
2182
2427
 
2183
2428
    :Tips & tricks:
2184
2429
 
2244
2489
                   argname='N',
2245
2490
                   type=_parse_levels),
2246
2491
            Option('message',
2247
 
                   short_name='m',
2248
2492
                   help='Show revisions whose message matches this '
2249
2493
                        'regular expression.',
2250
 
                   type=str),
 
2494
                   type=str,
 
2495
                   hidden=True),
2251
2496
            Option('limit',
2252
2497
                   short_name='l',
2253
2498
                   help='Limit the output to the first N revisions.',
2256
2501
            Option('show-diff',
2257
2502
                   short_name='p',
2258
2503
                   help='Show changes made in each revision as a patch.'),
2259
 
            Option('include-merges',
 
2504
            Option('include-merged',
2260
2505
                   help='Show merged revisions like --levels 0 does.'),
 
2506
            Option('include-merges', hidden=True,
 
2507
                   help='Historical alias for --include-merged.'),
 
2508
            Option('omit-merges',
 
2509
                   help='Do not report commits with more than one parent.'),
2261
2510
            Option('exclude-common-ancestry',
2262
2511
                   help='Display only the revisions that are not part'
2263
2512
                   ' of both ancestries (require -rX..Y)'
2264
 
                   )
 
2513
                   ),
 
2514
            Option('signatures',
 
2515
                   help='Show digital signature validity'),
 
2516
            ListOption('match',
 
2517
                short_name='m',
 
2518
                help='Show revisions whose properties match this '
 
2519
                'expression.',
 
2520
                type=str),
 
2521
            ListOption('match-message',
 
2522
                   help='Show revisions whose message matches this '
 
2523
                   'expression.',
 
2524
                type=str),
 
2525
            ListOption('match-committer',
 
2526
                   help='Show revisions whose committer matches this '
 
2527
                   'expression.',
 
2528
                type=str),
 
2529
            ListOption('match-author',
 
2530
                   help='Show revisions whose authors match this '
 
2531
                   'expression.',
 
2532
                type=str),
 
2533
            ListOption('match-bugs',
 
2534
                   help='Show revisions whose bugs match this '
 
2535
                   'expression.',
 
2536
                type=str)
2265
2537
            ]
2266
2538
    encoding_type = 'replace'
2267
2539
 
2277
2549
            message=None,
2278
2550
            limit=None,
2279
2551
            show_diff=False,
2280
 
            include_merges=False,
 
2552
            include_merged=None,
2281
2553
            authors=None,
2282
2554
            exclude_common_ancestry=False,
 
2555
            signatures=False,
 
2556
            match=None,
 
2557
            match_message=None,
 
2558
            match_committer=None,
 
2559
            match_author=None,
 
2560
            match_bugs=None,
 
2561
            omit_merges=False,
 
2562
            include_merges=symbol_versioning.DEPRECATED_PARAMETER,
2283
2563
            ):
2284
2564
        from bzrlib.log import (
2285
2565
            Logger,
2287
2567
            _get_info_for_log_files,
2288
2568
            )
2289
2569
        direction = (forward and 'forward') or 'reverse'
 
2570
        if symbol_versioning.deprecated_passed(include_merges):
 
2571
            ui.ui_factory.show_user_warning(
 
2572
                'deprecated_command_option',
 
2573
                deprecated_name='--include-merges',
 
2574
                recommended_name='--include-merged',
 
2575
                deprecated_in_version='2.5',
 
2576
                command=self.invoked_as)
 
2577
            if include_merged is None:
 
2578
                include_merged = include_merges
 
2579
            else:
 
2580
                raise errors.BzrCommandError(gettext(
 
2581
                    '{0} and {1} are mutually exclusive').format(
 
2582
                    '--include-merges', '--include-merged'))
 
2583
        if include_merged is None:
 
2584
            include_merged = False
2290
2585
        if (exclude_common_ancestry
2291
2586
            and (revision is None or len(revision) != 2)):
2292
 
            raise errors.BzrCommandError(
2293
 
                '--exclude-common-ancestry requires -r with two revisions')
2294
 
        if include_merges:
 
2587
            raise errors.BzrCommandError(gettext(
 
2588
                '--exclude-common-ancestry requires -r with two revisions'))
 
2589
        if include_merged:
2295
2590
            if levels is None:
2296
2591
                levels = 0
2297
2592
            else:
2298
 
                raise errors.BzrCommandError(
2299
 
                    '--levels and --include-merges are mutually exclusive')
 
2593
                raise errors.BzrCommandError(gettext(
 
2594
                    '{0} and {1} are mutually exclusive').format(
 
2595
                    '--levels', '--include-merged'))
2300
2596
 
2301
2597
        if change is not None:
2302
2598
            if len(change) > 1:
2303
2599
                raise errors.RangeInChangeOption()
2304
2600
            if revision is not None:
2305
 
                raise errors.BzrCommandError(
2306
 
                    '--revision and --change are mutually exclusive')
 
2601
                raise errors.BzrCommandError(gettext(
 
2602
                    '{0} and {1} are mutually exclusive').format(
 
2603
                    '--revision', '--change'))
2307
2604
            else:
2308
2605
                revision = change
2309
2606
 
2315
2612
                revision, file_list, self.add_cleanup)
2316
2613
            for relpath, file_id, kind in file_info_list:
2317
2614
                if file_id is None:
2318
 
                    raise errors.BzrCommandError(
2319
 
                        "Path unknown at end or start of revision range: %s" %
 
2615
                    raise errors.BzrCommandError(gettext(
 
2616
                        "Path unknown at end or start of revision range: %s") %
2320
2617
                        relpath)
2321
2618
                # If the relpath is the top of the tree, we log everything
2322
2619
                if relpath == '':
2334
2631
                location = revision[0].get_branch()
2335
2632
            else:
2336
2633
                location = '.'
2337
 
            dir, relpath = bzrdir.BzrDir.open_containing(location)
 
2634
            dir, relpath = controldir.ControlDir.open_containing(location)
2338
2635
            b = dir.open_branch()
2339
2636
            self.add_cleanup(b.lock_read().unlock)
2340
2637
            rev1, rev2 = _get_revision_range(revision, b, self.name())
2341
2638
 
 
2639
        if b.get_config().validate_signatures_in_log():
 
2640
            signatures = True
 
2641
 
 
2642
        if signatures:
 
2643
            if not gpg.GPGStrategy.verify_signatures_available():
 
2644
                raise errors.GpgmeNotInstalled(None)
 
2645
 
2342
2646
        # Decide on the type of delta & diff filtering to use
2343
2647
        # TODO: add an --all-files option to make this configurable & consistent
2344
2648
        if not verbose:
2381
2685
        match_using_deltas = (len(file_ids) != 1 or filter_by_dir
2382
2686
            or delta_type or partial_history)
2383
2687
 
 
2688
        match_dict = {}
 
2689
        if match:
 
2690
            match_dict[''] = match
 
2691
        if match_message:
 
2692
            match_dict['message'] = match_message
 
2693
        if match_committer:
 
2694
            match_dict['committer'] = match_committer
 
2695
        if match_author:
 
2696
            match_dict['author'] = match_author
 
2697
        if match_bugs:
 
2698
            match_dict['bugs'] = match_bugs
 
2699
 
2384
2700
        # Build the LogRequest and execute it
2385
2701
        if len(file_ids) == 0:
2386
2702
            file_ids = None
2389
2705
            start_revision=rev1, end_revision=rev2, limit=limit,
2390
2706
            message_search=message, delta_type=delta_type,
2391
2707
            diff_type=diff_type, _match_using_deltas=match_using_deltas,
2392
 
            exclude_common_ancestry=exclude_common_ancestry,
 
2708
            exclude_common_ancestry=exclude_common_ancestry, match=match_dict,
 
2709
            signature=signatures, omit_merges=omit_merges,
2393
2710
            )
2394
2711
        Logger(b, rqst).show(lf)
2395
2712
 
2412
2729
            # b is taken from revision[0].get_branch(), and
2413
2730
            # show_log will use its revision_history. Having
2414
2731
            # different branches will lead to weird behaviors.
2415
 
            raise errors.BzrCommandError(
 
2732
            raise errors.BzrCommandError(gettext(
2416
2733
                "bzr %s doesn't accept two revisions in different"
2417
 
                " branches." % command_name)
 
2734
                " branches.") % command_name)
2418
2735
        if start_spec.spec is None:
2419
2736
            # Avoid loading all the history.
2420
2737
            rev1 = RevisionInfo(branch, None, None)
2428
2745
        else:
2429
2746
            rev2 = end_spec.in_history(branch)
2430
2747
    else:
2431
 
        raise errors.BzrCommandError(
2432
 
            'bzr %s --revision takes one or two values.' % command_name)
 
2748
        raise errors.BzrCommandError(gettext(
 
2749
            'bzr %s --revision takes one or two values.') % command_name)
2433
2750
    return rev1, rev2
2434
2751
 
2435
2752
 
2506
2823
            null=False, kind=None, show_ids=False, path=None, directory=None):
2507
2824
 
2508
2825
        if kind and kind not in ('file', 'directory', 'symlink'):
2509
 
            raise errors.BzrCommandError('invalid kind specified')
 
2826
            raise errors.BzrCommandError(gettext('invalid kind specified'))
2510
2827
 
2511
2828
        if verbose and null:
2512
 
            raise errors.BzrCommandError('Cannot set both --verbose and --null')
 
2829
            raise errors.BzrCommandError(gettext('Cannot set both --verbose and --null'))
2513
2830
        all = not (unknown or versioned or ignored)
2514
2831
 
2515
2832
        selection = {'I':ignored, '?':unknown, 'V':versioned}
2518
2835
            fs_path = '.'
2519
2836
        else:
2520
2837
            if from_root:
2521
 
                raise errors.BzrCommandError('cannot specify both --from-root'
2522
 
                                             ' and PATH')
 
2838
                raise errors.BzrCommandError(gettext('cannot specify both --from-root'
 
2839
                                             ' and PATH'))
2523
2840
            fs_path = path
2524
2841
        tree, branch, relpath = \
2525
2842
            _open_directory_or_containing_tree_or_branch(fs_path, directory)
2541
2858
            if view_files:
2542
2859
                apply_view = True
2543
2860
                view_str = views.view_display_str(view_files)
2544
 
                note("Ignoring files outside view. View is %s" % view_str)
 
2861
                note(gettext("Ignoring files outside view. View is %s") % view_str)
2545
2862
 
2546
2863
        self.add_cleanup(tree.lock_read().unlock)
2547
2864
        for fp, fc, fkind, fid, entry in tree.list_files(include_root=False,
2633
2950
    Patterns prefixed with '!!' act as regular ignore patterns, but have
2634
2951
    precedence over the '!' exception patterns.
2635
2952
 
2636
 
    Note: ignore patterns containing shell wildcards must be quoted from
2637
 
    the shell on Unix.
 
2953
    :Notes: 
 
2954
        
 
2955
    * Ignore patterns containing shell wildcards must be quoted from
 
2956
      the shell on Unix.
 
2957
 
 
2958
    * Ignore patterns starting with "#" act as comments in the ignore file.
 
2959
      To ignore patterns that begin with that character, use the "RE:" prefix.
2638
2960
 
2639
2961
    :Examples:
2640
2962
        Ignore the top level Makefile::
2649
2971
 
2650
2972
            bzr ignore "!special.class"
2651
2973
 
 
2974
        Ignore files whose name begins with the "#" character::
 
2975
 
 
2976
            bzr ignore "RE:^#"
 
2977
 
2652
2978
        Ignore .o files under the lib directory::
2653
2979
 
2654
2980
            bzr ignore "lib/**/*.o"
2662
2988
            bzr ignore "RE:(?!debian/).*"
2663
2989
        
2664
2990
        Ignore everything except the "local" toplevel directory,
2665
 
        but always ignore "*~" autosave files, even under local/::
 
2991
        but always ignore autosave files ending in ~, even under local/::
2666
2992
        
2667
2993
            bzr ignore "*"
2668
2994
            bzr ignore "!./local"
2685
3011
                self.outf.write("%s\n" % pattern)
2686
3012
            return
2687
3013
        if not name_pattern_list:
2688
 
            raise errors.BzrCommandError("ignore requires at least one "
2689
 
                "NAME_PATTERN or --default-rules.")
 
3014
            raise errors.BzrCommandError(gettext("ignore requires at least one "
 
3015
                "NAME_PATTERN or --default-rules."))
2690
3016
        name_pattern_list = [globbing.normalize_pattern(p)
2691
3017
                             for p in name_pattern_list]
2692
3018
        bad_patterns = ''
 
3019
        bad_patterns_count = 0
2693
3020
        for p in name_pattern_list:
2694
3021
            if not globbing.Globster.is_pattern_valid(p):
 
3022
                bad_patterns_count += 1
2695
3023
                bad_patterns += ('\n  %s' % p)
2696
3024
        if bad_patterns:
2697
 
            msg = ('Invalid ignore pattern(s) found. %s' % bad_patterns)
 
3025
            msg = (ngettext('Invalid ignore pattern found. %s', 
 
3026
                            'Invalid ignore patterns found. %s',
 
3027
                            bad_patterns_count) % bad_patterns)
2698
3028
            ui.ui_factory.show_error(msg)
2699
3029
            raise errors.InvalidPattern('')
2700
3030
        for name_pattern in name_pattern_list:
2701
3031
            if (name_pattern[0] == '/' or
2702
3032
                (len(name_pattern) > 1 and name_pattern[1] == ':')):
2703
 
                raise errors.BzrCommandError(
2704
 
                    "NAME_PATTERN should not be an absolute path")
 
3033
                raise errors.BzrCommandError(gettext(
 
3034
                    "NAME_PATTERN should not be an absolute path"))
2705
3035
        tree, relpath = WorkingTree.open_containing(directory)
2706
3036
        ignores.tree_ignores_add_patterns(tree, name_pattern_list)
2707
3037
        ignored = globbing.Globster(name_pattern_list)
2714
3044
                if ignored.match(filename):
2715
3045
                    matches.append(filename)
2716
3046
        if len(matches) > 0:
2717
 
            self.outf.write("Warning: the following files are version controlled and"
2718
 
                  " match your ignore pattern:\n%s"
 
3047
            self.outf.write(gettext("Warning: the following files are version "
 
3048
                  "controlled and match your ignore pattern:\n%s"
2719
3049
                  "\nThese files will continue to be version controlled"
2720
 
                  " unless you 'bzr remove' them.\n" % ("\n".join(matches),))
 
3050
                  " unless you 'bzr remove' them.\n") % ("\n".join(matches),))
2721
3051
 
2722
3052
 
2723
3053
class cmd_ignored(Command):
2762
3092
        try:
2763
3093
            revno = int(revno)
2764
3094
        except ValueError:
2765
 
            raise errors.BzrCommandError("not a valid revision-number: %r"
 
3095
            raise errors.BzrCommandError(gettext("not a valid revision-number: %r")
2766
3096
                                         % revno)
2767
3097
        revid = WorkingTree.open_containing(directory)[0].branch.get_rev_id(revno)
2768
3098
        self.outf.write("%s\n" % revid)
2796
3126
         zip                          .zip
2797
3127
      =================       =========================
2798
3128
    """
 
3129
    encoding = 'exact'
2799
3130
    takes_args = ['dest', 'branch_or_subdir?']
2800
3131
    takes_options = ['directory',
2801
3132
        Option('format',
2828
3159
            export(rev_tree, dest, format, root, subdir, filtered=filters,
2829
3160
                   per_file_timestamps=per_file_timestamps)
2830
3161
        except errors.NoSuchExportFormat, e:
2831
 
            raise errors.BzrCommandError('Unsupported export format: %s' % e.format)
 
3162
            raise errors.BzrCommandError(gettext('Unsupported export format: %s') % e.format)
2832
3163
 
2833
3164
 
2834
3165
class cmd_cat(Command):
2854
3185
    def run(self, filename, revision=None, name_from_revision=False,
2855
3186
            filters=False, directory=None):
2856
3187
        if revision is not None and len(revision) != 1:
2857
 
            raise errors.BzrCommandError("bzr cat --revision takes exactly"
2858
 
                                         " one revision specifier")
 
3188
            raise errors.BzrCommandError(gettext("bzr cat --revision takes exactly"
 
3189
                                         " one revision specifier"))
2859
3190
        tree, branch, relpath = \
2860
3191
            _open_directory_or_containing_tree_or_branch(filename, directory)
2861
3192
        self.add_cleanup(branch.lock_read().unlock)
2871
3202
 
2872
3203
        old_file_id = rev_tree.path2id(relpath)
2873
3204
 
 
3205
        # TODO: Split out this code to something that generically finds the
 
3206
        # best id for a path across one or more trees; it's like
 
3207
        # find_ids_across_trees but restricted to find just one. -- mbp
 
3208
        # 20110705.
2874
3209
        if name_from_revision:
2875
3210
            # Try in revision if requested
2876
3211
            if old_file_id is None:
2877
 
                raise errors.BzrCommandError(
2878
 
                    "%r is not present in revision %s" % (
 
3212
                raise errors.BzrCommandError(gettext(
 
3213
                    "{0!r} is not present in revision {1}").format(
2879
3214
                        filename, rev_tree.get_revision_id()))
2880
3215
            else:
2881
 
                content = rev_tree.get_file_text(old_file_id)
 
3216
                actual_file_id = old_file_id
2882
3217
        else:
2883
3218
            cur_file_id = tree.path2id(relpath)
2884
 
            found = False
2885
 
            if cur_file_id is not None:
2886
 
                # Then try with the actual file id
2887
 
                try:
2888
 
                    content = rev_tree.get_file_text(cur_file_id)
2889
 
                    found = True
2890
 
                except errors.NoSuchId:
2891
 
                    # The actual file id didn't exist at that time
2892
 
                    pass
2893
 
            if not found and old_file_id is not None:
2894
 
                # Finally try with the old file id
2895
 
                content = rev_tree.get_file_text(old_file_id)
2896
 
                found = True
2897
 
            if not found:
2898
 
                # Can't be found anywhere
2899
 
                raise errors.BzrCommandError(
2900
 
                    "%r is not present in revision %s" % (
 
3219
            if cur_file_id is not None and rev_tree.has_id(cur_file_id):
 
3220
                actual_file_id = cur_file_id
 
3221
            elif old_file_id is not None:
 
3222
                actual_file_id = old_file_id
 
3223
            else:
 
3224
                raise errors.BzrCommandError(gettext(
 
3225
                    "{0!r} is not present in revision {1}").format(
2901
3226
                        filename, rev_tree.get_revision_id()))
2902
3227
        if filtered:
2903
 
            from bzrlib.filters import (
2904
 
                ContentFilterContext,
2905
 
                filtered_output_bytes,
2906
 
                )
2907
 
            filters = rev_tree._content_filter_stack(relpath)
2908
 
            chunks = content.splitlines(True)
2909
 
            content = filtered_output_bytes(chunks, filters,
2910
 
                ContentFilterContext(relpath, rev_tree))
2911
 
            self.cleanup_now()
2912
 
            self.outf.writelines(content)
 
3228
            from bzrlib.filter_tree import ContentFilterTree
 
3229
            filter_tree = ContentFilterTree(rev_tree,
 
3230
                rev_tree._content_filter_stack)
 
3231
            content = filter_tree.get_file_text(actual_file_id)
2913
3232
        else:
2914
 
            self.cleanup_now()
2915
 
            self.outf.write(content)
 
3233
            content = rev_tree.get_file_text(actual_file_id)
 
3234
        self.cleanup_now()
 
3235
        self.outf.write(content)
2916
3236
 
2917
3237
 
2918
3238
class cmd_local_time_offset(Command):
2979
3299
      to trigger updates to external systems like bug trackers. The --fixes
2980
3300
      option can be used to record the association between a revision and
2981
3301
      one or more bugs. See ``bzr help bugs`` for details.
2982
 
 
2983
 
      A selective commit may fail in some cases where the committed
2984
 
      tree would be invalid. Consider::
2985
 
  
2986
 
        bzr init foo
2987
 
        mkdir foo/bar
2988
 
        bzr add foo/bar
2989
 
        bzr commit foo -m "committing foo"
2990
 
        bzr mv foo/bar foo/baz
2991
 
        mkdir foo/bar
2992
 
        bzr add foo/bar
2993
 
        bzr commit foo/bar -m "committing bar but not baz"
2994
 
  
2995
 
      In the example above, the last commit will fail by design. This gives
2996
 
      the user the opportunity to decide whether they want to commit the
2997
 
      rename at the same time, separately first, or not at all. (As a general
2998
 
      rule, when in doubt, Bazaar has a policy of Doing the Safe Thing.)
2999
3302
    """
3000
 
    # TODO: Run hooks on tree to-be-committed, and after commit.
3001
 
 
3002
 
    # TODO: Strict commit that fails if there are deleted files.
3003
 
    #       (what does "deleted files" mean ??)
3004
 
 
3005
 
    # TODO: Give better message for -s, --summary, used by tla people
3006
 
 
3007
 
    # XXX: verbose currently does nothing
3008
3303
 
3009
3304
    _see_also = ['add', 'bugs', 'hooks', 'uncommit']
3010
3305
    takes_args = ['selected*']
3042
3337
             Option('show-diff', short_name='p',
3043
3338
                    help='When no message is supplied, show the diff along'
3044
3339
                    ' with the status summary in the message editor.'),
 
3340
             Option('lossy', 
 
3341
                    help='When committing to a foreign version control '
 
3342
                    'system do not push data that can not be natively '
 
3343
                    'represented.'),
3045
3344
             ]
3046
3345
    aliases = ['ci', 'checkin']
3047
3346
 
3048
3347
    def _iter_bug_fix_urls(self, fixes, branch):
 
3348
        default_bugtracker  = None
3049
3349
        # Configure the properties for bug fixing attributes.
3050
3350
        for fixed_bug in fixes:
3051
3351
            tokens = fixed_bug.split(':')
3052
 
            if len(tokens) != 2:
3053
 
                raise errors.BzrCommandError(
 
3352
            if len(tokens) == 1:
 
3353
                if default_bugtracker is None:
 
3354
                    branch_config = branch.get_config()
 
3355
                    default_bugtracker = branch_config.get_user_option(
 
3356
                        "bugtracker")
 
3357
                if default_bugtracker is None:
 
3358
                    raise errors.BzrCommandError(gettext(
 
3359
                        "No tracker specified for bug %s. Use the form "
 
3360
                        "'tracker:id' or specify a default bug tracker "
 
3361
                        "using the `bugtracker` option.\nSee "
 
3362
                        "\"bzr help bugs\" for more information on this "
 
3363
                        "feature. Commit refused.") % fixed_bug)
 
3364
                tag = default_bugtracker
 
3365
                bug_id = tokens[0]
 
3366
            elif len(tokens) != 2:
 
3367
                raise errors.BzrCommandError(gettext(
3054
3368
                    "Invalid bug %s. Must be in the form of 'tracker:id'. "
3055
3369
                    "See \"bzr help bugs\" for more information on this "
3056
 
                    "feature.\nCommit refused." % fixed_bug)
3057
 
            tag, bug_id = tokens
 
3370
                    "feature.\nCommit refused.") % fixed_bug)
 
3371
            else:
 
3372
                tag, bug_id = tokens
3058
3373
            try:
3059
3374
                yield bugtracker.get_bug_url(tag, branch, bug_id)
3060
3375
            except errors.UnknownBugTrackerAbbreviation:
3061
 
                raise errors.BzrCommandError(
3062
 
                    'Unrecognized bug %s. Commit refused.' % fixed_bug)
 
3376
                raise errors.BzrCommandError(gettext(
 
3377
                    'Unrecognized bug %s. Commit refused.') % fixed_bug)
3063
3378
            except errors.MalformedBugIdentifier, e:
3064
 
                raise errors.BzrCommandError(
3065
 
                    "%s\nCommit refused." % (str(e),))
 
3379
                raise errors.BzrCommandError(gettext(
 
3380
                    "%s\nCommit refused.") % (str(e),))
3066
3381
 
3067
3382
    def run(self, message=None, file=None, verbose=False, selected_list=None,
3068
3383
            unchanged=False, strict=False, local=False, fixes=None,
3069
 
            author=None, show_diff=False, exclude=None, commit_time=None):
 
3384
            author=None, show_diff=False, exclude=None, commit_time=None,
 
3385
            lossy=False):
3070
3386
        from bzrlib.errors import (
3071
3387
            PointlessCommit,
3072
3388
            ConflictsInTree,
3075
3391
        from bzrlib.msgeditor import (
3076
3392
            edit_commit_message_encoded,
3077
3393
            generate_commit_message_template,
3078
 
            make_commit_message_template_encoded
 
3394
            make_commit_message_template_encoded,
 
3395
            set_commit_message,
3079
3396
        )
3080
3397
 
3081
3398
        commit_stamp = offset = None
3083
3400
            try:
3084
3401
                commit_stamp, offset = timestamp.parse_patch_date(commit_time)
3085
3402
            except ValueError, e:
3086
 
                raise errors.BzrCommandError(
3087
 
                    "Could not parse --commit-time: " + str(e))
3088
 
 
3089
 
        # TODO: Need a blackbox test for invoking the external editor; may be
3090
 
        # slightly problematic to run this cross-platform.
3091
 
 
3092
 
        # TODO: do more checks that the commit will succeed before
3093
 
        # spending the user's valuable time typing a commit message.
 
3403
                raise errors.BzrCommandError(gettext(
 
3404
                    "Could not parse --commit-time: " + str(e)))
3094
3405
 
3095
3406
        properties = {}
3096
3407
 
3129
3440
                message = message.replace('\r\n', '\n')
3130
3441
                message = message.replace('\r', '\n')
3131
3442
            if file:
3132
 
                raise errors.BzrCommandError(
3133
 
                    "please specify either --message or --file")
 
3443
                raise errors.BzrCommandError(gettext(
 
3444
                    "please specify either --message or --file"))
3134
3445
 
3135
3446
        def get_message(commit_obj):
3136
3447
            """Callback to get commit message"""
3137
3448
            if file:
3138
 
                f = codecs.open(file, 'rt', osutils.get_user_encoding())
 
3449
                f = open(file)
3139
3450
                try:
3140
 
                    my_message = f.read()
 
3451
                    my_message = f.read().decode(osutils.get_user_encoding())
3141
3452
                finally:
3142
3453
                    f.close()
3143
3454
            elif message is not None:
3153
3464
                # make_commit_message_template_encoded returns user encoding.
3154
3465
                # We probably want to be using edit_commit_message instead to
3155
3466
                # avoid this.
3156
 
                start_message = generate_commit_message_template(commit_obj)
3157
 
                my_message = edit_commit_message_encoded(text,
3158
 
                    start_message=start_message)
3159
 
                if my_message is None:
3160
 
                    raise errors.BzrCommandError("please specify a commit"
3161
 
                        " message with either --message or --file")
3162
 
            if my_message == "":
3163
 
                raise errors.BzrCommandError("empty commit message specified")
 
3467
                my_message = set_commit_message(commit_obj)
 
3468
                if my_message is None:
 
3469
                    start_message = generate_commit_message_template(commit_obj)
 
3470
                    my_message = edit_commit_message_encoded(text,
 
3471
                        start_message=start_message)
 
3472
                if my_message is None:
 
3473
                    raise errors.BzrCommandError(gettext("please specify a commit"
 
3474
                        " message with either --message or --file"))
 
3475
                if my_message == "":
 
3476
                    raise errors.BzrCommandError(gettext("Empty commit message specified."
 
3477
                            " Please specify a commit message with either"
 
3478
                            " --message or --file or leave a blank message"
 
3479
                            " with --message \"\"."))
3164
3480
            return my_message
3165
3481
 
3166
3482
        # The API permits a commit with a filter of [] to mean 'select nothing'
3174
3490
                        reporter=None, verbose=verbose, revprops=properties,
3175
3491
                        authors=author, timestamp=commit_stamp,
3176
3492
                        timezone=offset,
3177
 
                        exclude=tree.safe_relpath_files(exclude))
 
3493
                        exclude=tree.safe_relpath_files(exclude),
 
3494
                        lossy=lossy)
3178
3495
        except PointlessCommit:
3179
 
            raise errors.BzrCommandError("No changes to commit."
3180
 
                              " Use --unchanged to commit anyhow.")
 
3496
            raise errors.BzrCommandError(gettext("No changes to commit."
 
3497
                " Please 'bzr add' the files you want to commit, or use"
 
3498
                " --unchanged to force an empty commit."))
3181
3499
        except ConflictsInTree:
3182
 
            raise errors.BzrCommandError('Conflicts detected in working '
 
3500
            raise errors.BzrCommandError(gettext('Conflicts detected in working '
3183
3501
                'tree.  Use "bzr conflicts" to list, "bzr resolve FILE" to'
3184
 
                ' resolve.')
 
3502
                ' resolve.'))
3185
3503
        except StrictCommitFailed:
3186
 
            raise errors.BzrCommandError("Commit refused because there are"
3187
 
                              " unknown files in the working tree.")
 
3504
            raise errors.BzrCommandError(gettext("Commit refused because there are"
 
3505
                              " unknown files in the working tree."))
3188
3506
        except errors.BoundBranchOutOfDate, e:
3189
 
            e.extra_help = ("\n"
 
3507
            e.extra_help = (gettext("\n"
3190
3508
                'To commit to master branch, run update and then commit.\n'
3191
3509
                'You can also pass --local to commit to continue working '
3192
 
                'disconnected.')
 
3510
                'disconnected.'))
3193
3511
            raise
3194
3512
 
3195
3513
 
3264
3582
 
3265
3583
 
3266
3584
class cmd_upgrade(Command):
3267
 
    __doc__ = """Upgrade branch storage to current format.
3268
 
 
3269
 
    The check command or bzr developers may sometimes advise you to run
3270
 
    this command. When the default format has changed you may also be warned
3271
 
    during other operations to upgrade.
 
3585
    __doc__ = """Upgrade a repository, branch or working tree to a newer format.
 
3586
 
 
3587
    When the default format has changed after a major new release of
 
3588
    Bazaar, you may be informed during certain operations that you
 
3589
    should upgrade. Upgrading to a newer format may improve performance
 
3590
    or make new features available. It may however limit interoperability
 
3591
    with older repositories or with older versions of Bazaar.
 
3592
 
 
3593
    If you wish to upgrade to a particular format rather than the
 
3594
    current default, that can be specified using the --format option.
 
3595
    As a consequence, you can use the upgrade command this way to
 
3596
    "downgrade" to an earlier format, though some conversions are
 
3597
    a one way process (e.g. changing from the 1.x default to the
 
3598
    2.x default) so downgrading is not always possible.
 
3599
 
 
3600
    A backup.bzr.~#~ directory is created at the start of the conversion
 
3601
    process (where # is a number). By default, this is left there on
 
3602
    completion. If the conversion fails, delete the new .bzr directory
 
3603
    and rename this one back in its place. Use the --clean option to ask
 
3604
    for the backup.bzr directory to be removed on successful conversion.
 
3605
    Alternatively, you can delete it by hand if everything looks good
 
3606
    afterwards.
 
3607
 
 
3608
    If the location given is a shared repository, dependent branches
 
3609
    are also converted provided the repository converts successfully.
 
3610
    If the conversion of a branch fails, remaining branches are still
 
3611
    tried.
 
3612
 
 
3613
    For more information on upgrades, see the Bazaar Upgrade Guide,
 
3614
    http://doc.bazaar.canonical.com/latest/en/upgrade-guide/.
3272
3615
    """
3273
3616
 
3274
 
    _see_also = ['check']
 
3617
    _see_also = ['check', 'reconcile', 'formats']
3275
3618
    takes_args = ['url?']
3276
3619
    takes_options = [
3277
 
                    RegistryOption('format',
3278
 
                        help='Upgrade to a specific format.  See "bzr help'
3279
 
                             ' formats" for details.',
3280
 
                        lazy_registry=('bzrlib.bzrdir', 'format_registry'),
3281
 
                        converter=lambda name: bzrdir.format_registry.make_bzrdir(name),
3282
 
                        value_switches=True, title='Branch format'),
3283
 
                    ]
 
3620
        RegistryOption('format',
 
3621
            help='Upgrade to a specific format.  See "bzr help'
 
3622
                 ' formats" for details.',
 
3623
            lazy_registry=('bzrlib.controldir', 'format_registry'),
 
3624
            converter=lambda name: controldir.format_registry.make_bzrdir(name),
 
3625
            value_switches=True, title='Branch format'),
 
3626
        Option('clean',
 
3627
            help='Remove the backup.bzr directory if successful.'),
 
3628
        Option('dry-run',
 
3629
            help="Show what would be done, but don't actually do anything."),
 
3630
    ]
3284
3631
 
3285
 
    def run(self, url='.', format=None):
 
3632
    def run(self, url='.', format=None, clean=False, dry_run=False):
3286
3633
        from bzrlib.upgrade import upgrade
3287
 
        upgrade(url, format)
 
3634
        exceptions = upgrade(url, format, clean_up=clean, dry_run=dry_run)
 
3635
        if exceptions:
 
3636
            if len(exceptions) == 1:
 
3637
                # Compatibility with historical behavior
 
3638
                raise exceptions[0]
 
3639
            else:
 
3640
                return 3
3288
3641
 
3289
3642
 
3290
3643
class cmd_whoami(Command):
3317
3670
                try:
3318
3671
                    c = Branch.open_containing(u'.')[0].get_config()
3319
3672
                except errors.NotBranchError:
3320
 
                    c = config.GlobalConfig()
 
3673
                    c = _mod_config.GlobalConfig()
3321
3674
            else:
3322
3675
                c = Branch.open(directory).get_config()
3323
3676
            if email:
3326
3679
                self.outf.write(c.username() + '\n')
3327
3680
            return
3328
3681
 
 
3682
        if email:
 
3683
            raise errors.BzrCommandError(gettext("--email can only be used to display existing "
 
3684
                                         "identity"))
 
3685
 
3329
3686
        # display a warning if an email address isn't included in the given name.
3330
3687
        try:
3331
 
            config.extract_email_address(name)
 
3688
            _mod_config.extract_email_address(name)
3332
3689
        except errors.NoEmailInUsername, e:
3333
3690
            warning('"%s" does not seem to contain an email address.  '
3334
3691
                    'This is allowed, but not recommended.', name)
3340
3697
            else:
3341
3698
                c = Branch.open(directory).get_config()
3342
3699
        else:
3343
 
            c = config.GlobalConfig()
 
3700
            c = _mod_config.GlobalConfig()
3344
3701
        c.set_user_option('email', name)
3345
3702
 
3346
3703
 
3409
3766
 
3410
3767
    def remove_alias(self, alias_name):
3411
3768
        if alias_name is None:
3412
 
            raise errors.BzrCommandError(
3413
 
                'bzr alias --remove expects an alias to remove.')
 
3769
            raise errors.BzrCommandError(gettext(
 
3770
                'bzr alias --remove expects an alias to remove.'))
3414
3771
        # If alias is not found, print something like:
3415
3772
        # unalias: foo: not found
3416
 
        c = config.GlobalConfig()
 
3773
        c = _mod_config.GlobalConfig()
3417
3774
        c.unset_alias(alias_name)
3418
3775
 
3419
3776
    @display_command
3420
3777
    def print_aliases(self):
3421
3778
        """Print out the defined aliases in a similar format to bash."""
3422
 
        aliases = config.GlobalConfig().get_aliases()
 
3779
        aliases = _mod_config.GlobalConfig().get_aliases()
3423
3780
        for key, value in sorted(aliases.iteritems()):
3424
3781
            self.outf.write('bzr alias %s="%s"\n' % (key, value))
3425
3782
 
3435
3792
 
3436
3793
    def set_alias(self, alias_name, alias_command):
3437
3794
        """Save the alias in the global config."""
3438
 
        c = config.GlobalConfig()
 
3795
        c = _mod_config.GlobalConfig()
3439
3796
        c.set_alias(alias_name, alias_command)
3440
3797
 
3441
3798
 
3476
3833
    If you set BZR_TEST_PDB=1 when running selftest, failing tests will drop
3477
3834
    into a pdb postmortem session.
3478
3835
 
 
3836
    The --coverage=DIRNAME global option produces a report with covered code
 
3837
    indicated.
 
3838
 
3479
3839
    :Examples:
3480
3840
        Run only tests relating to 'ignore'::
3481
3841
 
3492
3852
        if typestring == "sftp":
3493
3853
            from bzrlib.tests import stub_sftp
3494
3854
            return stub_sftp.SFTPAbsoluteServer
3495
 
        if typestring == "memory":
 
3855
        elif typestring == "memory":
3496
3856
            from bzrlib.tests import test_server
3497
3857
            return memory.MemoryServer
3498
 
        if typestring == "fakenfs":
 
3858
        elif typestring == "fakenfs":
3499
3859
            from bzrlib.tests import test_server
3500
3860
            return test_server.FakeNFSServer
3501
3861
        msg = "No known transport type %s. Supported types are: sftp\n" %\
3535
3895
                     Option('randomize', type=str, argname="SEED",
3536
3896
                            help='Randomize the order of tests using the given'
3537
3897
                                 ' seed or "now" for the current time.'),
3538
 
                     Option('exclude', type=str, argname="PATTERN",
3539
 
                            short_name='x',
3540
 
                            help='Exclude tests that match this regular'
3541
 
                                 ' expression.'),
 
3898
                     ListOption('exclude', type=str, argname="PATTERN",
 
3899
                                short_name='x',
 
3900
                                help='Exclude tests that match this regular'
 
3901
                                ' expression.'),
3542
3902
                     Option('subunit',
3543
3903
                        help='Output test progress via subunit.'),
3544
3904
                     Option('strict', help='Fail on missing dependencies or '
3551
3911
                                param_name='starting_with', short_name='s',
3552
3912
                                help=
3553
3913
                                'Load only the tests starting with TESTID.'),
 
3914
                     Option('sync',
 
3915
                            help="By default we disable fsync and fdatasync"
 
3916
                                 " while running the test suite.")
3554
3917
                     ]
3555
3918
    encoding_type = 'replace'
3556
3919
 
3564
3927
            first=False, list_only=False,
3565
3928
            randomize=None, exclude=None, strict=False,
3566
3929
            load_list=None, debugflag=None, starting_with=None, subunit=False,
3567
 
            parallel=None, lsprof_tests=False):
3568
 
        from bzrlib.tests import selftest
3569
 
 
3570
 
        # Make deprecation warnings visible, unless -Werror is set
3571
 
        symbol_versioning.activate_deprecation_warnings(override=False)
 
3930
            parallel=None, lsprof_tests=False,
 
3931
            sync=False):
 
3932
        from bzrlib import tests
3572
3933
 
3573
3934
        if testspecs_list is not None:
3574
3935
            pattern = '|'.join(testspecs_list)
3578
3939
            try:
3579
3940
                from bzrlib.tests import SubUnitBzrRunner
3580
3941
            except ImportError:
3581
 
                raise errors.BzrCommandError("subunit not available. subunit "
3582
 
                    "needs to be installed to use --subunit.")
 
3942
                raise errors.BzrCommandError(gettext("subunit not available. subunit "
 
3943
                    "needs to be installed to use --subunit."))
3583
3944
            self.additional_selftest_args['runner_class'] = SubUnitBzrRunner
3584
3945
            # On Windows, disable automatic conversion of '\n' to '\r\n' in
3585
3946
            # stdout, which would corrupt the subunit stream. 
3594
3955
            self.additional_selftest_args.setdefault(
3595
3956
                'suite_decorators', []).append(parallel)
3596
3957
        if benchmark:
3597
 
            raise errors.BzrCommandError(
 
3958
            raise errors.BzrCommandError(gettext(
3598
3959
                "--benchmark is no longer supported from bzr 2.2; "
3599
 
                "use bzr-usertest instead")
 
3960
                "use bzr-usertest instead"))
3600
3961
        test_suite_factory = None
 
3962
        if not exclude:
 
3963
            exclude_pattern = None
 
3964
        else:
 
3965
            exclude_pattern = '(' + '|'.join(exclude) + ')'
 
3966
        if not sync:
 
3967
            self._disable_fsync()
3601
3968
        selftest_kwargs = {"verbose": verbose,
3602
3969
                          "pattern": pattern,
3603
3970
                          "stop_on_failure": one,
3608
3975
                          "matching_tests_first": first,
3609
3976
                          "list_only": list_only,
3610
3977
                          "random_seed": randomize,
3611
 
                          "exclude_pattern": exclude,
 
3978
                          "exclude_pattern": exclude_pattern,
3612
3979
                          "strict": strict,
3613
3980
                          "load_list": load_list,
3614
3981
                          "debug_flags": debugflag,
3615
3982
                          "starting_with": starting_with
3616
3983
                          }
3617
3984
        selftest_kwargs.update(self.additional_selftest_args)
3618
 
        result = selftest(**selftest_kwargs)
 
3985
 
 
3986
        # Make deprecation warnings visible, unless -Werror is set
 
3987
        cleanup = symbol_versioning.activate_deprecation_warnings(
 
3988
            override=False)
 
3989
        try:
 
3990
            result = tests.selftest(**selftest_kwargs)
 
3991
        finally:
 
3992
            cleanup()
3619
3993
        return int(not result)
3620
3994
 
 
3995
    def _disable_fsync(self):
 
3996
        """Change the 'os' functionality to not synchronize."""
 
3997
        self._orig_fsync = getattr(os, 'fsync', None)
 
3998
        if self._orig_fsync is not None:
 
3999
            os.fsync = lambda filedes: None
 
4000
        self._orig_fdatasync = getattr(os, 'fdatasync', None)
 
4001
        if self._orig_fdatasync is not None:
 
4002
            os.fdatasync = lambda filedes: None
 
4003
 
3621
4004
 
3622
4005
class cmd_version(Command):
3623
4006
    __doc__ = """Show version of bzr."""
3643
4026
 
3644
4027
    @display_command
3645
4028
    def run(self):
3646
 
        self.outf.write("It sure does!\n")
 
4029
        self.outf.write(gettext("It sure does!\n"))
3647
4030
 
3648
4031
 
3649
4032
class cmd_find_merge_base(Command):
3667
4050
        graph = branch1.repository.get_graph(branch2.repository)
3668
4051
        base_rev_id = graph.find_unique_lca(last1, last2)
3669
4052
 
3670
 
        self.outf.write('merge base is revision %s\n' % base_rev_id)
 
4053
        self.outf.write(gettext('merge base is revision %s\n') % base_rev_id)
3671
4054
 
3672
4055
 
3673
4056
class cmd_merge(Command):
3676
4059
    The source of the merge can be specified either in the form of a branch,
3677
4060
    or in the form of a path to a file containing a merge directive generated
3678
4061
    with bzr send. If neither is specified, the default is the upstream branch
3679
 
    or the branch most recently merged using --remember.
3680
 
 
3681
 
    When merging a branch, by default the tip will be merged. To pick a different
3682
 
    revision, pass --revision. If you specify two values, the first will be used as
3683
 
    BASE and the second one as OTHER. Merging individual revisions, or a subset of
3684
 
    available revisions, like this is commonly referred to as "cherrypicking".
3685
 
 
3686
 
    Revision numbers are always relative to the branch being merged.
3687
 
 
3688
 
    By default, bzr will try to merge in all new work from the other
3689
 
    branch, automatically determining an appropriate base.  If this
3690
 
    fails, you may need to give an explicit base.
 
4062
    or the branch most recently merged using --remember.  The source of the
 
4063
    merge may also be specified in the form of a path to a file in another
 
4064
    branch:  in this case, only the modifications to that file are merged into
 
4065
    the current working tree.
 
4066
 
 
4067
    When merging from a branch, by default bzr will try to merge in all new
 
4068
    work from the other branch, automatically determining an appropriate base
 
4069
    revision.  If this fails, you may need to give an explicit base.
 
4070
 
 
4071
    To pick a different ending revision, pass "--revision OTHER".  bzr will
 
4072
    try to merge in all new work up to and including revision OTHER.
 
4073
 
 
4074
    If you specify two values, "--revision BASE..OTHER", only revisions BASE
 
4075
    through OTHER, excluding BASE but including OTHER, will be merged.  If this
 
4076
    causes some revisions to be skipped, i.e. if the destination branch does
 
4077
    not already contain revision BASE, such a merge is commonly referred to as
 
4078
    a "cherrypick". Unlike a normal merge, Bazaar does not currently track
 
4079
    cherrypicks. The changes look like a normal commit, and the history of the
 
4080
    changes from the other branch is not stored in the commit.
 
4081
 
 
4082
    Revision numbers are always relative to the source branch.
3691
4083
 
3692
4084
    Merge will do its best to combine the changes in two branches, but there
3693
4085
    are some kinds of problems only a human can fix.  When it encounters those,
3696
4088
 
3697
4089
    Use bzr resolve when you have fixed a problem.  See also bzr conflicts.
3698
4090
 
3699
 
    If there is no default branch set, the first merge will set it. After
3700
 
    that, you can omit the branch to use the default.  To change the
3701
 
    default, use --remember. The value will only be saved if the remote
3702
 
    location can be accessed.
 
4091
    If there is no default branch set, the first merge will set it (use
 
4092
    --no-remember to avoid setting it). After that, you can omit the branch
 
4093
    to use the default.  To change the default, use --remember. The value will
 
4094
    only be saved if the remote location can be accessed.
3703
4095
 
3704
4096
    The results of the merge are placed into the destination working
3705
4097
    directory, where they can be reviewed (with bzr diff), tested, and then
3706
4098
    committed to record the result of the merge.
3707
4099
 
3708
4100
    merge refuses to run if there are any uncommitted changes, unless
3709
 
    --force is given. The --force option can also be used to create a
 
4101
    --force is given.  If --force is given, then the changes from the source 
 
4102
    will be merged with the current working tree, including any uncommitted
 
4103
    changes in the tree.  The --force option can also be used to create a
3710
4104
    merge revision which has more than two parents.
3711
4105
 
3712
4106
    If one would like to merge changes from the working tree of the other
3717
4111
    you to apply each diff hunk and file change, similar to "shelve".
3718
4112
 
3719
4113
    :Examples:
3720
 
        To merge the latest revision from bzr.dev::
 
4114
        To merge all new revisions from bzr.dev::
3721
4115
 
3722
4116
            bzr merge ../bzr.dev
3723
4117
 
3770
4164
    ]
3771
4165
 
3772
4166
    def run(self, location=None, revision=None, force=False,
3773
 
            merge_type=None, show_base=False, reprocess=None, remember=False,
 
4167
            merge_type=None, show_base=False, reprocess=None, remember=None,
3774
4168
            uncommitted=False, pull=False,
3775
4169
            directory=None,
3776
4170
            preview=False,
3784
4178
        merger = None
3785
4179
        allow_pending = True
3786
4180
        verified = 'inapplicable'
 
4181
 
3787
4182
        tree = WorkingTree.open_containing(directory)[0]
 
4183
        if tree.branch.revno() == 0:
 
4184
            raise errors.BzrCommandError(gettext('Merging into empty branches not currently supported, '
 
4185
                                         'https://bugs.launchpad.net/bzr/+bug/308562'))
3788
4186
 
3789
4187
        try:
3790
4188
            basis_tree = tree.revision_tree(tree.last_revision())
3810
4208
                mergeable = None
3811
4209
            else:
3812
4210
                if uncommitted:
3813
 
                    raise errors.BzrCommandError('Cannot use --uncommitted'
3814
 
                        ' with bundles or merge directives.')
 
4211
                    raise errors.BzrCommandError(gettext('Cannot use --uncommitted'
 
4212
                        ' with bundles or merge directives.'))
3815
4213
 
3816
4214
                if revision is not None:
3817
 
                    raise errors.BzrCommandError(
3818
 
                        'Cannot use -r with merge directives or bundles')
 
4215
                    raise errors.BzrCommandError(gettext(
 
4216
                        'Cannot use -r with merge directives or bundles'))
3819
4217
                merger, verified = _mod_merge.Merger.from_mergeable(tree,
3820
4218
                   mergeable, None)
3821
4219
 
3822
4220
        if merger is None and uncommitted:
3823
4221
            if revision is not None and len(revision) > 0:
3824
 
                raise errors.BzrCommandError('Cannot use --uncommitted and'
3825
 
                    ' --revision at the same time.')
 
4222
                raise errors.BzrCommandError(gettext('Cannot use --uncommitted and'
 
4223
                    ' --revision at the same time.'))
3826
4224
            merger = self.get_merger_from_uncommitted(tree, location, None)
3827
4225
            allow_pending = False
3828
4226
 
3836
4234
        self.sanity_check_merger(merger)
3837
4235
        if (merger.base_rev_id == merger.other_rev_id and
3838
4236
            merger.other_rev_id is not None):
3839
 
            note('Nothing to do.')
 
4237
            # check if location is a nonexistent file (and not a branch) to
 
4238
            # disambiguate the 'Nothing to do'
 
4239
            if merger.interesting_files:
 
4240
                if not merger.other_tree.has_filename(
 
4241
                    merger.interesting_files[0]):
 
4242
                    note(gettext("merger: ") + str(merger))
 
4243
                    raise errors.PathsDoNotExist([location])
 
4244
            note(gettext('Nothing to do.'))
3840
4245
            return 0
3841
 
        if pull:
 
4246
        if pull and not preview:
3842
4247
            if merger.interesting_files is not None:
3843
 
                raise errors.BzrCommandError('Cannot pull individual files')
 
4248
                raise errors.BzrCommandError(gettext('Cannot pull individual files'))
3844
4249
            if (merger.base_rev_id == tree.last_revision()):
3845
4250
                result = tree.pull(merger.other_branch, False,
3846
4251
                                   merger.other_rev_id)
3847
4252
                result.report(self.outf)
3848
4253
                return 0
3849
4254
        if merger.this_basis is None:
3850
 
            raise errors.BzrCommandError(
 
4255
            raise errors.BzrCommandError(gettext(
3851
4256
                "This branch has no commits."
3852
 
                " (perhaps you would prefer 'bzr pull')")
 
4257
                " (perhaps you would prefer 'bzr pull')"))
3853
4258
        if preview:
3854
4259
            return self._do_preview(merger)
3855
4260
        elif interactive:
3906
4311
    def sanity_check_merger(self, merger):
3907
4312
        if (merger.show_base and
3908
4313
            not merger.merge_type is _mod_merge.Merge3Merger):
3909
 
            raise errors.BzrCommandError("Show-base is not supported for this"
3910
 
                                         " merge type. %s" % merger.merge_type)
 
4314
            raise errors.BzrCommandError(gettext("Show-base is not supported for this"
 
4315
                                         " merge type. %s") % merger.merge_type)
3911
4316
        if merger.reprocess is None:
3912
4317
            if merger.show_base:
3913
4318
                merger.reprocess = False
3915
4320
                # Use reprocess if the merger supports it
3916
4321
                merger.reprocess = merger.merge_type.supports_reprocess
3917
4322
        if merger.reprocess and not merger.merge_type.supports_reprocess:
3918
 
            raise errors.BzrCommandError("Conflict reduction is not supported"
3919
 
                                         " for merge type %s." %
 
4323
            raise errors.BzrCommandError(gettext("Conflict reduction is not supported"
 
4324
                                         " for merge type %s.") %
3920
4325
                                         merger.merge_type)
3921
4326
        if merger.reprocess and merger.show_base:
3922
 
            raise errors.BzrCommandError("Cannot do conflict reduction and"
3923
 
                                         " show base.")
 
4327
            raise errors.BzrCommandError(gettext("Cannot do conflict reduction and"
 
4328
                                         " show base."))
3924
4329
 
3925
4330
    def _get_merger_from_branch(self, tree, location, revision, remember,
3926
4331
                                possible_transports, pb):
3953
4358
        if other_revision_id is None:
3954
4359
            other_revision_id = _mod_revision.ensure_null(
3955
4360
                other_branch.last_revision())
3956
 
        # Remember where we merge from
3957
 
        if ((remember or tree.branch.get_submit_branch() is None) and
3958
 
             user_location is not None):
 
4361
        # Remember where we merge from. We need to remember if:
 
4362
        # - user specify a location (and we don't merge from the parent
 
4363
        #   branch)
 
4364
        # - user ask to remember or there is no previous location set to merge
 
4365
        #   from and user didn't ask to *not* remember
 
4366
        if (user_location is not None
 
4367
            and ((remember
 
4368
                  or (remember is None
 
4369
                      and tree.branch.get_submit_branch() is None)))):
3959
4370
            tree.branch.set_submit_branch(other_branch.base)
3960
 
        _merge_tags_if_possible(other_branch, tree.branch)
 
4371
        # Merge tags (but don't set them in the master branch yet, the user
 
4372
        # might revert this merge).  Commit will propagate them.
 
4373
        _merge_tags_if_possible(other_branch, tree.branch, ignore_master=True)
3961
4374
        merger = _mod_merge.Merger.from_revision_ids(pb, tree,
3962
4375
            other_revision_id, base_revision_id, other_branch, base_branch)
3963
4376
        if other_path != '':
4022
4435
            stored_location_type = "parent"
4023
4436
        mutter("%s", stored_location)
4024
4437
        if stored_location is None:
4025
 
            raise errors.BzrCommandError("No location specified or remembered")
 
4438
            raise errors.BzrCommandError(gettext("No location specified or remembered"))
4026
4439
        display_url = urlutils.unescape_for_display(stored_location, 'utf-8')
4027
 
        note(u"%s remembered %s location %s", verb_string,
4028
 
                stored_location_type, display_url)
 
4440
        note(gettext("{0} remembered {1} location {2}").format(verb_string,
 
4441
                stored_location_type, display_url))
4029
4442
        return stored_location
4030
4443
 
4031
4444
 
4068
4481
        self.add_cleanup(tree.lock_write().unlock)
4069
4482
        parents = tree.get_parent_ids()
4070
4483
        if len(parents) != 2:
4071
 
            raise errors.BzrCommandError("Sorry, remerge only works after normal"
 
4484
            raise errors.BzrCommandError(gettext("Sorry, remerge only works after normal"
4072
4485
                                         " merges.  Not cherrypicking or"
4073
 
                                         " multi-merges.")
 
4486
                                         " multi-merges."))
4074
4487
        repository = tree.branch.repository
4075
4488
        interesting_ids = None
4076
4489
        new_conflicts = []
4131
4544
    last committed revision is used.
4132
4545
 
4133
4546
    To remove only some changes, without reverting to a prior version, use
4134
 
    merge instead.  For example, "merge . --revision -2..-3" will remove the
4135
 
    changes introduced by -2, without affecting the changes introduced by -1.
4136
 
    Or to remove certain changes on a hunk-by-hunk basis, see the Shelf plugin.
 
4547
    merge instead.  For example, "merge . -r -2..-3" (don't forget the ".")
 
4548
    will remove the changes introduced by the second last commit (-2), without
 
4549
    affecting the changes introduced by the last commit (-1).  To remove
 
4550
    certain changes on a hunk-by-hunk basis, see the shelve command.
4137
4551
 
4138
4552
    By default, any files that have been manually changed will be backed up
4139
4553
    first.  (Files changed only by merge are not backed up.)  Backup files have
4169
4583
    target branches.
4170
4584
    """
4171
4585
 
4172
 
    _see_also = ['cat', 'export']
 
4586
    _see_also = ['cat', 'export', 'merge', 'shelve']
4173
4587
    takes_options = [
4174
4588
        'revision',
4175
4589
        Option('no-backup', "Do not save backups of reverted files."),
4294
4708
            type=_parse_revision_str,
4295
4709
            help='Filter on local branch revisions (inclusive). '
4296
4710
                'See "help revisionspec" for details.'),
4297
 
        Option('include-merges',
 
4711
        Option('include-merged',
4298
4712
               'Show all revisions in addition to the mainline ones.'),
 
4713
        Option('include-merges', hidden=True,
 
4714
               help='Historical alias for --include-merged.'),
4299
4715
        ]
4300
4716
    encoding_type = 'replace'
4301
4717
 
4304
4720
            theirs_only=False,
4305
4721
            log_format=None, long=False, short=False, line=False,
4306
4722
            show_ids=False, verbose=False, this=False, other=False,
4307
 
            include_merges=False, revision=None, my_revision=None,
4308
 
            directory=u'.'):
 
4723
            include_merged=None, revision=None, my_revision=None,
 
4724
            directory=u'.',
 
4725
            include_merges=symbol_versioning.DEPRECATED_PARAMETER):
4309
4726
        from bzrlib.missing import find_unmerged, iter_log_revisions
4310
4727
        def message(s):
4311
4728
            if not is_quiet():
4312
4729
                self.outf.write(s)
4313
4730
 
 
4731
        if symbol_versioning.deprecated_passed(include_merges):
 
4732
            ui.ui_factory.show_user_warning(
 
4733
                'deprecated_command_option',
 
4734
                deprecated_name='--include-merges',
 
4735
                recommended_name='--include-merged',
 
4736
                deprecated_in_version='2.5',
 
4737
                command=self.invoked_as)
 
4738
            if include_merged is None:
 
4739
                include_merged = include_merges
 
4740
            else:
 
4741
                raise errors.BzrCommandError(gettext(
 
4742
                    '{0} and {1} are mutually exclusive').format(
 
4743
                    '--include-merges', '--include-merged'))
 
4744
        if include_merged is None:
 
4745
            include_merged = False
4314
4746
        if this:
4315
4747
            mine_only = this
4316
4748
        if other:
4331
4763
        if other_branch is None:
4332
4764
            other_branch = parent
4333
4765
            if other_branch is None:
4334
 
                raise errors.BzrCommandError("No peer location known"
4335
 
                                             " or specified.")
 
4766
                raise errors.BzrCommandError(gettext("No peer location known"
 
4767
                                             " or specified."))
4336
4768
            display_url = urlutils.unescape_for_display(parent,
4337
4769
                                                        self.outf.encoding)
4338
 
            message("Using saved parent location: "
4339
 
                    + display_url + "\n")
 
4770
            message(gettext("Using saved parent location: {0}\n").format(
 
4771
                    display_url))
4340
4772
 
4341
4773
        remote_branch = Branch.open(other_branch)
4342
4774
        if remote_branch.base == local_branch.base:
4355
4787
        local_extra, remote_extra = find_unmerged(
4356
4788
            local_branch, remote_branch, restrict,
4357
4789
            backward=not reverse,
4358
 
            include_merges=include_merges,
 
4790
            include_merged=include_merged,
4359
4791
            local_revid_range=local_revid_range,
4360
4792
            remote_revid_range=remote_revid_range)
4361
4793
 
4368
4800
 
4369
4801
        status_code = 0
4370
4802
        if local_extra and not theirs_only:
4371
 
            message("You have %d extra revision(s):\n" %
 
4803
            message(ngettext("You have %d extra revision:\n",
 
4804
                             "You have %d extra revisions:\n", 
 
4805
                             len(local_extra)) %
4372
4806
                len(local_extra))
4373
4807
            for revision in iter_log_revisions(local_extra,
4374
4808
                                local_branch.repository,
4382
4816
        if remote_extra and not mine_only:
4383
4817
            if printed_local is True:
4384
4818
                message("\n\n\n")
4385
 
            message("You are missing %d revision(s):\n" %
 
4819
            message(ngettext("You are missing %d revision:\n",
 
4820
                             "You are missing %d revisions:\n",
 
4821
                             len(remote_extra)) %
4386
4822
                len(remote_extra))
4387
4823
            for revision in iter_log_revisions(remote_extra,
4388
4824
                                remote_branch.repository,
4392
4828
 
4393
4829
        if mine_only and not local_extra:
4394
4830
            # We checked local, and found nothing extra
4395
 
            message('This branch is up to date.\n')
 
4831
            message(gettext('This branch has no new revisions.\n'))
4396
4832
        elif theirs_only and not remote_extra:
4397
4833
            # We checked remote, and found nothing extra
4398
 
            message('Other branch is up to date.\n')
 
4834
            message(gettext('Other branch has no new revisions.\n'))
4399
4835
        elif not (mine_only or theirs_only or local_extra or
4400
4836
                  remote_extra):
4401
4837
            # We checked both branches, and neither one had extra
4402
4838
            # revisions
4403
 
            message("Branches are up to date.\n")
 
4839
            message(gettext("Branches are up to date.\n"))
4404
4840
        self.cleanup_now()
4405
4841
        if not status_code and parent is None and other_branch is not None:
4406
4842
            self.add_cleanup(local_branch.lock_write().unlock)
4436
4872
        ]
4437
4873
 
4438
4874
    def run(self, branch_or_repo='.', clean_obsolete_packs=False):
4439
 
        dir = bzrdir.BzrDir.open_containing(branch_or_repo)[0]
 
4875
        dir = controldir.ControlDir.open_containing(branch_or_repo)[0]
4440
4876
        try:
4441
4877
            branch = dir.open_branch()
4442
4878
            repository = branch.repository
4468
4904
 
4469
4905
    @display_command
4470
4906
    def run(self, verbose=False):
4471
 
        import bzrlib.plugin
4472
 
        from inspect import getdoc
4473
 
        result = []
4474
 
        for name, plugin in bzrlib.plugin.plugins().items():
4475
 
            version = plugin.__version__
4476
 
            if version == 'unknown':
4477
 
                version = ''
4478
 
            name_ver = '%s %s' % (name, version)
4479
 
            d = getdoc(plugin.module)
4480
 
            if d:
4481
 
                doc = d.split('\n')[0]
4482
 
            else:
4483
 
                doc = '(no description)'
4484
 
            result.append((name_ver, doc, plugin.path()))
4485
 
        for name_ver, doc, path in sorted(result):
4486
 
            self.outf.write("%s\n" % name_ver)
4487
 
            self.outf.write("   %s\n" % doc)
4488
 
            if verbose:
4489
 
                self.outf.write("   %s\n" % path)
4490
 
            self.outf.write("\n")
 
4907
        from bzrlib import plugin
 
4908
        # Don't give writelines a generator as some codecs don't like that
 
4909
        self.outf.writelines(
 
4910
            list(plugin.describe_plugins(show_paths=verbose)))
4491
4911
 
4492
4912
 
4493
4913
class cmd_testament(Command):
4546
4966
    @display_command
4547
4967
    def run(self, filename, all=False, long=False, revision=None,
4548
4968
            show_ids=False, directory=None):
4549
 
        from bzrlib.annotate import annotate_file, annotate_file_tree
 
4969
        from bzrlib.annotate import (
 
4970
            annotate_file_tree,
 
4971
            )
4550
4972
        wt, branch, relpath = \
4551
4973
            _open_directory_or_containing_tree_or_branch(filename, directory)
4552
4974
        if wt is not None:
4555
4977
            self.add_cleanup(branch.lock_read().unlock)
4556
4978
        tree = _get_one_revision_tree('annotate', revision, branch=branch)
4557
4979
        self.add_cleanup(tree.lock_read().unlock)
4558
 
        if wt is not None:
 
4980
        if wt is not None and revision is None:
4559
4981
            file_id = wt.path2id(relpath)
4560
4982
        else:
4561
4983
            file_id = tree.path2id(relpath)
4562
4984
        if file_id is None:
4563
4985
            raise errors.NotVersionedError(filename)
4564
 
        file_version = tree.inventory[file_id].revision
4565
4986
        if wt is not None and revision is None:
4566
4987
            # If there is a tree and we're not annotating historical
4567
4988
            # versions, annotate the working tree's content.
4568
4989
            annotate_file_tree(wt, file_id, self.outf, long, all,
4569
4990
                show_ids=show_ids)
4570
4991
        else:
4571
 
            annotate_file(branch, file_version, file_id, long, all, self.outf,
4572
 
                          show_ids=show_ids)
 
4992
            annotate_file_tree(tree, file_id, self.outf, long, all,
 
4993
                show_ids=show_ids, branch=branch)
4573
4994
 
4574
4995
 
4575
4996
class cmd_re_sign(Command):
4582
5003
 
4583
5004
    def run(self, revision_id_list=None, revision=None, directory=u'.'):
4584
5005
        if revision_id_list is not None and revision is not None:
4585
 
            raise errors.BzrCommandError('You can only supply one of revision_id or --revision')
 
5006
            raise errors.BzrCommandError(gettext('You can only supply one of revision_id or --revision'))
4586
5007
        if revision_id_list is None and revision is None:
4587
 
            raise errors.BzrCommandError('You must supply either --revision or a revision_id')
 
5008
            raise errors.BzrCommandError(gettext('You must supply either --revision or a revision_id'))
4588
5009
        b = WorkingTree.open_containing(directory)[0].branch
4589
5010
        self.add_cleanup(b.lock_write().unlock)
4590
5011
        return self._run(b, revision_id_list, revision)
4622
5043
                if to_revid is None:
4623
5044
                    to_revno = b.revno()
4624
5045
                if from_revno is None or to_revno is None:
4625
 
                    raise errors.BzrCommandError('Cannot sign a range of non-revision-history revisions')
 
5046
                    raise errors.BzrCommandError(gettext('Cannot sign a range of non-revision-history revisions'))
4626
5047
                b.repository.start_write_group()
4627
5048
                try:
4628
5049
                    for revno in range(from_revno, to_revno + 1):
4634
5055
                else:
4635
5056
                    b.repository.commit_write_group()
4636
5057
            else:
4637
 
                raise errors.BzrCommandError('Please supply either one revision, or a range.')
 
5058
                raise errors.BzrCommandError(gettext('Please supply either one revision, or a range.'))
4638
5059
 
4639
5060
 
4640
5061
class cmd_bind(Command):
4659
5080
            try:
4660
5081
                location = b.get_old_bound_location()
4661
5082
            except errors.UpgradeRequired:
4662
 
                raise errors.BzrCommandError('No location supplied.  '
4663
 
                    'This format does not remember old locations.')
 
5083
                raise errors.BzrCommandError(gettext('No location supplied.  '
 
5084
                    'This format does not remember old locations.'))
4664
5085
            else:
4665
5086
                if location is None:
4666
5087
                    if b.get_bound_location() is not None:
4667
 
                        raise errors.BzrCommandError('Branch is already bound')
 
5088
                        raise errors.BzrCommandError(gettext('Branch is already bound'))
4668
5089
                    else:
4669
 
                        raise errors.BzrCommandError('No location supplied '
4670
 
                            'and no previous location known')
 
5090
                        raise errors.BzrCommandError(gettext('No location supplied '
 
5091
                            'and no previous location known'))
4671
5092
        b_other = Branch.open(location)
4672
5093
        try:
4673
5094
            b.bind(b_other)
4674
5095
        except errors.DivergedBranches:
4675
 
            raise errors.BzrCommandError('These branches have diverged.'
4676
 
                                         ' Try merging, and then bind again.')
 
5096
            raise errors.BzrCommandError(gettext('These branches have diverged.'
 
5097
                                         ' Try merging, and then bind again.'))
4677
5098
        if b.get_config().has_explicit_nickname():
4678
5099
            b.nick = b_other.nick
4679
5100
 
4692
5113
    def run(self, directory=u'.'):
4693
5114
        b, relpath = Branch.open_containing(directory)
4694
5115
        if not b.unbind():
4695
 
            raise errors.BzrCommandError('Local branch is not bound')
 
5116
            raise errors.BzrCommandError(gettext('Local branch is not bound'))
4696
5117
 
4697
5118
 
4698
5119
class cmd_uncommit(Command):
4719
5140
    takes_options = ['verbose', 'revision',
4720
5141
                    Option('dry-run', help='Don\'t actually make changes.'),
4721
5142
                    Option('force', help='Say yes to all questions.'),
 
5143
                    Option('keep-tags',
 
5144
                           help='Keep tags that point to removed revisions.'),
4722
5145
                    Option('local',
4723
5146
                           help="Only remove the commits from the local branch"
4724
5147
                                " when in a checkout."
4728
5151
    aliases = []
4729
5152
    encoding_type = 'replace'
4730
5153
 
4731
 
    def run(self, location=None,
4732
 
            dry_run=False, verbose=False,
4733
 
            revision=None, force=False, local=False):
 
5154
    def run(self, location=None, dry_run=False, verbose=False,
 
5155
            revision=None, force=False, local=False, keep_tags=False):
4734
5156
        if location is None:
4735
5157
            location = u'.'
4736
 
        control, relpath = bzrdir.BzrDir.open_containing(location)
 
5158
        control, relpath = controldir.ControlDir.open_containing(location)
4737
5159
        try:
4738
5160
            tree = control.open_workingtree()
4739
5161
            b = tree.branch
4745
5167
            self.add_cleanup(tree.lock_write().unlock)
4746
5168
        else:
4747
5169
            self.add_cleanup(b.lock_write().unlock)
4748
 
        return self._run(b, tree, dry_run, verbose, revision, force, local=local)
 
5170
        return self._run(b, tree, dry_run, verbose, revision, force,
 
5171
                         local, keep_tags)
4749
5172
 
4750
 
    def _run(self, b, tree, dry_run, verbose, revision, force, local=False):
 
5173
    def _run(self, b, tree, dry_run, verbose, revision, force, local,
 
5174
             keep_tags):
4751
5175
        from bzrlib.log import log_formatter, show_log
4752
5176
        from bzrlib.uncommit import uncommit
4753
5177
 
4768
5192
                rev_id = b.get_rev_id(revno)
4769
5193
 
4770
5194
        if rev_id is None or _mod_revision.is_null(rev_id):
4771
 
            self.outf.write('No revisions to uncommit.\n')
 
5195
            self.outf.write(gettext('No revisions to uncommit.\n'))
4772
5196
            return 1
4773
5197
 
4774
5198
        lf = log_formatter('short',
4783
5207
                 end_revision=last_revno)
4784
5208
 
4785
5209
        if dry_run:
4786
 
            self.outf.write('Dry-run, pretending to remove'
4787
 
                            ' the above revisions.\n')
 
5210
            self.outf.write(gettext('Dry-run, pretending to remove'
 
5211
                            ' the above revisions.\n'))
4788
5212
        else:
4789
 
            self.outf.write('The above revision(s) will be removed.\n')
 
5213
            self.outf.write(gettext('The above revision(s) will be removed.\n'))
4790
5214
 
4791
5215
        if not force:
4792
 
            if not ui.ui_factory.get_boolean('Are you sure'):
4793
 
                self.outf.write('Canceled')
 
5216
            if not ui.ui_factory.confirm_action(
 
5217
                    gettext(u'Uncommit these revisions'),
 
5218
                    'bzrlib.builtins.uncommit',
 
5219
                    {}):
 
5220
                self.outf.write(gettext('Canceled\n'))
4794
5221
                return 0
4795
5222
 
4796
5223
        mutter('Uncommitting from {%s} to {%s}',
4797
5224
               last_rev_id, rev_id)
4798
5225
        uncommit(b, tree=tree, dry_run=dry_run, verbose=verbose,
4799
 
                 revno=revno, local=local)
4800
 
        self.outf.write('You can restore the old tip by running:\n'
4801
 
             '  bzr pull . -r revid:%s\n' % last_rev_id)
 
5226
                 revno=revno, local=local, keep_tags=keep_tags)
 
5227
        self.outf.write(gettext('You can restore the old tip by running:\n'
 
5228
             '  bzr pull . -r revid:%s\n') % last_rev_id)
4802
5229
 
4803
5230
 
4804
5231
class cmd_break_lock(Command):
4805
 
    __doc__ = """Break a dead lock on a repository, branch or working directory.
 
5232
    __doc__ = """Break a dead lock.
 
5233
 
 
5234
    This command breaks a lock on a repository, branch, working directory or
 
5235
    config file.
4806
5236
 
4807
5237
    CAUTION: Locks should only be broken when you are sure that the process
4808
5238
    holding the lock has been stopped.
4813
5243
    :Examples:
4814
5244
        bzr break-lock
4815
5245
        bzr break-lock bzr+ssh://example.com/bzr/foo
 
5246
        bzr break-lock --conf ~/.bazaar
4816
5247
    """
 
5248
 
4817
5249
    takes_args = ['location?']
 
5250
    takes_options = [
 
5251
        Option('config',
 
5252
               help='LOCATION is the directory where the config lock is.'),
 
5253
        Option('force',
 
5254
            help='Do not ask for confirmation before breaking the lock.'),
 
5255
        ]
4818
5256
 
4819
 
    def run(self, location=None, show=False):
 
5257
    def run(self, location=None, config=False, force=False):
4820
5258
        if location is None:
4821
5259
            location = u'.'
4822
 
        control, relpath = bzrdir.BzrDir.open_containing(location)
4823
 
        try:
4824
 
            control.break_lock()
4825
 
        except NotImplementedError:
4826
 
            pass
 
5260
        if force:
 
5261
            ui.ui_factory = ui.ConfirmationUserInterfacePolicy(ui.ui_factory,
 
5262
                None,
 
5263
                {'bzrlib.lockdir.break': True})
 
5264
        if config:
 
5265
            conf = _mod_config.LockableConfig(file_name=location)
 
5266
            conf.break_lock()
 
5267
        else:
 
5268
            control, relpath = controldir.ControlDir.open_containing(location)
 
5269
            try:
 
5270
                control.break_lock()
 
5271
            except NotImplementedError:
 
5272
                pass
4827
5273
 
4828
5274
 
4829
5275
class cmd_wait_until_signalled(Command):
4869
5315
                    'option leads to global uncontrolled write access to your '
4870
5316
                    'file system.'
4871
5317
                ),
 
5318
        Option('client-timeout', type=float,
 
5319
               help='Override the default idle client timeout (5min).'),
4872
5320
        ]
4873
5321
 
4874
5322
    def get_host_and_port(self, port):
4891
5339
        return host, port
4892
5340
 
4893
5341
    def run(self, port=None, inet=False, directory=None, allow_writes=False,
4894
 
            protocol=None):
 
5342
            protocol=None, client_timeout=None):
4895
5343
        from bzrlib import transport
4896
5344
        if directory is None:
4897
5345
            directory = os.getcwd()
4902
5350
        if not allow_writes:
4903
5351
            url = 'readonly+' + url
4904
5352
        t = transport.get_transport(url)
4905
 
        protocol(t, host, port, inet)
 
5353
        try:
 
5354
            protocol(t, host, port, inet, client_timeout)
 
5355
        except TypeError, e:
 
5356
            # We use symbol_versioning.deprecated_in just so that people
 
5357
            # grepping can find it here.
 
5358
            # symbol_versioning.deprecated_in((2, 5, 0))
 
5359
            symbol_versioning.warn(
 
5360
                'Got TypeError(%s)\ntrying to call protocol: %s.%s\n'
 
5361
                'Most likely it needs to be updated to support a'
 
5362
                ' "timeout" parameter (added in bzr 2.5.0)'
 
5363
                % (e, protocol.__module__, protocol),
 
5364
                DeprecationWarning)
 
5365
            protocol(t, host, port, inet)
4906
5366
 
4907
5367
 
4908
5368
class cmd_join(Command):
4914
5374
    not part of it.  (Such trees can be produced by "bzr split", but also by
4915
5375
    running "bzr branch" with the target inside a tree.)
4916
5376
 
4917
 
    The result is a combined tree, with the subtree no longer an independant
 
5377
    The result is a combined tree, with the subtree no longer an independent
4918
5378
    part.  This is marked as a merge of the subtree into the containing tree,
4919
5379
    and all history is preserved.
4920
5380
    """
4931
5391
        containing_tree = WorkingTree.open_containing(parent_dir)[0]
4932
5392
        repo = containing_tree.branch.repository
4933
5393
        if not repo.supports_rich_root():
4934
 
            raise errors.BzrCommandError(
 
5394
            raise errors.BzrCommandError(gettext(
4935
5395
                "Can't join trees because %s doesn't support rich root data.\n"
4936
 
                "You can use bzr upgrade on the repository."
 
5396
                "You can use bzr upgrade on the repository.")
4937
5397
                % (repo,))
4938
5398
        if reference:
4939
5399
            try:
4941
5401
            except errors.BadReferenceTarget, e:
4942
5402
                # XXX: Would be better to just raise a nicely printable
4943
5403
                # exception from the real origin.  Also below.  mbp 20070306
4944
 
                raise errors.BzrCommandError("Cannot join %s.  %s" %
4945
 
                                             (tree, e.reason))
 
5404
                raise errors.BzrCommandError(
 
5405
                       gettext("Cannot join {0}.  {1}").format(tree, e.reason))
4946
5406
        else:
4947
5407
            try:
4948
5408
                containing_tree.subsume(sub_tree)
4949
5409
            except errors.BadSubsumeSource, e:
4950
 
                raise errors.BzrCommandError("Cannot join %s.  %s" %
4951
 
                                             (tree, e.reason))
 
5410
                raise errors.BzrCommandError(
 
5411
                       gettext("Cannot join {0}.  {1}").format(tree, e.reason))
4952
5412
 
4953
5413
 
4954
5414
class cmd_split(Command):
5038
5498
        if submit_branch is None:
5039
5499
            submit_branch = branch.get_parent()
5040
5500
        if submit_branch is None:
5041
 
            raise errors.BzrCommandError('No submit branch specified or known')
 
5501
            raise errors.BzrCommandError(gettext('No submit branch specified or known'))
5042
5502
 
5043
5503
        stored_public_branch = branch.get_public_branch()
5044
5504
        if public_branch is None:
5046
5506
        elif stored_public_branch is None:
5047
5507
            branch.set_public_branch(public_branch)
5048
5508
        if not include_bundle and public_branch is None:
5049
 
            raise errors.BzrCommandError('No public branch specified or'
5050
 
                                         ' known')
 
5509
            raise errors.BzrCommandError(gettext('No public branch specified or'
 
5510
                                         ' known'))
5051
5511
        base_revision_id = None
5052
5512
        if revision is not None:
5053
5513
            if len(revision) > 2:
5054
 
                raise errors.BzrCommandError('bzr merge-directive takes '
5055
 
                    'at most two one revision identifiers')
 
5514
                raise errors.BzrCommandError(gettext('bzr merge-directive takes '
 
5515
                    'at most two one revision identifiers'))
5056
5516
            revision_id = revision[-1].as_revision_id(branch)
5057
5517
            if len(revision) == 2:
5058
5518
                base_revision_id = revision[0].as_revision_id(branch)
5060
5520
            revision_id = branch.last_revision()
5061
5521
        revision_id = ensure_null(revision_id)
5062
5522
        if revision_id == NULL_REVISION:
5063
 
            raise errors.BzrCommandError('No revisions to bundle.')
 
5523
            raise errors.BzrCommandError(gettext('No revisions to bundle.'))
5064
5524
        directive = merge_directive.MergeDirective2.from_objects(
5065
5525
            branch.repository, revision_id, time.time(),
5066
5526
            osutils.local_time_offset(), submit_branch,
5110
5570
    source branch defaults to that containing the working directory, but can
5111
5571
    be changed using --from.
5112
5572
 
 
5573
    Both the submit branch and the public branch follow the usual behavior with
 
5574
    respect to --remember: If there is no default location set, the first send
 
5575
    will set it (use --no-remember to avoid setting it). After that, you can
 
5576
    omit the location to use the default.  To change the default, use
 
5577
    --remember. The value will only be saved if the location can be accessed.
 
5578
 
5113
5579
    In order to calculate those changes, bzr must analyse the submit branch.
5114
5580
    Therefore it is most efficient for the submit branch to be a local mirror.
5115
5581
    If a public location is known for the submit_branch, that location is used
5184
5650
        ]
5185
5651
 
5186
5652
    def run(self, submit_branch=None, public_branch=None, no_bundle=False,
5187
 
            no_patch=False, revision=None, remember=False, output=None,
 
5653
            no_patch=False, revision=None, remember=None, output=None,
5188
5654
            format=None, mail_to=None, message=None, body=None,
5189
5655
            strict=None, **kwargs):
5190
5656
        from bzrlib.send import send
5314
5780
        self.add_cleanup(branch.lock_write().unlock)
5315
5781
        if delete:
5316
5782
            if tag_name is None:
5317
 
                raise errors.BzrCommandError("No tag specified to delete.")
 
5783
                raise errors.BzrCommandError(gettext("No tag specified to delete."))
5318
5784
            branch.tags.delete_tag(tag_name)
5319
 
            self.outf.write('Deleted tag %s.\n' % tag_name)
 
5785
            note(gettext('Deleted tag %s.') % tag_name)
5320
5786
        else:
5321
5787
            if revision:
5322
5788
                if len(revision) != 1:
5323
 
                    raise errors.BzrCommandError(
 
5789
                    raise errors.BzrCommandError(gettext(
5324
5790
                        "Tags can only be placed on a single revision, "
5325
 
                        "not on a range")
 
5791
                        "not on a range"))
5326
5792
                revision_id = revision[0].as_revision_id(branch)
5327
5793
            else:
5328
5794
                revision_id = branch.last_revision()
5329
5795
            if tag_name is None:
5330
5796
                tag_name = branch.automatic_tag_name(revision_id)
5331
5797
                if tag_name is None:
5332
 
                    raise errors.BzrCommandError(
5333
 
                        "Please specify a tag name.")
5334
 
            if (not force) and branch.tags.has_tag(tag_name):
 
5798
                    raise errors.BzrCommandError(gettext(
 
5799
                        "Please specify a tag name."))
 
5800
            try:
 
5801
                existing_target = branch.tags.lookup_tag(tag_name)
 
5802
            except errors.NoSuchTag:
 
5803
                existing_target = None
 
5804
            if not force and existing_target not in (None, revision_id):
5335
5805
                raise errors.TagAlreadyExists(tag_name)
5336
 
            branch.tags.set_tag(tag_name, revision_id)
5337
 
            self.outf.write('Created tag %s.\n' % tag_name)
 
5806
            if existing_target == revision_id:
 
5807
                note(gettext('Tag %s already exists for that revision.') % tag_name)
 
5808
            else:
 
5809
                branch.tags.set_tag(tag_name, revision_id)
 
5810
                if existing_target is None:
 
5811
                    note(gettext('Created tag %s.') % tag_name)
 
5812
                else:
 
5813
                    note(gettext('Updated tag %s.') % tag_name)
5338
5814
 
5339
5815
 
5340
5816
class cmd_tags(Command):
5347
5823
    takes_options = [
5348
5824
        custom_help('directory',
5349
5825
            help='Branch whose tags should be displayed.'),
5350
 
        RegistryOption.from_kwargs('sort',
 
5826
        RegistryOption('sort',
5351
5827
            'Sort tags by different criteria.', title='Sorting',
5352
 
            alpha='Sort tags lexicographically (default).',
5353
 
            time='Sort tags chronologically.',
 
5828
            lazy_registry=('bzrlib.tag', 'tag_sort_methods')
5354
5829
            ),
5355
5830
        'show-ids',
5356
5831
        'revision',
5357
5832
    ]
5358
5833
 
5359
5834
    @display_command
5360
 
    def run(self,
5361
 
            directory='.',
5362
 
            sort='alpha',
5363
 
            show_ids=False,
5364
 
            revision=None,
5365
 
            ):
 
5835
    def run(self, directory='.', sort=None, show_ids=False, revision=None):
 
5836
        from bzrlib.tag import tag_sort_methods
5366
5837
        branch, relpath = Branch.open_containing(directory)
5367
5838
 
5368
5839
        tags = branch.tags.get_tag_dict().items()
5371
5842
 
5372
5843
        self.add_cleanup(branch.lock_read().unlock)
5373
5844
        if revision:
5374
 
            graph = branch.repository.get_graph()
5375
 
            rev1, rev2 = _get_revision_range(revision, branch, self.name())
5376
 
            revid1, revid2 = rev1.rev_id, rev2.rev_id
5377
 
            # only show revisions between revid1 and revid2 (inclusive)
5378
 
            tags = [(tag, revid) for tag, revid in tags if
5379
 
                graph.is_between(revid, revid1, revid2)]
5380
 
        if sort == 'alpha':
5381
 
            tags.sort()
5382
 
        elif sort == 'time':
5383
 
            timestamps = {}
5384
 
            for tag, revid in tags:
5385
 
                try:
5386
 
                    revobj = branch.repository.get_revision(revid)
5387
 
                except errors.NoSuchRevision:
5388
 
                    timestamp = sys.maxint # place them at the end
5389
 
                else:
5390
 
                    timestamp = revobj.timestamp
5391
 
                timestamps[revid] = timestamp
5392
 
            tags.sort(key=lambda x: timestamps[x[1]])
 
5845
            # Restrict to the specified range
 
5846
            tags = self._tags_for_range(branch, revision)
 
5847
        if sort is None:
 
5848
            sort = tag_sort_methods.get()
 
5849
        sort(branch, tags)
5393
5850
        if not show_ids:
5394
5851
            # [ (tag, revid), ... ] -> [ (tag, dotted_revno), ... ]
5395
5852
            for index, (tag, revid) in enumerate(tags):
5397
5854
                    revno = branch.revision_id_to_dotted_revno(revid)
5398
5855
                    if isinstance(revno, tuple):
5399
5856
                        revno = '.'.join(map(str, revno))
5400
 
                except errors.NoSuchRevision:
 
5857
                except (errors.NoSuchRevision,
 
5858
                        errors.GhostRevisionsHaveNoRevno,
 
5859
                        errors.UnsupportedOperation):
5401
5860
                    # Bad tag data/merges can lead to tagged revisions
5402
5861
                    # which are not in this branch. Fail gracefully ...
5403
5862
                    revno = '?'
5406
5865
        for tag, revspec in tags:
5407
5866
            self.outf.write('%-20s %s\n' % (tag, revspec))
5408
5867
 
 
5868
    def _tags_for_range(self, branch, revision):
 
5869
        range_valid = True
 
5870
        rev1, rev2 = _get_revision_range(revision, branch, self.name())
 
5871
        revid1, revid2 = rev1.rev_id, rev2.rev_id
 
5872
        # _get_revision_range will always set revid2 if it's not specified.
 
5873
        # If revid1 is None, it means we want to start from the branch
 
5874
        # origin which is always a valid ancestor. If revid1 == revid2, the
 
5875
        # ancestry check is useless.
 
5876
        if revid1 and revid1 != revid2:
 
5877
            # FIXME: We really want to use the same graph than
 
5878
            # branch.iter_merge_sorted_revisions below, but this is not
 
5879
            # easily available -- vila 2011-09-23
 
5880
            if branch.repository.get_graph().is_ancestor(revid2, revid1):
 
5881
                # We don't want to output anything in this case...
 
5882
                return []
 
5883
        # only show revisions between revid1 and revid2 (inclusive)
 
5884
        tagged_revids = branch.tags.get_reverse_tag_dict()
 
5885
        found = []
 
5886
        for r in branch.iter_merge_sorted_revisions(
 
5887
            start_revision_id=revid2, stop_revision_id=revid1,
 
5888
            stop_rule='include'):
 
5889
            revid_tags = tagged_revids.get(r[0], None)
 
5890
            if revid_tags:
 
5891
                found.extend([(tag, r[0]) for tag in revid_tags])
 
5892
        return found
 
5893
 
5409
5894
 
5410
5895
class cmd_reconfigure(Command):
5411
5896
    __doc__ = """Reconfigure the type of a bzr directory.
5425
5910
    takes_args = ['location?']
5426
5911
    takes_options = [
5427
5912
        RegistryOption.from_kwargs(
5428
 
            'target_type',
5429
 
            title='Target type',
5430
 
            help='The type to reconfigure the directory to.',
 
5913
            'tree_type',
 
5914
            title='Tree type',
 
5915
            help='The relation between branch and tree.',
5431
5916
            value_switches=True, enum_switch=False,
5432
5917
            branch='Reconfigure to be an unbound branch with no working tree.',
5433
5918
            tree='Reconfigure to be an unbound branch with a working tree.',
5434
5919
            checkout='Reconfigure to be a bound branch with a working tree.',
5435
5920
            lightweight_checkout='Reconfigure to be a lightweight'
5436
5921
                ' checkout (with no local history).',
 
5922
            ),
 
5923
        RegistryOption.from_kwargs(
 
5924
            'repository_type',
 
5925
            title='Repository type',
 
5926
            help='Location fo the repository.',
 
5927
            value_switches=True, enum_switch=False,
5437
5928
            standalone='Reconfigure to be a standalone branch '
5438
5929
                '(i.e. stop using shared repository).',
5439
5930
            use_shared='Reconfigure to use a shared repository.',
 
5931
            ),
 
5932
        RegistryOption.from_kwargs(
 
5933
            'repository_trees',
 
5934
            title='Trees in Repository',
 
5935
            help='Whether new branches in the repository have trees.',
 
5936
            value_switches=True, enum_switch=False,
5440
5937
            with_trees='Reconfigure repository to create '
5441
5938
                'working trees on branches by default.',
5442
5939
            with_no_trees='Reconfigure repository to not create '
5456
5953
            ),
5457
5954
        ]
5458
5955
 
5459
 
    def run(self, location=None, target_type=None, bind_to=None, force=False,
5460
 
            stacked_on=None,
5461
 
            unstacked=None):
5462
 
        directory = bzrdir.BzrDir.open(location)
 
5956
    def run(self, location=None, bind_to=None, force=False,
 
5957
            tree_type=None, repository_type=None, repository_trees=None,
 
5958
            stacked_on=None, unstacked=None):
 
5959
        directory = controldir.ControlDir.open(location)
5463
5960
        if stacked_on and unstacked:
5464
 
            raise BzrCommandError("Can't use both --stacked-on and --unstacked")
 
5961
            raise errors.BzrCommandError(gettext("Can't use both --stacked-on and --unstacked"))
5465
5962
        elif stacked_on is not None:
5466
5963
            reconfigure.ReconfigureStackedOn().apply(directory, stacked_on)
5467
5964
        elif unstacked:
5469
5966
        # At the moment you can use --stacked-on and a different
5470
5967
        # reconfiguration shape at the same time; there seems no good reason
5471
5968
        # to ban it.
5472
 
        if target_type is None:
 
5969
        if (tree_type is None and
 
5970
            repository_type is None and
 
5971
            repository_trees is None):
5473
5972
            if stacked_on or unstacked:
5474
5973
                return
5475
5974
            else:
5476
 
                raise errors.BzrCommandError('No target configuration '
5477
 
                    'specified')
5478
 
        elif target_type == 'branch':
 
5975
                raise errors.BzrCommandError(gettext('No target configuration '
 
5976
                    'specified'))
 
5977
        reconfiguration = None
 
5978
        if tree_type == 'branch':
5479
5979
            reconfiguration = reconfigure.Reconfigure.to_branch(directory)
5480
 
        elif target_type == 'tree':
 
5980
        elif tree_type == 'tree':
5481
5981
            reconfiguration = reconfigure.Reconfigure.to_tree(directory)
5482
 
        elif target_type == 'checkout':
 
5982
        elif tree_type == 'checkout':
5483
5983
            reconfiguration = reconfigure.Reconfigure.to_checkout(
5484
5984
                directory, bind_to)
5485
 
        elif target_type == 'lightweight-checkout':
 
5985
        elif tree_type == 'lightweight-checkout':
5486
5986
            reconfiguration = reconfigure.Reconfigure.to_lightweight_checkout(
5487
5987
                directory, bind_to)
5488
 
        elif target_type == 'use-shared':
 
5988
        if reconfiguration:
 
5989
            reconfiguration.apply(force)
 
5990
            reconfiguration = None
 
5991
        if repository_type == 'use-shared':
5489
5992
            reconfiguration = reconfigure.Reconfigure.to_use_shared(directory)
5490
 
        elif target_type == 'standalone':
 
5993
        elif repository_type == 'standalone':
5491
5994
            reconfiguration = reconfigure.Reconfigure.to_standalone(directory)
5492
 
        elif target_type == 'with-trees':
 
5995
        if reconfiguration:
 
5996
            reconfiguration.apply(force)
 
5997
            reconfiguration = None
 
5998
        if repository_trees == 'with-trees':
5493
5999
            reconfiguration = reconfigure.Reconfigure.set_repository_trees(
5494
6000
                directory, True)
5495
 
        elif target_type == 'with-no-trees':
 
6001
        elif repository_trees == 'with-no-trees':
5496
6002
            reconfiguration = reconfigure.Reconfigure.set_repository_trees(
5497
6003
                directory, False)
5498
 
        reconfiguration.apply(force)
 
6004
        if reconfiguration:
 
6005
            reconfiguration.apply(force)
 
6006
            reconfiguration = None
5499
6007
 
5500
6008
 
5501
6009
class cmd_switch(Command):
5536
6044
        from bzrlib import switch
5537
6045
        tree_location = directory
5538
6046
        revision = _get_one_revision('switch', revision)
5539
 
        control_dir = bzrdir.BzrDir.open_containing(tree_location)[0]
 
6047
        control_dir = controldir.ControlDir.open_containing(tree_location)[0]
5540
6048
        if to_location is None:
5541
6049
            if revision is None:
5542
 
                raise errors.BzrCommandError('You must supply either a'
5543
 
                                             ' revision or a location')
 
6050
                raise errors.BzrCommandError(gettext('You must supply either a'
 
6051
                                             ' revision or a location'))
5544
6052
            to_location = tree_location
5545
6053
        try:
5546
6054
            branch = control_dir.open_branch()
5550
6058
            had_explicit_nick = False
5551
6059
        if create_branch:
5552
6060
            if branch is None:
5553
 
                raise errors.BzrCommandError('cannot create branch without'
5554
 
                                             ' source branch')
 
6061
                raise errors.BzrCommandError(gettext('cannot create branch without'
 
6062
                                             ' source branch'))
5555
6063
            to_location = directory_service.directories.dereference(
5556
6064
                              to_location)
5557
6065
            if '/' not in to_location and '\\' not in to_location:
5574
6082
        if had_explicit_nick:
5575
6083
            branch = control_dir.open_branch() #get the new branch!
5576
6084
            branch.nick = to_branch.nick
5577
 
        note('Switched to branch: %s',
 
6085
        note(gettext('Switched to branch: %s'),
5578
6086
            urlutils.unescape_for_display(to_branch.base, 'utf-8'))
5579
6087
 
5580
6088
    def _get_branch_location(self, control_dir):
5689
6197
            name = current_view
5690
6198
        if delete:
5691
6199
            if file_list:
5692
 
                raise errors.BzrCommandError(
5693
 
                    "Both --delete and a file list specified")
 
6200
                raise errors.BzrCommandError(gettext(
 
6201
                    "Both --delete and a file list specified"))
5694
6202
            elif switch:
5695
 
                raise errors.BzrCommandError(
5696
 
                    "Both --delete and --switch specified")
 
6203
                raise errors.BzrCommandError(gettext(
 
6204
                    "Both --delete and --switch specified"))
5697
6205
            elif all:
5698
6206
                tree.views.set_view_info(None, {})
5699
 
                self.outf.write("Deleted all views.\n")
 
6207
                self.outf.write(gettext("Deleted all views.\n"))
5700
6208
            elif name is None:
5701
 
                raise errors.BzrCommandError("No current view to delete")
 
6209
                raise errors.BzrCommandError(gettext("No current view to delete"))
5702
6210
            else:
5703
6211
                tree.views.delete_view(name)
5704
 
                self.outf.write("Deleted '%s' view.\n" % name)
 
6212
                self.outf.write(gettext("Deleted '%s' view.\n") % name)
5705
6213
        elif switch:
5706
6214
            if file_list:
5707
 
                raise errors.BzrCommandError(
5708
 
                    "Both --switch and a file list specified")
 
6215
                raise errors.BzrCommandError(gettext(
 
6216
                    "Both --switch and a file list specified"))
5709
6217
            elif all:
5710
 
                raise errors.BzrCommandError(
5711
 
                    "Both --switch and --all specified")
 
6218
                raise errors.BzrCommandError(gettext(
 
6219
                    "Both --switch and --all specified"))
5712
6220
            elif switch == 'off':
5713
6221
                if current_view is None:
5714
 
                    raise errors.BzrCommandError("No current view to disable")
 
6222
                    raise errors.BzrCommandError(gettext("No current view to disable"))
5715
6223
                tree.views.set_view_info(None, view_dict)
5716
 
                self.outf.write("Disabled '%s' view.\n" % (current_view))
 
6224
                self.outf.write(gettext("Disabled '%s' view.\n") % (current_view))
5717
6225
            else:
5718
6226
                tree.views.set_view_info(switch, view_dict)
5719
6227
                view_str = views.view_display_str(tree.views.lookup_view())
5720
 
                self.outf.write("Using '%s' view: %s\n" % (switch, view_str))
 
6228
                self.outf.write(gettext("Using '{0}' view: {1}\n").format(switch, view_str))
5721
6229
        elif all:
5722
6230
            if view_dict:
5723
 
                self.outf.write('Views defined:\n')
 
6231
                self.outf.write(gettext('Views defined:\n'))
5724
6232
                for view in sorted(view_dict):
5725
6233
                    if view == current_view:
5726
6234
                        active = "=>"
5729
6237
                    view_str = views.view_display_str(view_dict[view])
5730
6238
                    self.outf.write('%s %-20s %s\n' % (active, view, view_str))
5731
6239
            else:
5732
 
                self.outf.write('No views defined.\n')
 
6240
                self.outf.write(gettext('No views defined.\n'))
5733
6241
        elif file_list:
5734
6242
            if name is None:
5735
6243
                # No name given and no current view set
5736
6244
                name = 'my'
5737
6245
            elif name == 'off':
5738
 
                raise errors.BzrCommandError(
5739
 
                    "Cannot change the 'off' pseudo view")
 
6246
                raise errors.BzrCommandError(gettext(
 
6247
                    "Cannot change the 'off' pseudo view"))
5740
6248
            tree.views.set_view(name, sorted(file_list))
5741
6249
            view_str = views.view_display_str(tree.views.lookup_view())
5742
 
            self.outf.write("Using '%s' view: %s\n" % (name, view_str))
 
6250
            self.outf.write(gettext("Using '{0}' view: {1}\n").format(name, view_str))
5743
6251
        else:
5744
6252
            # list the files
5745
6253
            if name is None:
5746
6254
                # No name given and no current view set
5747
 
                self.outf.write('No current view.\n')
 
6255
                self.outf.write(gettext('No current view.\n'))
5748
6256
            else:
5749
6257
                view_str = views.view_display_str(tree.views.lookup_view(name))
5750
 
                self.outf.write("'%s' view is: %s\n" % (name, view_str))
 
6258
                self.outf.write(gettext("'{0}' view is: {1}\n").format(name, view_str))
5751
6259
 
5752
6260
 
5753
6261
class cmd_hooks(Command):
5767
6275
                        self.outf.write("    %s\n" %
5768
6276
                                        (some_hooks.get_hook_name(hook),))
5769
6277
                else:
5770
 
                    self.outf.write("    <no hooks installed>\n")
 
6278
                    self.outf.write(gettext("    <no hooks installed>\n"))
5771
6279
 
5772
6280
 
5773
6281
class cmd_remove_branch(Command):
5793
6301
            location = "."
5794
6302
        branch = Branch.open_containing(location)[0]
5795
6303
        branch.bzrdir.destroy_branch()
5796
 
        
 
6304
 
5797
6305
 
5798
6306
class cmd_shelve(Command):
5799
6307
    __doc__ = """Temporarily set aside some changes from the current tree.
5818
6326
 
5819
6327
    You can put multiple items on the shelf, and by default, 'unshelve' will
5820
6328
    restore the most recently shelved changes.
 
6329
 
 
6330
    For complicated changes, it is possible to edit the changes in a separate
 
6331
    editor program to decide what the file remaining in the working copy
 
6332
    should look like.  To do this, add the configuration option
 
6333
 
 
6334
        change_editor = PROGRAM @new_path @old_path
 
6335
 
 
6336
    where @new_path is replaced with the path of the new version of the 
 
6337
    file and @old_path is replaced with the path of the old version of 
 
6338
    the file.  The PROGRAM should save the new file with the desired 
 
6339
    contents of the file in the working tree.
 
6340
        
5821
6341
    """
5822
6342
 
5823
6343
    takes_args = ['file*']
5835
6355
        Option('destroy',
5836
6356
               help='Destroy removed changes instead of shelving them.'),
5837
6357
    ]
5838
 
    _see_also = ['unshelve']
 
6358
    _see_also = ['unshelve', 'configuration']
5839
6359
 
5840
6360
    def run(self, revision=None, all=False, file_list=None, message=None,
5841
 
            writer=None, list=False, destroy=False, directory=u'.'):
 
6361
            writer=None, list=False, destroy=False, directory=None):
5842
6362
        if list:
5843
 
            return self.run_for_list()
 
6363
            return self.run_for_list(directory=directory)
5844
6364
        from bzrlib.shelf_ui import Shelver
5845
6365
        if writer is None:
5846
6366
            writer = bzrlib.option.diff_writer_registry.get()
5854
6374
        except errors.UserAbort:
5855
6375
            return 0
5856
6376
 
5857
 
    def run_for_list(self):
5858
 
        tree = WorkingTree.open_containing('.')[0]
 
6377
    def run_for_list(self, directory=None):
 
6378
        if directory is None:
 
6379
            directory = u'.'
 
6380
        tree = WorkingTree.open_containing(directory)[0]
5859
6381
        self.add_cleanup(tree.lock_read().unlock)
5860
6382
        manager = tree.get_shelf_manager()
5861
6383
        shelves = manager.active_shelves()
5862
6384
        if len(shelves) == 0:
5863
 
            note('No shelved changes.')
 
6385
            note(gettext('No shelved changes.'))
5864
6386
            return 0
5865
6387
        for shelf_id in reversed(shelves):
5866
6388
            message = manager.get_metadata(shelf_id).get('message')
5920
6442
    """
5921
6443
    takes_options = ['directory',
5922
6444
                     Option('ignored', help='Delete all ignored files.'),
5923
 
                     Option('detritus', help='Delete conflict files, merge'
 
6445
                     Option('detritus', help='Delete conflict files, merge and revert'
5924
6446
                            ' backups, and failed selftest dirs.'),
5925
6447
                     Option('unknown',
5926
6448
                            help='Delete files unknown to bzr (default).'),
5955
6477
        if path is not None:
5956
6478
            branchdir = path
5957
6479
        tree, branch, relpath =(
5958
 
            bzrdir.BzrDir.open_containing_tree_or_branch(branchdir))
 
6480
            controldir.ControlDir.open_containing_tree_or_branch(branchdir))
5959
6481
        if path is not None:
5960
6482
            path = relpath
5961
6483
        if tree is None:
5985
6507
            self.outf.write('%s %s\n' % (path, location))
5986
6508
 
5987
6509
 
 
6510
class cmd_export_pot(Command):
 
6511
    __doc__ = """Export command helps and error messages in po format."""
 
6512
 
 
6513
    hidden = True
 
6514
    takes_options = [Option('plugin', 
 
6515
                            help='Export help text from named command '\
 
6516
                                 '(defaults to all built in commands).',
 
6517
                            type=str)]
 
6518
 
 
6519
    def run(self, plugin=None):
 
6520
        from bzrlib.export_pot import export_pot
 
6521
        export_pot(self.outf, plugin)
 
6522
 
 
6523
 
5988
6524
def _register_lazy_builtins():
5989
6525
    # register lazy builtins from other modules; called at startup and should
5990
6526
    # be only called once.
5991
6527
    for (name, aliases, module_name) in [
5992
6528
        ('cmd_bundle_info', [], 'bzrlib.bundle.commands'),
 
6529
        ('cmd_config', [], 'bzrlib.config'),
5993
6530
        ('cmd_dpush', [], 'bzrlib.foreign'),
5994
6531
        ('cmd_version_info', [], 'bzrlib.cmd_version_info'),
5995
6532
        ('cmd_resolve', ['resolved'], 'bzrlib.conflicts'),
5996
6533
        ('cmd_conflicts', [], 'bzrlib.conflicts'),
5997
 
        ('cmd_sign_my_commits', [], 'bzrlib.sign_my_commits'),
 
6534
        ('cmd_sign_my_commits', [], 'bzrlib.commit_signature_commands'),
 
6535
        ('cmd_verify_signatures', [],
 
6536
                                        'bzrlib.commit_signature_commands'),
 
6537
        ('cmd_test_script', [], 'bzrlib.cmd_test_script'),
5998
6538
        ]:
5999
6539
        builtin_command_registry.register_lazy(name, aliases, module_name)