~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Robert J. Tanner
  • Date: 2009-04-08 03:34:31 UTC
  • mfrom: (4266 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4267.
  • Revision ID: tanner@real-time.com-20090408033431-draj0u7nd9bbby53
Merge 1.14rc1 back bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
2693
2693
 
2694
2694
    Once a format is deprecated, just deprecate the initialize and open
2695
2695
    methods on the format class. Do not deprecate the object, as the
2696
 
    object may be created even when a repository instnace hasn't been
 
2696
    object may be created even when a repository instance hasn't been
2697
2697
    created.
2698
2698
 
2699
2699
    Common instance attributes:
2900
2900
# Pre-0.8 formats that don't have a disk format string (because they are
2901
2901
# versioned by the matching control directory). We use the control directories
2902
2902
# disk format string as a key for the network_name because they meet the
2903
 
# constraints (simple string, unique, immmutable).
 
2903
# constraints (simple string, unique, immutable).
2904
2904
network_format_registry.register_lazy(
2905
2905
    "Bazaar-NG branch, format 5\n",
2906
2906
    'bzrlib.repofmt.weaverepo',
3263
3263
        # so the first thing is to get a subset of the revisions to
3264
3264
        # satisfy revision_id in source, and then eliminate those that
3265
3265
        # we do already have.
3266
 
        # this is slow on high latency connection to self, but as as this
 
3266
        # this is slow on high latency connection to self, but as this
3267
3267
        # disk format scales terribly for push anyway due to rewriting
3268
3268
        # inventory.weave, this is considered acceptable.
3269
3269
        # - RBC 20060209