platform/upstream/nodejs.git
14 years agoRemove -Werror on V8
Ryan Dahl [Wed, 24 Feb 2010 06:58:50 +0000 (22:58 -0800)]
Remove -Werror on V8

Are they ever going to fix this?

14 years agoUpgrade V8 to 2.1.2
Ryan Dahl [Wed, 24 Feb 2010 01:52:50 +0000 (17:52 -0800)]
Upgrade V8 to 2.1.2

14 years agoAdd setgid,getgid
James Duncan [Tue, 23 Feb 2010 22:45:02 +0000 (14:45 -0800)]
Add setgid,getgid

14 years agoGive signal handlers maximum priority
Ryan Dahl [Tue, 23 Feb 2010 21:08:04 +0000 (13:08 -0800)]
Give signal handlers maximum priority

14 years agoAdd hack to get error event on socket timeout
Ryan Dahl [Tue, 23 Feb 2010 06:12:21 +0000 (22:12 -0800)]
Add hack to get error event on socket timeout

See
http://groups.google.com/group/nodejs/browse_thread/thread/4898a1ed3b99dcf0

14 years agoadded fs.link, fs.symlink, fs.readlink
Rasmus Andersson [Tue, 23 Feb 2010 00:46:03 +0000 (01:46 +0100)]
added fs.link, fs.symlink, fs.readlink

including sync versions and complete tests

14 years agoFix readdirSync in docs
Ryan Dahl [Mon, 22 Feb 2010 22:04:54 +0000 (14:04 -0800)]
Fix readdirSync in docs

14 years agoAdd not about nextTick and setTimeout(fn, 0)
Ryan Dahl [Mon, 22 Feb 2010 21:58:48 +0000 (13:58 -0800)]
Add not about nextTick and setTimeout(fn, 0)

14 years agoFix for when EV_MULTIPLICITY=1
Jérémy Lal [Mon, 22 Feb 2010 21:25:57 +0000 (13:25 -0800)]
Fix for when EV_MULTIPLICITY=1

14 years agoEncoding 0 length data, returns '' instead of null
Ryan Dahl [Mon, 22 Feb 2010 20:07:07 +0000 (12:07 -0800)]
Encoding 0 length data, returns '' instead of null

14 years agocamel case variables in url module
Ryan Dahl [Mon, 22 Feb 2010 14:49:14 +0000 (06:49 -0800)]
camel case variables in url module

14 years agobump version v0.1.30
Ryan Dahl [Mon, 22 Feb 2010 07:31:08 +0000 (23:31 -0800)]
bump version

14 years agoFix dns bug - first cb arg wasn't null
Ryan Dahl [Mon, 22 Feb 2010 09:26:35 +0000 (01:26 -0800)]
Fix dns bug - first cb arg wasn't null

14 years agodelete changelog.html on 'make docclean'
Ryan Dahl [Mon, 22 Feb 2010 07:13:40 +0000 (23:13 -0800)]
delete changelog.html on 'make docclean'

14 years agoImplement fs.readdirSync()
Ryan Dahl [Mon, 22 Feb 2010 07:02:36 +0000 (23:02 -0800)]
Implement fs.readdirSync()

14 years agoFix bug in process.mixin where deep copies would not work at all.
Benjamin Thomas [Mon, 22 Feb 2010 06:47:15 +0000 (06:47 +0000)]
Fix bug in process.mixin where deep copies would not work at all.

Before, doing this:

    var sys = require("sys");

    var obj = {
      one: 1,
      two: 2,
      three: {
        value: 3
      }
    };

    sys.p(process.mixin(true, {}, obj));

Would output this:

    {
     "two": 2,
     "three": {
      "one": 1,
      "two": 2,
      "three": {
       "value": 3
      },
      "value": 3
     },
     "one": 1
    }

When it should have outputed this:

    {
     "one": 1,
     "two": 2,
     "three": {
      "value": 3
     }
    }

14 years agoRevert "Add fs.readdirSync()"
Ryan Dahl [Mon, 22 Feb 2010 05:52:56 +0000 (21:52 -0800)]
Revert "Add fs.readdirSync()"

Doesn't work on Linux.

This reverts commit 05d6da6c4af25fc417902ad1bbae9198e58ff37a.

14 years agoExpose fs.lstat
isaacs [Mon, 22 Feb 2010 04:10:23 +0000 (20:10 -0800)]
Expose fs.lstat

14 years agoConfigurable debug ports, and --debug-brk
Zoran Tomicic [Mon, 22 Feb 2010 05:15:44 +0000 (21:15 -0800)]
Configurable debug ports, and --debug-brk

14 years agoRename sendHeader to writeHeader; allow reasonPhrase
Ryan Dahl [Mon, 22 Feb 2010 00:53:20 +0000 (16:53 -0800)]
Rename sendHeader to writeHeader; allow reasonPhrase

14 years agoAdd fs.readdirSync()
Micheil Smith [Thu, 18 Feb 2010 09:50:48 +0000 (20:50 +1100)]
Add fs.readdirSync()

14 years agoMove errors for readPause and readResume
Ryan Dahl [Mon, 22 Feb 2010 00:01:12 +0000 (16:01 -0800)]
Move errors for readPause and readResume

14 years agoAdd note about Promise removal
Ryan Dahl [Sun, 21 Feb 2010 23:48:43 +0000 (15:48 -0800)]
Add note about Promise removal

14 years agoFixed encoding in fs.writeFile().
Scott González [Sun, 21 Feb 2010 13:21:23 +0000 (08:21 -0500)]
Fixed encoding in fs.writeFile().

14 years agoRemove '--' from command line parsing
Jeremy Ashkenas [Sun, 21 Feb 2010 06:41:27 +0000 (22:41 -0800)]
Remove '--' from command line parsing

14 years agoRename readPause and readResume to pause/resume
Ryan Dahl [Sun, 21 Feb 2010 06:38:42 +0000 (22:38 -0800)]
Rename readPause and readResume to pause/resume

14 years agoAdd changelog to website
Ryan Dahl [Sun, 21 Feb 2010 06:30:56 +0000 (22:30 -0800)]
Add changelog to website

14 years agoFix typo in fs.writeFile
Tim Caswell [Sun, 21 Feb 2010 04:53:31 +0000 (22:53 -0600)]
Fix typo in fs.writeFile

14 years agoSimplify call to V8::IdleNotification
Ryan Dahl [Sun, 21 Feb 2010 04:36:31 +0000 (20:36 -0800)]
Simplify call to V8::IdleNotification

Run a max priority ev_timer every 2 seconds. If there aren't any pending
watchers then call V8::IdleNotification() once. This is slower at freeing
memory, but I think simpler and less aggressive.

14 years agoRemove promises
Ryan Dahl [Sun, 21 Feb 2010 03:45:39 +0000 (19:45 -0800)]
Remove promises

14 years agoMultipart test no longer depend on Promise
Ryan Dahl [Sun, 21 Feb 2010 03:44:47 +0000 (19:44 -0800)]
Multipart test no longer depend on Promise

14 years agomultipart no longer depends on Promise
Ryan Dahl [Sun, 21 Feb 2010 03:16:57 +0000 (19:16 -0800)]
multipart no longer depends on Promise

14 years agoExperimental idle garbage compact
Ryan Dahl [Sun, 21 Feb 2010 02:23:21 +0000 (18:23 -0800)]
Experimental idle garbage compact

14 years agoIf ab isn't installed skip keep-alive test
Ryan Dahl [Sat, 20 Feb 2010 02:54:25 +0000 (18:54 -0800)]
If ab isn't installed skip keep-alive test

14 years agoskipping TLS test if node was not compiled with TLS
Rasmus Andersson [Sat, 20 Feb 2010 01:17:54 +0000 (02:17 +0100)]
skipping TLS test if node was not compiled with TLS

14 years agosys.exec() no longer uses Promise
Ryan Dahl [Sat, 20 Feb 2010 00:55:46 +0000 (16:55 -0800)]
sys.exec() no longer uses Promise

14 years ago'dns' no longer uses Promise
Ryan Dahl [Sat, 20 Feb 2010 00:41:08 +0000 (16:41 -0800)]
'dns' no longer uses Promise

14 years agohttp.cat no longer uses Promise
Ryan Dahl [Sat, 20 Feb 2010 00:26:48 +0000 (16:26 -0800)]
http.cat no longer uses Promise

14 years agoDo not use Promise in 'fs' module
Ryan Dahl [Sat, 20 Feb 2010 00:02:30 +0000 (16:02 -0800)]
Do not use Promise in 'fs' module

14 years agofs.closeSync should return Undefined on success
Ryan Dahl [Sat, 20 Feb 2010 00:02:14 +0000 (16:02 -0800)]
fs.closeSync should return Undefined on success

14 years agoModule loading no longer depends on Promise
Ryan Dahl [Fri, 19 Feb 2010 19:25:40 +0000 (11:25 -0800)]
Module loading no longer depends on Promise

The module loading code is looking extremely messy. It needs a refactor.

14 years agoUpgrade V8 to 2.1.1
Ryan Dahl [Fri, 19 Feb 2010 18:29:41 +0000 (10:29 -0800)]
Upgrade V8 to 2.1.1

14 years agoRemove Promise.prototype.wait()
Ryan Dahl [Fri, 19 Feb 2010 18:16:02 +0000 (10:16 -0800)]
Remove Promise.prototype.wait()

I don't want users to have to think about coroutine safety.

http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/2468/focus=2603

14 years agoTruly synchronous require()
Ryan Dahl [Fri, 19 Feb 2010 17:37:20 +0000 (09:37 -0800)]
Truly synchronous require()

This is to reduce our dependency on wait(). For some reason this patch
affects the timer test:

  % ./node test/mjsunit/test-timers.js
  diff: 989
  diff: 989
  diff: 1989
  diff: 2989

Previously it showed:

  % ./node test/mjsunit/test-timers.js
  diff: 1000
  diff: 1000
  diff: 2000
  diff: 3000

I'm not sure what caused this change, and it's rather disturbing. However I
want to remove wait() as soon as possible and so am pushing this patch
through.

The module loading code is becoming increasingly ugly - this patch has not
helped. A refactor needs to be done soon.

14 years agoFix AUTHORS again
Ryan Dahl [Thu, 18 Feb 2010 19:38:49 +0000 (11:38 -0800)]
Fix AUTHORS again

I hope I won't spend all my time now maintaining this file...

14 years agofix email in AUTHORS
Ryan Dahl [Thu, 18 Feb 2010 18:17:03 +0000 (10:17 -0800)]
fix email in AUTHORS

14 years agofixed process.mixin to properly copy getters/setters
Rasmus Andersson [Thu, 18 Feb 2010 16:50:48 +0000 (17:50 +0100)]
fixed process.mixin to properly copy getters/setters

14 years agoAdding interface between node and libeio for Chmod.
Micheil Smith [Thu, 18 Feb 2010 08:02:55 +0000 (19:02 +1100)]
Adding interface between node and libeio for Chmod.

14 years agoAdd authors file
Ryan Dahl [Thu, 18 Feb 2010 06:43:28 +0000 (22:43 -0800)]
Add authors file

14 years agoRemove a few wait() calls in the tests
Ryan Dahl [Thu, 18 Feb 2010 05:28:31 +0000 (21:28 -0800)]
Remove a few wait() calls in the tests

14 years agoFix long lines in docs
Ryan Dahl [Thu, 18 Feb 2010 02:41:46 +0000 (18:41 -0800)]
Fix long lines in docs

14 years agoUpdate example on index.html
Ryan Dahl [Thu, 18 Feb 2010 01:07:08 +0000 (17:07 -0800)]
Update example on index.html

14 years agoUpdate benchmark script to new API
Ryan Dahl [Wed, 17 Feb 2010 23:36:50 +0000 (15:36 -0800)]
Update benchmark script to new API

14 years agoFix 'make website-upload'
Ryan Dahl [Wed, 17 Feb 2010 23:20:06 +0000 (15:20 -0800)]
Fix 'make website-upload'

14 years agobump version v0.1.29
Ryan Dahl [Wed, 17 Feb 2010 22:57:31 +0000 (14:57 -0800)]
bump version

14 years agosed -i 's/git-/git /g' Makefile
Ryan Dahl [Wed, 17 Feb 2010 23:07:19 +0000 (15:07 -0800)]
sed -i 's/git-/git /g' Makefile

14 years agoClean up and rename test-stat-handler
Ryan Dahl [Wed, 17 Feb 2010 22:30:50 +0000 (14:30 -0800)]
Clean up and rename test-stat-handler

14 years agoRename a few remaining fs.cat calls.
Ryan Dahl [Wed, 17 Feb 2010 22:00:53 +0000 (14:00 -0800)]
Rename a few remaining fs.cat calls.

14 years agoAdd /opt/local/lib as a search path for gpg-error
Ryan Dahl [Wed, 17 Feb 2010 21:56:44 +0000 (13:56 -0800)]
Add /opt/local/lib as a search path for gpg-error

Why doesn't WAF just search LD_LIBRARY_PATH?

14 years agoAdd note about gnutls and libgpg-error in installation instructions
Ryan Dahl [Wed, 17 Feb 2010 21:39:03 +0000 (13:39 -0800)]
Add note about gnutls and libgpg-error in installation instructions

14 years agoRemove references to wait() in docs
Ryan Dahl [Wed, 17 Feb 2010 21:29:25 +0000 (13:29 -0800)]
Remove references to wait() in docs

14 years agodocumentation clean up
Ryan Dahl [Wed, 17 Feb 2010 21:14:34 +0000 (13:14 -0800)]
documentation clean up

14 years agoAdd asciidoc-xhtml11.js for use with asciidoc 8.5.1
Ryan Dahl [Wed, 17 Feb 2010 20:48:14 +0000 (12:48 -0800)]
Add asciidoc-xhtml11.js for use with asciidoc 8.5.1

14 years agoAPI: OutgoingMessage.prototype.finish() renamed to close()
Ryan Dahl [Wed, 17 Feb 2010 19:10:10 +0000 (11:10 -0800)]
API: OutgoingMessage.prototype.finish() renamed to close()

14 years agoFile API tweaks
Tim Caswell [Wed, 17 Feb 2010 07:06:26 +0000 (01:06 -0600)]
File API tweaks

- Rename fs.cat to fs.readFile
- Move file.write to fs.writeFile
- Allow strings for the flag argument to fs.open
  ("r", "r+", "w", "w+", "a", "a+")
- Remove the unused 'File' module / class

14 years agoAPI: Make request/response object closer to stream interface
Ryan Dahl [Wed, 17 Feb 2010 06:16:29 +0000 (22:16 -0800)]
API: Make request/response object closer to stream interface

- sendBody() renamed to write()
- 'body' event renamed to 'data'
- 'complete' event renamed to 'end'

14 years agoAdd some puts() to test-multipart.js to show what it's doing.
isaacs [Wed, 17 Feb 2010 05:14:00 +0000 (21:14 -0800)]
Add some puts() to test-multipart.js to show what it's doing.

14 years ago[debug] Give debug_watcher maximum priority
Ryan Dahl [Wed, 17 Feb 2010 03:34:42 +0000 (19:34 -0800)]
[debug] Give debug_watcher maximum priority

14 years ago[debug] Use ProcessDebugMessage() instead of executing empty script
Ryan Dahl [Wed, 17 Feb 2010 00:24:02 +0000 (16:24 -0800)]
[debug] Use ProcessDebugMessage() instead of executing empty script

And don't use --debugger_auto_break v8 flag, it seems unnecessary.

14 years agoCalculate page size with getpagesize for armel
Jérémy Lal [Wed, 17 Feb 2010 00:16:01 +0000 (16:16 -0800)]
Calculate page size with getpagesize for armel

14 years agoThrow from connection.connect if resolving.
Ryan Dahl [Tue, 16 Feb 2010 22:38:51 +0000 (14:38 -0800)]
Throw from connection.connect if resolving.

Bug reported by James Golick.

14 years agoAPI: connection.send() renamed to connection.write()
Ryan Dahl [Tue, 16 Feb 2010 21:15:30 +0000 (13:15 -0800)]
API: connection.send() renamed to connection.write()

14 years agoRevert "Add process.startTime"
Ryan Dahl [Tue, 16 Feb 2010 17:32:25 +0000 (09:32 -0800)]
Revert "Add process.startTime"

Unnecessary

This reverts commit 896cef23c4a9bb1e3e4eeaef8cf101ea4e43af74.

14 years agoUse InstanceTemplate() instead of PrototypeTemplate() for accessor methods
Zoka [Tue, 16 Feb 2010 15:33:36 +0000 (02:33 +1100)]
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.

14 years agoFix Promise.wait() for fired promises
Felix Geisendörfer [Mon, 15 Feb 2010 22:54:55 +0000 (23:54 +0100)]
Fix Promise.wait() for fired promises

Failure introduced in 80ace36e4cb287c36b44c6b986c5e5dea2b1c825

14 years agoAdded failing test: promise.wait() after promise.emitXXX()
Jonas Pfenniger [Mon, 15 Feb 2010 22:46:06 +0000 (23:46 +0100)]
Added failing test: promise.wait() after promise.emitXXX()

14 years agoRemove unused variable
Ryan Dahl [Tue, 16 Feb 2010 01:15:40 +0000 (17:15 -0800)]
Remove unused variable

14 years agoFixed: promise late chain
Yuichiro MASUI [Sat, 13 Feb 2010 11:27:01 +0000 (03:27 -0800)]
Fixed: promise late chain

14 years agosys.inspect(Date) now shows the date value
Mark Hansen [Sun, 14 Feb 2010 12:11:59 +0000 (01:11 +1300)]
sys.inspect(Date) now shows the date value

14 years agoAdded multiple arg support for sys.puts(), print(), etc.
visionmedia [Wed, 10 Feb 2010 01:27:23 +0000 (17:27 -0800)]
Added multiple arg support for sys.puts(), print(), etc.

14 years agoRename 'posix' module to 'fs'
Ryan Dahl [Fri, 12 Feb 2010 09:04:14 +0000 (01:04 -0800)]
Rename 'posix' module to 'fs'

14 years agoAdd process.startTime
Ryan Dahl [Fri, 12 Feb 2010 08:47:35 +0000 (00:47 -0800)]
Add process.startTime

14 years agoAPI: tcp events 'receive' to 'data', 'eof' to 'end'
Ryan Dahl [Fri, 12 Feb 2010 08:25:15 +0000 (00:25 -0800)]
API: tcp events 'receive' to 'data', 'eof' to 'end'

No deprecation messages. Not sure how...

14 years agos/tinyclouds.org/nodejs.org/
Ryan Dahl [Fri, 12 Feb 2010 08:08:26 +0000 (00:08 -0800)]
s/tinyclouds.org/nodejs.org/

14 years agoFix whitespace and warnings in node.cc
Ryan Dahl [Fri, 12 Feb 2010 05:55:08 +0000 (21:55 -0800)]
Fix whitespace and warnings in node.cc

14 years agoSimple test case for require.async()
Felix Geisendörfer [Thu, 7 Jan 2010 10:50:28 +0000 (11:50 +0100)]
Simple test case for require.async()

This is to make sure this doesn't break after implementing the new
truly sync require() function.

14 years agoImplemented posix.catSync()
Felix Geisendörfer [Thu, 7 Jan 2010 10:34:42 +0000 (11:34 +0100)]
Implemented posix.catSync()

14 years agoSmall clean up to test-timers.js
Ryan Dahl [Thu, 11 Feb 2010 23:51:46 +0000 (15:51 -0800)]
Small clean up to test-timers.js

14 years agoReturn chunk & bytes read for posix.readSync()
Ryan Dahl [Wed, 6 Jan 2010 09:47:56 +0000 (01:47 -0800)]
Return chunk & bytes read for posix.readSync()

14 years agoFix: Module cache did not propagate
Felix Geisendörfer [Thu, 11 Feb 2010 11:09:46 +0000 (12:09 +0100)]
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
http://github.com/ry/node/commit/b73f61a137841cebac8459203b6be3baa1756980

14 years agoBuild system: support spaces in directory names
masuidrive [Wed, 10 Feb 2010 10:21:54 +0000 (02:21 -0800)]
Build system: support spaces in directory names

14 years agoAdd test: modifying event listeners during callback.
Michael Stillwell [Tue, 9 Feb 2010 22:32:52 +0000 (22:32 +0000)]
Add test: modifying event listeners during callback.

14 years agoIgnore EAGAIN in stderr dumps.
Ryan Dahl [Tue, 9 Feb 2010 22:42:56 +0000 (14:42 -0800)]
Ignore EAGAIN in stderr dumps.

(Going out of the way to be sync)

14 years agoFix stderr flushing problem
Ryan Dahl [Tue, 9 Feb 2010 22:11:58 +0000 (14:11 -0800)]
Fix stderr flushing problem

14 years agobump version v0.1.28
Ryan Dahl [Tue, 9 Feb 2010 21:20:20 +0000 (13:20 -0800)]
bump version

14 years agoDocument the changes to sys.inspect's API.
Tim Caswell [Tue, 9 Feb 2010 17:15:02 +0000 (11:15 -0600)]
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.

14 years agoRewrite sys.inspect to be more reliable and handle crazy edge cases.
Tim Caswell [Tue, 9 Feb 2010 16:50:05 +0000 (10:50 -0600)]
Rewrite sys.inspect to be more reliable and handle crazy edge cases.

14 years agoA rewrite of multipart library.
isaacs [Fri, 5 Feb 2010 22:26:44 +0000 (14:26 -0800)]
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.

14 years agoUse Google's jsmin.py so that Node can be used for evil
Ryan Dahl [Mon, 8 Feb 2010 17:47:01 +0000 (09:47 -0800)]
Use Google's jsmin.py so that Node can be used for evil

14 years agoAdd process.setuid(), getuid()
Michael Carter [Mon, 8 Feb 2010 06:13:10 +0000 (22:13 -0800)]
Add process.setuid(), getuid()