Felix Geisendörfer
b02b54e003
Fix: Module cache did not propagate
This patch makes sure nested modules are available in their parents
cache. The module simplification broke this behavior.
See:
http://groups.google.com/group/nodejs/browse_thread/thread/e875132469547d2
b73f61a137
15 years ago
Ryan Dahl
dc01587c6c
Merge branch 'master' into net2
15 years ago
masuidrive
3337e9da1a
Build system: support spaces in directory names
15 years ago
Michael Stillwell
9f6f19df1b
Add test: modifying event listeners during callback.
15 years ago
Ryan Dahl
3eaaaffadb
Ignore EAGAIN in stderr dumps.
(Going out of the way to be sync)
15 years ago
Ryan Dahl
88b9359284
Fix stderr flushing problem
15 years ago
Ryan Dahl
49de41ef46
bump version
15 years ago
Tim Caswell
3aca908db3
Document the changes to sys.inspect's API.
It now takes an optional showHidden argument that shows hidden/non-enumerable properties of objects.
Also cleanup the lib/sys.js file a bit.
15 years ago
Tim Caswell
e33c66654a
Rewrite sys.inspect to be more reliable and handle crazy edge cases.
15 years ago
isaacs
3adcdfc2e1
A rewrite of multipart library.
1. Support streaming in the simple case. Put huge warnings around the
buffering API.
2. Support nested multipart messages.
3. Support various kinds of multipart messages, including all the various
absurdities of multipart email messages.
4. Error out on various invalid types of data that might come through.
5. Gracefully several edge cases that occur when the chunk size is smaller
than the boundary length, or cuts into the \r\n, etc.
6. Provide both positive and negative tests.
15 years ago
Ryan Dahl
4234ac53e2
Use Google's jsmin.py so that Node can be used for evil
15 years ago
Ryan Dahl
b6edae5671
Expose errno exception creation
15 years ago
Michael Carter
a38607605c
Add process.setuid(), getuid()
15 years ago
Ryan Dahl
6f92d8f3b0
Add handlescope and flush to process.reallyExit()
15 years ago
Ryan Dahl
ae1fc497bb
Fix stdout flush issue
http://github.com/ry/node/issues#issue/53
15 years ago
Ryan Dahl
a695065305
Add failing test for stdout flush on exit
15 years ago
Ryan Dahl
76c1805c67
Add posix.truncate()
15 years ago
Ryan Dahl
77145ba229
Throw errors from server.listen()
15 years ago
Ryan Dahl
979f5889d5
Optimize: Use callbacks instead of events in net2
15 years ago
Ryan Dahl
d979a7993e
Wrap syscalls with try-catch
15 years ago
Ryan Dahl
263813ae3e
Whitespace for node_net2.cc
15 years ago
Ryan Dahl
8fdb39a4ae
Add errno symbol to error messages
15 years ago
Ryan Dahl
96f42745ff
Merge branch 'master' into net2
15 years ago
Matt Brubeck
1737cdc112
Fix the documentation of dns error handling.
These are actually passed as Error objects, not separate "code" and "message"
parameters.
15 years ago
Ryan Dahl
fe85062046
Bugfix: blocked pumping in stdio coupling
This should fix the test in c05b5d8
by Mikeal Rogers.
15 years ago
Mikeal Rogers
c05b5d8b59
Adding test for bug in stdio.
http://groups.google.com/group/nodejs/browse_thread/thread/10fda8eaf7276642/e5d5147f2b666abd
15 years ago
Felix Geisendörfer
b73f61a137
Simplified module system
createModule got removed as it was unnecessary and caused issues by
doing its own cache checks independent of loadModule. Internal modules
are now the only globally cached modules, all other modules are only
cached by inheriting their parent modules cache.
Credits: Module specific cache and a few other diffs by Blaine Cook
431662d25c
http://romeda.org/blog/2010/01/hot-code-loading-in-nodejs.html
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/1994
15 years ago
Ryan Dahl
e5a41a75b7
Revert "Adding output of Platform information into the test runner"
Broken on at least one platform http://pastie.org/808217
This reverts commit 704f394c66
.
15 years ago
Ryan Dahl
0cfa789cc5
bump version
15 years ago
Ryan Dahl
f3ad635576
Downcase process.ARGV/ENV to process.argv/env
15 years ago
Aaron Heckmann
8f52142116
look for -1 instead of false returned from string.indexOf
15 years ago
Ryan Dahl
173a8c9842
Disable dns and fs-sendfile tests.
15 years ago
Ryan Dahl
0b07f32819
Merge branch 'master' into net2
15 years ago
Ryan Dahl
c7cb4daa25
Upgrade V8 to 2.1.0
15 years ago
Ryan Dahl
1660db6b87
Inline Buffer::HasInstance
15 years ago
Ryan Dahl
c723acc721
Remove some HandleScopes from HTTP
for a %2.5 improvement in hello world HTTP score.
15 years ago
Ryan Dahl
7c9919f810
Remove some unnecessary handlescopes
15 years ago
Ryan Dahl
ce4204a069
Upgrade http-parser
Fixes, among other things, a header overflow attack.
15 years ago
Ryan Dahl
987441283b
Callbacks from process.fs always start with error object
15 years ago
Ryan Dahl
33509bdbe5
eof -> end
15 years ago
Ryan Dahl
4f56d8ae24
Rename Buffer.utf8Length to Buffer.utf8ByteLength
15 years ago
Ryan Dahl
fc025f878a
Remove __wrap__s
15 years ago
Ryan Dahl
9f5643f427
Reorganize the start-up process
- assign 'GLOBAL' (and now 'global') inside src/node.js
- position for eventually allowing replacements to src/node.js for people
like Kris Kowal who want the nice libev and libeio bindings but not
necessarily node's choices of modules or promises.
15 years ago
Jonas Pfenniger
7a755e04a9
Was using the old node object to get the int from the constant.
15 years ago
Micheil Smith
704f394c66
Adding output of Platform information into the test runner
15 years ago
Felix Geisendörfer
ac2abe5b1e
Bugfix: Handle Content-Type headers with charset
Some HTTP clients include a charset parameter in the Content-Type, e.g:
multipart/form-data; charset=utf-8; boundary=0xKhTmLbOuNdArY
This patch makes the multipart parser more forgiving towards unexpected
information included in the Content-Type header.
15 years ago
Ryan Dahl
785531691b
Add buffer.unpack
15 years ago
Ryan Dahl
49451c1dab
Merge branch 'master' into net2
15 years ago
Ryan Dahl
344243db92
Simplify send buffer logic
15 years ago
Ryan Dahl
aadce8e1a9
Optimize, clean up net2 net.js and http2.js
15 years ago