Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-06 | cmdline-opts: Fixed build and test in out of source tree builds | Dan Fandrich | |
2017-02-06 | docs: Add more HTTPS proxy documentation | Jay Satiro | |
- Document HTTPS proxy type. - Document --write-out %{proxy_ssl_verify_result}. - Document SOCKS proxy + HTTP/HTTPS proxy combination. HTTPS proxy support was added in 7.52.0 for OpenSSL, GnuTLS and NSS. Ref: https://github.com/curl/curl/commit/cb4e2be | |||
2017-01-23 | cmdline-opts/gen.pl: Open input files in CRLF mode | Jay Satiro | |
On Windows it's possible to have input files with CRLF line endings and a perl that defaults to LF line endings (eg msysgit). Currently that results in generator output of mixed line endings of CR, LF and CRLF. This change fixes that issue in the most succinct way by opening the files in :crlf text mode even when the perl being used does not default to that mode. (On operating systems that don't have a separate text mode it's essentially a no-op.) The output continues to be in the perl's native line ending. | |||
2017-01-23 | docs/curl.1: generate from the cmdline-opts script | Daniel Stenberg | |
2017-01-16 | bump: next release will be 7.53.0 | Daniel Stenberg | |
2017-01-13 | unix_socket: add support for abstract unix domain socket | Isaac Boukris | |
In addition to unix domain sockets, Linux also supports an abstract namespace which is independent of the filesystem. In order to support it, add new CURLOPT_ABSTRACT_UNIX_SOCKET option which uses the same storage as CURLOPT_UNIX_SOCKET_PATH internally, along with a flag to specify abstract socket. On non-supporting platforms, the abstract address will be interpreted as an empty string and fail gracefully. Also add new --abstract-unix-socket tool parameter. Signed-off-by: Isaac Boukris <iboukris@gmail.com> Reported-by: Chungtsun Li (typeless) Reviewed-by: Daniel Stenberg Reviewed-by: Peter Wu Closes #1197 Fixes #1061 | |||
2017-01-13 | write-out.d: 'time_total' is not always shown with ms precision | Daniel Stenberg | |
We have higher resolution since 7.52.0 | |||
2017-01-13 | next.d: --trace and --trace-ascii are also global | Daniel Stenberg | |
2017-01-13 | url: --noproxy option overrides NO_PROXY environment variable | ERAMOTO Masaya | |
Under condition using http_proxy env var, noproxy list was the combination of --noproxy option and NO_PROXY env var previously. Since this commit, --noproxy option overrides NO_PROXY environment variable even if use http_proxy env var. Closes #1140 | |||
2017-01-07 | docs/silent: mention --show-error in --silent description | Daniel Stenberg | |
Reported in #1190 Reported-by: Dan Jacobson | |||
2017-01-07 | docs/page-header: mention how to disable the progress meter | Daniel Stenberg | |
curl.1 is regenerated Fixes #1190 | |||
2016-12-29 | page-footer: error 36 is protocol agnostic! | Daniel Stenberg | |
2016-12-25 | docs/ciphers: link to our own new page about ciphers | Daniel Stenberg | |
... as the former ones always go stale! | |||
2016-12-25 | cmdline-opts/page-footer: add three more exit codes | Daniel Stenberg | |
... and regenerated curl.1 | |||
2016-12-19 | cmdline-opts/tlsv1.d: rephrased | Daniel Stenberg | |
2016-12-18 | form-string.d: fix format mistake | Daniel Stenberg | |
and regenerated curl.1 Reported-by: Gisle Vanem | |||
2016-12-18 | cmdline-opts/post30X.d: fix the RFC references | Daniel Stenberg | |
2016-12-17 | cmdline-opts: formatting fixes | Daniel Stenberg | |
2016-12-17 | cmdline-opts/gen.pl: trim off trailing spaces | Daniel Stenberg | |
2016-12-17 | cmdline-opts/proxy-tlsuser.d: remove trailing .d | Daniel Stenberg | |
2016-12-17 | cmdline-opts: include the man page split up files in the dist | Daniel Stenberg | |
2016-12-16 | cmdline-opts: added some missing info | Daniel Stenberg | |
2016-12-16 | cmdline-opts/page-header: mention it is generated | Daniel Stenberg | |
... to avoid people from trying to edit the pending curl.1 version that gets generated by gen.pl | |||
2016-12-16 | preproxy: renamed what was added as SOCKS_PROXY | Daniel Stenberg | |
CURLOPT_SOCKS_PROXY -> CURLOPT_PRE_PROXY Added the corresponding --preroxy command line option. Sets a SOCKS proxy to connect to _before_ connecting to a HTTP(S) proxy. | |||
2016-11-28 | cmdline-docs: more options converted and fixed | Daniel Stenberg | |
Now all options are in the new system. | |||
2016-11-28 | gen: include footer in mainpage output | Daniel Stenberg | |
2016-11-28 | cmdline-opts: more command line options documented | Daniel Stenberg | |
Moved over to the new format | |||
2016-11-16 | cmdline-docs: more conversion | Daniel Stenberg | |
2016-11-16 | gen: support 'protos' | Daniel Stenberg | |
and warn on unrecognized lines | |||
2016-11-16 | gen: support 'single' to make an individual page man page | Daniel Stenberg | |
2016-11-16 | cmdline-docs: more options converted over | Daniel Stenberg | |
2016-11-16 | gen: support 'redirect' | Daniel Stenberg | |
... and warn for too long --help lines | |||
2016-11-16 | cmdline/gen: replace options in texts better | Daniel Stenberg | |
2016-11-15 | docs: Spelling fixes | Alex Chan | |
2016-11-15 | cmdline-opts: support generating the --help output | Daniel Stenberg | |
2016-11-13 | cmdline-opts: first test version of a new man page generator kit | Daniel Stenberg | |
See MANPAGE.md for the description of how this works. Each command line option is now described in a separate .d file. |