mirror of
https://github.com/curl/curl.git
synced 2026-08-03 10:30:29 +03:00
spacecheck.pl: drop more exceptions
- replace ß (scharfes S) with links. - replace § (section sign) with links. - replace 🙏 emoji with `🙏`. Supported by GitHub, Forgejo/Gitea and most likely GitLab. - docs/libcurl/curl_mprintf.md: replace Unicode ± with `{+|-}`. - docs/CIPHERS.md: URL encode Unicode in URLs. - lib1560: use hex encoding in `räksmörgås.se`. - unit1307: use hex encoding in `Lindmätarv`. - drop LATIN SMALL LETTER A WITH ACUTE exception. No longer appears in tests. This leaves the single character exception: `ö` And file exceptions holding contributor names. Follow-up to9243ed59b3#17329 Follow-up to838dc53bb7#17247 Closes #17335
This commit is contained in:
parent
4efeeaa22d
commit
828f998493
8 changed files with 25 additions and 23 deletions
|
|
@ -18,9 +18,9 @@ are names for specific combinations of
|
|||
and with TLSv1.3 the
|
||||
[authenticated encryption](https://en.wikipedia.org/wiki/Authenticated_encryption).
|
||||
In addition, there are other parameters that influence the TLS handshake, like
|
||||
[DHE](https://en.wikipedia.org/wiki/Diffie–Hellman_key_exchange) "groups" and
|
||||
[ECDHE](https://en.wikipedia.org/wiki/Elliptic-curve_Diffie–Hellman) with its
|
||||
"curves".
|
||||
[DHE](https://en.wikipedia.org/wiki/Diffie%e2%80%93Hellman_key_exchange) "groups"
|
||||
and [ECDHE](https://en.wikipedia.org/wiki/Elliptic-curve_Diffie%e2%80%93Hellman)
|
||||
with its "curves".
|
||||
|
||||
### History
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ problems may have been fixed or changed somewhat since this was written.
|
|||
6. Authentication
|
||||
6.2 MIT Kerberos for Windows build
|
||||
6.3 NTLM in system context uses wrong name
|
||||
6.5 NTLM does not support password with § character
|
||||
6.5 NTLM does not support password with Unicode 'SECTION SIGN' character
|
||||
6.6 libcurl can fail to try alternatives with --proxy-any
|
||||
6.7 Do not clear digest for single realm
|
||||
6.8 Heimdal memory leaks
|
||||
|
|
@ -318,8 +318,10 @@ problems may have been fixed or changed somewhat since this was written.
|
|||
"system context" makes it use wrong(?) username - at least when compared to
|
||||
what winhttp does. See https://curl.se/bug/view.cgi?id=535
|
||||
|
||||
6.5 NTLM does not support password with § character
|
||||
6.5 NTLM does not support password with Unicode 'SECTION SIGN' character
|
||||
|
||||
https://en.wikipedia.org/wiki/Section_sign
|
||||
https://codepoints.net/U+00A7 SECTION SIGN
|
||||
https://github.com/curl/curl/issues/2120
|
||||
|
||||
6.6 libcurl can fail to try alternatives with --proxy-any
|
||||
|
|
|
|||
|
|
@ -194,8 +194,9 @@ handle hostnames using non-ASCII characters.
|
|||
When built with libidn2, curl uses the IDNA 2008 standard. This is equivalent
|
||||
to the WHATWG URL spec, but differs from certain browsers that use IDNA 2003
|
||||
Transitional Processing. The two standards have a huge overlap but differ
|
||||
slightly, perhaps most famously in how they deal with the German "double s"
|
||||
(`ß`).
|
||||
slightly, perhaps most famously in how they deal with the
|
||||
[German "double s"](https://en.wikipedia.org/wiki/%c3%9f)
|
||||
([LATIN SMALL LETTER SHARP S](https://codepoints.net/U+00DF)).
|
||||
|
||||
When WinIDN is used, curl uses IDNA 2003 Transitional Processing, like the rest
|
||||
of Windows.
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@ printed with an explicit precision 0, the output is empty.
|
|||
|
||||
## e, E
|
||||
|
||||
The double argument is rounded and output in the style **"[-]d.ddde±dd"**
|
||||
The double argument is rounded and output in the style **"[-]d.ddde{+|-}dd"**
|
||||
|
||||
## f, F
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue