/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/smart/vfs.py

  • Committer: Jelmer Vernooij
  • Date: 2009-02-25 14:36:59 UTC
  • mfrom: (4048 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4049.
  • Revision ID: jelmer@samba.org-20090225143659-vx6cbqtmyicuzfyf
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
class VfsRequest(request.SmartServerRequest):
53
53
    """Base class for VFS requests.
54
 
    
 
54
 
55
55
    VFS requests are disabled if vfs_enabled() returns False.
56
56
    """
57
57
 
82
82
        relpath = self.translate_client_path(relpath)
83
83
        self._relpath = relpath
84
84
        self._mode = _deserialise_optional_mode(mode)
85
 
    
 
85
 
86
86
    def do_body(self, body_bytes):
87
87
        old_length = self._backing_transport.append_bytes(
88
88
            self._relpath, body_bytes, self._mode)