summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* querystring: Removing typecasting of numeric strings to numbersMicheil Smith2010-07-192-8/+9
| | | | | The tests did not accurately test for a strict equality, meaning that the number == to the string.
* querystring.js: JSLint warnings fixedJan Kassens2010-07-191-8/+11
|
* querystring doc fixJan Kassens2010-07-191-1/+1
|
* querystring.stringify is now more solidJan Kassens2010-07-192-30/+21
| | | | | * handles NaN and Infinity * works with arrays from other contexts
* Add todo itemRyan Dahl2010-07-191-0/+3
|
* Fix for issue #214Ryan Dahl2010-07-191-6/+10
|
* added test for Issue #214Benjamin Fritsch2010-07-192-0/+11
|
* Fix style in readlineRyan Dahl2010-07-191-3/+2
|
* Support DEL in the REPL.Jérémy Lal2010-07-181-0/+5
|
* Apple's SUN_LEN is broken, overrideRyan Dahl2010-07-171-6/+5
|
* Set SO_REUSEADDR on all socketsRyan Dahl2010-07-171-0/+2
|
* Upgrade http-parserRyan Dahl2010-07-173-50/+89
|
* Fix solaris buildRyan Dahl2010-07-161-2/+6
|
* bump versionv0.1.101Ryan Dahl2010-07-165-5/+33
|
* fs.writeSync should return bytes writtenRyan Dahl2010-07-162-2/+3
|
* Fix console formatter to recognize json properlyMarco Rogers2010-07-151-1/+1
|
* Upgrade V8 to 2.3.0Ryan Dahl2010-07-1536-423/+1012
|
* added env to child_process.execСергей Крыжановский2010-07-152-7/+40
|
* Fix unix dgram socket address resolution on Linux.Matt Ranney2010-07-151-2/+9
|
* instanceof Buffer to Buffer.isBuffer()Ryan Dahl2010-07-153-7/+11
|
* More instanceof Array fixesRyan Dahl2010-07-151-5/+6
|
* Update TODORyan Dahl2010-07-151-0/+6
|
* Fix test-executable-path.jsRyan Dahl2010-07-151-11/+10
| | | | Now that process.version doesn't say if the build is debug or not.
* Remove race conditions and simplify test-http-exceptions.jsRyan Dahl2010-07-151-57/+13
|
* Adjust tests for error reporting on JSON.parse(undefined)Ryan Dahl2010-07-151-2/+2
| | | | The V8 upgrade changed the stacktrace reports (?)
* Update tests to work with module contextsRyan Dahl2010-07-15141-499/+624
|
* Fix reference to root global contextRyan Dahl2010-07-151-1/+1
|
* Add TODO listRyan Dahl2010-07-151-0/+2
|
* Use Array.isArray instead of instanceofRyan Dahl2010-07-151-2/+2
|
* Add 'root' global variable as reference to sandboxRyan Dahl2010-07-151-0/+2
|
* Load modules in individual contextsRyan Dahl2010-07-154-10/+56
| | | | | | | | | | | Add NODE_MODULE_CONTEXTS env var Only one test was modified to check that this works. NEED to go through all tests and modify them so that NODE_MODULE_CONTEXTS=1 make test passes.
* Datagram socket refactor. Add tests and documentation.Matt Ranney2010-07-158-252/+547
| | | | Support setTTL() and setBroadcast() socket options.
* Buffer.copy() should liberally allow empty copies.Peter Griess2010-07-152-1/+25
|
* Buffer('') should create a 0-length bufferPeter Griess2010-07-151-3/+3
|
* Upgrade V8 to 2.2.24Ryan Dahl2010-07-1481-5752/+6627
|
* Move evals to extension module.Paul Querna2010-07-144-5/+12
|
* Move the Stat structure functions to node_file.ccPaul Querna2010-07-144-92/+98
| | | | from node.cc, so we can convert fs to a module.
* Move Buffer to extension model.Paul Querna2010-07-143-4/+3
|
* Move child process to extension model.Paul Querna2010-07-143-4/+3
|
* Move http parser to extension model.Paul Querna2010-07-143-4/+2
|
* Move signal_watcher to extension model.Paul Querna2010-07-143-4/+3
|
* Move cares to extension modelPaul Querna2010-07-143-5/+3
|
* Move stdio to extension model.Paul Querna2010-07-143-7/+4
|
* Use the top level check for the bindings cachePaul Querna2010-07-141-100/+58
| | | | (rather than each potential module having its own if check)
* Register builtin extensions via a macro, rather than a manual strcmpPaul Querna2010-07-147-27/+83
| | | | | | | | | | | | | | | | | | | | | | | Set the stage for making the builtin modules more dynamic. Note: this only converts crypto and net, I will add more extensions in a later commit. * node.h: Add utility macro for converting macro values to strings. * node.h: Include the actual module name inside the module structure, not just the file it was built from. * node.h: New Macro, NODE_MODULE_DECL, for declaring an external reference to a module structure. * node_extensions.cc: New File, implements get_builtin_module, which iterates over the module structures that are compiled into node. * node.cc(node::Binding): Use the new module lookup function to find modules. * node_{net,crypto}.c: Add NODE_MODULEs to generate the module structure.
* Use execPath for default NODE_PATH, not installPrefixisaacs2010-07-141-1/+1
|
* Update ronnjs (fix rendering of html self-closing tags)Jérémy Lal2010-07-142-17/+19
|
* Update README, remove ref to RonnRyan Dahl2010-07-141-2/+2
|
* Adds "pause" and "resume" events to pump and it's readable argument.Mikeal Rogers2010-07-131-0/+11
|
* fix corner-case bug in ModuleDavid Siegel2010-07-133-1/+18
| | | | and added a test to expose it