~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/weave_fmt/repository.py

  • Committer: Vincent Ladeuil
  • Date: 2011-10-31 22:11:59 UTC
  • mfrom: (6236 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6252.
  • Revision ID: v.ladeuil+lp@free.fr-20111031221159-zmbd6izz1flzyisa
Merge trunk before submission

Show diffs side-by-side

added added

removed removed

Lines of Context:
272
272
    supports_ghosts = False
273
273
    supports_external_lookups = False
274
274
    supports_chks = False
 
275
    supports_nesting_repositories = True
275
276
    _fetch_order = 'topological'
276
277
    _fetch_reconcile = True
277
278
    fast_deltas = False
321
322
            raise NotImplementedError
322
323
 
323
324
        repo_transport = a_bzrdir.get_repository_transport(None)
324
 
        control_files = a_bzrdir._control_files
325
325
        result = AllInOneRepository(_format=self, a_bzrdir=a_bzrdir)
326
326
        result.revisions = self._get_revisions(repo_transport, result)
327
327
        result.signatures = self._get_signatures(repo_transport, result)