~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2006-12-11 19:25:13 UTC
  • mfrom: (2172 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2173.
  • Revision ID: john@arbash-meinel.com-20061211192513-u9ivkqwkp8j3v2i5
[merge] bzr.dev 2172 and move NEWS to the correct location

Show diffs side-by-side

added added

removed removed

Lines of Context:
1183
1183
register_lazy_transport('ftp://', 'bzrlib.transport.ftp', 'FtpTransport')
1184
1184
register_lazy_transport('aftp://', 'bzrlib.transport.ftp', 'FtpTransport')
1185
1185
register_lazy_transport('memory://', 'bzrlib.transport.memory', 'MemoryTransport')
 
1186
register_lazy_transport('chroot+', 'bzrlib.transport.chroot',
 
1187
                        'ChrootTransportDecorator')
1186
1188
register_lazy_transport('readonly+', 'bzrlib.transport.readonly', 'ReadonlyTransportDecorator')
1187
1189
register_lazy_transport('fakenfs+', 'bzrlib.transport.fakenfs', 'FakeNFSTransportDecorator')
1188
1190
register_lazy_transport('vfat+',