~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2007-07-15 11:24:18 UTC
  • mfrom: (2617 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2646.
  • Revision ID: v.ladeuil+lp@free.fr-20070715112418-9nn4n6esxv60ny4b
merge bzr.dev@1617

Show diffs side-by-side

added added

removed removed

Lines of Context:
392
392
        """Delete the item at relpath"""
393
393
        raise errors.TransportNotPossible('http does not support delete()')
394
394
 
395
 
    def external_url(self):
396
 
        """See bzrlib.transport.Transport.external_url."""
397
 
        # HTTP URL's are externally usable.
398
 
        return self.base
399
 
 
400
395
    def is_readonly(self):
401
396
        """See Transport.is_readonly."""
402
397
        return True