~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/chroot.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-04-07 07:52:50 UTC
  • mfrom: (3340.1.1 208418-1.4)
  • Revision ID: pqm@pqm.ubuntu.com-20080407075250-phs53xnslo8boaeo
Return the correct knit serialisation method in _StreamAccess.
        (Andrew Bennetts, Martin Pool, Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
    def append_file(self, relpath, f, mode=None):
90
90
        return self._call('append_file', relpath, f, mode)
91
91
 
 
92
    def _can_roundtrip_unix_modebits(self):
 
93
        return self.server.backing_transport._can_roundtrip_unix_modebits()
 
94
 
92
95
    def clone(self, relpath):
93
96
        return ChrootTransport(self.server, self.abspath(relpath))
94
97
 
98
101
    def delete_tree(self, relpath):
99
102
        return self._call('delete_tree', relpath)
100
103
 
 
104
    def external_url(self):
 
105
        """See bzrlib.transport.Transport.external_url."""
 
106
        # Chroots, like MemoryTransport depend on in-process
 
107
        # state and thus the base cannot simply be handed out.
 
108
        # See the base class docstring for more details and
 
109
        # possible directions. For now we return the chrooted
 
110
        # url. 
 
111
        return self.server.backing_transport.external_url()
 
112
 
101
113
    def get(self, relpath):
102
114
        return self._call('get', relpath)
103
115
 
104
116
    def has(self, relpath):
105
117
        return self._call('has', relpath)
106
118
 
 
119
    def is_readonly(self):
 
120
        return self.server.backing_transport.is_readonly()
 
121
 
107
122
    def iter_files_recursive(self):
108
123
        backing_transport = self.server.backing_transport.clone(
109
124
            self._safe_relpath('.'))
124
139
    def mkdir(self, relpath, mode=None):
125
140
        return self._call('mkdir', relpath, mode)
126
141
 
 
142
    def open_write_stream(self, relpath, mode=None):
 
143
        return self._call('open_write_stream', relpath, mode)
 
144
 
127
145
    def put_file(self, relpath, f, mode=None):
128
146
        return self._call('put_file', relpath, f, mode)
129
147