~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

  • Committer: Martin Pool
  • Date: 2005-06-01 03:16:18 UTC
  • Revision ID: mbp@sourcefrog.net-20050601031618-07f87942ce0e2c25
- fix locking for RemoteBranch
- add RemoteBranch.revision_store

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
 
110
110
        self.inventory_store = RemoteStore(baseurl + '/.bzr/inventory-store/')
111
111
        self.text_store = RemoteStore(baseurl + '/.bzr/text-store/')
 
112
        self.revision_store = RemoteStore(baseurl + '/.bzr/revision-store/')
112
113
 
113
114
    def __str__(self):
114
115
        b = getattr(self, 'baseurl', 'undefined')
122
123
        return get_url(self.baseurl + '/.bzr/' + filename, False)
123
124
 
124
125
 
125
 
    def lock(self, mode):
126
 
        if mode != 'r':
127
 
            raise BzrError('lock mode %r not supported for remote branch %r' % (mode, self))
 
126
    def lock_read(self):
 
127
        # no locking for remote branches yet
 
128
        pass
 
129
 
 
130
    def lock_write(self):
 
131
        from errors import LockError
 
132
        raise LockError("write lock not supported for remote branch %s"
 
133
                        % self.baseurl)
128
134
 
129
135
    def unlock(self):
130
136
        pass