summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade V8 to 2.2.17Ryan Dahl2010-06-1536-237/+2142
|
* Coerce each argument to a String before attempting to print it via sys.printBen Lowery2010-06-151-1/+1
|
* More lint on node_cryptoRyan Dahl2010-06-151-65/+71
|
* Fix a bunch of memory leaks in node_cryptoRyan Dahl2010-06-151-51/+86
|
* Lint node_crypto.ccRyan Dahl2010-06-151-324/+288
|
* Remove unused code from node_cryptoRyan Dahl2010-06-151-322/+0
|
* Soft deprecation of 'listening' event.Ryan Dahl2010-06-1517-65/+51
| | | | Add callback param to listen() instead
* Test case for net.Server.listenFD()Peter Griess2010-06-151-0/+34
|
* Expose the FD numbers for stdin and stderr on process.binding("stdio")isaacs2010-06-141-0/+2
|
* Fix memory leak in hash.update()Ryan Dahl2010-06-141-4/+5
|
* Merge Hash.init() function into JS constructorRyan Dahl2010-06-143-19/+7
|
* Fix: fs.writeFile could not handle utf8Felix Geisendörfer2010-06-142-5/+40
|
* Implement datagram socketsPaul Querna2010-06-124-0/+425
| | | | | | | | | | - Adds new dgram module, for all data-gram type transports - Supports both UDP client and servers - Supports Unix Daemon sockets in DGRAM mode too (think syslog) - Uses a shared Buffer and slices that as needed to be reasonably performant. - One supplied test program so far, test-dgram-pingpong - Passes test cases on osx 10.6 and ubuntu 9.10u
* Fix #169. Expose require members in the repl.isaacs2010-06-111-0/+3
| | | | | This fixes #169 by putting the require members onto the cwdRequire function which is exposed to the repl scope.
* Make addon building work for Cygwin.Brian McKenna2010-06-112-0/+9
|
* Remove "uri" module.isaacs2010-06-112-6/+0
| | | | The deprecation warning was broken, so clearly no one is using this thing.
* Add Orlando to changelogRyan Dahl2010-06-111-1/+1
|
* bump versionv0.1.98Ryan Dahl2010-06-115-5/+22
|
* Upgrade C-Ares to 1.7.3Ryan Dahl2010-06-1167-119/+495
|
* License file maintenance.Ryan Dahl2010-06-111-2/+10
| | | | | - reference to OpenSSL - note about http-parser
* Remove setTimeout from initial example and description.Matt Ranney2010-06-101-14/+14
|
* Improve fs.write testsRyan Dahl2010-06-103-19/+29
|
* Don't use bzeroRyan Dahl2010-06-101-2/+1
|
* The underscores are not meant to emphasize. Escape them.Jérémy Lal2010-06-101-2/+2
|
* Port to cygwinRaffaele Sena2010-06-0912-5/+2616
|
* Upgrade V8 to 2.2.16Ryan Dahl2010-06-0961-313/+1623
|
* Web site example fixes.Matt Ranney2010-06-091-20/+18
|
* Upgrade V8 to 2.2.15Ryan Dahl2010-06-0983-1160/+3446
|
* Add 'type' parameter to net.Server.listenFD()Peter Griess2010-06-081-1/+2
| | | | | | This is needed in case the provided socket is not the default 'tcp4' type (i.e. and needs different read/write/etc methods). With this patch, one can call listenFD(sock, 'unix') to bind to existing UNIX domain sockets.
* Handle ctrl+z from readlineRyan Dahl2010-06-082-0/+16
|
* Add NODE_NO_READLINE check for REPLRyan Dahl2010-06-083-39/+25
| | | | | Setting this environmental variable to a non-zero integer will start all REPL interfaces without readline. For use with rlwrap.
* Use strings instead of buffers in readlineRyan Dahl2010-06-081-63/+43
| | | | For eventual large character support.
* Fix test-replRyan Dahl2010-06-072-22/+25
|
* Support more readline navigation keys.Matt Ranney2010-06-072-36/+72
|
* Do not output \n on stderr on output, breaks testsRyan Dahl2010-06-071-1/+0
|
* node without arguments starts the REPLRyan Dahl2010-06-074-20/+20
|
* Fix misspellingRyan Dahl2010-06-071-1/+1
|
* Add binding to termios, implement readline for replRyan Dahl2010-06-076-69/+426
|
* add net.Server.listenFDPeter Griess2010-06-071-2/+15
| | | | | | | Now that FD passing is in master, it'd be great to be able to use a received socket (which has already had bind(2) and listen(2) called on it) to fire up a new net.Server instance. This patch adds a net.Server.listenFD() method which will start up the accept watcher on the provided FD.
* Upgrade http-parserRyan Dahl2010-06-066-140/+242
|
* Allow ObjectWrap destructors before Wrap()Ryan Dahl2010-06-041-3/+6
|
* More dynamic linking options (again)Ryan Dahl2010-06-042-57/+172
| | | | Original commit: 75f0cf471af3c029290d4bf55c34d1fc470ef600
* Fix options parsingPeter Griess2010-06-041-5/+6
| | | | | | The current node has a bug where it will fail to pass the option argument immediately preceding the first non-option argument to V8. That is the --perf flag will be ignored by V8 when running 'node --perf script.js'.
* Apply fix for V8 bug 728Ryan Dahl2010-06-032-1/+50
|
* Use a less common port in docsRyan Dahl2010-06-032-10/+10
|
* Fix ability to disable TCP timeouts with setTimeout(0)Ryan Dahl2010-06-031-0/+2
|
* Fix: require.async module exception delegationFelix Geisendörfer2010-06-031-15/+13
| | | | | | | | | | | | | | The fs.readFile bug was hiding another bug that was causing this test to pass, even so it was broken: require.async("../fixtures/throws_error1") in test-module-loading.js This patch fixes the original test by running _compile within a try..catch block for _loadScript. _loadScriptSync also had some useless (deprecated?) code for dealing with module entry point exceptions. This code was also removed for greater clarity.
* Fix: fs.readFile would execute callbacks twiceFelix Geisendörfer2010-06-031-1/+3
| | | | | | | | fs.readFile was executing a callback in a try..catch context, which is a problem in itself. To make matters worse, it would re-execute the same callback if there was an execution. This patch fixes both of these problems.
* DOC note stats.isSymbolicLink() is only valid with fs.lstat().rentzsch2010-06-031-1/+1
| | | | ref: <http://github.com/ry/node/issues#issue/153>
* Send and receive file descriptors through net.Stream.Peter Griess2010-06-024-139/+527
| | | | | | | | | | | a) create a layer of indirection in net.Stream to allow swapping in different read/write implementations and b) emit an 'fd' event when file descriptors are received over a UNIX pipe, as finally as a tangential benefit c) remove a bunch of conditionals from the primary codepaths for ease-of-reading.