aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2016-04-06URLs: change http to https in many placesViktor Szakats
Closes #754
2016-04-06curl.1: change example for -FTheodore Dubois
It's a bad idea to send your passwords anywhere, especially over HTTP. Modified example to send a picture instead. Fixes #752
2016-04-06KNOWN_BUGS: reorganized and cleaned upDaniel Stenberg
Now sorted into categories and organized in the same style we do the TODO document. It will make each issue linked properly on the https://curl.haxx.se/docs/knownbugs.html web page. The sections should make it easier to find issues and issues related to areas of the reader's specific interest.
2016-04-06KNOWN_BUGS: #95 curl in Windows can't handle Unicode argumentsJay Satiro
2016-04-06KNOWN_BUGS: Use https://curl.haxx.se URL for github based issuesSteve Holme
2016-04-06CHECKSRC.md: Corrected some typosSteve Holme
2016-04-05KNOWN_BUGS: #94 IMAP custom requests use the LIST handlerJay Satiro
Bug: https://github.com/curl/curl/issues/536 Reported-by: eXeC64@users.noreply.github.com
2016-04-05KNOWN_BUGS: remove 68, 70 and 72.Daniel Stenberg
Due to their age (we don't fully know if they actually remain) and lack of detail - very few people will bother to find out what they're about or work on them. If people truly still suffer from any of these, I assume they will be reported again and then we'll deal with them. 72. "Pausing pipeline problems." https://curl.haxx.se/mail/lib-2009-07/0214.html 70. Problem re-using easy handle after call to curl_multi_remove_handle https://curl.haxx.se/mail/lib-2009-07/0249.html 68. "More questions about ares behavior". https://curl.haxx.se/mail/lib-2009-08/0012.html
2016-04-05KNOWN_BUGS: remove 92 and 88, fixedDaniel Stenberg
2016-04-04CHECKSRC.md: mention cmdline options, fix the bullet listDaniel Stenberg
2016-04-04docs/CHECKSRC.md: initial versionDaniel Stenberg
2016-04-03docs/examples: remove spurious white spaces all overDaniel Stenberg
... to please the new, slightly picker, checksrc.pl
2016-04-03code: style updatesDaniel Stenberg
2016-04-02curl.1: -w filename_effective was introduced in 7.26.0Daniel Stenberg
We never made a 7.25.1 release
2016-04-02test1119: Fixed missing CURL_DID_MEMORY_FUNC_TYPEDEFS symbolSteve Holme
2016-04-01curl/mprintf.h: remove support for _MPRINTF_REPLACEDaniel Stenberg
The define is not in our name space and is therefore not protected by our API promises. It was only really used by libcurl internals but was mostly erased from there already in 8aabbf5 (March 2015). This is supposedly the final death blow to that define from everywhere. As a side-effect, making sure _MPRINTF_REPLACE is gone and not used, I made the lib tests in tests/libtest/ use curl_printf.h for its redefine magic and then subsequently the use of sprintf() got banned in the tests as well (as it is in libcurl internals) and I then replaced them all with snprintf(). In the unlikely event that any users is actually using this define and gets sad by this change, it is very easily copied to the user's own code.
2016-03-31http2: more documentation for prior knowledgeDaniel Stenberg
2016-03-31http2: support "prior knowledge", no upgrade from HTTP/1.1Diego Bes
Supports HTTP/2 over clear TCP - Optimize switching to HTTP/2 by removing calls to init and setup before switching. Switching will eventually call setup and setup calls init. - Supports new version to “force” the use of HTTP/2 over clean TCP - Add common line parameter “--http2-prior-knowledge” to the Curl command line tool.
2016-03-29build: use roffit 0.11 featureDaniel Stenberg
... load file specified as argument.
2016-03-29TODO: use secure protocol in recently added URLViktor Szakats
Closes #733
2016-03-29HTTP2.md: mention libressl and boringssl tooDaniel Stenberg
2016-03-29docs/HTTP-COOKIES: converted to markdownDaniel Stenberg
2016-03-29HTTP2: s/polarssl/mbedtlsDaniel Stenberg
2016-03-28wolfssl: Add ALPN supportJay Satiro
2016-03-28TODO: 2.5 Edge-triggered sockets should workDaniel Stenberg
2016-03-27CURLMOPT_SOCKETFUNCTION.3: describe the 'what' argumentDaniel Stenberg
2016-03-27curl_multi_socket_action.3: mark the options properlyDaniel Stenberg
... to make them appear as links on the html version.
2016-03-27docs: curlinfo_filetime sftp support, new curlopt_quote "statvfs"marquis-de-muesli
Closes #677
2016-03-25docs/TODO: Add feature request for metalink in HTTP headersDusty Mabe
Closes #729 Closes #728
2016-03-24schannel: Add ALPN supportJDepooter
Add ALPN support for schannel. This allows cURL to negotiate HTTP/2.0 connections when built with schannel. Closes #724
2016-03-23RELEASE-PROCEDURE: mention the github release tag editDaniel Stenberg
... and update the coming release dates a bit
2016-03-23THANKS: 15 new contributors from 7.48.0 releaseDaniel Stenberg
2016-03-23CURLINFO_TLS_SSL_PTR.3: Warn about limitationsJay Satiro
Bug: https://github.com/curl/curl/issues/685
2016-03-22libcurl-thread.3: minor nroff format fixDaniel Stenberg
2016-03-22CURLINFO_TLS_SSL_PTR.3: minor nroff format fixDaniel Stenberg
2016-03-22CODE_STYLE: indend example codeDaniel Stenberg
... to make it look nicer in markdown outputa
2016-03-20CODE_STYLE: Use boolean conditionsSteve Holme
Rather than use TRUE, FALSE, NULL, 0 or != 0 in if/while conditions. Additionally, corrected some example code to adhere to the recommended coding style.
2016-03-19KNOWN_BUGS: #93 Issue with CURLFORM_CONTENTLEN in arrays on 32-bit platformsSteve Holme
2016-03-18FAQ: 2.5 Install libcurl for both 32bit and 64bit?Daniel Stenberg
2016-03-15CURLOPT_SSLENGINE.3: Only for OpenSSL built with engine supportJay Satiro
Bug: https://curl.haxx.se/mail/lib-2016-03/0150.html Reported-by: Oliver Graute
2016-03-14CODE_STYLE: Space around operatorsDaniel Stenberg
As just discussed on the mailing list, also document how we prefer spacing in expressions.
2016-03-14CODE_STYLE: add example for indent style as wellDaniel Stenberg
2016-03-14CODE_STYLE: mention braces for functions tooDaniel Stenberg
2016-03-14docs/Makefile.am: include CODE_STYLE in tarball tooDaniel Stenberg
2016-03-14CONTRIBUTE: moved out code style to a separate documentDaniel Stenberg
2016-03-14CODE_STYLE: initial versionDaniel Stenberg
Ripped out from CONTRIBUTE into its own document, but also extended from there.
2016-03-13TODO: Use the RFC6265 test suiteDaniel Stenberg
2016-03-10THANKS-filter: unify Michael KönigDaniel Stenberg
2016-03-09HTTP2.md: add CURL_HTTP_VERSION_2TLS and updated alt-svc linkDaniel Stenberg
2016-03-09curl_multi_wait.3: add exampleDaniel Stenberg