Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for #5482, let OrderedTable accept multiple keys (#5485) | David Krause | 2017-03-05 | 1 | -1/+15 |
| | |||||
* | tiny docstring fix; fixes #5483 (#5484) | Fabian Keller | 2017-03-05 | 1 | -1/+1 |
| | |||||
* | Only remove scheme when there's a TLS request ("https") | Rayner De Los Santos F | 2017-03-03 | 1 | -2/+2 |
| | | | If condition, for not removing the scheme when proxied connection isn't a TLS request ("http://..."). | ||||
* | Merge branch 'devel' into faster-nimsuggest | Andreas Rumpf | 2017-03-03 | 11 | -48/+140 |
|\ | |||||
| * | Make countLines() the same as len(splitLines(s)) (#5470) | Simon Krauter | 2017-03-03 | 1 | -8/+4 |
| | | | | | | | | | | The result of countLines() is now increased by 1 compared to the old version. Fixes #5460. | ||||
| * | Add compute proc for SharedTable (#5385) | Ruslan Mustakov | 2017-03-02 | 2 | -3/+52 |
| | | |||||
| * | Fix waiting on coroutines (#5463) | Rokas Kupstys | 2017-03-02 | 1 | -27/+36 |
| | | | | | | | | | | | | Public coroutine API returns a safe reference to specific running coroutine. Fixes bug where multiple coroutines executing same procedure would identify as same coroutine. Greatly optimizes `alive()` (and as a result of that `wait()`) calls. Coroutine struct is allocated together with stack as memory unmanaged by GC. | ||||
| * | Fixes #5457 - StdLib base64 encodeInternal crashes with out of bound ↵ | Florent | 2017-03-02 | 1 | -3/+9 |
| | | | | | | | | exception (#5464) | ||||
| * | Merge pull request #5466 from yglukhov/asynchttpserver-bad-content-length | Dominik Picheta | 2017-03-01 | 1 | -1/+3 |
| |\ | | | | | | | Dont assert on malformed requests | ||||
| | * | Dont assert on malformed requests | Yuriy Glukhov | 2017-03-01 | 1 | -1/+3 |
| | | | |||||
| * | | Revert "Listen on ipv6" (#5461) | Yuriy Glukhov | 2017-03-01 | 1 | -2/+2 |
| |/ | |||||
| * | Add gethostname to nativesockets (#5443) | Federico Ceratto | 2017-03-01 | 1 | -0/+16 |
| | | |||||
| * | Fix async timers execution. (#5448) | Andrey Sobolev | 2017-03-01 | 1 | -1/+5 |
| | | |||||
| * | Merge pull request #5442 from FedericoCeratto/patch-24 | Andreas Rumpf | 2017-02-27 | 1 | -0/+2 |
| |\ | | | | | | | Add comment on return value | ||||
| | * | Add comment on return value | Federico Ceratto | 2017-02-26 | 1 | -0/+2 |
| | | | |||||
| * | | Merge pull request #5446 from endragor/mt-defaultsslcontext | Andreas Rumpf | 2017-02-27 | 1 | -2/+10 |
| |\ \ | | | | | | | | | Ensure default SSL context is always initialized | ||||
| | * | | Ensure default SSL context is always initialized | Ruslan Mustakov | 2017-02-27 | 1 | -2/+10 |
| | | | | |||||
| * | | | Explicitly mark log() method as gcsafe | Ruslan Mustakov | 2017-02-27 | 1 | -1/+1 |
| |/ / | |||||
* / / | nimsuggest supports prefix matching (first version) | Araq | 2017-02-28 | 1 | -2/+1 |
|/ / | |||||
* | | make tests green again | Araq | 2017-02-26 | 1 | -3/+0 |
| | | |||||
* | | documentation for strscans.scanp; fixes #5154 | Araq | 2017-02-26 | 1 | -1/+142 |
| | | |||||
* | | Merge pull request #5317 from rokups/feature/coroutines | Andreas Rumpf | 2017-02-26 | 1 | -102/+255 |
|\ \ | | | | | | | Coroutine improvements | ||||
| * | | Removed test code from coro.nim and created three real tests for coroutines | Rokas Kupstys | 2017-02-20 | 1 | -92/+0 |
| | | | |||||
| * | | Use constant nimCoroutines instead of defined(nimCoroutines) | Rokas Kupstys | 2017-02-20 | 1 | -2/+5 |
| | | | | | | | | | | | | Variable | ||||
| * | | Reworked gc support for coroutines. Nim now bootstraps with -d:nimCoroutines | Rokas Kupstys | 2017-02-20 | 1 | -52/+77 |
| | | | | | | | | | | | | | | | Added gc test to coro.nim Lots of misc improvements and comments in coro.nim | ||||
| * | | Iterators test in coroutines | Rokas Kupstys | 2017-02-20 | 1 | -0/+19 |
| | | | |||||
| * | | Delete fiber context when it exits (memleak fix) | Rokas Kupstys | 2017-02-20 | 1 | -3/+10 |
| | | | | | | | | | | | | Few correctness changes to gc stack management. | ||||
| * | | Added support for exceptions in coroutines and added exception test | Rokas Kupstys | 2017-02-20 | 1 | -9/+35 |
| | | | | | | | | | | | | Fix bug where first coroutine ending would terminate main loop | ||||
| * | | Coroutine rework. | Rokas Kupstys | 2017-02-20 | 1 | -95/+260 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ucontext backend (default on unix) * setjmp backend * fibers backend (default and required on windows) * Fixed coroutine loop timing issues * Fixed saving of xmm registers on x64 windows * Fixed alignment issues * Updated coroutine sample with cooperative fibonacci calculation. * Disable glibc security features only when platform jump functions are used * Removed dependency on fasm. * Using fiber api on windows. * Other platforms and compilers will use built in assembler and .S files or API provided by platform libc. * Replaced stack switching procs with `coroExecWithStack()` which never returns. This makes compiler always generate proper code. | ||||
* | | | Merge pull request #5373 from nim-lang/feature/async-streams | Andreas Rumpf | 2017-02-26 | 7 | -86/+314 |
|\ \ \ | |_|/ |/| | | Async streams and HTTP client streaming downloads support | ||||
| * | | make the logic right | Araq | 2017-02-26 | 1 | -1/+1 |
| | | | |||||
| * | | Fix the other withNewLine template. | Dominik Picheta | 2017-02-26 | 1 | -1/+1 |
| | | | |||||
| * | | Various fixes to FutureStreams based on PR feedback. | Dominik Picheta | 2017-02-26 | 5 | -46/+59 |
| | | | |||||
| * | | Add small warning in httpclient's onProgressChanged docs. | Dominik Picheta | 2017-02-26 | 1 | -0/+3 |
| | | | |||||
| * | | fixed premature finishing of httpclient.downloadFile | Araq | 2017-02-25 | 2 | -12/+8 |
| | | | |||||
| * | | Merge branch 'devel' into feature/async-streams | Araq | 2017-02-25 | 12 | -38/+74 |
| |\ \ | |||||
| * | | | Implement streamed async/sync downloadFile and deprecate old one. | Dominik Picheta | 2017-02-11 | 2 | -14/+58 |
| | | | | |||||
| * | | | Implement streamed body reading in httpclient. | Dominik Picheta | 2017-02-11 | 1 | -42/+108 |
| | | | | |||||
| * | | | FutureStream's cb call behaviour fixed + other fixes. | Dominik Picheta | 2017-02-11 | 1 | -1/+6 |
| | | | | |||||
| * | | | Add support for `Async | Sync` return types in {.multisync.} macro. | Dominik Picheta | 2017-02-11 | 1 | -21/+34 |
| | | | | |||||
| * | | | Remove immediate FutureStream procs and make 'put' awaitable. | Dominik Picheta | 2017-02-10 | 1 | -18/+8 |
| | | | | |||||
| * | | | Improve implementation of takeAsync for FutureStreams. | Dominik Picheta | 2017-02-10 | 1 | -14/+26 |
| | | | | |||||
| * | | | Implemented a first working version of FutureStreams. | Dominik Picheta | 2017-02-10 | 2 | -41/+49 |
| | | | | |||||
| * | | | Work around issue with queues. Refs #4773. | Dominik Picheta | 2017-02-10 | 1 | -1/+1 |
| | | | | |||||
| * | | | Improve error message when a `nil` future is await'ed. | Dominik Picheta | 2017-02-09 | 1 | -3/+5 |
| | | | | |||||
| * | | | WIP implementation of FutureStream. | Dominik Picheta | 2017-02-09 | 1 | -8/+84 |
| | | | | |||||
* | | | | better docs for strutils.escape | Araq | 2017-02-26 | 1 | -0/+1 |
| | | | | |||||
* | | | | fixes #5430 | Araq | 2017-02-26 | 1 | -1/+1 |
| | | | | |||||
* | | | | added hash for uints (#5435) | Fabian Keller | 2017-02-26 | 1 | -0/+8 |
| | | | | |||||
* | | | | Make use of `used` in unittest (#5410) | Fabian Keller | 2017-02-25 | 1 | -6/+6 |
| |/ / |/| | |