Bert Belder
78487b6256
Windows/cygwin: no more GetConsoleTitleW errors on XP
14 years ago
koichik
691497babe
Doc improvements
corresponds to #1374 and #1334 .
14 years ago
Trent Mick
bbf7e8ed5e
http: fix setting ServerResponse.statusCode in writeHead
Fixes #1374 .
14 years ago
Ryan Dahl
effc4469d0
Now working on v0.4.11
14 years ago
Ryan Dahl
1b8dd65d6e
Bump version to v0.4.10
14 years ago
isaacs
ddfc6b78cc
Close #1360 url: Allow _ in hostnames.
14 years ago
Reid Burke
973153d1cc
Properly respond to HEAD during end(body) hot path
During write(), _hasBody is checked to make sure a body
is allowed -- this is now also checked during end(body)
when write() isn't used.
Concise final chunk for HEAD req's res.end(data).
Instead of simply clearing data, check _hasBody
earlier to avoid sending cruft when chunkedEncoding
is used.
Fixes #1291 .
14 years ago
Ben Noordhuis
9f9a4cb928
Fix Math.pow crashes on machines without SSE2.
This is a back-port of r8577 from V8's upstream 3.1 branch.
Fixes #829 .
14 years ago
koichik
e8bc80cf15
Doc improvements
Fixes #1334 .
14 years ago
Wojciech Wnętrzak
9a16f1c7d0
added information about relative paths in File System module
14 years ago
koichik
8caf7fdb05
Add tests for #1085 and #1304
Fixes #1327 .
14 years ago
Stefan Rusu
5b02d564c3
Fixes #1085 . The agent end event may call detachSocket() after the socket is detached and destroyed by abort(). This patch avoids that behavior.
14 years ago
Stefan Rusu
901ebed8ff
Fixes #1304 . The Connection instance may be destroyed by abort() when process.nextTick is executed.
14 years ago
Kip Gebhardt
7097eca5a7
Adding documentation for 'agent' option in http.request().
Fixes #1243 .
14 years ago
koichik
5208abe723
Fix Buffer drops last null character in UTF-8
Reproduce:
$ node
> buf = new Buffer('\0')
<Buffer >
> buf.length
0
> buf = new Buffer(1)
<Buffer 28>
> buf.write('\0')
0
Fixes #394 .
Fixes #1210 .
14 years ago
koichik
5f97c9a005
Improvements AssertionError message
Fixes #217 .
14 years ago
koichik
128d1bab2a
The Node.JS website should link to whichever ChangeLog will be updated soonest.
Fixes #1316 .
14 years ago
koichik
701ae3c995
Document error in console.timeEnd
Fixes #1109 .
14 years ago
AJ ONeal
8cc9ac0df2
added explanation of `exports`
Fixes #1075 .
14 years ago
koichik
d05afa50e6
Doc improvements
Fixes #297 .
14 years ago
Ryan Dahl
6bcd96c253
Update favicon
14 years ago
Ryan Dahl
360f4b78dd
Fix wallpaper links
14 years ago
Ryan Dahl
b1c90a4e22
logo update
14 years ago
koichik
7e8735b3fe
Doc improvements. Explained the flags of fs.open().
Fixes #1268 .
14 years ago
koichik
87b6dc21c8
Doc improvements
moved 'continue' event from http.Agent to http.ClientRequest.
added 'close' event to http.ClientResponse.
added 'open' event to fs.ReadStream.
Fixes #1169 .
14 years ago
isaacs
fc80ee947a
docs for chown/chmod
14 years ago
Ben Noordhuis
b62ecdc5bb
Revert 3e2a2a7
. Always send a HTTP/1.1 status line to the client.
14 years ago
Ryan Dahl
073fbea0f5
Bring back execScript
Undoing
http://codereview.chromium.org/7060008
https://groups.google.com/forum/#!topic/v8-dev/JTRHrPHFBts
14 years ago
Yoshihiro Kikuchi
82cfdb88fa
fix an broken question.
Fixes #1274 .
14 years ago
Alex Xu
1c174cc1aa
Typo: stout -> stdout
Closes #874
14 years ago
Ben Noordhuis
3e2a2a76fd
Test cases for #1234 : don't send HTTP/1.1 responses to HTTP/1.0 clients.
14 years ago
Ben Noordhuis
f91988979f
Don't send a HTTP/1.1 status line to HTTP/1.0 clients.
Fixes #1234 .
14 years ago
Ben Noordhuis
c6846565cf
Clean up temporary file on exit.
Unbreaks test/simple/test-http-get-pipeline-problem.js,
it assumed a fixed number of files in the tmp directory.
14 years ago
Joe Shaw
7962eeef22
Fix a misnamed argument; multicastAddress -> multicastInterface. Closes #1237 .
14 years ago
Jörn Horstmann
8cecc50b9d
Fixed a typo in a comment: "realpatch" -> "realpath"
14 years ago
Mariano Iglesias
075605f304
Adding missing v8 namespace to NODE_PSYMBOL
14 years ago
Brett Kiefer
220e2281e4
Fix issue 915 (Failed to find kqueue on FreeBSD) with the relevant portion of a patch submitted to node.js dev ( http://groups.google.com/group/nodejs-dev/browse_thread/thread/3aaf7fe2ca390fdc ) by Davie Siegel. The issue is that event.h requires types.h on FreeBSD. This rearranges some of the logic but looks like it should still be valid for Darwin.
14 years ago
koichik
38a0145869
Fix doctool uses RegExp object as a Function
RegExp object is no longer Function.
http://code.google.com/p/v8/issues/detail?id=617
Fixes #1262 .
14 years ago
koichik
432d54900e
Remove duplicate section in modules.markdown
Fixes #1263
14 years ago
Ryan Dahl
efca5456b8
Fixes #877 . Don't wait for socket pool to establish connections.
Thanks to Yann Biancheri for putting together an initial test.
14 years ago
Ryan Dahl
f78f654131
Revert "debugger: don't allow users to input non-valid commands"
breaks 'print' command
This reverts commit 37d529f818
.
14 years ago
Yoshihiro KIKUCHI
99b210d7ea
tiny fixes in tty_posix.js
Close #1158
Close #1160
Close #1252
14 years ago
Ryan Dahl
e286480e34
Now working on v0.4.10
14 years ago
Ryan Dahl
de44eafd78
Bump to v0.4.9
14 years ago
Ryan Dahl
1e7769dfa3
Merge branch 'v8-3.1' into v0.4
14 years ago
Ryan Dahl
61553ccdda
Upgrade V8 to 3.1.8.25
14 years ago
koichik
d6ec8f668e
Fix -e/--eval can't load module from node_modules
With -e or --eval, require() can load module using relative path.
node -e 'require("./foo")'
But it can't load module from node_modules directory.
node -e 'require("foo")'
Fixes #1196 .
14 years ago
Ryan Dahl
d627083ed5
Fixes #1187 . Support multiple 'link' headers
14 years ago
Ryan Dahl
feb26d6c74
Fixes #1203 . Add missing scope.Close to fs.sendfileSync
14 years ago
Mark Cavage
7c51275bce
Cleanup crypto verify to not print unnecessary errors
14 years ago