0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
Commit Graph

66 Commits

Author SHA1 Message Date
Ryan
f99fbc61e1 Add 'close' event to tcp.Server 2009-07-13 16:38:55 +02:00
Ryan
996d5ef5f1 Add res.client to ClientResponse 2009-07-13 16:38:54 +02:00
Ryan
0640517a91 fix example on website 2009-06-30 15:56:52 +02:00
Ryan
813b53938b bump version 2009-06-30 15:18:05 +02:00
Ryan
7879e7fd25 small cleanups 2009-06-30 13:58:30 +02:00
Ryan
8047b912c0 Change 'new node.tcp.Connection' to 'node.tcp.createConnection' 2009-06-30 13:56:52 +02:00
Ryan
d56552dc66 Remove node.Process constructor from API 2009-06-30 13:46:35 +02:00
Ryan
a3d77ee4e7 Add new documentation (using asciidoc!) 2009-06-30 13:27:25 +02:00
Ryan
bd952ac61e Add some notes about extent of HTTP API 2009-06-27 19:06:29 +02:00
Ryan
b77e603e04 add irc channel to website 2009-06-27 18:43:46 +02:00
Ryan
be963d68af add more detail to req.uri documentation 2009-06-27 00:43:03 +02:00
Ryan
fbe0be19eb bump version 2009-06-24 16:43:37 +02:00
Ryan
b9f3ae23cf Fix some typos in the docs 2009-06-23 10:26:17 +02:00
Ryan
f17b76afa4 Fix up docs. 2009-06-21 23:27:36 +02:00
Ryan
da03a02a98 Add documentation for node.Process 2009-06-21 14:37:25 +02:00
Ryan
ec5f3dbae1 bump version 2009-06-18 23:22:31 +02:00
Ryan
2b557c467f Namespace trimming: remove node.constants 2009-06-18 14:58:17 +02:00
Ryan
27b268b8c1 Clean ups 2009-06-17 15:05:44 +02:00
Ryan
3b05cf260e Add "opening" readyState for the resolve period. 2009-06-16 15:50:52 +02:00
Ryan
f76c3dc3ca bump version 2009-06-13 14:13:42 +02:00
Ryan
916b9ca715 Add Request objects on the HTTP server can be interrupted. 2009-06-12 17:37:43 +02:00
Ryan
1ec9f821e1 fix typo 2009-06-12 15:23:36 +02:00
Ryan
4cfc982c77 bump version 2009-06-11 13:54:03 +02:00
Ryan
728af1faa8 add note about python versions 2009-06-11 13:40:25 +02:00
Ryan
f6a7fe2657 Implement onExit() hook for modules.
onExit() is similar to the onLoad() callback. onExit() is called on each
module just before the process exits. This can be used to check state in
unit tests, but not to perform I/O. The process will forcibly exit as soon
as all of the onExit callbacks are made.
2009-06-08 16:17:33 +02:00
Ryan
b6fe4aec50 Module system refactor
There is one major API change in the refactor: filename extensions are now
required when requiring or including modules.

Added extra test to test-module-loading.js.
2009-06-08 15:34:15 +02:00
Ryan
887f056923 Do not assume transfer-encoding: chunked as default on requests.
If users do not send transfer-encoding or content-length headers, then I
will not add any additional. Content-Length: 0 is assumed if there aren't
other headers and chunked encoding is rare.
2009-06-06 23:57:15 +02:00
Ryan
5558bc4e6e Add connection.remoteAddress for server-side node.tcp.Connections. 2009-06-05 20:15:54 +02:00
Ryan
5170823572 Documentation for connection.connect() 2009-06-05 15:18:05 +02:00
Ryan
1614f51047 Merge branch 'ujh/master'
Conflicts:

	website/index.html
2009-06-05 14:32:53 +02:00
Urban Hafner
d04ef89758 Mention node_chat 2009-06-05 13:28:56 +03:00
Ryan
bee7ef90bd Add link to chat room demo 2009-06-05 12:27:09 +02:00
Urban Hafner
565becb8ad XHTML compliant HTML and a few spelling fixes 2009-06-05 13:23:51 +03:00
Urban Hafner
9e6603476a Mentioning the google group in the README and documentation. 2009-06-05 11:38:41 +03:00
Ryan
8cfdd326a8 Add "had_error" argument to the "onDisconnect" in node.tcp.Client
This is a boolean value which allows one to detect if the socket was closed
due to errors. There is not yet a way to look up the actual error code.
2009-06-04 12:33:19 +02:00
Ryan
d0988da515 Website: correct typos. 2009-06-03 11:43:54 +02:00
Ryan
8bf2a2fa55 Rename req.uri.queryKey to req.uri.params. More familar to rails users. 2009-06-01 20:59:33 +02:00
Ryan
739276b3a5 work on About on webpage 2009-05-31 14:24:10 +02:00
Ryan
d13d06467a Add audience to website 2009-05-30 19:36:41 +02:00
Ryan
7bd2282a9f Fix up description on web page 2009-05-30 18:14:26 +02:00
Ryan
272c4167da changes to website 2009-05-29 18:59:18 +02:00
Ryan
3c701cb56d add long description to website 2009-05-28 13:45:18 +02:00
Ryan
d460bdd31f Clean up that download link. 2009-05-27 18:41:04 +02:00
Ryan
80eed19612 Update website with first release link. 2009-05-27 18:38:22 +02:00
Ryan
1d8c4659d1 Just twiddling with the webpage 2009-05-27 15:42:16 +02:00
Ryan
b3338273b4 Reorganize the website into two pages. 2009-05-27 14:53:36 +02:00
Ryan
b260a9108b Add errno constants. Move all constants to node.constants namespace. 2009-05-26 19:48:49 +02:00
Ryan
24ebd0360a Clean up doc intro and syntax highlighting. 2009-05-26 18:06:53 +02:00
Ryan
e8f177aa2d Clean up outgoing encoding API. Generally: send(chunk, encoding). 2009-05-26 17:48:59 +02:00
Ryan
cf0eebf685 Add preliminary tcp documentation 2009-05-26 15:20:25 +02:00