~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Aaron Bentley
  • Date: 2007-07-13 06:10:29 UTC
  • mfrom: (2616 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2617.
  • Revision ID: aaron.bentley@utoronto.ca-20070713061029-9ebz58a3yvvax5du
Merge bzr.dev

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
 
 
447
442
    def is_readonly(self):
448
443
        """See Transport.is_readonly."""
449
444
        return True