summary refs log tree commit diff stats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Documents json module.Grzegorz Adam Hankiewicz2014-10-041-90/+539
|
* Merge pull request #1545 from rbehrends/setjmp-perfAndreas Rumpf2014-10-021-4/+17
|\ | | | | Improve setjmp()/longjmp() performance.
| * Improve setjmp()/longjmp() performance.Reimer Behrends2014-09-251-4/+17
| | | | | | | | | | | | | | | | | | | | | | Exception handling for the C backend used setjmp()/longjmp() unconditionally. However, on POSIX systems, these functions save and restore the signal mask, adding considerable overhead to exception handling, even where no exceptions are involved. The compiler and library now try to use either _setjmp()/_longjmp() or sigsetjmp()/siglongjmp() where possible, marked by the defines "nimRawSetjmp" and "nimSigSetjmp", respectively. The define "nimStdSetjmp" can be used to revert to setjmp()/longjmp() instead.
* | Fix permissions for createDir() on Unix systems.Reimer Behrends2014-09-221-2/+2
|/ | | | | Permissions were set to 0o711 by default; they should be 0o777, with umask being responsible for restricting permissions further.
* Merge pull request #1507 from idlewan/postgresqlAndreas Rumpf2014-09-192-28/+86
|\ | | | | Add postgresql prepared queries
| * Add postgresql prepared queries and stop relying on string formattingErwan Ameil2014-08-292-28/+86
| | | | | | | | for sql parameter passing
* | Various fixes to how the Boehm GC's interface.Reimer Behrends2014-09-181-10/+18
| | | | | | | | | | | | | | The Boehm GC interface did not define the getXXXSharedMem() functions that were needed for compilation with --threads:on. It also used `ppointer` instead of `PPointer`, so it failed to compile with --cs:partial.
* | manual merge of #1526Araq2014-09-111-1/+1
| |
* | Threads work againAraq2014-09-111-32/+46
| |
* | fixes #1444Araq2014-09-112-3/+3
| |
* | Merge pull request #1404 from def-/strutils-countAndreas Rumpf2014-09-051-0/+35
|\ \ | | | | | | Add count procedures to strutils
| * | overlapping as a parameter for count insteaddef2014-07-281-17/+9
| | |
| * | Add count procedures to strutilsdef2014-07-231-0/+43
| | |
* | | Merge pull request #1514 from fuzzthink/develSimon Hafner2014-09-021-2/+2
|\ \ \ | | | | | | | | Pointer -> pointer to fix compile error using --cs:partial
| * | | Pointer -> pointer to fix compile error using --cs:partialfuzzthink2014-09-021-2/+2
| | | |
* | | | Merge pull request #1509 from idlewan/cookiesAndreas Rumpf2014-09-011-6/+9
|\ \ \ \ | | | | | | | | | | Secure and HttpOnly cookies
| * | | | Secure and HttpOnly cookiesErwan Ameil2014-08-301-6/+9
| | | | |
* | | | | Escape ' and / when using escape in xmltreeErwan Ameil2014-08-301-0/+4
|/ / / /
* | | | Add asyncftpclient module.Dominik Picheta2014-08-293-14/+315
| | | |
* | | | Async macro fixes. Added waitFor.Dominik Picheta2014-08-291-7/+17
| |_|/ |/| |
* | | Ftpclient module now uses generics.Dominik Picheta2014-08-241-93/+89
| | |
* | | Fixed gcsafe in asynchttpserver module.Dominik Picheta2014-08-211-2/+3
| | |
* | | Merge pull request #1495 from barcharcraz/fix1491Andreas Rumpf2014-08-201-11/+17
|\ \ \ | | | | | | | | fixed #1491
| * | | fixed #1491Charlie Barto2014-08-191-11/+17
| | | |
* | | | Implements `or` and `and` for futures. Ref #1487.Dominik Picheta2014-08-191-0/+21
|/ / /
* | | fixes #1445Araq2014-08-191-4/+0
| | |
* | | Export `==` from net module for TPort.Dominik Picheta2014-08-171-1/+1
| | |
* | | Merge branch 'devel' of github.com:Araq/Nimrod into develDominik Picheta2014-08-171-5/+29
|\ \ \
| * \ \ Merge pull request #1461 from Varriount/os/add-hiddenFileAndreas Rumpf2014-08-171-5/+29
| |\ \ \ | | | | | | | | | | Add isHidden procedure to os.nim
| | * | | Made the code actually work, updated the docstring to point out that the ↵Clay Sweetser2014-08-101-9/+15
| | | | | | | | | | | | | | | | | | | | given file path must exist *and* be accessible from the current working directory of the running program.
| | * | | Make device and file ID's public.Clay Sweetser2014-08-061-4/+22
| | | | | | | | | | | | | | | | | | | | Added the isHidden() proc
* | | | | Remove irc module. Ref #1486.Dominik Picheta2014-08-171-503/+0
|/ / / /
* | | | Make times module compile with javascript backenddef2014-08-161-38/+38
| | | |
* | | | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-141-3/+2
|\ \ \ \
| * | | | Fixes #1158.Dominik Picheta2014-08-141-3/+2
| | | | |
* | | | | some minor fixesAraq2014-08-141-1/+1
|/ / / /
* | | | fixes #1450Araq2014-08-141-1/+1
| | | |
* | | | fixes #1472Araq2014-08-141-9/+0
| | | |
* | | | fixes newly introduced bugsAraq2014-08-141-1/+1
| | | |
* | | | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-143-323/+12
|\ \ \ \
| * \ \ \ Merge pull request #1351 from def-/random-openarraysDominik Picheta2014-08-131-1/+6
| |\ \ \ \ | | | | | | | | | | | | Add random() for openarrays
| | * | | | Add random() for openarraysdef2014-07-121-1/+6
| | | | | |
| * | | | | Removed zmq wrapper.Dominik Picheta2014-08-131-322/+0
| | | | | |
| * | | | | Merge pull request #1400 from rbehrends/fix-stackscanAndreas Rumpf2014-08-131-0/+6
| |\ \ \ \ \ | | | | | | | | | | | | | | More robust implementation for finding the beginning of the stack.
| | * | | | | More robust implementation for finding the beginning of the stack.Reimer Behrends2014-07-231-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch inserts an extra stack frame above the function that calls the actual Nimrod code and ensures that a reference to this frame is stored as the stack bottom.
* | | | | | | fixes #1475Araq2014-08-131-2/+2
|/ / / / / /
* | | | | | fixes #1413Araq2014-08-131-1/+19
| | | | | |
* | | | | | fixes #820Araq2014-08-131-208/+0
| | | | | |
* | | | | | asynchttpserver compiles again; made some tests greenAraq2014-08-131-11/+13
| | | | | |
* | | | | | Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-123-2/+36
|\ \ \ \ \ \