summary refs log tree commit diff stats
path: root/lib/pure
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of github.com:Araq/Nimrod into upstreamZahary Karadjov2013-12-098-38/+102
|\
| * Merge pull request #702 from zielmicha/masterAndreas Rumpf2013-12-071-8/+43
| |\ | | | | | | Make quoteIfContainsWhite quote argument, so it can be safely passed to shell.
| | * Make quoteIfContainsWhite quote argument, so it can be safely passed to shell.Michał Zieliński2013-12-071-8/+43
| | | | | | | | | | | | | | | | | | | | | | | | On Windows put it in double quotes and escape double quotes using backslash. On Posix put it in single quotes and escape single quotes using '"'"'. This commit changes what quoteIfContainsWhite does, but before that change it was used incorrectly all over standard library, which caused security issues.
| * | Merge pull request #695 from gradha/pr_adds_htmlparser_exampleGrzegorz Adam Hankiewicz2013-12-021-1/+27
| |\ \ | | | | | | | | Adds an example to htmlparser showing how to save changes.
| | * | Adds an example to htmlparser showing how to save changes.Grzegorz Adam Hankiewicz2013-11-301-1/+27
| | |/
| * / Makes htmlparser handle whitespace. Refs #694.Grzegorz Adam Hankiewicz2013-12-021-1/+1
| |/ | | | | | | | | | | | | Without the flag, htmlparser will ignore some significant whitespace in HTML files. A more correct fix would be to not reuse the xml parser since the rules for HTML are slightly different, but this will do for the moment.
| * updated fsmonitor moduleAraq2013-11-301-5/+5
| |
| * garbage-in-garbage-out principle for unicode errors; fixes #674Araq2013-11-191-15/+15
| |
| * bugfix: '$' for TPortAraq2013-11-191-2/+1
| |
| * Merge pull request #677 from gradha/pr_fixes_times_calculationAndreas Rumpf2013-11-191-1/+2
| |\ | | | | | | Fixes times.toSeconds to handle hours and minutes correctly.
| | * Fixes times.toSeconds to handle hours and minutes correctly.Grzegorz Adam Hankiewicz2013-11-171-1/+2
| | |
| * | Fixed http header parsing issueErik O'Leary2013-11-151-2/+3
| | | | | | | | | | | | | | | | | | | | | If second half of http header line was empty, server would crash with EInvalidIndex https://gist.github.com/onionhammer/7487452
| * | Added timestamp to TIRCEventErik O'Leary2013-11-131-3/+5
| |/
* | progress towards adding negative type classesZahary Karadjov2013-12-091-2/+4
| | | | | | | | | | | | [unittest bugfixes] the block form of check now allows comments errors when inspecting the arguments of var-accepting procs
* | adding some provisions for writing lower-level unit tests targeting specific ↵Zahary Karadjov2013-12-071-2/+6
|/ | | | | | | | sub-systems of the compiler see sigmatch as an example. tests are compiled only when the compiler is compiled with -d:selftest to execute them, just run the resulting binary without arguments
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-10-3110-189/+1019
|\
| * Merge pull request #631 from mflamer/masterAndreas Rumpf2013-10-313-0/+661
| |\ | | | | | | LockFree Hash Table 0.1
| | * Mersenne twister random number generatorMark Flamer2013-10-221-0/+39
| | |
| | * LockFree Hash Table 0.1Mark Flamer2013-10-222-0/+622
| | |
| * | Merge pull request #646 from onionhammer/patch-1Andreas Rumpf2013-10-301-116/+126
| |\ \ | | | | | | | | Added base64 encode overload for arrays of integers/bytes
| | * | Added base64 encode overload for arrays of integers/bytesonionhammer2013-10-301-116/+126
| | | |
| * | | Implemented boolean socket options.Dominik Picheta2013-10-303-4/+47
| | | | | | | | | | | | | | | | Added reuseAddr for httpserver and scgi.
| * | | TPort is now uint16 and other small sockets fixes.Dominik Picheta2013-10-301-12/+19
| |/ /
| * | Merge pull request #625 from Varriount/sequences/add-ranged-insertions-deletionsAndreas Rumpf2013-10-271-0/+69
| |\ \ | | | | | | | | Added insertion and deletion functions that accept a range.
| | * | Apply changes suggested by AraqVarriount2013-10-271-2/+21
| | | | | | | | | | | | Added documentation examples, added defaults
| | * | Added an insertion function that inserts elements of an openarray.Clay Sweetser2013-10-201-0/+50
| | | | | | | | | | | | | | | | Added a deletion function that allows elements between two positions in a sequence to be deleted
| * | | Fixes execProcesses wait order. Refs #379.Grzegorz Adam Hankiewicz2013-10-271-1/+1
| | | | | | | | | | | | | | | | | | | | Closing the stream of the process might terminate it too early for waitForExit to gather any useful results.
| * | | Fixed breaking changes introduced by the last commit.Dominik Picheta2013-10-241-1/+1
| | | |
| * | | Fixed asyncio crash when sending buffered data after connection was terminated.Dominik Picheta2013-10-241-9/+14
| | | |
| * | | Fixed socket compilation problems on Windows.Dominik Picheta2013-10-231-2/+2
| | | |
| * | | Made TSocketHandle distinct and fixed problems it caused for SSL.Dominik Picheta2013-10-231-5/+16
| |/ /
| * | Merge pull request #622 from rbehrends/masterAndreas Rumpf2013-10-151-34/+58
| |\ \ | | | | | | | | Exposed process file handles in osproc module.
| | * | Exposed process file handles in osproc module.Reimer Behrends2013-10-121-34/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The file handles of a PProcess instance can now be accessed through the inputHandle(), outputHandle(), and errorHandle() methods. Also tidied up documentation for stream accessor procs a bit.
| * | | Added a TSocketHandle type to winlean.nim and posix.nimClay Sweetser2013-10-152-8/+8
| |/ / | | | | | | | | | Edited sockets.nim and asyncio.nim to use the new TSocketHandle type.
* / / added $ for oidsAraq2013-10-311-1/+5
|/ /
* | Fixed async send in ftpclient module.Dominik Picheta2013-10-111-1/+2
| |
* | some fixes for win64Araq2013-10-101-2/+2
| |
* | Fixes problems parsing XML docs with multiple PIs.Dominik Picheta2013-10-071-1/+1
| |
* | Fixed small typobug in basic 3dRobert Persson2013-10-021-1/+1
| |
* | first version of the debug GC; doesn't work yetAraq2013-10-011-2/+2
| |
* | bugfix: typos in os.nimAraq2013-09-241-3/+3
| |
* | changed parentDir to return the empty string on errorAraq2013-09-241-16/+20
| |
* | Merge pull request #548 from ventor3000/masterAraq2013-09-102-0/+1895
|\ \ | |/ |/| Added basic2d module
| * Forgot publicity star on symbolventor30002013-07-311-1/+1
| |
| * Some minor fixesventor30002013-07-302-40/+59
| | | | | | | | | | | | Fixed som wrong spellings in cooments, reordering some arguments to be mor uniform, and fixed a small bug in isUniform for 3d matrix.
| * Some doc. fixesventor30002013-07-282-11/+13
| |
| * basic3d module and some fixes in basic2dventor30002013-07-272-67/+1094
| | | | | | | | | | Added the basic3d module. Standard 3d maths but still reimplemented evrywhere.
| * Fixed stupid mistake when clamping acosventor30002013-07-261-3/+3
| |
| * Some minor changesventor30002013-07-261-34/+31
| |
| * Added file headerventor30002013-07-251-1/+10
| |