~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/weaverepo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-03-11 21:09:14 UTC
  • mfrom: (5712.4.12 bzrdir-weave)
  • Revision ID: pqm@pqm.ubuntu.com-20110311210914-acqxl3g7wkn5cklo
(jelmer) Move weave-era BzrDir formats into a separate module. (Jelmer
 Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from bzrlib.lazy_import import lazy_import
29
29
lazy_import(globals(), """
30
30
from bzrlib import (
 
31
    bzrdir_weave,
31
32
    xml5,
32
33
    graph as _mod_graph,
33
34
    ui,
34
35
    )
35
36
""")
36
37
from bzrlib import (
37
 
    bzrdir,
38
38
    debug,
39
39
    errors,
40
40
    lockable_files,
348
348
 
349
349
    supports_funky_characters = False
350
350
 
351
 
    _matchingbzrdir = bzrdir.BzrDirFormat4()
 
351
    _matchingbzrdir = bzrdir_weave.BzrDirFormat4()
352
352
 
353
353
    def get_format_description(self):
354
354
        """See RepositoryFormat.get_format_description()."""
396
396
    """
397
397
 
398
398
    _versionedfile_class = weave.WeaveFile
399
 
    _matchingbzrdir = bzrdir.BzrDirFormat5()
 
399
    _matchingbzrdir = bzrdir_weave.BzrDirFormat5()
400
400
    supports_funky_characters = False
401
401
 
402
402
    @property
443
443
    """
444
444
 
445
445
    _versionedfile_class = weave.WeaveFile
446
 
    _matchingbzrdir = bzrdir.BzrDirFormat6()
 
446
    _matchingbzrdir = bzrdir_weave.BzrDirFormat6()
447
447
    supports_funky_characters = False
448
448
    @property
449
449
    def _serializer(self):