~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http.py

  • Committer: Martin Pool
  • Date: 2005-10-06 04:09:55 UTC
  • mfrom: (1413)
  • mto: (1185.13.3)
  • mto: This revision was merged to the branch mainline in revision 1417.
  • Revision ID: mbp@sourcefrog.net-20051006040955-36f27e5a8d5c977b
[merge] from robert

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
        """Delete the item at relpath"""
217
217
        raise TransportNotPossible('http does not support delete()')
218
218
 
219
 
    def list_dir(self, relpath):
220
 
        """Return a list of all files at the given location.
221
 
        WARNING: many transports do not support this, so trying avoid using
222
 
        it if at all possible.
223
 
        """
224
 
        raise TransportNotPossible('http does not support list_dir()')
 
219
    def listable(self):
 
220
        """See Transport.listable."""
 
221
        return False
225
222
 
226
223
    def stat(self, relpath):
227
224
        """Return the stat information for a file.