/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Martin Pool
  • Date: 2008-06-18 07:56:09 UTC
  • mto: This revision was merged to the branch mainline in revision 3510.
  • Revision ID: mbp@sourcefrog.net-20080618075609-zehkroqkqufck2zb
VersionedFiles review cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
    )
64
64
from bzrlib.smart.client import _SmartClient
65
65
from bzrlib.smart import protocol
66
 
from bzrlib.repofmt.weaverepo import TextRevisionStore, RevisionTextStore
67
66
from bzrlib.store.versioned import WeaveStore
68
67
from bzrlib.transactions import WriteTransaction
69
68
from bzrlib.transport import (
2057
2056
        revision_transport = self.bzrdir.transport.clone('revision-store')
2058
2057
        # TODO permissions
2059
2058
        from bzrlib.xml5 import serializer_v5
 
2059
        from bzrlib.repofmt.weaverepo import RevisionTextStore
2060
2060
        revision_store = RevisionTextStore(revision_transport,
2061
2061
            serializer_v5, False, versionedfile.PrefixMapper(),
2062
2062
            lambda:True, lambda:True)