~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-20 03:55:45 UTC
  • mfrom: (2634.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070720035545-uh4yjypen2ux6z8s
(robertc) Reinstate the accidentally backed out external_url patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
439
439
        """Delete the item at relpath"""
440
440
        raise errors.TransportNotPossible('http does not support delete()')
441
441
 
 
442
    def external_url(self):
 
443
        """See bzrlib.transport.Transport.external_url."""
 
444
        # HTTP URL's are externally usable.
 
445
        return self.base
 
446
 
442
447
    def is_readonly(self):
443
448
        """See Transport.is_readonly."""
444
449
        return True