~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: 2009-04-03 15:14:46 UTC
  • mfrom: (4247.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20090403151446-o35ylr3cst5ioejg
(vila) supports_chks flag on repo formats & log tuning

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
    supports_tree_reference = False
267
267
    supports_ghosts = False
268
268
    supports_external_lookups = False
 
269
    supports_chks = False
269
270
    _fetch_order = 'topological'
270
271
    _fetch_reconcile = True
271
272
    fast_deltas = False
315
316
        result.signatures = self._get_signatures(repo_transport, result)
316
317
        result.inventories = self._get_inventories(repo_transport, result)
317
318
        result.texts = self._get_texts(repo_transport, result)
 
319
        result.chk_bytes = None
318
320
        return result
319
321
 
320
322
    def check_conversion_target(self, target_format):
475
477
 
476
478
    _versionedfile_class = weave.WeaveFile
477
479
    supports_ghosts = False
 
480
    supports_chks = False
 
481
 
478
482
    _fetch_order = 'topological'
479
483
    _fetch_reconcile = True
480
484
    fast_deltas = False
555
559
        result.signatures = self._get_signatures(repo_transport, result)
556
560
        result.inventories = self._get_inventories(repo_transport, result)
557
561
        result.texts = self._get_texts(repo_transport, result)
 
562
        result.chk_bytes = None
558
563
        result._transport = repo_transport
559
564
        return result
560
565