Ryan Dahl
|
c622142692
|
Add note about gnutls and libgpg-error in installation instructions
|
15 years ago |
Ryan Dahl
|
5013bf1781
|
API: OutgoingMessage.prototype.finish() renamed to close()
|
15 years ago |
Ryan Dahl
|
ae85d9af97
|
API: Make request/response object closer to stream interface
- sendBody() renamed to write()
- 'body' event renamed to 'data'
- 'complete' event renamed to 'end'
|
15 years ago |
Ryan Dahl
|
23cf502db7
|
API: connection.send() renamed to connection.write()
|
15 years ago |
Ryan Dahl
|
7d428a7741
|
s/tinyclouds.org/nodejs.org/
|
15 years ago |
Ryan Dahl
|
49de41ef46
|
bump version
|
15 years ago |
Ryan Dahl
|
0cfa789cc5
|
bump version
|
15 years ago |
Ryan Dahl
|
da00413196
|
bump version
|
15 years ago |
Ryan Dahl
|
39ca93549a
|
bump version
|
15 years ago |
Ryan Dahl
|
642c2773a7
|
bump version
|
15 years ago |
Ryan Dahl
|
f91e347eee
|
bump version
|
15 years ago |
Ryan Dahl
|
a2d809fe90
|
bump version
|
15 years ago |
Ryan Dahl
|
c6affb64f9
|
bump version
|
15 years ago |
Ryan Dahl
|
aa42c6790d
|
bump version
|
15 years ago |
Ryan Dahl
|
633d6be328
|
bump version
|
15 years ago |
Ryan Dahl
|
027829d285
|
bump version
|
15 years ago |
Ryan Dahl
|
0bf34b598f
|
add link to slides on web page
|
15 years ago |
Ryan Dahl
|
d1f69ef35d
|
bump version
|
15 years ago |
Ryan Dahl
|
d3de943eb1
|
Fix google-analytics on index.html
|
15 years ago |
Ryan Dahl
|
726865af7b
|
bump version
|
15 years ago |
Ryan Dahl
|
2e40a9e15f
|
Add mediacoder's logo to website
|
15 years ago |
Ryan Dahl
|
cf652b82a3
|
Update webpage with new module api
|
15 years ago |
Ryan Dahl
|
7a2e784ad7
|
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()
|
15 years ago |
Ryan Dahl
|
eca2de73ed
|
bump version
|
15 years ago |
Ryan Dahl
|
5f82c4baf0
|
Improve webpage
- add google-analytics
- add example to front-page
|
15 years ago |
Tim Caswell
|
d2f5094096
|
Fix the link to the new Contribute section
|
15 years ago |
Felix Geisendörfer
|
fd189c8a73
|
New section about contributing for the homepage
|
15 years ago |
Ryan Dahl
|
d79b6e9f7f
|
bump version
|
15 years ago |
Ryan Dahl
|
335d9af71f
|
Update docs to use sys.js and not so much mixin().
|
15 years ago |
Ryan Dahl
|
3e9dd0e2e3
|
Remove include() from website.
|
15 years ago |
Ryan Dahl
|
763137e705
|
chat.tinyclouds.org -> chat.nodejs.org
|
15 years ago |
Ryan Dahl
|
9c9d67eb6c
|
bump version
|
15 years ago |
Ryan Dahl
|
f6657c3c9d
|
Move http library to /http.js
|
15 years ago |
Ryan Dahl
|
7abad8b7b3
|
API: Move node.puts(), node.exec() and others to /utils.js
|
15 years ago |
Ryan Dahl
|
2f56ccb45e
|
bump version
|
15 years ago |
Ryan Dahl
|
cfffa0bdd8
|
Clean up website a bit.
|
15 years ago |
Ryan Dahl
|
5ddc4f5d0c
|
bump version
|
15 years ago |
Ryan Dahl
|
7fa694a3b6
|
fix typo on website
|
15 years ago |
Ryan
|
12bb0d46ce
|
bump version
|
15 years ago |
Ryan
|
68dda0a7d8
|
Man page generation.
|
15 years ago |
Ryan
|
94e627dc32
|
Add some links to the website
|
15 years ago |
Ryan
|
ba6c5e38d5
|
bump version
|
15 years ago |
Ryan
|
485a9c1487
|
Small change to website index.html
|
15 years ago |
Ryan
|
734e86b9e5
|
bump version
|
15 years ago |
Ryan
|
c13773a71f
|
Clean up text on website.
|
15 years ago |
Ryan
|
31db4f1ed8
|
bump version
|
15 years ago |
Ryan
|
00a03dfee2
|
Fix text on index.html
|
15 years ago |
Ryan
|
116f4dea05
|
lint
|
15 years ago |
Ryan
|
b5a1585470
|
Restyle website/api.html. Now looks like the front page.
Made a few other little corrections too.
|
15 years ago |
Ryan
|
316e2833f0
|
Use flat object instead of array-of-arrays for HTTP headers.
E.G. { "Content-Length": 10, "Content-Type": "text/html" } instead of
[["Content-Length", 10], ["Content-Type", "text/html"]].
The main reason for this change is object-creation efficiency.
This still needs testing and some further changes (like when receiving
multiple header lines with the same field-name, they are concatenated with a
comma but some headers ("Content-Length") should not be concatenated ; the
new header line should replace the old value).
Various thoughts on this subject:
http://groups.google.com/group/nodejs/browse_thread/thread/9a67bb32706d9efc#
http://four.livejournal.com/979640.html
http://mail.gnome.org/archives/libsoup-list/2009-March/msg00015.html
|
15 years ago |