summary refs log tree commit diff stats
path: root/lib/pure/httpclient.nim
Commit message (Expand)AuthorAgeFilesLines
...
* Fix few typosFederico Ceratto2016-10-171-2/+2
* Add example for posting json contentAlpha Shuro2016-10-121-0/+14
* asynchttpserver's Response object's req method uses HttpMethod now.Dominik Picheta2016-09-251-3/+3
* HTTP client's request proc no longer slices http method string param.Dominik Picheta2016-09-251-4/+5
* Improves httpclient documentation.Dominik Picheta2016-09-241-32/+51
* Implements onProgressChanged callback for httpclient.Dominik Picheta2016-09-241-11/+51
* Deprecates old httpclient procedures.Dominik Picheta2016-09-241-6/+22
* Implements getContent and postContent for (Async)HttpClient.Dominik Picheta2016-09-241-1/+36
* Handle redirects in HttpClient's post procs & post test.Dominik Picheta2016-09-241-0/+10
* Use `distinct range` for HttpCode as suggested by @nigredo-tori.Dominik Picheta2016-09-191-2/+3
* Implements proxy support for (Async)HttpClient. Ref #4423.Dominik Picheta2016-09-181-18/+75
* Implements timeouts for synchronous HttpClient.Dominik Picheta2016-09-181-9/+22
* Use HttpHeaders in httpclient module.Dominik Picheta2016-09-181-8/+8
* Improvements to httpclient. Refs #4423.Dominik Picheta2016-09-181-87/+69
* Merge branch 'devel' of https://github.com/RyanMarcus/Nim into RyanMarcus-develDominik Picheta2016-07-301-17/+54
|\
| * added when() block so that the compiler doesn't try to link SSL methods when ...Ryan Marcus2016-07-271-21/+24
| * removed whitespace diffsRyan Marcus2016-07-271-2/+0
| * added code to send CONNECT request for https requests through proxies, fixes ...Ryan Marcus2016-07-271-16/+52
* | Merge pull request #4527 from hendi/httpclient-close-socketsAndreas Rumpf2016-07-281-1/+1
|\ \ | |/ |/|
| * use `defer` instead of `try ... finally`Hendrik Richter2016-07-281-25/+22
| * remove superfluous `except: raise`Hendrik Richter2016-07-281-2/+0
| * make httpclient close opened Socket on errorHendrik Richter2016-07-281-22/+27
* | Fix empty body on HTTP/1.0 connectionsHendrik Richter2016-06-161-6/+7
|/
* Use passed user agent in `newAsyncHttpClient`Euan T2016-06-051-1/+1
* Fixes #3847.Dominik Picheta2016-06-021-0/+7
* httpclient now uses httpcore.HttpHeadersDominik Picheta2016-06-021-8/+8
* moved random procs from math to its own module (breaking change)Andreas Rumpf2016-05-301-1/+2
* Stdlib: httpclient: `export strtabs` added.Konstantin Molchanov2016-05-281-0/+2
* Fixed some warnings in httpclient, net, and openssl.Dominik Picheta2016-04-041-2/+2
* Remove debug `echo` introduced in #3896.Dominik Picheta2016-02-241-1/+0
* Fix redirection in httpclient (fixes #3895)def2016-02-231-7/+9
* Fixes incorrect Host header when using httpclient with proxy.Dominik Picheta2015-12-291-5/+5
* updated httpclient to use tables.getOrDefaultAraq2015-10-141-7/+7
* Rename rawsockets module to nativesocketsAdam Strzelecki2015-10-031-4/+4
* Include port in host header as expectedDoran2015-09-041-2/+10
* Set correct Host in request headerjonathonf2015-08-011-1/+1
* Fix async httpclient post to work without multipartdef2015-07-101-2/+3
* Implement async `post` requestBruce Doan2015-07-021-0/+18
* Fixes #2884Dominik Picheta2015-06-081-2/+4
* Fixed 'milliseconds' spelling in code and docspdw2015-05-151-8/+8
* Don't run non-test code when defined(testing)Oleh Prypin2015-04-211-1/+1
* Use `^` instead of `-` in slicesdef2015-03-281-5/+5
* Fixes bugs introduced by ee62d56cadb. Closes #2227.Dominik Picheta2015-03-051-2/+8
* Fix typosFederico Ceratto2015-02-151-2/+2
* Added documentation for the new http request procedures.Varriount2015-01-231-1/+13
* Fixes #1962Varriount2015-01-221-24/+33
* Fix body in httpclientdef2015-01-131-2/+2
* Rename newData() to newMultipartData()def2015-01-051-5/+5
* A few more fixes to httpclient multipartdef2015-01-051-4/+9
* post should work when extra headers don't have trailing newlinedef2015-01-051-2/+11