platform/upstream/nodejs.git
12 years agodocs: http: link to relevant net.Socket methods
Ben Noordhuis [Wed, 2 Nov 2011 23:21:25 +0000 (00:21 +0100)]
docs: http: link to relevant net.Socket methods

12 years agoignore undefined messages in the debugger repl
Fedor Indutny [Wed, 2 Nov 2011 22:38:38 +0000 (04:38 +0600)]
ignore undefined messages in the debugger repl

fixes #1995

12 years agotest: add ChildProcess.prototype.killed test case
Ben Noordhuis [Wed, 2 Nov 2011 17:37:34 +0000 (18:37 +0100)]
test: add ChildProcess.prototype.killed test case

12 years agochild_process: in a new `ChildProcess` set `killed` to false
Maciej Małecki [Wed, 2 Nov 2011 16:52:47 +0000 (17:52 +0100)]
child_process: in a new `ChildProcess` set `killed` to false

This behavior is consistent with what v0.4 does.

12 years agoAdd missing copyright headers
Ryan Dahl [Wed, 2 Nov 2011 17:00:57 +0000 (10:00 -0700)]
Add missing copyright headers

12 years agodocs: http: fix docs for the 'close' event
Ben Noordhuis [Wed, 2 Nov 2011 16:24:53 +0000 (17:24 +0100)]
docs: http: fix docs for the 'close' event

12 years agoRevert "Upgrade V8 to 3.7.1"
Ben Noordhuis [Wed, 2 Nov 2011 15:58:08 +0000 (16:58 +0100)]
Revert "Upgrade V8 to 3.7.1"

This reverts commit 92f5a5d3caf01f382f90c235e9057590a5e76870.

V8 3.7.1 in debug mode on ia32 has a curious race-like bug where an fs.Stats
object is not fully formed until some time after it's created. This is easy
to demonstrate by running `make test-debug`.

V8 3.7.0 does not exhibit this behaviour so back we go.

Fixes #1981.

12 years agofix pummel/test-net-throttle on windows
Igor Zinkovsky [Tue, 1 Nov 2011 23:30:42 +0000 (16:30 -0700)]
fix pummel/test-net-throttle on windows

12 years agodoc: fix links
Maciej Małecki [Tue, 1 Nov 2011 19:52:35 +0000 (20:52 +0100)]
doc: fix links

Changes:

  * 'http://github.com' => 'https://github.com'
  * 'https://github.com/ry/node' => 'https://github.com/joyent/node'
  * 'https://github.com/ry/http-parser' =>
    'https://github.com/joyent/http-parser'
  * old issue links
  * wiki link

12 years agowindows: enable pending accepts knob
Igor Zinkovsky [Tue, 1 Nov 2011 08:35:48 +0000 (01:35 -0700)]
windows: enable pending accepts knob

12 years agouv: upgrade to 90b0b7d
Ben Noordhuis [Tue, 1 Nov 2011 21:11:58 +0000 (22:11 +0100)]
uv: upgrade to 90b0b7d

12 years agoos: rename getNetworkInterfaces() to networkInterfaces()
Ben Noordhuis [Tue, 1 Nov 2011 16:23:17 +0000 (17:23 +0100)]
os: rename getNetworkInterfaces() to networkInterfaces()

12 years agonode: remove `process.compile`
Maciej Małecki [Tue, 1 Nov 2011 14:16:16 +0000 (15:16 +0100)]
node: remove `process.compile`

It was deprecated before v0.4.

12 years agoprocess: fix process.nextTick() error case regression
Ben Noordhuis [Tue, 1 Nov 2011 15:30:41 +0000 (16:30 +0100)]
process: fix process.nextTick() error case regression

Patch and test by Koichi Kobayashi.

12 years agotest: fix test/message/undefined_reference_in_new_context.js
koichik [Tue, 1 Nov 2011 10:30:19 +0000 (19:30 +0900)]
test: fix test/message/undefined_reference_in_new_context.js

after 4d4900f, stack trace was changed.

12 years agodoc: Correct blatantly wrong futimes documentation
isaacs [Mon, 31 Oct 2011 23:31:37 +0000 (16:31 -0700)]
doc: Correct blatantly wrong futimes documentation

12 years agoprocess: optimize process.nextTick()
Ben Noordhuis [Mon, 31 Oct 2011 21:31:12 +0000 (22:31 +0100)]
process: optimize process.nextTick()

33% performance boost on large nextTick queues.

12 years agobench: add process.nextTick() benchmark
Ben Noordhuis [Mon, 31 Oct 2011 20:58:22 +0000 (21:58 +0100)]
bench: add process.nextTick() benchmark

12 years agotls, https: add passphrase option
koichik [Wed, 26 Oct 2011 17:34:56 +0000 (02:34 +0900)]
tls, https: add passphrase option

Fixes #1925.

12 years agodocs: tty: remove tty.open() documentation
Ben Noordhuis [Sun, 30 Oct 2011 20:22:46 +0000 (21:22 +0100)]
docs: tty: remove tty.open() documentation

12 years agocore: fix off-by-one error in node::DLOpen()
Ben Noordhuis [Sun, 30 Oct 2011 16:33:42 +0000 (17:33 +0100)]
core: fix off-by-one error in node::DLOpen()

Fixes loading of modules that use the NODE_MODULE macro on POSIX platforms.

12 years agodocs: addons: fix example
Ben Noordhuis [Sun, 30 Oct 2011 16:15:10 +0000 (17:15 +0100)]
docs: addons: fix example

12 years agofix for --harmony_block_scoping
koichik [Sun, 30 Oct 2011 15:49:20 +0000 (00:49 +0900)]
fix for --harmony_block_scoping

Fixes #1969.

12 years agodocs: fix option's name of cluster.startMaster()
koichik [Sun, 30 Oct 2011 02:40:31 +0000 (11:40 +0900)]
docs: fix option's name of cluster.startMaster()

12 years agouv: upgrade to 70381ce
Ben Noordhuis [Sun, 30 Oct 2011 01:56:51 +0000 (02:56 +0100)]
uv: upgrade to 70381ce

12 years agoevents: separate maxListeners and _events
Siddharth Mahendraker [Sun, 23 Oct 2011 11:19:45 +0000 (14:19 +0300)]
events: separate maxListeners and _events

Fixes #1479.
Fixes #1923.

12 years agofix pummel/test-child-process-spawn-loop.js on windows
Igor Zinkovsky [Sat, 29 Oct 2011 01:30:03 +0000 (18:30 -0700)]
fix pummel/test-child-process-spawn-loop.js on windows

12 years agoUpgrade libuv to e4d6509211
Bert Belder [Fri, 28 Oct 2011 23:33:01 +0000 (01:33 +0200)]
Upgrade libuv to e4d6509211

12 years agoExport some functions from node.h
Bert Belder [Fri, 28 Oct 2011 10:08:36 +0000 (12:08 +0200)]
Export some functions from node.h

12 years agoSupport native extension loading on Windows
Bert Belder [Fri, 28 Oct 2011 09:31:34 +0000 (11:31 +0200)]
Support native extension loading on Windows

12 years agoMake node::DLOpen use uv_dlopen
Bert Belder [Fri, 28 Oct 2011 10:05:09 +0000 (12:05 +0200)]
Make node::DLOpen use uv_dlopen

12 years agoUpgrade libuv to 90e15f1110
Bert Belder [Fri, 28 Oct 2011 23:06:09 +0000 (01:06 +0200)]
Upgrade libuv to 90e15f1110

12 years agoAdd common.gypi to gyp output
Bert Belder [Fri, 28 Oct 2011 10:10:24 +0000 (12:10 +0200)]
Add common.gypi to gyp output

12 years agoWrap long lines, strip trailing whitespace
Bert Belder [Fri, 28 Oct 2011 09:34:53 +0000 (11:34 +0200)]
Wrap long lines, strip trailing whitespace

12 years agoRemove outdated comment
Bert Belder [Fri, 28 Oct 2011 09:31:43 +0000 (11:31 +0200)]
Remove outdated comment

12 years agoFix v8 build on Windows
Bert Belder [Fri, 28 Oct 2011 14:08:07 +0000 (16:08 +0200)]
Fix v8 build on Windows

There's probably a better way to fix this

12 years agofix simple/test-child-process-double-pipe on windows
Igor Zinkovsky [Fri, 28 Oct 2011 22:57:39 +0000 (15:57 -0700)]
fix simple/test-child-process-double-pipe on windows

12 years agoRevert "remove node_io_watcher"
Igor Zinkovsky [Fri, 28 Oct 2011 22:34:24 +0000 (15:34 -0700)]
Revert "remove node_io_watcher"

This reverts commit cc2ac1ccc7724b920cbc7bbb777f057ac062028c.

12 years agolinux: unbreak build if HAVE_MONOTONIC_CLOCK=0
Ben Noordhuis [Fri, 28 Oct 2011 21:29:56 +0000 (23:29 +0200)]
linux: unbreak build if HAVE_MONOTONIC_CLOCK=0

12 years agodocs: addons: fix NODE_SET_METHOD example
Ben Noordhuis [Fri, 28 Oct 2011 20:36:55 +0000 (22:36 +0200)]
docs: addons: fix NODE_SET_METHOD example

12 years agodocs: tty: stdin must be initialized before calling setRawMode
Zachary Scott [Fri, 28 Oct 2011 18:07:06 +0000 (14:07 -0400)]
docs: tty: stdin must be initialized before calling setRawMode

12 years agodocs: fix home page link to API docs
Ben Noordhuis [Fri, 28 Oct 2011 16:22:39 +0000 (18:22 +0200)]
docs: fix home page link to API docs

12 years agozlib: compile without -ansi
Ben Noordhuis [Fri, 28 Oct 2011 15:27:47 +0000 (17:27 +0200)]
zlib: compile without -ansi

Source contains C++ / C99 comments, gcc in strict mode doesn't like that.

12 years agoremove node_io_watcher
Igor Zinkovsky [Thu, 27 Oct 2011 23:47:37 +0000 (16:47 -0700)]
remove node_io_watcher

12 years agodocs: add zlib.createXxx() functions
koichik [Wed, 26 Oct 2011 06:10:42 +0000 (15:10 +0900)]
docs: add zlib.createXxx() functions

12 years agov8: implement VirtualMemory class on SunOS
Ben Noordhuis [Thu, 27 Oct 2011 11:19:51 +0000 (11:19 +0000)]
v8: implement VirtualMemory class on SunOS

Unbreaks build on SunOS. Re-applies 4908e5bf7a9c8014eefcf344e958bf0dad95d907.

12 years agoUpgrade V8 to 3.7.1
Ryan Dahl [Thu, 27 Oct 2011 07:48:23 +0000 (00:48 -0700)]
Upgrade V8 to 3.7.1

12 years agocluster: Add some docs, improve cluster.isWorker()
Tj Holowaychuk [Wed, 26 Oct 2011 23:21:08 +0000 (16:21 -0700)]
cluster: Add some docs, improve cluster.isWorker()

Fixes #1949.

12 years agonode cluster is now a module instead of CLI interface
Ryan Dahl [Wed, 26 Oct 2011 20:41:31 +0000 (13:41 -0700)]
node cluster is now a module instead of CLI interface

This is to make room for master process plugins instead of adding CLI
options as proposed in #1879.

12 years agoAdd test cases for #1944.
Nathan Rajlich [Wed, 26 Oct 2011 19:45:51 +0000 (12:45 -0700)]
Add test cases for #1944.

12 years agoMore bulletproof `util.inspect()` function.
Nathan Rajlich [Wed, 26 Oct 2011 06:56:07 +0000 (23:56 -0700)]
More bulletproof `util.inspect()` function.

Use the *real* versions of the Date and RegExp functions, from the
prototype. This defends against code like:

  var d = new Date()
  d.toUTCString = null
  util.inspect(d)
    // TypeError: toUTCString is not a function

Fixes #1944.

12 years agoAdd test case for #1941.
Nathan Rajlich [Wed, 26 Oct 2011 18:22:16 +0000 (11:22 -0700)]
Add test case for #1941.

Add test for the false-positives from #1942.
Fix test-sys.js.

12 years agoDon't use `instanceof` in lib/util.js "is" checks.
Nathan Rajlich [Wed, 26 Oct 2011 04:42:23 +0000 (21:42 -0700)]
Don't use `instanceof` in lib/util.js "is" checks.

While using `instanceof`, these functions could easily be faked with something
like:  Object.create(Date.prototype)

So let's just not use it at all. A little slower, but these functions are only
used in the REPL / for debugging so it's OK.

Fixes #1941.
Fixes #1942.

12 years agoReturn IPv4 addresses before IPv6 addresses from getaddrinfo
Ryan Dahl [Wed, 26 Oct 2011 19:27:31 +0000 (12:27 -0700)]
Return IPv4 addresses before IPv6 addresses from getaddrinfo

12 years agoAdd docs for the type checking functions in `util.js`.
Nathan Rajlich [Wed, 26 Oct 2011 18:10:23 +0000 (11:10 -0700)]
Add docs for the type checking functions in `util.js`.

12 years agoAdd test case for the util.js type checking functions.
Nathan Rajlich [Wed, 26 Oct 2011 18:10:15 +0000 (11:10 -0700)]
Add test case for the util.js type checking functions.

12 years agoExport the type checking functions from `util.js`.
Nathan Rajlich [Wed, 26 Oct 2011 18:09:01 +0000 (11:09 -0700)]
Export the type checking functions from `util.js`.

As per discussion at:
http://groups.google.com/group/nodejs-dev/browse_thread/thread/b08970166e4670cf

12 years agoDon't compile in node_dtrace.cc when not supported
Ryan Dahl [Wed, 26 Oct 2011 18:31:12 +0000 (11:31 -0700)]
Don't compile in node_dtrace.cc when not supported

12 years agodocs: update email address
Zachary Scott [Wed, 26 Oct 2011 17:40:15 +0000 (13:40 -0400)]
docs: update email address

12 years agodocs: update socket.io url
Zachary Scott [Wed, 26 Oct 2011 17:07:40 +0000 (13:07 -0400)]
docs: update socket.io url

12 years agotls: add address(), remoteAddress/remotePort
koichik [Wed, 26 Oct 2011 12:12:23 +0000 (21:12 +0900)]
tls: add address(), remoteAddress/remotePort

Fixes #758.
Fixes #1055.

12 years agotls: does not emit 'end' from EncryptedStream
koichik [Tue, 25 Oct 2011 09:57:06 +0000 (18:57 +0900)]
tls: does not emit 'end' from EncryptedStream

de09168 and 4cdf9d4 breaks `test/pummel/test-https-large-response.js`.
It is never finished.

Fixes #1936.

12 years agobuild: fix sunos gyp build, include platform file
Ben Noordhuis [Wed, 26 Oct 2011 05:11:20 +0000 (05:11 +0000)]
build: fix sunos gyp build, include platform file

12 years agosunos: don't use exceptions
Ben Noordhuis [Wed, 26 Oct 2011 05:09:18 +0000 (05:09 +0000)]
sunos: don't use exceptions

Don't use exceptions in platform functions. Fix a resource leak
(leaked kstat handle) while we're at it.

12 years agogyp: support older bash versions
Ben Noordhuis [Wed, 26 Oct 2011 04:59:31 +0000 (04:59 +0000)]
gyp: support older bash versions

Older bash versions in `sh -c` mode don't parse `export FOO=42` constructs,
they bail out with a "FOO is not an identifier" error message.

This was fixed somewhere between bash 4.1.0 and 4.1.5 but let's support the
older versions anyway.

12 years agouv: upgrade to 0cb2213
Ben Noordhuis [Tue, 25 Oct 2011 22:05:24 +0000 (00:05 +0200)]
uv: upgrade to 0cb2213

12 years agofix test-http-curl-chunk-problem.js and test-pipe-file-to-http.js on windows
Igor Zinkovsky [Tue, 25 Oct 2011 20:47:21 +0000 (13:47 -0700)]
fix test-http-curl-chunk-problem.js and test-pipe-file-to-http.js on windows

12 years agohttp: fix gcc 3.x build, don't use always_inline
Ben Noordhuis [Tue, 25 Oct 2011 19:18:41 +0000 (19:18 +0000)]
http: fix gcc 3.x build, don't use always_inline

12 years agotest: spawn process.argv[0], not 'node'
Ben Noordhuis [Tue, 25 Oct 2011 00:23:07 +0000 (02:23 +0200)]
test: spawn process.argv[0], not 'node'

'node' may or may not be on the path and may or may not be the version we are
running the test suite for.

12 years agoDirectly export the Stream constructor.
Nathan Rajlich [Mon, 24 Oct 2011 21:52:10 +0000 (14:52 -0700)]
Directly export the Stream constructor.

Also setting up a circular reference back to the
stream as `Stream.Stream`, for backwards-compatibility.

Fixes #1933

12 years agoRemove resume and pause events
Ryan Dahl [Mon, 24 Oct 2011 18:55:02 +0000 (11:55 -0700)]
Remove resume and pause events

Too complex; unnecessary.

12 years agoClose #1929 zlib Respond to 'resume' events properly
isaacs [Mon, 24 Oct 2011 19:48:58 +0000 (12:48 -0700)]
Close #1929 zlib Respond to 'resume' events properly

12 years agonet: `Server.listen`, `Server.close` and `Socket.connect` return `this`
Maciej Małecki [Sun, 23 Oct 2011 09:20:03 +0000 (11:20 +0200)]
net: `Server.listen`, `Server.close` and `Socket.connect` return `this`

Just a syntactic sugar for doing, for example:

    var server = net.createServer(function (c) {
      c.end('goodbye, cruel world!\r\n');
      server.close().on('close', function () {
        console.log('really, goodbye!');
      });
    }).listen(1337);

Fixes #1922.

12 years agodocs: improvement fs, http and https
koichik [Sat, 22 Oct 2011 14:40:15 +0000 (23:40 +0900)]
docs: improvement fs, http and https

12 years agoLint
seebees [Wed, 19 Oct 2011 23:28:44 +0000 (16:28 -0700)]
Lint

12 years agoDocumentation update
seebees [Wed, 19 Oct 2011 22:06:49 +0000 (15:06 -0700)]
Documentation update

http.markdown
  note options now align with url.parse
  added note that hostname is preferred over host.
  added auth
  added not that setting an explicit Authorization header will override basic authentication with 'auth'

https.markdown
  Made a link to http.request and noted that all http.request options are valid.

url.markdown
  added path option

12 years agoremove auth from host
seebees [Sat, 15 Oct 2011 00:13:16 +0000 (17:13 -0700)]
remove auth from host

Fixes #1626

12 years agohttp.request(url.parse(x))
seebees [Sat, 15 Oct 2011 00:10:49 +0000 (17:10 -0700)]
http.request(url.parse(x))

http2.js

protocols object to store defaults for http and https, and use as a switch for supported protocols.
options.hostname > options.host > 'localhost'
if I have an options.auth element and I do not have an Authorization header, I do basic auth.
http.request collapses to new ClientRequest since the defaults are handled by the protocol object

test-http-url.parse*

Fixes #1390

Conflicts:

lib/http2.js

12 years agourl.resolveObject(url.parse(x), y) == url.parse(url.resolve(x, y));
seebees [Tue, 13 Sep 2011 20:55:18 +0000 (13:55 -0700)]
url.resolveObject(url.parse(x), y) == url.parse(url.resolve(x, y));

added a .path property = .pathname + .search for use with http.request

And tests to verify everything.
With the tests, I changed over to deepEqual, and I would note the comment on the test
['.//g', 'f:/a', 'f://g'], which I think is a fundamental problem

This supersedes pull 1596

12 years agodocs: remove #1914 from Changelog.
koichik [Sat, 22 Oct 2011 05:00:42 +0000 (14:00 +0900)]
docs: remove #1914 from Changelog.

12 years agoPrint out `undefined` on the REPL when returned.
Nathan Rajlich [Wed, 19 Oct 2011 20:46:06 +0000 (13:46 -0700)]
Print out `undefined` on the REPL when returned.

util.inspect() has a special case for "undefined", so it's nice to be able to
distinguish visually that undefined is the result of an expression.

12 years agodocs: fix typo
koichik [Sat, 22 Oct 2011 04:53:15 +0000 (13:53 +0900)]
docs: fix typo

12 years agoNow working on v0.5.11
Ryan Dahl [Sat, 22 Oct 2011 02:16:06 +0000 (19:16 -0700)]
Now working on v0.5.11

12 years agoBump version to v0.5.10 v0.5.10
Ryan Dahl [Sat, 22 Oct 2011 00:02:11 +0000 (17:02 -0700)]
Bump version to v0.5.10

12 years agouv: upgrade to 179f475
Ben Noordhuis [Sat, 22 Oct 2011 01:44:06 +0000 (18:44 -0700)]
uv: upgrade to 179f475

12 years agonet: bring back .setNoDelay() and .setKeepAlive()
Ben Noordhuis [Sat, 22 Oct 2011 00:07:11 +0000 (17:07 -0700)]
net: bring back .setNoDelay() and .setKeepAlive()

12 years agouv: upgrade to ec825ff
Ben Noordhuis [Sat, 22 Oct 2011 00:08:12 +0000 (17:08 -0700)]
uv: upgrade to ec825ff

12 years agoMerge remote branch 'origin/v0.4'
Ryan Dahl [Sat, 22 Oct 2011 00:58:04 +0000 (17:58 -0700)]
Merge remote branch 'origin/v0.4'

Conflicts:
ChangeLog
Makefile
deps/libev/wscript
doc/index.html
doc/template.html
lib/net.js
src/node_version.h
src/platform_cygwin.cc
test/pummel/test-net-write-callbacks.js
test/simple/test-buffer.js

12 years agomake simple\test-fs-symlink.js work on windows
Igor Zinkovsky [Sat, 22 Oct 2011 00:08:50 +0000 (17:08 -0700)]
make simple\test-fs-symlink.js work on windows

12 years agotest: #1899 - output in child process raises an exception
Maciej Małecki [Fri, 21 Oct 2011 22:32:12 +0000 (00:32 +0200)]
test: #1899 - output in child process raises an exception

12 years agogetaddrinfo returns ENOTFOUND for invalid domain names
Ryan Dahl [Fri, 21 Oct 2011 22:19:49 +0000 (15:19 -0700)]
getaddrinfo returns ENOTFOUND for invalid domain names

change test-http-dns-error to reflect this.

12 years agoFix test-eio-race on Windows
Ryan Dahl [Fri, 21 Oct 2011 21:54:11 +0000 (14:54 -0700)]
Fix test-eio-race on Windows

12 years agogyp: upgrade to r1081
Ben Noordhuis [Fri, 21 Oct 2011 20:43:49 +0000 (13:43 -0700)]
gyp: upgrade to r1081

12 years agoUpgrade libuv to 7738306
Ryan Dahl [Fri, 21 Oct 2011 20:44:30 +0000 (13:44 -0700)]
Upgrade libuv to 7738306

12 years agoEmit 'end' from crypto streams on close
Ryan Dahl [Fri, 21 Oct 2011 20:07:48 +0000 (13:07 -0700)]
Emit 'end' from crypto streams on close

Fixes test/simple/test-tls-peer-certificate.js on Windows

Patch from bnoordhuis.

See also 75a0cf970fb48440a93a62796ab1f128fcbe7d76

12 years agoAdd useGlobal flag for standard node repl
isaacs [Thu, 20 Oct 2011 17:00:15 +0000 (10:00 -0700)]
Add useGlobal flag for standard node repl

12 years agoRevert "Don't use a separate context for the repl."
isaacs [Thu, 20 Oct 2011 15:54:50 +0000 (08:54 -0700)]
Revert "Don't use a separate context for the repl."

This reverts commit b70fed48a7fb0ac884e6574253a89db6158b2f60.

12 years agobuild: fix wscript on solaris
Ben Noordhuis [Fri, 21 Oct 2011 19:46:52 +0000 (12:46 -0700)]
build: fix wscript on solaris

os.path.exists() in python 2.5.2 returns false for symlinks.

12 years agomake process.kill a no-op on windows
Igor Zinkovsky [Fri, 21 Oct 2011 16:08:19 +0000 (09:08 -0700)]
make process.kill a no-op on windows

12 years agoFix race condition in test-dgram-pingpong
Ryan Dahl [Fri, 21 Oct 2011 17:21:23 +0000 (10:21 -0700)]
Fix race condition in test-dgram-pingpong