platform/upstream/nodejs.git
14 years agoOutput stderr from test-remote-module-loading.js
Ryan Dahl [Sat, 7 Nov 2009 14:08:46 +0000 (15:08 +0100)]
Output stderr from test-remote-module-loading.js

There is a small problem with test-remote-module-loading.js.
When it starts a child "node", the child uses the default require.paths
instead unshifting the build lib/

14 years agoCreate require.main, remove process.cat()
Ryan Dahl [Sat, 7 Nov 2009 13:57:49 +0000 (14:57 +0100)]
Create require.main, remove process.cat()

14 years agoAPI: rename process.inherits to sys.inherits
Ryan Dahl [Sat, 7 Nov 2009 13:45:39 +0000 (14:45 +0100)]
API: rename process.inherits to sys.inherits

14 years agoCombine all compiled javascript files into src/node.js
Ryan Dahl [Sat, 7 Nov 2009 13:37:22 +0000 (14:37 +0100)]
Combine all compiled javascript files into src/node.js

14 years agoAdd test to ensure the server can handle keep-alive
Ryan Dahl [Fri, 6 Nov 2009 12:42:56 +0000 (13:42 +0100)]
Add test to ensure the server can handle keep-alive

14 years agoFix http_simple server for new API
Ryan Dahl [Fri, 6 Nov 2009 11:53:27 +0000 (12:53 +0100)]
Fix http_simple server for new API

14 years agoRevert "Upgrade http parser, change node as needed."
Ryan Dahl [Fri, 6 Nov 2009 11:44:20 +0000 (12:44 +0100)]
Revert "Upgrade http parser, change node as needed."

Something is broken in how keep-alive is working. Reverting until I can fix
it.

This reverts commit b893859c34f05db5c45f416949ebc0eee665cca6.

14 years agoExpose http.IncomingMessage and http.OutgoingMessage
Ryan Dahl [Wed, 4 Nov 2009 23:02:15 +0000 (00:02 +0100)]
Expose http.IncomingMessage and http.OutgoingMessage

14 years agoFix regexp in file extension checking
Ryan Dahl [Wed, 4 Nov 2009 11:39:08 +0000 (12:39 +0100)]
Fix regexp in file extension checking

14 years agoExpose http.ClientRequest and http.ServerResponse
Ryan Dahl [Wed, 4 Nov 2009 11:37:52 +0000 (12:37 +0100)]
Expose http.ClientRequest and http.ServerResponse

14 years agoRemove unreachable lines
Ryan Dahl [Wed, 4 Nov 2009 01:18:31 +0000 (02:18 +0100)]
Remove unreachable lines

14 years agoFix google-analytics on index.html
Ryan Dahl [Tue, 3 Nov 2009 23:18:05 +0000 (00:18 +0100)]
Fix google-analytics on index.html

14 years agoAdded process.chdir()
Brandon Beacher [Tue, 3 Nov 2009 18:13:38 +0000 (13:13 -0500)]
Added process.chdir()

14 years agobump version v0.1.16
Ryan Dahl [Tue, 3 Nov 2009 12:48:02 +0000 (13:48 +0100)]
bump version

14 years agoMove memoryUsage() into C on Linux
Ryan Dahl [Tue, 3 Nov 2009 12:00:42 +0000 (13:00 +0100)]
Move memoryUsage() into C on Linux

14 years agoAdd sys.memoryUsage()
Ryan Dahl [Tue, 3 Nov 2009 00:30:01 +0000 (01:30 +0100)]
Add sys.memoryUsage()

14 years agoAdd process.platform
Ryan Dahl [Mon, 2 Nov 2009 23:21:00 +0000 (00:21 +0100)]
Add process.platform

14 years agoAdd requires to google example in docs.
Ryan Dahl [Mon, 2 Nov 2009 21:55:39 +0000 (22:55 +0100)]
Add requires to google example in docs.

14 years agoThe return of relative module loading
Felix Geisendörfer [Mon, 2 Nov 2009 20:21:02 +0000 (21:21 +0100)]
The return of relative module loading

14 years agoThe return of absolute Module loading
Felix Geisendörfer [Sun, 1 Nov 2009 23:34:16 +0000 (00:34 +0100)]
The return of absolute Module loading

14 years agoAdd mediacoder's logo to website
Ryan Dahl [Mon, 2 Nov 2009 11:28:08 +0000 (12:28 +0100)]
Add mediacoder's logo to website

14 years agoThe return of remote module loading
Felix Geisendörfer [Sun, 1 Nov 2009 14:34:46 +0000 (15:34 +0100)]
The return of remote module loading

14 years agorequire.paths aliased as process.path
Ryan Dahl [Sun, 1 Nov 2009 08:27:21 +0000 (09:27 +0100)]
require.paths aliased as process.path

14 years agoUpdate webpage with new module api
Ryan Dahl [Sat, 31 Oct 2009 19:26:03 +0000 (20:26 +0100)]
Update webpage with new module api

14 years agoUpgrade benchmark scripts for new module API
Ryan Dahl [Sat, 31 Oct 2009 19:06:46 +0000 (20:06 +0100)]
Upgrade benchmark scripts for new module API

14 years agoUpdate deprecation errors.
Ryan Dahl [Sat, 31 Oct 2009 18:56:27 +0000 (19:56 +0100)]
Update deprecation errors.

14 years agoDon't call process.exit() on missing module.
Ryan Dahl [Sat, 31 Oct 2009 18:53:07 +0000 (19:53 +0100)]
Don't call process.exit() on missing module.

Just raise exception naturally.

14 years agomodule.name renamed to module.id for commonjs compat
Ryan Dahl [Sat, 31 Oct 2009 18:47:41 +0000 (19:47 +0100)]
module.name renamed to module.id for commonjs compat

14 years agoFix search-replace errors in api.txt
Ryan Dahl [Sat, 31 Oct 2009 18:14:24 +0000 (19:14 +0100)]
Fix search-replace errors in api.txt

14 years agoModule refactor - almost CommonJS compatible now
Ryan Dahl [Sat, 31 Oct 2009 18:02:30 +0000 (19:02 +0100)]
Module refactor - almost CommonJS compatible now

API change summary:

  * require("/sys.js") becomes require("sys")

  * require("circle.js") becomes require("./circle")

  * process.path.join() becomes require("path").join()

14 years agoforgot to add lib/dns.js in c53672
Ryan Dahl [Sat, 31 Oct 2009 11:19:23 +0000 (12:19 +0100)]
forgot to add lib/dns.js in c53672

14 years agoA few more node->process changes
Ryan Dahl [Thu, 29 Oct 2009 22:59:35 +0000 (23:59 +0100)]
A few more node->process changes

14 years agoNamespace EVERYTHING under process; introduce GLOBAL
Ryan Dahl [Thu, 29 Oct 2009 22:34:10 +0000 (23:34 +0100)]
Namespace EVERYTHING under process; introduce GLOBAL

http://groups.google.com/group/nodejs/browse_thread/thread/1034fd2ad2cd93e8

14 years agoUpgrade v8 to 1.3.18
Ryan Dahl [Thu, 29 Oct 2009 15:11:05 +0000 (16:11 +0100)]
Upgrade v8 to 1.3.18

14 years agoThe return of Promise.cancel() with some additional tests & docs
Felix Geisendörfer [Thu, 29 Oct 2009 10:19:47 +0000 (11:19 +0100)]
The return of Promise.cancel() with some additional tests & docs

14 years agoClean up posix module docs
Ryan Dahl [Thu, 29 Oct 2009 10:17:26 +0000 (11:17 +0100)]
Clean up posix module docs

14 years agoMove node.dns.* into /dns.js
Ryan Dahl [Wed, 28 Oct 2009 22:02:52 +0000 (23:02 +0100)]
Move node.dns.* into /dns.js

14 years agonode.fs.* moved into "/posix.js"
Ryan Dahl [Wed, 28 Oct 2009 21:45:40 +0000 (22:45 +0100)]
node.fs.* moved into "/posix.js"

use require("/posix.js") to access them.

14 years agofix error from v8 upgrade
Ryan Dahl [Wed, 28 Oct 2009 20:35:49 +0000 (21:35 +0100)]
fix error from v8 upgrade

14 years agoUpgrade v8 to 1.3.17
Ryan Dahl [Wed, 28 Oct 2009 18:25:22 +0000 (19:25 +0100)]
Upgrade v8 to 1.3.17

14 years agoDRY up the open, write, read, and close methods on the File prototype.
Tim Caswell [Wed, 28 Oct 2009 16:49:22 +0000 (11:49 -0500)]
DRY up the open, write, read, and close methods on the File prototype.

14 years agobump version v0.1.15
Ryan Dahl [Wed, 28 Oct 2009 15:36:44 +0000 (16:36 +0100)]
bump version

14 years agoRevert "Change HTTP back to a 1.1 client."
Ryan Dahl [Wed, 28 Oct 2009 14:37:58 +0000 (15:37 +0100)]
Revert "Change HTTP back to a 1.1 client."

This reverts commit 9a70abbf1378060d1b46240eed0dcd0dffd526ff.

14 years agoOnly allow a promise to fire once, remove promise.cancel()
Ryan Dahl [Fri, 16 Oct 2009 12:55:30 +0000 (14:55 +0200)]
Only allow a promise to fire once, remove promise.cancel()

promise.cancel() is due to return at some point.

14 years agoUse full path to link to libv8.a and libudns.a
Ryan Dahl [Tue, 27 Oct 2009 21:50:46 +0000 (22:50 +0100)]
Use full path to link to libv8.a and libudns.a

Previously was linking just by doing -lv8 or -ludns which could confuse the
build when a system libv8 or libudns was installed.

14 years agoLink to objects instead of shlibs for evcom, http_parser, coupling
Ryan Dahl [Tue, 27 Oct 2009 21:26:53 +0000 (22:26 +0100)]
Link to objects instead of shlibs for evcom, http_parser, coupling

14 years agofix make install (was broken from node_ prefix change)
Ryan Dahl [Tue, 27 Oct 2009 19:17:03 +0000 (20:17 +0100)]
fix make install (was broken from node_ prefix change)

14 years agoLink libev and libeio as a normal .o instead of as .a
Ryan Dahl [Tue, 27 Oct 2009 17:50:41 +0000 (18:50 +0100)]
Link libev and libeio as a normal .o instead of as .a

Using WAF "staticlib" to compile libev tends to confuse it with a system
version. Thanks to mr.binary42 for helping debug.

14 years agoAdd symlinks in root directory to executables after build.
Ryan Dahl [Tue, 27 Oct 2009 17:11:07 +0000 (18:11 +0100)]
Add symlinks in root directory to executables after build.

14 years agoEnable large file support.
Ryan Dahl [Tue, 27 Oct 2009 11:05:38 +0000 (12:05 +0100)]
Enable large file support.

14 years agoPrefix all source files with node_
Ryan Dahl [Tue, 27 Oct 2009 10:46:58 +0000 (11:46 +0100)]
Prefix all source files with node_

14 years agoRemove unused macro
Ryan Dahl [Tue, 27 Oct 2009 10:08:50 +0000 (11:08 +0100)]
Remove unused macro

14 years agoChange HTTP back to a 1.1 client.
Ryan Dahl [Mon, 26 Oct 2009 22:07:37 +0000 (23:07 +0100)]
Change HTTP back to a 1.1 client.

This was modified in b893859c34f05db5c45f416949ebc0eee665cca6 even though it
wasn't really required. Some users are experiencing problems after changing
to 1.0 - once those are identified the client will returned to 1.0.

14 years agoCorrectly guess x64 architecture
Ryan Dahl [Mon, 26 Oct 2009 21:27:52 +0000 (22:27 +0100)]
Correctly guess x64 architecture

Previously was dependent on how python was compiled, and this was causing
build errors for some Macintosh Snow Leopard users. The solution is to use
a functionality already in WAF which looks at the output of

  echo | gcc -E -dM -

14 years agoRename node.libraryPaths to require.paths
Ryan Dahl [Sun, 25 Oct 2009 21:51:10 +0000 (22:51 +0100)]
Rename node.libraryPaths to require.paths

to be more inline with CommonJS.

14 years agoAdd work-around for configure --debug with Python 2.4.3
Ryan Dahl [Fri, 16 Oct 2009 20:53:44 +0000 (22:53 +0200)]
Add work-around for configure --debug with Python 2.4.3

This is the error that was encountered:

  : make
  Waf: Entering directory `/dcs/06/csugds/node/ry-node-cfe5876/build'
  Traceback (most recent call last):
    File "tools/waf-light", line 148, in ?
      Scripting.prepare(t, cwd, VERSION, wafdir)
    File "/dcs/06/csugds/node/ry-node-cfe5876/tools/wafadmin/Scripting.py", line 142, in prepare
      prepare_impl(t, cwd, ver, wafdir)
    File "/dcs/06/csugds/node/ry-node-cfe5876/tools/wafadmin/Scripting.py", line 132, in prepare_impl
      main()
    File "/dcs/06/csugds/node/ry-node-cfe5876/tools/wafadmin/Scripting.py", line 185, in main
      fun(ctx)
    File "/dcs/06/csugds/node/ry-node-cfe5876/tools/wafadmin/Scripting.py", line 382, in build
      return build_impl(bld)
    File "/dcs/06/csugds/node/ry-node-cfe5876/tools/wafadmin/Scripting.py", line 395, in build_impl
      bld.add_subdirs([os.path.split(Utils.g_module.root_path)[0]])
    File "/dcs/06/csugds/node/ry-node-cfe5876/tools/wafadmin/Build.py", line 924, in add_subdirs
      self.recurse(dirs, 'build')
    File "/dcs/06/csugds/node/ry-node-cfe5876/tools/wafadmin/Utils.py", line 599, in recurse
      f(self)
    File "<string>", line 312, in build
    File "/dcs/06/csugds/node/ry-node-cfe5876/tools/wafadmin/TaskGen.py", line 297, in clone
      setattr(newobj, x, copy.copy(getattr(self, x)))
    File "/usr/lib/python2.4/copy.py", line 108, in copy
      return _reconstruct(x, rv, 0)
    File "/usr/lib/python2.4/copy.py", line 336, in _reconstruct
      y = callable(*args)
    File "/usr/lib/python2.4/copy_reg.py", line 92, in __newobj__
      return cls.__new__(cls, *args)
  TypeError: function() takes at least 2 arguments (0 given)
  make: *** [all] Error 1

14 years agoAdd v8 patch to fix mac x64 build.
Ryan Dahl [Fri, 16 Oct 2009 15:59:54 +0000 (17:59 +0200)]
Add v8 patch to fix mac x64 build.

http://codereview.chromium.org/284012

14 years agoUpgrade v8 to 1.3.16
Ryan Dahl [Fri, 16 Oct 2009 12:05:12 +0000 (14:05 +0200)]
Upgrade v8 to 1.3.16

and apply my V8 patch for debugging.

14 years agoImprove webpage
Ryan Dahl [Fri, 16 Oct 2009 11:46:16 +0000 (13:46 +0200)]
Improve webpage

- add google-analytics
- add example to front-page

14 years agoUpgrade http parser, change node as needed.
Ryan Dahl [Thu, 15 Oct 2009 17:18:18 +0000 (19:18 +0200)]
Upgrade http parser, change node as needed.

The latest version of http-parser is a bit more stringent EOF semantics.

14 years agoAccept string representations of signals in node.kill and child.kill
Ryan Dahl [Thu, 15 Oct 2009 13:45:04 +0000 (15:45 +0200)]
Accept string representations of signals in node.kill and child.kill

14 years agoAdded external interface for signal handlers.
Brandon Beacher [Wed, 14 Oct 2009 21:56:12 +0000 (17:56 -0400)]
Added external interface for signal handlers.

Also process.pid and node.kill().

14 years agoUpgrade http_parser, allows quotes in URI
Ryan Dahl [Wed, 14 Oct 2009 17:28:51 +0000 (19:28 +0200)]
Upgrade http_parser, allows quotes in URI

http_parser needs to be upgraded to latest code. Currently running off the
v0.2 branch, which is missing the latest fixes.

14 years agoAdd node.fs.sendfile()
Connor Dunn [Wed, 14 Oct 2009 16:50:51 +0000 (18:50 +0200)]
Add node.fs.sendfile()

14 years agoAdd connection.fd getter.
Ryan Dahl [Wed, 14 Oct 2009 15:07:50 +0000 (17:07 +0200)]
Add connection.fd getter.

14 years agoFix the link to the new Contribute section
Tim Caswell [Tue, 13 Oct 2009 18:08:53 +0000 (13:08 -0500)]
Fix the link to the new Contribute section

14 years agoNew section about contributing for the homepage
Felix Geisendörfer [Tue, 13 Oct 2009 17:45:13 +0000 (19:45 +0200)]
New section about contributing for the homepage

14 years agoClean up many of the reccommendations from jslint in the file.js library
Timothy Caswell [Tue, 22 Sep 2009 15:48:29 +0000 (10:48 -0500)]
Clean up many of the reccommendations from jslint in the file.js library

14 years agoCleanup node.fs.cat to follow the newer style to match the code of file.writeFile
Timothy Caswell [Tue, 22 Sep 2009 15:58:14 +0000 (10:58 -0500)]
Cleanup node.fs.cat to follow the newer style to match the code of file.writeFile

14 years agoutils.js links to sys.js instead of other way around
Ryan Dahl [Tue, 13 Oct 2009 11:26:00 +0000 (13:26 +0200)]
utils.js links to sys.js instead of other way around

14 years agoFix for confusing deprecation message
Felix Geisendörfer [Mon, 12 Oct 2009 20:13:58 +0000 (22:13 +0200)]
Fix for confusing deprecation message

14 years agoBugfix: 'data' event for stdio should emit a string
Ryan Dahl [Mon, 12 Oct 2009 19:09:18 +0000 (21:09 +0200)]
Bugfix: 'data' event for stdio should emit a string

Was emitting a single element array where array[0] was the input.

14 years agoDocumentation for Promise.timeout() and Promise.cancel()
Felix Geisendörfer [Mon, 12 Oct 2009 15:03:16 +0000 (17:03 +0200)]
Documentation for Promise.timeout() and Promise.cancel()

14 years agoAdd some code comments to net.cc
Ryan Dahl [Mon, 12 Oct 2009 14:46:18 +0000 (16:46 +0200)]
Add some code comments to net.cc

14 years agoImplemented Promise.timeout() and Promise.cancel()
Felix Geisendörfer [Mon, 12 Oct 2009 14:09:15 +0000 (16:09 +0200)]
Implemented Promise.timeout() and Promise.cancel()

14 years agoUse bundle flags for osx in node-waf
Ryan Dahl [Mon, 12 Oct 2009 14:01:22 +0000 (16:01 +0200)]
Use bundle flags for osx in node-waf

14 years agoFix tabs in changelog
Ryan Dahl [Sat, 10 Oct 2009 09:58:36 +0000 (11:58 +0200)]
Fix tabs in changelog

14 years agobump version v0.1.14
Ryan Dahl [Fri, 9 Oct 2009 16:10:59 +0000 (18:10 +0200)]
bump version

14 years agoACTUALLY remove node_version.h from node.h
Ryan Dahl [Fri, 9 Oct 2009 15:49:29 +0000 (17:49 +0200)]
ACTUALLY remove node_version.h from node.h

14 years agoInternalize node_version.h.
Ryan Dahl [Fri, 9 Oct 2009 15:47:04 +0000 (17:47 +0200)]
Internalize node_version.h.

With the more detailed node.version changing (every commit), having
node_version.h exposed to all modules required a complete recompile each
time a commit was made.

People can use the javascript interface to get the version.

14 years agoAdd comments to node.cc
Ryan Dahl [Fri, 9 Oct 2009 15:15:47 +0000 (17:15 +0200)]
Add comments to node.cc

14 years ago'git-describe' to 'git describe'
Ryan Dahl [Fri, 9 Oct 2009 14:16:27 +0000 (16:16 +0200)]
'git-describe' to 'git describe'

14 years agoPut git revision into version string
Ryan Dahl [Fri, 9 Oct 2009 13:00:12 +0000 (15:00 +0200)]
Put git revision into version string

14 years agoClean up README.
Ryan Dahl [Fri, 9 Oct 2009 12:53:53 +0000 (14:53 +0200)]
Clean up README.

14 years agoKill -Werror in V8 for GCC 4.4.1 users.
Ryan Dahl [Fri, 9 Oct 2009 12:21:41 +0000 (14:21 +0200)]
Kill -Werror in V8 for GCC 4.4.1 users.

http://code.google.com/p/v8/issues/detail?id=413

14 years agoUpdate docs to use sys.js and not so much mixin().
Ryan Dahl [Fri, 9 Oct 2009 12:18:10 +0000 (14:18 +0200)]
Update docs to use sys.js and not so much mixin().

14 years agosymlink sys.js to utils.js
Ryan Dahl [Fri, 9 Oct 2009 12:09:42 +0000 (14:09 +0200)]
symlink sys.js to utils.js

14 years agoRaise helpful error when include() is called.
Ryan Dahl [Fri, 9 Oct 2009 11:30:27 +0000 (13:30 +0200)]
Raise helpful error when include() is called.

14 years agoEnable debugging.
Ryan Dahl [Fri, 9 Oct 2009 11:25:04 +0000 (13:25 +0200)]
Enable debugging.

Use the --debug command line flag to enable.

It appears that d8 sucks. Luckily it can be rewritten rather easily with the
repl and tcp client libraries.

Node's CL option parsing is getting rather unwieldy - needs refactor.

14 years agoMore updates to wscripts v8 building.
Ryan Dahl [Fri, 9 Oct 2009 10:49:48 +0000 (12:49 +0200)]
More updates to wscripts v8 building.

This allows me to hack on V8 without recompiling the whole thing.

14 years agoFix wscript for python 2.4
Ryan Dahl [Thu, 8 Oct 2009 22:34:39 +0000 (00:34 +0200)]
Fix wscript for python 2.4

14 years agoImprove build for V8
Ryan Dahl [Thu, 8 Oct 2009 21:20:14 +0000 (23:20 +0200)]
Improve build for V8

Users following HEAD should 'make distclean' and reconfigure after this
update.

14 years agoUse /bin/sh from exec()
Ryan Dahl [Wed, 7 Oct 2009 23:30:26 +0000 (01:30 +0200)]
Use /bin/sh from exec()

14 years agoRemoved getHeader() function thanks to f623f
Felix Geisendörfer [Wed, 7 Oct 2009 15:21:39 +0000 (17:21 +0200)]
Removed getHeader() function thanks to f623f

14 years agoNormalize HTTP headers.
Ryan Dahl [Wed, 7 Oct 2009 14:56:19 +0000 (16:56 +0200)]
Normalize HTTP headers.

"Content-Length" becomes "content-length".

14 years agoUpgrade v8 to 1.3.15
Ryan Dahl [Wed, 7 Oct 2009 14:02:34 +0000 (16:02 +0200)]
Upgrade v8 to 1.3.15

14 years agoFix --v8-options command line argument.
Ryan Dahl [Wed, 7 Oct 2009 14:01:03 +0000 (16:01 +0200)]
Fix --v8-options command line argument.

14 years agoFix test-signal-handler.js on macintosh - pause before exit.
Ryan Dahl [Wed, 7 Oct 2009 13:39:39 +0000 (15:39 +0200)]
Fix test-signal-handler.js on macintosh - pause before exit.

14 years agoFix build.
Ryan Dahl [Wed, 7 Oct 2009 10:56:55 +0000 (12:56 +0200)]
Fix build.

- Add -f flag to rm on make clean.
- Use old jsmin - the new one seems to be broken.

14 years agoFix 'make distclean'
Ryan Dahl [Wed, 7 Oct 2009 10:43:21 +0000 (12:43 +0200)]
Fix 'make distclean'