Zoka
fbef11b679
Use InstanceTemplate() instead of PrototypeTemplate() for accessor methods
...
This fixes crash that used to happen when Eclipse debugging session hits the
breakpoint that is set either in timer or connection callback.
2010-02-16 09:04:19 -08:00
Felix Geisendörfer
490cac0d7e
Fix Promise.wait() for fired promises
...
Failure introduced in 80ace36e4c
2010-02-15 17:24:07 -08:00
Jonas Pfenniger
80ace36e4c
Added failing test: promise.wait() after promise.emitXXX()
2010-02-15 17:22:13 -08:00
Ryan Dahl
95fd370096
Remove unused variable
2010-02-15 17:15:40 -08:00
Yuichiro MASUI
1793ee1c80
Fixed: promise late chain
2010-02-15 17:12:40 -08:00
Mark Hansen
98e61db216
sys.inspect(Date) now shows the date value
2010-02-15 17:08:22 -08:00
visionmedia
9c6263bff8
Added multiple arg support for sys.puts(), print(), etc.
2010-02-12 10:43:07 -08:00
Ryan Dahl
b82ef28d9d
Rename 'posix' module to 'fs'
2010-02-12 01:04:14 -08:00
Ryan Dahl
896cef23c4
Add process.startTime
2010-02-12 00:47:35 -08:00
Ryan Dahl
bc17d94a0a
API: tcp events 'receive' to 'data', 'eof' to 'end'
...
No deprecation messages. Not sure how...
2010-02-12 00:25:19 -08:00
Ryan Dahl
7d428a7741
s/tinyclouds.org/nodejs.org/
2010-02-12 00:08:26 -08:00
Ryan Dahl
b20c343a7a
Fix whitespace and warnings in node.cc
2010-02-11 21:55:08 -08:00
Felix Geisendörfer
211e82e8d9
Simple test case for require.async()
...
This is to make sure this doesn't break after implementing the new
truly sync require() function.
2010-02-11 21:45:03 -08:00
Felix Geisendörfer
6c94b8e4e4
Implemented posix.catSync()
2010-02-11 21:11:16 -08:00
Ryan Dahl
1b42276851
Small clean up to test-timers.js
2010-02-11 15:51:46 -08:00
Ryan Dahl
cd41e30bcc
Return chunk & bytes read for posix.readSync()
2010-02-11 15:17:32 -08:00
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
2010-02-11 11:23:19 -08:00
masuidrive
3337e9da1a
Build system: support spaces in directory names
2010-02-10 07:42:16 -08:00
Michael Stillwell
9f6f19df1b
Add test: modifying event listeners during callback.
2010-02-09 14:47:37 -08:00
Ryan Dahl
3eaaaffadb
Ignore EAGAIN in stderr dumps.
...
(Going out of the way to be sync)
2010-02-09 14:45:14 -08:00
Ryan Dahl
88b9359284
Fix stderr flushing problem
2010-02-09 14:11:58 -08:00
Ryan Dahl
49de41ef46
bump version
2010-02-09 13:20:20 -08:00
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.
2010-02-09 09:20:15 -08:00
Tim Caswell
e33c66654a
Rewrite sys.inspect to be more reliable and handle crazy edge cases.
2010-02-09 08:57:38 -08:00
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.
2010-02-08 14:03:06 -08:00
Ryan Dahl
4234ac53e2
Use Google's jsmin.py so that Node can be used for evil
2010-02-08 13:52:13 -08:00
Michael Carter
a38607605c
Add process.setuid(), getuid()
2010-02-07 22:13:10 -08:00
Ryan Dahl
6f92d8f3b0
Add handlescope and flush to process.reallyExit()
2010-02-07 21:59:56 -08:00
Ryan Dahl
ae1fc497bb
Fix stdout flush issue
...
http://github.com/ry/node/issues#issue/53
2010-02-07 21:56:36 -08:00
Ryan Dahl
a695065305
Add failing test for stdout flush on exit
2010-02-07 18:05:58 -08:00
Ryan Dahl
76c1805c67
Add posix.truncate()
2010-02-07 17:18:28 -08:00
Ryan Dahl
77145ba229
Throw errors from server.listen()
2010-02-07 16:51:20 -08:00
Matt Brubeck
1737cdc112
Fix the documentation of dns error handling.
...
These are actually passed as Error objects, not separate "code" and "message"
parameters.
2010-02-05 18:23:32 -08:00
Ryan Dahl
fe85062046
Bugfix: blocked pumping in stdio coupling
...
This should fix the test in c05b5d8
by Mikeal Rogers.
2010-02-05 17:14:14 -08:00
Mikeal Rogers
c05b5d8b59
Adding test for bug in stdio.
...
http://groups.google.com/group/nodejs/browse_thread/thread/10fda8eaf7276642/e5d5147f2b666abd
2010-02-05 10:58:00 -08:00
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
2010-02-04 14:08:39 -08:00
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
.
2010-02-03 12:57:05 -08:00
Ryan Dahl
0cfa789cc5
bump version
2010-02-03 12:20:27 -08:00
Ryan Dahl
f3ad635576
Downcase process.ARGV/ENV to process.argv/env
2010-02-03 12:19:21 -08:00
Aaron Heckmann
8f52142116
look for -1 instead of false returned from string.indexOf
2010-02-03 10:13:15 -08:00
Ryan Dahl
173a8c9842
Disable dns and fs-sendfile tests.
2010-02-03 10:05:24 -08:00
Ryan Dahl
c7cb4daa25
Upgrade V8 to 2.1.0
2010-02-03 09:07:02 -08:00
Ryan Dahl
c723acc721
Remove some HandleScopes from HTTP
...
for a %2.5 improvement in hello world HTTP score.
2010-02-02 18:45:18 -08:00
Ryan Dahl
ce4204a069
Upgrade http-parser
...
Fixes, among other things, a header overflow attack.
2010-02-02 16:40:59 -08:00
Ryan Dahl
987441283b
Callbacks from process.fs always start with error object
2010-02-02 11:04:59 -08:00
Ryan Dahl
fc025f878a
Remove __wrap__s
2010-01-31 11:13:30 -08:00
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.
2010-01-30 23:22:34 -08:00
Jonas Pfenniger
7a755e04a9
Was using the old node object to get the int from the constant.
2010-01-30 20:58:24 -08:00
Micheil Smith
704f394c66
Adding output of Platform information into the test runner
2010-01-29 23:46:56 -08:00
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.
2010-01-29 18:04:48 -08:00