Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes base64 module | Araq | 2013-08-15 | 1 | -6/+8 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-08-07 | 1 | -2/+14 |
|\ | |||||
| * | sockets.send now throws an exception when a non-blocking socket is | Dominik Picheta | 2013-08-04 | 1 | -2/+14 |
| | | | | | | | | passed to it. | ||||
* | | bugfix createDir for solaris | Araq | 2013-08-07 | 1 | -1/+4 |
|/ | |||||
* | Merge pull request #533 from gradha/pr_helper_procs | Araq | 2013-07-31 | 2 | -4/+87 |
|\ | | | | | Adds some helper procs | ||||
| * | Adds findAll() convenience procs to xmltree. | Grzegorz Adam Hankiewicz | 2013-07-20 | 1 | -0/+37 |
| | | |||||
| * | Notes kind() getter is used to read TXmlNode.k field. | Grzegorz Adam Hankiewicz | 2013-07-19 | 1 | -1/+1 |
| | | |||||
| * | Adds convenience expandTilde proc around getHomeDir. | Grzegorz Adam Hankiewicz | 2013-07-19 | 1 | -0/+24 |
| | | |||||
| * | Adds convenience copyFileWithPermissions to os module. | Grzegorz Adam Hankiewicz | 2013-07-19 | 1 | -3/+25 |
| | | |||||
* | | Fixes OSError deprecation warning. | Dominik Picheta | 2013-07-21 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-07-20 | 6 | -18/+523 |
|\| | |||||
| * | Documents copyFile not copying attributes on posix. | Grzegorz Adam Hankiewicz | 2013-07-16 | 1 | -2/+7 |
| | | |||||
| * | Explains parseHex initialization quirk. | Grzegorz Adam Hankiewicz | 2013-07-16 | 1 | -2/+26 |
| | | |||||
| * | Adds some examples to JoinPath and / procs. | Grzegorz Adam Hankiewicz | 2013-07-16 | 1 | -7/+25 |
| | | |||||
| * | Merge pull request #504 from ventor3000/master | Araq | 2013-07-07 | 2 | -0/+450 |
| |\ | | | | | | | modules poly and numeric added | ||||
| | * | Fixed some minor stuff in module poly | Robert Persson | 2013-07-07 | 1 | -15/+9 |
| | | | | | | | | | | | | | | | Removed the stupid initPolyFromDegree which only served ro re-allocate results. Also fixed some minor stuff with nil return values in roots. | ||||
| | * | Optimized integrate function in module poly | Robert Persson | 2013-07-07 | 1 | -10/+16 |
| | | | | | | | | | | | | | | | Rewrote the integrate function since the old one was quite hacky. The new one is about 7 times faster in release and 3 times faster in debug | ||||
| | * | Optimized divMod in poly | Robert Persson | 2013-07-03 | 1 | -13/+11 |
| | | | | | | | | | | | | | | | Made a huge speed improvement in debug mode. Only a few % in release, but the memory load should be somewhat lower. | ||||
| | * | Fixed a mixed bag of stuff poly and numeric | Robert Persson | 2013-07-03 | 2 | -51/+42 |
| | | | |||||
| | * | Cleanup of poly an numeric modules | Robert Persson | 2013-07-02 | 2 | -63/+0 |
| | | | | | | | | | | | | Removed some test code | ||||
| | * | Added poly and numeric modules | Robert Persson | 2013-07-02 | 2 | -0/+524 |
| | | | |||||
| * | | Extends align proc with default padding parameter. | Grzegorz Adam Hankiewicz | 2013-07-05 | 1 | -6/+14 |
| | | | |||||
| * | | Silences debug echo. | Grzegorz Adam Hankiewicz | 2013-07-04 | 1 | -1/+1 |
| |/ | |||||
* / | refactorings for the eval engine; bugfix: clean templates as accessors | Araq | 2013-07-19 | 1 | -7/+7 |
|/ | |||||
* | made parseBiggestFloat faster for large exponents | Araq | 2013-07-01 | 1 | -3/+12 |
| | |||||
* | --os:standalone works again | Araq | 2013-06-30 | 1 | -9/+9 |
| | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-06-27 | 3 | -148/+147 |
|\ | |||||
| * | Fixed OSError + recvLine deprecation warnings. | Dominik Picheta | 2013-06-27 | 3 | -148/+147 |
| | | |||||
* | | bugfix: rendering of typ|typ2 | Araq | 2013-06-27 | 1 | -1/+1 |
| | | |||||
* | | bugfix: marshal supports unsigned numbers | Araq | 2013-06-27 | 1 | -1/+1 |
| | | |||||
* | | fixes #492 | Araq | 2013-06-27 | 2 | -3/+3 |
|/ | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-06-27 | 6 | -479/+565 |
|\ | |||||
| * | Fixed OSError deprecation warnings. | Dominik Picheta | 2013-06-26 | 2 | -31/+31 |
| | | |||||
| * | Deprecated OSError, and modified it to require an explicit OS error code. | Dominik Picheta | 2013-06-25 | 4 | -125/+195 |
| | | | | | | | | The deprecated functions include the OSError and OSErrorMsg, the name did not change however the signature of the new functions did. They now require a TOSErrorCode value be passed to them. This value can be retrieved using OSLastError. The reason this was done is because on Windows any win api call can reset the last error code to 0, this change allows the user to immediately grab the error code and worry about the string representation later if needs be. | ||||
| * | Fixed terminal module so that it doesn't raise an EOS exception when stdout ↵ | Dominik Picheta | 2013-06-22 | 1 | -334/+332 |
| | | | | | | | | is redirected. | ||||
| * | Symlinks are now expanded in os.getAppFilename on Mac OS X. | Dominik Picheta | 2013-06-22 | 1 | -0/+5 |
| | | |||||
| * | Send buffer will be respected now when closing async SCGI clients. | Dominik Picheta | 2013-06-21 | 1 | -3/+12 |
| | | |||||
| * | Added an asyncio.isSendDataBuffered procedure. | Dominik Picheta | 2013-06-21 | 1 | -0/+4 |
| | | |||||
* | | fixed a long standing xml parser bug; html parser bugfixes + speed improvements | Araq | 2013-06-27 | 3 | -73/+242 |
|/ | |||||
* | made tests green | Araq | 2013-06-10 | 1 | -1/+1 |
| | |||||
* | implemented large parts of the 'not nil' checking | Araq | 2013-06-09 | 1 | -18/+18 |
| | |||||
* | fixes #456 | Araq | 2013-06-04 | 1 | -9/+10 |
| | |||||
* | manyloc test should be green again | Araq | 2013-06-04 | 1 | -1/+0 |
| | |||||
* | more accurate effects for times.nim; bugfix for the JS codegen | Araq | 2013-05-31 | 1 | -51/+53 |
| | |||||
* | rename json.existsKey to hasKey, deprecates existsKey | Billingsly Wetherfordshire | 2013-05-27 | 1 | -1/+3 |
| | |||||
* | Fixed overflow in sockets.parseIP4. | Dominik Picheta | 2013-05-24 | 1 | -2/+5 |
| | |||||
* | browsers.nim compiles again on Windows | Araq | 2013-05-20 | 1 | -4/+2 |
| | |||||
* | no wrapBinary for 'useWinAnsi' target | Araq | 2013-05-20 | 1 | -6/+5 |
| | |||||
* | memfiles compiles again on windows | Araq | 2013-05-20 | 1 | -3/+1 |
| | |||||
* | GC'ed wide strings for windows | Araq | 2013-05-20 | 2 | -57/+26 |
| |