# HG changeset patch # User Matt Mackall # Date 1334280138 18000 # Node ID 7416ce2c78875e4837b72b7e98deb1a31e69bf89 # Parent def789752b605ecc645b2a43f43c1b1ac5c983e5 help: fix indentation on cacert (issue3350) The parser doesn't really handle nesting, so reorder so the nested bit is last. diff -r def789752b60 -r 7416ce2c7887 mercurial/help/config.txt --- a/mercurial/help/config.txt Thu Apr 12 20:22:18 2012 -0500 +++ b/mercurial/help/config.txt Thu Apr 12 20:22:18 2012 -0500 @@ -1293,7 +1293,20 @@ authority certificates. Environment variables and ``~user`` constructs are expanded in the filename. If specified on the client, then it will verify the identity of remote HTTPS servers - with these certificates. The form must be as follows:: + with these certificates. + + This feature is only supported when using Python 2.6 or later. If you wish + to use it with earlier versions of Python, install the backported + version of the ssl library that is available from + ``http://pypi.python.org``. + + To disable SSL verification temporarily, specify ``--insecure`` from + command line. + + You can use OpenSSL's CA certificate file if your platform has + one. On most Linux systems this will be + ``/etc/ssl/certs/ca-certificates.crt``. Otherwise you will have to + generate this file manually. The form must be as follows:: -----BEGIN CERTIFICATE----- ... (certificate in base64 PEM encoding) ... @@ -1302,18 +1315,6 @@ ... (certificate in base64 PEM encoding) ... -----END CERTIFICATE----- - This feature is only supported when using Python 2.6 or later. If you wish - to use it with earlier versions of Python, install the backported - version of the ssl library that is available from - ``http://pypi.python.org``. - - You can use OpenSSL's CA certificate file if your platform has one. - On most Linux systems this will be ``/etc/ssl/certs/ca-certificates.crt``. - Otherwise you will have to generate this file manually. - - To disable SSL verification temporarily, specify ``--insecure`` from - command line. - ``cache`` Whether to support caching in hgweb. Defaults to True.