~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2012-02-28 10:06:39 UTC
  • mfrom: (6437.40.2 rmbranch-colo)
  • mto: This revision was merged to the branch mainline in revision 6482.
  • Revision ID: jelmer@samba.org-20120228100639-p5gndu91wuqwugti
Merge rmbranch-colo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1782
1782
                 help="Read-only access of branches exported on the web.")
1783
1783
register_transport_proto('https://',
1784
1784
            help="Read-only access of branches exported on the web using SSL.")
1785
 
# The default http implementation is urllib, but https uses pycurl if available
 
1785
# The default http implementation is urllib
1786
1786
register_lazy_transport('http://', 'bzrlib.transport.http._pycurl',
1787
1787
                        'PyCurlTransport')
1788
1788
register_lazy_transport('http://', 'bzrlib.transport.http._urllib',
1789
1789
                        'HttpTransport_urllib')
 
1790
register_lazy_transport('https://', 'bzrlib.transport.http._pycurl',
 
1791
                        'PyCurlTransport')
1790
1792
register_lazy_transport('https://', 'bzrlib.transport.http._urllib',
1791
1793
                        'HttpTransport_urllib')
1792
 
register_lazy_transport('https://', 'bzrlib.transport.http._pycurl',
1793
 
                        'PyCurlTransport')
1794
1794
 
1795
1795
register_transport_proto('ftp://', help="Access using passive FTP.")
1796
1796
register_lazy_transport('ftp://', 'bzrlib.transport.ftp', 'FtpTransport')