Ben Noordhuis
ed44098cf6
build: fix SYS_clock_gettime feature check
execute=True makes it fail while cross-compiling.
Fixes #1541 .
13 years ago
Ryan Dahl
b31d5ac639
Update website address in Makefile
13 years ago
Ryan Dahl
cfe0f4226b
Now working on v0.4.13
13 years ago
Ryan Dahl
771ba34ca7
Bump version to v0.4.12
13 years ago
Ryan Dahl
6312e889b1
Drain OpenSSL error queue? Addresses #1719
13 years ago
isaacs
e06ce7562c
Fix #1707 hasOwnProperty usage
If hasOwnProperty is overridden, then calling `obj.hasOwnProperty(prop)`
can fail. Any time a dictionary of user-generated items is built, we
cannot rely on hasOwnProperty being safe, so must call it from the
Object.prototype explicitly.
13 years ago
isaacs
b3af074a02
Add querystring test for hasOwnProperty usage
13 years ago
isaacs
98990b9779
Fix #1707 hasOwnProperty usage
13 years ago
Ben Noordhuis
5724b54d2e
test: add http multi-line header test
Test case for #1569 . Verify that http_parser parses multi-line headers.
13 years ago
Ben Noordhuis
8b2a3354f9
http_parser: cherry-pick 3258e4a and b89f944 from upstream
Fixes #1569 , parse error on multi-line HTTP headers.
13 years ago
koichik
fdbfc9ceb7
net: Socket write encoding case sensitivity
Fixes #1586 .
14 years ago
koichik
3e853e627e
buffer: write() should always set _charsWritten.
Refs #1633 .
14 years ago
koichik
96ede8cc9b
buffer: Avoid overrun with 'binary' encoding.
Fixes #1624 .
14 years ago
isaacs
ef27d56cc1
Fixes #1610 Remove DigiNotar CA from trusted list
Details:
https://threatpost.com/en_us/blogs/attackers-obtain-valid-cert-google-domains-mozilla-moves-revoke-it-082911
http://www.coriolis-systems.com/blog/2011/08/diginotar-certificate-security.php
14 years ago
Nathan Rajlich
0c91a835ff
util: isRegExp() should not call toString() on its argument
An overloaded toString() method may have side effects
so don't call it for a simple type check.
Back-port of 54b409d
to the v0.4 branch.
14 years ago
Ryan Dahl
827b9c5f1f
net: fix throw error
Thanks Tobi
14 years ago
koichik
509a676128
Doc improvements
14 years ago
Ryan Dahl
ce9caa237f
Fix #1563 . overflow in ChildProcess custom_fd.
Backported from master f5db3f1f85
14 years ago
Maciej Małecki
e150bc4f2b
docs: process.memoryUsage returns memory usage measured in bytes
14 years ago
isaacs
b4712bf1ac
Close #1544 Document slashesDenoteHost flag in url.parse
14 years ago
Ryan Dahl
dc578724b1
Now working on v0.4.12
14 years ago
Ryan Dahl
a745d19ce7
Bump version to v0.4.11
14 years ago
Ryan Dahl
9cd510846e
Fixes #1546 . Remove expensive debug call.
14 years ago
Ben Noordhuis
5e37e10e41
module: fix pointer reference to out-of-scope variable
Reported by Tom Hughes.
14 years ago
Mickaël Delahaye
e8d268fd5f
Fix docs for fs.*chown
Fix bad parameters of fs.chown[Sync], fs.fchown[Sync] and
fs.lchown[Sync] in documentation.
Fixes #1533 .
14 years ago
koichik
4d186f270f
Docs: Not memcpy, but memmove
Fixes #1520 .
14 years ago
Ben Noordhuis
028b33b18a
test: add test for #1202 , uncatchable exception on bad host name
14 years ago
Ben Noordhuis
4e204f37fd
net: defer DNS lookup error events to next tick
net.createConnection() creates a net.Socket object
and immediately calls net.Socket.connect() on it.
There are no event listeners registered yet so
defer the error event to the next tick.
Fixes #1202 .
14 years ago
Ben Noordhuis
e00c2ec5e3
build: remove 1024 char read limit from cmake file
14 years ago
Arnout Kazemier
7ba30a4c2e
Small changes for fs.watchFile. Fixed broken markdown. Changed variable `f` to a proper filename.
Fixes #1507 .
14 years ago
isaacs
3210809d0a
Fix #1497 querystring: Replace 'in' test with 'hasOwnProperty'
14 years ago
koichik
d1a2628499
Doc improvements
related to #1472 .
14 years ago
Christopher Wright
0d8d04e585
Correct code span
Fixes #1489 .
14 years ago
Tom Hughes
421b6e89aa
crypto: fix incorrect ssl shutdown check
14 years ago
Tom Hughes
25118b0a26
net: fix incorrect sizeof()
14 years ago
Ben Noordhuis
fc57df283c
docs: rename readline.md to readline.markdown
14 years ago
Tom Hughes
b267dc458d
cmake: Various fixes.
* Allow overriding install path with CMAKE_INSTALL_PREFIX.
* make sure js2min.py can be found when building out of source.
* Replace empty macros with void(0).
Expressions like "debug(x) && foo()" fail if debug(x) is an empty macro.
* Make sure node-natives.h creation is deterministic.
* Fix version string.
The copyright header made the node_version.h file larger
than the previously set file read limit.
14 years ago
Logan Smyth
3056c2ca76
Add documentation for SecurePair and its 'secure' event.
Fixes #1443 .
14 years ago
koichik
c72223e2a9
Doc improvements
related to #1391 , #1415 .
14 years ago
koichik
8b3ba47f88
Fix http.ClientRequest crashes if end() was called twice
Fixes #1417 .
Fixes #1223 .
14 years ago
Tom Hughes
eab8bebced
Fix memleak in libeio.
14 years ago
Ben Noordhuis
2d65f3c59a
Include "platform.h", not <platform.h> - conflicts with system headers
Fixes #1003 .
14 years ago
koichik
d32971a8cb
Doc improvements and change argument name.
Fixes #1318 .
14 years ago
Ben Noordhuis
deb100fb17
eio: remove trailing comma from enumerations
Fixes compile-time error in strict mode. Fixes #567 .
14 years ago
isaacs
bf0802402d
Note that require.paths is gone in 0.5
Rather than say it "may disappear", let's just be clear that it *has*
disappeared, and exactly how long it'll be supported for.
14 years ago
SAWADA Tadashi
e357acc55b
Fix crypto encryption/decryption with Base64.
Fixes #738 .
Fixes #1205 .
14 years ago
Vicente Jimenez Aguilar
b8e9bf0993
Typos in ChangeLog file.
Fixes #968 .
14 years ago
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