~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Frank Aspell
  • Date: 2009-02-22 16:54:02 UTC
  • mto: This revision was merged to the branch mainline in revision 4256.
  • Revision ID: frankaspell@googlemail.com-20090222165402-2myrucnu7er5w4ha
Fixing various typos

Show diffs side-by-side

added added

removed removed

Lines of Context:
2217
2217
    def register_lazy(self, key, module_name, member_name,
2218
2218
                      help=None, info=None,
2219
2219
                      override_existing=False):
2220
 
        # Overridden to allow capturing registrations to two seperate
 
2220
        # Overridden to allow capturing registrations to two separate
2221
2221
        # registries in a single call.
2222
2222
        registry.Registry.register_lazy(self, key, module_name, member_name,
2223
2223
                help=help, info=info, override_existing=override_existing)
2274
2274
 
2275
2275
    Once a format is deprecated, just deprecate the initialize and open
2276
2276
    methods on the format class. Do not deprecate the object, as the 
2277
 
    object may be created even when a repository instnace hasn't been
 
2277
    object may be created even when a repository instance hasn't been
2278
2278
    created.
2279
2279
 
2280
2280
    Common instance attributes:
2461
2461
# Pre-0.8 formats that don't have a disk format string (because they are
2462
2462
# versioned by the matching control directory). We use the control directories
2463
2463
# disk format string as a key for the network_name because they meet the
2464
 
# constraints (simple string, unique, immmutable).
 
2464
# constraints (simple string, unique, immutable).
2465
2465
network_format_registry.register_lazy(
2466
2466
    "Bazaar-NG branch, format 5\n",
2467
2467
    'bzrlib.repofmt.weaverepo',
2879
2879
        # so the first thing is to get a subset of the revisions to 
2880
2880
        # satisfy revision_id in source, and then eliminate those that
2881
2881
        # we do already have. 
2882
 
        # this is slow on high latency connection to self, but as as this
 
2882
        # this is slow on high latency connection to self, but as this
2883
2883
        # disk format scales terribly for push anyway due to rewriting 
2884
2884
        # inventory.weave, this is considered acceptable.
2885
2885
        # - RBC 20060209