Ryan Dahl
653bf580bf
Merge branch 'develop' into net2
Conflicts:
src/node.cc
15 years ago
Jonas Pfenniger
971f43d63b
FIX: Promise timeout should not addErrback
Because now, we expect the exception to be thrown if no errback
is given, we can't let timeout() add an errback silently.
15 years ago
Jonas Pfenniger
87d92f619a
FIX: EventEmitter call in Promise
15 years ago
Jonas Pfenniger
7f652b63a9
Factorized deprecation messages
15 years ago
Ryan Dahl
fe48b5faa4
Fix author in ChangeLog
15 years ago
Ryan Dahl
da00413196
bump version
15 years ago
Ryan Dahl
f88d39de74
getmem() for solaris
15 years ago
Ryan Dahl
faefb3f5a4
test-http-eof-on-connect missing require('./common')
15 years ago
Ryan Dahl
152d956deb
Remove -Werror from V8
15 years ago
Felix Geisendörfer
b57d7d9b4e
Treat 'typeof Error' promise errors properly
Instead of JSON encoding them, just rethrow promise errors since that
produces much cleaner error messages.
15 years ago
Ryan Dahl
0c1255453e
Initial Solaris support
15 years ago
Ryan Dahl
e60d653a58
Upgrade V8 to 2.0.6.1
15 years ago
Felix Geisendörfer
bfd3144861
Make unhandled Promise errors throw an exception
A promise will throw an exception unless an error handler is attached in the
same "tick" that the error is emitted. This is to avoid silent promise
failures.
15 years ago
Felix Geisendörfer
f64371fccb
Support late callback binding for Promises
Listeners attached with addCallback / addErrback will now be executed
right away if the promise has already fired.
15 years ago
Felix Geisendörfer
d9dc2e0709
Fixed misnamed Promise property
15 years ago
Felix Geisendörfer
f2274840a9
Removed Promise.cancel()
The current implementation was bad and nobody is using it. Has a chance
of getting re-implemented by somebody who has an actual need for it.
15 years ago
Michaeljohn Clement
4e16e386fe
set default encoding in sendBody
15 years ago
Micheil Smith
6e3d12f617
Allow optional params to setTimeout, setInterval
15 years ago
Ryan Dahl
8abeffa9ea
Add process.nextTick()
This is a replacement for the common hack:
setTimeout(cb, 0);
It's much more efficient.
15 years ago
Ryan Dahl
aeb7d6d168
Add process.IdleWatcher
With priorities. Will be used for process.nextLoop().
15 years ago
Joseph Pecoraro
820ca71a91
Updated out of date LICENSE file.
15 years ago
Joseph Pecoraro
fd183bdb07
Fixed typo in comments.
15 years ago
Ryan Dahl
70293a43c9
API: Move Promise and EventEmitter into 'events' module
15 years ago
Ryan Dahl
8e6dd52683
Hack to display more useful SyntaxError exceptions.
For some reason v8 doesn't include the frame with the syntax error in the
stack trace - so have to special case it.
15 years ago
Vanilla Hsu
6c5c808569
use SUN_LEN to calculate length of unix address @ FreeBSD.
15 years ago
Ryan Dahl
df59f06734
recvMsg shouldn't return array for efficiency.
15 years ago
Ryan Dahl
02e52ef8e9
Merge branch 'master' into net2
15 years ago
Ryan Dahl
c4397b801a
Make sure GNUTLS is first on uselib
Why? Because I have two versions of GnuTLS installed - one is old 2.0.X in
/usr and one is new 2.5.X in ~/local/gnutls. waf correctly finds that the
newer version, but because GNUTLS was behind other libraries in the
node.uselib -L/usr/lib was before -L/home/ryan/local/gnutls/lib in the
actual gcc command - hence getting link errors. WAF SUCKS, really.
I wish someone would invent a good build system that could avoid such
problems.
15 years ago
Ben Williamson
a3631a383b
Added regression test for issue #44
15 years ago
Ryan Dahl
f379b77735
Error out when no compiler found
15 years ago
Ryan Dahl
8e0dad4a27
Update http benchmark script to new url api.
15 years ago
Ryan Dahl
1b2c57907d
Lazy initialize symbols for HTTP.
15 years ago
Ben Williamson
bba23c0998
Fix issue #44 , eof on connect to http.
eof_symbol wasn't initialized until the first packet arrived.
In this case no packets arrive before the client closes the socket - eof.
15 years ago
Ryan Dahl
39ca93549a
bump version
15 years ago
Ryan Dahl
c9e21435c0
Upgrade http-parser
15 years ago
David Sklar
a876df6c71
Initial take on passing FDs between processes
15 years ago
isaacs
b3349eb33a
Documentation for path module changes.
15 years ago
isaacs
988174a629
Add tests for path module.
15 years ago
isaacs
b21056d63a
Rename path.filename() to path.basename()
Also make normalizeArray a bit more proper wrt handling dots when keepBlanks
is enabled. Fix indentation.
15 years ago
Benjamin Thomas
73266cb486
Added extname function to path module that returns the extension.
15 years ago
Ryan Dahl
53413598b6
Fix another problem with the EIO interface
Should call eio_poll() when given a done_poll signal as well.
Bug report and test case by Kris Zyp <kriszyp@gmail.com>
15 years ago
Ryan Dahl
75e6c39733
Upgrade http-parser
Fixes \n problem that psanford <pms.mail@gmail.com> reported.
15 years ago
Vanilla Hsu
d22952bfe0
getmem for freebsd
15 years ago
Ryan Dahl
1b9eaf43f5
Update node-waf version to 1.5.10 - to match tools/wafadmin
15 years ago
Benjamin Thomas
947c577c0d
Fix bug in the url module's url_parse method if 'parseQueryString' is true
15 years ago
Ryan Dahl
b1e126f415
libeio bugfix part 4
Oops. Last commit broke a few tests. Should work now!
15 years ago
Ryan Dahl
f80cc69c23
libeio bugfix part 3
Finally (hopefully) fix the issue that Felix reported. It's only appearing
on macintosh (test/mjsunit/test-eio-race3.js)
The trick/hack is to call eio_poll() again before reentering the event loop.
Additionally this commit implements a more complex method of calling
eio_poll(), occasionally dropping to an ev_idle watcher.
See also:
3f39772834
http://lists.schmorp.de/pipermail/libev/2010q1/000855.html
http://groups.google.com/group/nodejs/browse_thread/thread/9f8db11c792a68bb/a89705f68971f53c
15 years ago
Ryan Dahl
3f39772834
libeio bugfix part 2
Reverts the change to deps/libeio/eio.c added in
04dd2d51be
It wasn't a bug, I was just using eio incorrectly.
See http://lists.schmorp.de/pipermail/libev/2010q1/000855.html
15 years ago
Felix Geisendörfer
d9085ea0cb
Updated docs for multipart errors
15 years ago
Felix Geisendörfer
7d947f8723
Clean up multipart test case
15 years ago