Ryan Dahl [Wed, 23 Sep 2009 14:58:28 +0000 (16:58 +0200)]
Syntax highlighting for <tt> elements.
Ryan Dahl [Wed, 23 Sep 2009 14:53:31 +0000 (16:53 +0200)]
Add documentation about requiring system modules.
Ryan Dahl [Wed, 23 Sep 2009 14:39:43 +0000 (16:39 +0200)]
Tighten window on timer test.
Ryan Dahl [Wed, 23 Sep 2009 14:33:24 +0000 (16:33 +0200)]
cpplint.js file.{cc,h}
Ryan Dahl [Wed, 23 Sep 2009 14:09:40 +0000 (16:09 +0200)]
Call "connection" event after connection object is fully formed.
This became an apparent problem when adding setNoDelay because the command
was ignored if issued during the "connection" event.
Ryan Dahl [Wed, 23 Sep 2009 13:35:03 +0000 (15:35 +0200)]
Add connection.setNoDelay() to disable Nagle algorithm.
Ryan Dahl [Wed, 23 Sep 2009 12:49:51 +0000 (14:49 +0200)]
Upgrade v8 to 1.3.13
Felix Geisendörfer [Tue, 22 Sep 2009 22:46:56 +0000 (00:46 +0200)]
Syntax highlighting for api.html.
Asciidoc does not seem to support including custom JS, so this patch is a hack
for toc.js to dynamically include the needed CSS / JS. It should be ok unless
somebody has a better approach ...
Ryan Dahl [Tue, 22 Sep 2009 22:14:28 +0000 (00:14 +0200)]
Bugfix: EIOPromise::Create was allocating two EIOPromise objects
This is because it would call the javascript initializer which executed
Promise::New, and then it would rewrap the handle. Instead I make an
explicit inheritance from EIOPromise to Promise.
This seems to fix a memory leak which was reported by Ray Morgan:
http://groups.google.com/group/nodejs/browse_thread/thread/
e38949b1989da1d7
Ryan Dahl [Tue, 22 Sep 2009 16:35:15 +0000 (18:35 +0200)]
delete[] instead of delete for arrays.
Ryan Dahl [Tue, 22 Sep 2009 15:27:50 +0000 (17:27 +0200)]
Add readFile to '/file.js'
Thanks Hagen.
Ryan Dahl [Tue, 22 Sep 2009 10:15:45 +0000 (12:15 +0200)]
Add writeFile() to /file.js
Initial patch by Tim Caswell.
Ryan Dahl [Mon, 21 Sep 2009 10:27:22 +0000 (12:27 +0200)]
Remove "raw" encoding. Rename "raws" to "binary".
Deprecation warnings have been added to help the conversion to this new API.
Ryan Dahl [Sun, 20 Sep 2009 18:54:19 +0000 (20:54 +0200)]
Move node-repl to bin/node-repl
Ryan Dahl [Sun, 20 Sep 2009 18:40:20 +0000 (20:40 +0200)]
Add "/file.js" buffered disk I/O object.
This is similar to the class node.File which was removed in
82cb1b5acb53000690448bf3d9b5d1f40ee66f76.
Needs documentation.
Ryan Dahl [Sun, 20 Sep 2009 16:19:33 +0000 (18:19 +0200)]
Move mjsunit.js to system module directory.
Ryan Dahl [Sun, 20 Sep 2009 16:03:55 +0000 (18:03 +0200)]
Improve error message for requiring system modules.
Ryan Dahl [Sun, 20 Sep 2009 15:40:14 +0000 (17:40 +0200)]
Add node.error(); p() outputs to stderr.
Ryan Dahl [Sun, 20 Sep 2009 15:35:07 +0000 (17:35 +0200)]
Throw ret value from wait() only if it's there.
Ryan Dahl [Sun, 20 Sep 2009 15:34:27 +0000 (17:34 +0200)]
return error from cat_promise in node.fs.cat
Ryan Dahl [Fri, 18 Sep 2009 13:45:47 +0000 (15:45 +0200)]
Absolute path names for require() refer to node.libraryPaths
Ryan Dahl [Fri, 18 Sep 2009 16:32:25 +0000 (18:32 +0200)]
bump version
Ryan Dahl [Thu, 17 Sep 2009 14:16:41 +0000 (16:16 +0200)]
Upgrade v8 to 1.3.11
Ryan Dahl [Thu, 17 Sep 2009 13:36:31 +0000 (15:36 +0200)]
Add node.installPrefix
Ryan Dahl [Thu, 17 Sep 2009 13:15:05 +0000 (15:15 +0200)]
Add more explanation to docs for request.finish().
Ryan Dahl [Thu, 17 Sep 2009 12:58:18 +0000 (14:58 +0200)]
Bugfix: node.fs.write() was stack allocating buffer.
Since the buffer is passed to the thread pool it needs to be heap allocated.
Thanks to Jon Crosby and Tim Caswell for debugging this.
Jon Crosby [Thu, 17 Sep 2009 06:28:31 +0000 (23:28 -0700)]
Add failing spec for node.fs.write
Ryan Dahl [Tue, 15 Sep 2009 20:41:25 +0000 (22:41 +0200)]
Default to utf8 encoding for node.fs.cat()
Ryan Dahl [Tue, 15 Sep 2009 20:32:37 +0000 (22:32 +0200)]
update doc for node.fs.write()
Ryan Dahl [Tue, 15 Sep 2009 13:42:16 +0000 (15:42 +0200)]
Add node.exec()
Ryan Dahl [Tue, 15 Sep 2009 13:25:06 +0000 (15:25 +0200)]
Add documentation for promise.emitSuccess and emitError
Ryan Dahl [Mon, 14 Sep 2009 20:44:25 +0000 (22:44 +0200)]
fix typo on website
Ryan Dahl [Mon, 14 Sep 2009 14:34:31 +0000 (16:34 +0200)]
Remove unused variable in http.cc
Ryan Dahl [Mon, 14 Sep 2009 14:25:41 +0000 (16:25 +0200)]
Fix buffering logic for HTTP outgoing messages.
Was sending two packets instead of one for some short messages, and even 3,
for short chunked-encoded messages. Also use the more general Encode()
function for receiving HTTP bodies.
Gives ~6% improvement on "hello world" web server benchmarks.
Ryan Dahl [Sun, 13 Sep 2009 21:44:56 +0000 (23:44 +0200)]
Remove erroneously placed EV_DEFAULT_UC_
Ryan Dahl [Sun, 13 Sep 2009 16:31:17 +0000 (18:31 +0200)]
API: node.fs.read() takes a normal encoding parameter.
Removes node.UTF8, node.RAW, node.ASCII enum versions of the encodings.
node.fs.read() now supports "raws" encoding.
Ryan Dahl [Sun, 13 Sep 2009 16:19:03 +0000 (18:19 +0200)]
Fix default encoding for outgoing HTTP messages
Was causing send() to throw argument errors because arrays of ints would get
paired with the "raws" encoding. The bug was introduced in 8eb1294.
Ryan Dahl [Sun, 13 Sep 2009 15:43:19 +0000 (17:43 +0200)]
Bugfix: ReportException shouldn't forget the top frame.
Ryan Dahl [Sun, 13 Sep 2009 10:38:59 +0000 (12:38 +0200)]
Bugfix: sendBody wasn't setting encoding
Ryan Dahl [Sat, 12 Sep 2009 17:14:16 +0000 (19:14 +0200)]
Fix broken asciidoc section
Jeff Smick [Sat, 12 Sep 2009 10:40:27 +0000 (12:40 +0200)]
Use "platform.architecture()" to find the proper architecture.
In Snow Leopard "platform.machine()" returns "i386" while
"platform.architecture()" returns ('64bit',''). Using information from both
we can determine the proper architecture
This reverts commit
ea29e137b5a9acda27bd9601448639aacfc1cd9e re-enabling the
64bit build on Macintosh.
Ryan [Sat, 12 Sep 2009 12:18:42 +0000 (14:18 +0200)]
Lint
Ryan [Sat, 12 Sep 2009 11:01:03 +0000 (13:01 +0200)]
API: Change arguments of emit(), emitSuccess(), emitError()
Instead of
myemitter.emit("event", [arg1, arg2, arg3]);
the API is now
myemitter.emit("event", arg1, arg2, arg3);
This change saves the creation of an extra array object for each event.
The implementation is also slightly more simple.
Ryan [Fri, 11 Sep 2009 19:27:20 +0000 (21:27 +0200)]
spell check api.txt
Ryan [Fri, 11 Sep 2009 19:06:50 +0000 (21:06 +0200)]
bump version
Ryan [Fri, 11 Sep 2009 19:04:02 +0000 (21:04 +0200)]
Add doc note about 'raws' encoding
Ryan [Fri, 11 Sep 2009 18:51:39 +0000 (20:51 +0200)]
Just add the gernerated doc files. Make life easier.
Ryan [Fri, 11 Sep 2009 18:47:45 +0000 (20:47 +0200)]
Revert "Add xsl files to doc directory so people can build docs easily"
This reverts commit
412b4636c8b7edfa05b7cb97691a1ddb656cea55.
Ryan [Fri, 11 Sep 2009 18:34:55 +0000 (20:34 +0200)]
Add xsl files to doc directory so people can build docs easily
Ryan [Fri, 11 Sep 2009 18:32:24 +0000 (20:32 +0200)]
Add node-repl
Ryan [Fri, 11 Sep 2009 18:05:22 +0000 (20:05 +0200)]
Add '--' to seperate v8 args from program args
Ryan [Fri, 11 Sep 2009 14:02:29 +0000 (16:02 +0200)]
cpplint.py node.cc and node.h
Ryan [Fri, 11 Sep 2009 11:41:47 +0000 (13:41 +0200)]
Add isDirectory(), isFile(), isSocket(), ... methods to stats object.
Thanks to Felix Geisendörfer for the initial patch.
Ryan [Thu, 10 Sep 2009 14:48:38 +0000 (16:48 +0200)]
Add 'extern char **environ' so that the new ENV code compiles.
Problem appeared in
dc39e8202456686513c43a4e2c4e5e505eb3a901.
Ryan [Thu, 10 Sep 2009 12:07:35 +0000 (14:07 +0200)]
Add access to user environment via ENV
Ryan [Thu, 10 Sep 2009 11:40:38 +0000 (13:40 +0200)]
Man page generation.
Ryan [Thu, 10 Sep 2009 10:41:18 +0000 (12:41 +0200)]
Remove debug agent. It shouldn't have been commited!
Appeared accidentally in
6dd850aa.
Ryan [Thu, 10 Sep 2009 10:34:29 +0000 (12:34 +0200)]
Move arg parsing to beginning of main()
For faster "./node -v"
Ryan [Wed, 9 Sep 2009 20:35:40 +0000 (22:35 +0200)]
Add a few fflush(stderr) calls to track down missing stacktraces.
Ryan [Wed, 9 Sep 2009 20:01:54 +0000 (22:01 +0200)]
Upgrade v8 to 1.3.10
Ryan [Wed, 9 Sep 2009 16:06:58 +0000 (18:06 +0200)]
Remove compiler warning with extra assert.
Ryan [Wed, 9 Sep 2009 15:35:59 +0000 (17:35 +0200)]
Add Exception::Error where missing.
Ryan [Wed, 9 Sep 2009 15:22:20 +0000 (17:22 +0200)]
Introduce "raws" encoding. Raw String.
This allows you to have binary data imported into your application via
strings instead of arrays of numbers! This needs testing before release.
Ryan [Wed, 9 Sep 2009 13:51:49 +0000 (15:51 +0200)]
Byte stream to V8 decoding and encoding.
This does not (should not) change behavior. Pulls those two functions
(encode/decode) out into node.cc.
Ryan [Tue, 8 Sep 2009 12:59:43 +0000 (14:59 +0200)]
node.assert() was broken.
Ryan [Mon, 7 Sep 2009 12:09:18 +0000 (14:09 +0200)]
Internally use full paths when loading modules.
This completes shebang support begun in
6acac912dd4da0479a0630a8d1b2878ca83b22de.
Ryan [Mon, 7 Sep 2009 12:20:41 +0000 (14:20 +0200)]
Almost completely remove onExit and onLoad.
They were deprecated in
723c7d9f7c4e5ba9600adae95bd481fad70a3d60 and
31265be4a6584ff1b9a1ed0dedb5bc6c2f1c2e56.
Still retaining error message.
Ryan [Mon, 7 Sep 2009 12:13:01 +0000 (14:13 +0200)]
Exit the process on module load error. (temporary)
Ryan [Mon, 7 Sep 2009 10:56:10 +0000 (12:56 +0200)]
Add note about sendBody buffering to docs
Ryan [Mon, 7 Sep 2009 10:54:08 +0000 (12:54 +0200)]
Add some links to the website
Ryan [Mon, 7 Sep 2009 10:52:55 +0000 (12:52 +0200)]
Create NODE_UNIXTIME macros
Ryan [Sat, 5 Sep 2009 12:47:56 +0000 (14:47 +0200)]
bump version
Ryan [Sat, 5 Sep 2009 12:13:06 +0000 (14:13 +0200)]
Hack for compiling on Snow Leopard.
I don't have access to this OS to fix the issue properly, so for the moment
I'm reverting back to 32bit build on Darwin. We changed to native 64bit in
8ddf930901c03a0a6c03b8da22da6f7b35f445af.
Thanks to Johan Dahlberg and Tim Caswell for reporting and debugging this.
Ryan [Sat, 5 Sep 2009 12:32:19 +0000 (14:32 +0200)]
Small change to website index.html
Ryan [Fri, 4 Sep 2009 15:35:38 +0000 (17:35 +0200)]
Bugfix: Trap exceptions in URIParser.
A user was able to crash chat.tinyclouds.org by sending it a malformed URL!
Not good.
Ryan [Fri, 4 Sep 2009 10:35:30 +0000 (12:35 +0200)]
bump version
Ryan [Fri, 4 Sep 2009 10:15:21 +0000 (12:15 +0200)]
Fix slowness in debug run of test-tcp-many-clients
I'm not sure what is actually causing
node_g test/mjsunit/test-tcp-many-clients.js
to run slowly, but I traced the problem to
afd9e714d3937288de51116a45234c1e86a9444f.
Somehow it has to do with promoting the compilation of src/util.js. That
change wasn't actually intended to be included in afd9e7 commit anyway, so
I'm reverting it here.
Ryan [Fri, 4 Sep 2009 09:46:56 +0000 (11:46 +0200)]
Upgrade evcom - disable EPIPE error output.
Ryan [Fri, 4 Sep 2009 09:46:31 +0000 (11:46 +0200)]
Add test-mkdir-rmdir.js
Ryan [Thu, 3 Sep 2009 19:59:31 +0000 (21:59 +0200)]
Sort files in readdir test.
Ryan [Thu, 3 Sep 2009 19:57:15 +0000 (21:57 +0200)]
Add node.fs.mkdir()
Ryan [Thu, 3 Sep 2009 19:29:20 +0000 (21:29 +0200)]
Add node.fs.readdir()
Ryan [Tue, 25 Aug 2009 00:29:45 +0000 (02:29 +0200)]
Clean up eio wrappers. Create EIOPromise.
Ryan [Thu, 3 Sep 2009 15:21:08 +0000 (17:21 +0200)]
Clean up text on website.
Ryan [Thu, 3 Sep 2009 14:01:45 +0000 (16:01 +0200)]
Asyncly do getaddrinfo() on Apple.
Ryan [Thu, 3 Sep 2009 13:59:48 +0000 (15:59 +0200)]
Upgrade libeio, increase xthread stacksize to 64kb.
64kb seems to be the magic number for getaddrinfo() to work on Macintosh.
Ryan [Thu, 3 Sep 2009 13:00:06 +0000 (15:00 +0200)]
Add extension API documentation
Ryan [Thu, 3 Sep 2009 08:38:49 +0000 (10:38 +0200)]
Add stack to promise.wait().
The problem was that if promise A was waiting and promise B was created and
then also told to wait (from some callback coming off the event loop), and
then promise A finished, promise B's wait would return. Promise A's wait
would not return until promise B was finished. This is incorrect.
To solve this issue properly, one probably needs to allocate separate
execution stacks. I use, instead, Poor Man's Coroutines. We continue to use
the main execution stack and force promises created most recently to return
first.
That is even if Promise A finishes first, neither wait() returns. Not until
Promise B finishes, will its wait() return. After that is complete, Promise
A's wait() will return.
This introduces the problem of growing the "wait stack" infinitely. Thus
I've added a strong warning to the documentation only to use this operation
sparingly. require() and include() seem to be the proper use case for such a
thing: they are called usually at program start up - they don't take too
long to finish and they won't be called so often.
Let's experiment with this stop-gap. If the infinite promise stack becomes a
problem for many, then I will remove promise.wait() entirely or perhaps only
use it for thread pool events.
Ryan [Wed, 2 Sep 2009 18:19:52 +0000 (20:19 +0200)]
Build natively on x64.
Had to add some waf hackery to override V8's architecture choice. They
probably have a reason for defaulting still to IA32, but all tests are
passing for me, and it makes it easier on users-and I think chrome is using
x64 builds too. So let's go for it!
Ryan [Wed, 2 Sep 2009 18:18:50 +0000 (20:18 +0200)]
Add limits.h to src/node.cc for PATH_MAX
Ryan [Wed, 2 Sep 2009 09:13:46 +0000 (11:13 +0200)]
Upgrade V8 to 1.3.9
Ryan [Tue, 1 Sep 2009 13:43:56 +0000 (15:43 +0200)]
Set module.loaded=true for dll modules.
Ryan [Tue, 1 Sep 2009 13:28:10 +0000 (15:28 +0200)]
Remove --lib option since there is no more libnode
Ryan [Tue, 1 Sep 2009 12:15:29 +0000 (14:15 +0200)]
Revert static library build.
Not necessary to build dll modules after all.
Michael Carter [Tue, 1 Sep 2009 09:39:30 +0000 (11:39 +0200)]
Feature: add node.cwd() to access the current working directory.
Ryan [Mon, 31 Aug 2009 16:57:01 +0000 (18:57 +0200)]
Use Error exceptions where possible in net.cc and file.cc
Ryan [Mon, 31 Aug 2009 16:48:47 +0000 (18:48 +0200)]
Throw Error exceptions from node.dlopen()
Ryan [Mon, 31 Aug 2009 16:22:09 +0000 (18:22 +0200)]
Stack traces for mjsunit errors, better error reporting function.
The error reporting function tries to look at the "stack" element of the
exception.
Ryan [Mon, 31 Aug 2009 16:15:27 +0000 (18:15 +0200)]
Upgrade evcom; Add setTimeout method to node.tcp.Connection
The default timeout is 60 seconds, but it can now be changed.
evcom upgrade includes fixes to force_close.
Ryan [Mon, 31 Aug 2009 14:12:27 +0000 (16:12 +0200)]
Update test script to use new debug build's name: node_g