1176
1176
register_lazy_transport('sftp://', 'bzrlib.transport.sftp', 'SFTPTransport')
1178
1178
register_transport_proto('http+urllib://',
1179
help="Read-only access of branches exported on the web.")
1179
# help="Read-only access of branches exported on the web."
1180
1181
register_lazy_transport('http+urllib://', 'bzrlib.transport.http._urllib',
1181
1182
'HttpTransport_urllib')
1182
1183
register_transport_proto('https+urllib://',
1183
help="Read-only access of branches exported on the web using SSL.")
1184
# help="Read-only access of branches exported on the web using SSL."
1184
1186
register_lazy_transport('https+urllib://', 'bzrlib.transport.http._urllib',
1185
1187
'HttpTransport_urllib')
1186
1188
register_transport_proto('http+pycurl://',
1187
help="Read-only access of branches exported on the web.")
1189
# help="Read-only access of branches exported on the web."
1188
1191
register_lazy_transport('http+pycurl://', 'bzrlib.transport.http._pycurl',
1189
1192
'PyCurlTransport')
1190
1193
register_transport_proto('https+pycurl://',
1191
help="Read-only access of branches exported on the web using SSL.")
1194
# help="Read-only access of branches exported on the web using SSL."
1192
1196
register_lazy_transport('https+pycurl://', 'bzrlib.transport.http._pycurl',
1193
1197
'PyCurlTransport')
1194
1198
register_transport_proto('http://',
1215
1219
register_lazy_transport('chroot+', 'bzrlib.transport.chroot',
1216
1220
'ChrootTransportDecorator')
1217
1221
register_transport_proto('readonly+',
1218
help="This modifier converts any transport to be readonly.")
1222
# help="This modifier converts any transport to be readonly."
1219
1224
register_lazy_transport('readonly+', 'bzrlib.transport.readonly', 'ReadonlyTransportDecorator')
1220
1225
register_transport_proto('fakenfs+')
1221
1226
register_lazy_transport('fakenfs+', 'bzrlib.transport.fakenfs', 'FakeNFSTransportDecorator')
1230
1235
'bzrlib.transport.smart',
1231
1236
'SmartTCPTransport')
1232
1237
register_transport_proto('bzr+http://',
1233
help="Fast access using the Bazaar smart server over HTTP.")
1238
# help="Fast access using the Bazaar smart server over HTTP."
1234
1240
register_lazy_transport('bzr+http://',
1235
1241
'bzrlib.transport.smart',
1236
1242
'SmartHTTPTransport')