summary refs log tree commit diff stats
path: root/lib/pure
Commit message (Collapse)AuthorAgeFilesLines
* Fixes `asyncmacro` compilation in tests.Dominik Picheta2016-09-191-2/+1
|
* Use `distinct range` for HttpCode as suggested by @nigredo-tori.Dominik Picheta2016-09-192-55/+118
|
* Fixes #4797.Dominik Picheta2016-09-191-0/+3
|
* Implements proxy support for (Async)HttpClient. Ref #4423.Dominik Picheta2016-09-182-18/+78
| | | | Fixes #2160.
* 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-183-87/+145
| | | | | | * Adds ability to query HttpCode and compare it with strings. * Moves HttpMethod to HttpCore module. * Implements synchronous HttpClient using {.multisync.}.
* Implements {.multisync.} pragma for async and sync proc combos.Dominik Picheta2016-09-181-0/+110
|
* reset p.exitCode in peekExitCode on Posix when process did not exit (#4793)Johannes Hofmann2016-09-171-1/+3
| | | | | | | | * reset p.exitCode in peekExitCode on Posix when process did not exit fixes #4792 * fix indentation
* os: always use pcLinkToDir as kind for links to directoriesSimon Ruderich2016-09-171-10/+29
| | | | | Only the OS-specific case in walkDir() handled that correctly. Adapt the general case and handle it in getFileInfo().
* Fixes Futures' `or` operation so that asyncftpclient compiles.Dominik Picheta2016-09-171-3/+3
|
* Fixes #4170.Dominik Picheta2016-09-172-14/+53
|
* Fixes #4262.Dominik Picheta2016-09-172-73/+80
|
* Merge pull request #4782 from endragor/marshal-non-utf8Andreas Rumpf2016-09-171-27/+23
|\ | | | | Use array encoding for non-UTF-8 strings in marshal
| * Use array encoding for non-UTF-8 strings in marshal. Fixes #4779.Ruslan Mustakov2016-09-161-27/+23
| |
* | fix missing procvar pragmapyloor2016-09-161-1/+1
|/
* Merge pull request #4771 from rudis/develAndreas Rumpf2016-09-162-4/+4
|\ | | | | Misc minor (doc) fixes
| * os: createHardlink: clarify documentationSimon Ruderich2016-09-151-2/+2
| | | | | | | | I know no (UNIX-like) system which restricts creation of hardlinks.
| * algorithm: sort: fix link in documentationSimon Ruderich2016-09-151-1/+1
| |
| * os: createSymlink: fix typo in documentationSimon Ruderich2016-09-151-1/+1
| |
* | Merge pull request #4759 from endragor/marshal-strs-as-arraysAndreas Rumpf2016-09-151-2/+26
|\ \ | |/ |/| marshal now can handle binary strings
| * marshal now can handle binary data in stringsRuslan Mustakov2016-09-131-2/+26
| |
* | fixes #4764, fixes #4731, fixes #4724Araq2016-09-141-2/+2
| |
* | fixes #4760Andreas Rumpf2016-09-131-24/+21
| |
* | Fix AsyncSocket sendDmitry Polienko2016-09-121-1/+1
|/
* Merge pull request #4739 from coffeepots/patch-2Andreas Rumpf2016-09-091-0/+2
|\ | | | | Allow compilation of sharedtables.nim
| * Allow compilation of sharedtables.nimcoffeepots2016-09-091-0/+2
| | | | | | tableimpl uses {.oldimmediate.}, which is defined in system/inclrtl.
* | minor stdlib cleanupsAraq2016-09-093-19/+19
| |
* | Make htmlparser compile without warningsAraq2016-09-091-14/+17
|/
* make net.nim compile for osx doc2Andreas Rumpf2016-09-081-1/+1
|
* Merge pull request #4733 from cheatfate/asyncssl_and_testsAndreas Rumpf2016-09-081-3/+8
|\ | | | | async: small ssl fix and updated tests
| * Removed tests with `asyncio`.cheatfate2016-09-071-3/+8
| | | | | | | | | | Fix ssl connection drop in asyncnet Add tasyncssl test
* | Allow to use strtabs module with js targetAnatoly Galiulin2016-09-081-14/+24
|/
* Some small fixes to changes introduced by #4683.Dominik Picheta2016-09-063-82/+30
|
* Revert function names scheme due to the @dom96 commentAnatoly Galiulin2016-09-062-22/+10
|
* Restore ``recvInto`` for backwards compatibilityAnatoly Galiulin2016-09-061-0/+12
|
* Fix typoAnatoly Galiulin2016-09-061-1/+1
|
* Add async IO operations with buffers on files and socketsAnatoly Galiulin2016-09-063-13/+289
|
* Merge pull request #4717 from nigredo-tori/xml-escapingAndreas Rumpf2016-09-051-3/+14
|\ | | | | xmltree: separate escaping for attributes
| * xmltree: separate escaping for attributesDmitry Polienko2016-09-051-3/+14
| |
* | fixes a critical tables bug that caused 'enlarge' to crash after 'add'Andreas Rumpf2016-09-052-11/+17
|/
* Merge pull request #4705 from yglukhov/js-loggingDominik Picheta2016-09-041-115/+129
|\ | | | | Logging compatible with js
| * Enabled logging tests for jsYuriy Glukhov2016-09-031-4/+5
| |
| * Logging compatible with jsYuriy Glukhov2016-09-031-111/+124
| |
* | async: transfer all await/async macro related code to asyncmacro.nim module. ↵Eugene Kabanov2016-09-032-360/+375
|/ | | | | | | | (#4704) * Transfer all async macro related code to asyncmacro.nim. * Make tests green.
* Merge pull request #4680 from cheatfate/asyncwinsendDominik Picheta2016-09-021-1/+6
|\ | | | | async: protect data argument in windows send operation.
| * Protect data argument for GC.cheatfate2016-08-301-1/+6
| |
* | Use new name for call to low-level terminalWidth.Charles Blake2016-09-011-3/+3
| |
* | Make Windows part match Unix part more closely per Araq request.Charles Blake2016-09-011-8/+7
| |
* | Change type name to be more NEP-1-ish as per Araq request.Charles Blake2016-09-011-1/+1
| |