Shigeki Ohtsu
8727e5f2be
test: add test of cleartextStream.getCipher() in tls
13 years ago
Shigeki Ohtsu
2cf5f040a5
doc: add cleartextStream.getCipher() in tls
13 years ago
isaacs
e513ffef75
2012.03.22 Version 0.6.14 (stable)
* net: don't crash when queued write fails (Igor Zinkovsky)
* sunos: fix EMFILE on process.memoryUsage() (Bryan Cantrill)
* crypto: fix compile-time error with openssl 0.9.7e (Ben Noordhuis)
* unix: ignore ECONNABORTED errors from accept() (Ben Noordhuis)
* Add UV_ENOSPC and mappings to it (Bert Belder)
* http-parser: Fix response body is not read (koichik)
* Upgrade npm to 1.1.12
- upgrade node-gyp to 0.3.7
- work around AV-locked directories on Windows
- Fix isaacs/npm#2293 Don't try to 'uninstall' /
- Exclude symbolic links from packages.
- Fix isaacs/npm#2275 Spurious 'unresolvable cycle' error.
- Exclude/include dot files as if they were normal files
13 years ago
isaacs
d497bf845b
doc: Remove extraneous index.html's from hyperlinks
13 years ago
isaacs
76f31faa3b
Remove hard-coded version number from docs
13 years ago
Igor Zinkovsky
0dcc43316f
don't crash when queued write fails
13 years ago
ssuda
249c3c165a
Avoiding unnecessary ToString() calls
String::Utf8Value and String::AsciiValue constructors take Handle<Value>
So no need to convert to Handle<String>
13 years ago
isaacs
d227084339
Upgrade libuv to 8409a67
13 years ago
isaacs
a7cd76bb3b
Remove unused fast-list module from npm
13 years ago
isaacs
67f1778065
Upgrade npm to 1.1.12
13 years ago
Shigeki Ohtsu
e1199fa335
tls: fix CryptoStream.setKeepAlive()
13 years ago
Bryan Cantrill
d1255914df
sunos: fix EMFILE on process.memoryUsage()
13 years ago
Lal Jérémy
ef046bf4f6
test: generate 1024-bit keys, pacify openssl 1.0.1
13 years ago
Ben Noordhuis
ea44d3031d
crypto: fix compile-time error with openssl <= 0.9.7e
13 years ago
Nathan Rajlich
feaa8a41c7
cmd: add a -i / --interactive flag to force the REPL
This is the only way to spawn a node child process in REPL mode, and will
also be needed to be able to use the REPL in MinTTY.
13 years ago
isaacs
d2389f8fab
debug repl tests: Add visibility, remove test that times out
The 'Can't backtrace now' message takes over 10 seconds to return.
That's too much time to have to wait for a test, and when it times
out, it was causing an orphaned node process.
This cleans up the node process, and also removes the test that's
timing out, so that the case is hit less often.
Todo: Make the backtrace message come back faster.
13 years ago
isaacs
c781f17742
debug: Wait 50ms before running the main module
13 years ago
isaacs
81cd3a3cd6
lint readline.js - single-quotes preferred
13 years ago
Erik Lundin
4b1d492561
test: merge typed arrays tests
Merge simple/test-typed-arrays-typenames into simple/test-typed-arrays.
13 years ago
Erik Lundin
f2ebf2469b
test: fix simple/test-typed-arrays
* It incorrectly uses assert(a, b) instead of assert.equal(a, b), meaning all
relevant assertions will pass regardless of whether they're supposed to when
a == true.
* It makes the assumption that elements in typed arrays for numerical types
spanning more than one byte, like Uint32Array, are stored little-endian first
on all machines.
* It contains assorted mistakes like assert(Int32Array, typeof v4) (that one
only passes thanks to point 1).
13 years ago
Johannes Wüller
7817f48322
fixed booleans being treated as strings, resulting in missing node-waf and npm
13 years ago
Alex Kocharin
06a058d731
readline: row-agnostic multiline readline implementation
Fixes #2959 .
13 years ago
Nathan Rajlich
8517089b3e
Revert "readline: add multiline support"
This reverts commit 443071db57
.
Patch was overly compilicated and made some incorrect assumptions about the
position of the cursor being at the bottom of the screen. @rlidwka and I are
working on getting a proper implementation written.
13 years ago
ssuda
253ec6a63d
process: don't use strdup()
file and cwd can be directly used from Utf8Value.
13 years ago
Alex Kocharin
415bff26fe
repl: fix space autocompletion bug
Tapping <SP> + <TAB> would exit the REPL.
13 years ago
Felix Geisendörfer
18240193ba
Expose http parse error codes
Currently http parse errors do not expose the error details available
from http_parser. This patch exposes the error code as `err.code`.
13 years ago
Shigeki Ohtsu
891f9defeb
No need to have NativeModule.require('fs') in Module._findPath()
13 years ago
isaacs
dce8682827
cluster: English language fixing
13 years ago
Andreas Madsen
94d337eb0f
cluster: kill workers when master dies
This patch will kill the worker once it has lost its connection with the parent.
However if the worker are doing a suicide, other measures will be used.
13 years ago
Andreas Madsen
d927fbc9ab
cluster: add graceful disconnect support
This patch add a worker.disconnect() method there will stop the worker from accepting
new connections and then stop the IPC. This allow the worker to die graceful.
When the IPC has been disconnected a 'disconnect' event will emit.
The patch also add a cluster.disconnect() method, this will call worker.disconnect() on
all connected workers. When the workers are disconneted it will then close all server
handlers. This allow the cluster itself to self terminate in a graceful way.
13 years ago
Andreas Madsen
ab32e9e043
child_process: emit 'channel closed' error instead of throwing
13 years ago
isaacs
89653cb32f
Upgrade npm to 1.1.10
13 years ago
Fedor Indutny
7418905aef
debugger: breakOnException
Do not break automatically on exception, fixes #2926
13 years ago
Fedor Indutny
b6cb6ce0d3
debugger: remove 'repl' command from builtinLibs
* It was displaying useless warning
13 years ago
Fedor Indutny
f61d4b7a87
debugger: exit process on repl exit
* When entering repl - clone 'SIGINT' listeners array (instead of using
existing), as it will be spliced in .removeAllListeners() call later.
13 years ago
Ben Noordhuis
d8c4ecea0b
test: fix race in simple/test-cluster-master-error
Said test checks that the workers shut down when the master errors but it failed
intermittently. Insert a small delay before doing the 'is dead?' check to give
the workers a chance to shut down.
13 years ago
Your Name
fb47a337ba
test: changed instances of == to ===
13 years ago
Nathan Rajlich
70e68893fe
build: make --openssl-use-sys a boolean option
Before you had to enter a truthy value like: --openssl-use-sys=1
13 years ago
isaacs
815169383e
Fix include logic was replacing https include with http
13 years ago
isaacs
7bee98bae2
Ignore 'making a build' artifacts
13 years ago
isaacs
851b3970e7
Fix include logic was replacing https include with http
13 years ago
isaacs
d980620010
Ignore 'making a build' artifacts
13 years ago
koichik
03077db45d
test: HTTP responses with no content-length
Refs: #2952 .
13 years ago
Ben Noordhuis
44527e6023
deps: upgrade http_parser to joyent/http-parser@b47c44d
13 years ago
Alex Xu
5abcdc9671
build: fix configure with spaces in CC
13 years ago
isaacs
76a771b749
doc: Remove extraneous index.html's from hyperlinks
13 years ago
isaacs
46376888cd
Remove hard-coded version number from docs
13 years ago
isaacs
ec735cbce0
Merge remote-tracking branch 'ry/v0.6' into merge-v0.6
Conflicts:
ChangeLog
deps/npm/AUTHORS
deps/npm/html/api/bin.html
deps/npm/html/api/bugs.html
deps/npm/html/api/commands.html
deps/npm/html/api/config.html
deps/npm/html/api/deprecate.html
deps/npm/html/api/docs.html
deps/npm/html/api/edit.html
deps/npm/html/api/explore.html
deps/npm/html/api/help-search.html
deps/npm/html/api/init.html
deps/npm/html/api/install.html
deps/npm/html/api/link.html
deps/npm/html/api/load.html
deps/npm/html/api/ls.html
deps/npm/html/api/npm.html
deps/npm/html/api/outdated.html
deps/npm/html/api/owner.html
deps/npm/html/api/pack.html
deps/npm/html/api/prefix.html
deps/npm/html/api/prune.html
deps/npm/html/api/publish.html
deps/npm/html/api/rebuild.html
deps/npm/html/api/restart.html
deps/npm/html/api/root.html
deps/npm/html/api/run-script.html
deps/npm/html/api/search.html
deps/npm/html/api/shrinkwrap.html
deps/npm/html/api/start.html
deps/npm/html/api/stop.html
deps/npm/html/api/submodule.html
deps/npm/html/api/tag.html
deps/npm/html/api/test.html
deps/npm/html/api/uninstall.html
deps/npm/html/api/unpublish.html
deps/npm/html/api/update.html
deps/npm/html/api/version.html
deps/npm/html/api/view.html
deps/npm/html/api/whoami.html
deps/npm/html/doc/README.html
deps/npm/html/doc/adduser.html
deps/npm/html/doc/bin.html
deps/npm/html/doc/bugs.html
deps/npm/html/doc/build.html
deps/npm/html/doc/bundle.html
deps/npm/html/doc/cache.html
deps/npm/html/doc/changelog.html
deps/npm/html/doc/coding-style.html
deps/npm/html/doc/completion.html
deps/npm/html/doc/config.html
deps/npm/html/doc/deprecate.html
deps/npm/html/doc/developers.html
deps/npm/html/doc/disputes.html
deps/npm/html/doc/docs.html
deps/npm/html/doc/edit.html
deps/npm/html/doc/explore.html
deps/npm/html/doc/faq.html
deps/npm/html/doc/folders.html
deps/npm/html/doc/help-search.html
deps/npm/html/doc/help.html
deps/npm/html/doc/index.html
deps/npm/html/doc/init.html
deps/npm/html/doc/install.html
deps/npm/html/doc/json.html
deps/npm/html/doc/link.html
deps/npm/html/doc/list.html
deps/npm/html/doc/npm.html
deps/npm/html/doc/outdated.html
deps/npm/html/doc/owner.html
deps/npm/html/doc/pack.html
deps/npm/html/doc/prefix.html
deps/npm/html/doc/prune.html
deps/npm/html/doc/publish.html
deps/npm/html/doc/rebuild.html
deps/npm/html/doc/registry.html
deps/npm/html/doc/removing-npm.html
deps/npm/html/doc/restart.html
deps/npm/html/doc/root.html
deps/npm/html/doc/run-script.html
deps/npm/html/doc/scripts.html
deps/npm/html/doc/search.html
deps/npm/html/doc/semver.html
deps/npm/html/doc/shrinkwrap.html
deps/npm/html/doc/star.html
deps/npm/html/doc/start.html
deps/npm/html/doc/stop.html
deps/npm/html/doc/submodule.html
deps/npm/html/doc/tag.html
deps/npm/html/doc/test.html
deps/npm/html/doc/uninstall.html
deps/npm/html/doc/unpublish.html
deps/npm/html/doc/update.html
deps/npm/html/doc/version.html
deps/npm/html/doc/view.html
deps/npm/html/doc/whoami.html
deps/npm/man/man1/npm.1
deps/npm/man/man3/npm.3
deps/npm/node_modules/node-gyp/README.md
deps/npm/node_modules/node-gyp/lib/build.js
deps/npm/node_modules/node-gyp/lib/configure.js
deps/npm/node_modules/node-gyp/lib/install.js
deps/npm/node_modules/node-gyp/lib/node-gyp.js
deps/npm/node_modules/node-gyp/node_modules/ansi/package.json
deps/npm/node_modules/node-gyp/node_modules/glob/node_modules/minimatch/package.json
deps/npm/node_modules/node-gyp/node_modules/glob/package.json
deps/npm/node_modules/node-gyp/package.json
deps/npm/package.json
doc/about/index.html
doc/api/path.markdown
doc/community/index.html
doc/index.html
doc/logos/index.html
src/node_version.h
13 years ago
Shigeki Ohtsu
534264d209
doc: Add condition to emit close event of net.Server
13 years ago
Rod Vagg
90b785c09a
doc: fix # links from (and within) api/fs
13 years ago