~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/decorator.py

  • Committer: Robert Collins
  • Date: 2007-07-20 03:20:20 UTC
  • mfrom: (2592 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2635.
  • Revision ID: robertc@robertcollins.net-20070720032020-xiftpb5gqeebo861
(robertc) Reinstate the accidentally backed out external_url patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
        """See Transport.delete_tree()."""
80
80
        return self._decorated.delete_tree(relpath)
81
81
 
 
82
    def external_url(self):
 
83
        """See bzrlib.transport.Transport.external_url."""
 
84
        # while decorators are in-process only, they
 
85
        # can be handed back into bzrlib safely, so
 
86
        # its just the base.
 
87
        return self.base
 
88
 
82
89
    @classmethod
83
90
    def _get_url_prefix(self):
84
91
        """Return the URL prefix of this decorator."""