This commit is contained in:
Ryan Dahl 2009-09-30 23:21:25 +02:00
Родитель 7b337096c9
Коммит 9c9d67eb6c
6 изменённых файлов: 38 добавлений и 11 удалений

Просмотреть файл

@ -1,4 +1,31 @@
2009.09.24, Version 0.1.12
2009.09.30, Version 0.1.13
* Feature: Multipart stream parser (Felix Geisendörfer)
* API: Move node.puts(), node.exec() and others to /utils.js
* API: Move http, tcp libraries to /http.js and /tcp.js
* API: Rename node.exit() to process.exit()
* Bugfix: require() and include() should work in callbacks.
* Pass the Host header in http.cat calls
* Add warning when coroutine stack size grows too large.
* Enhance repl library (Ray Morgan)
* Bugfix: build script for
GCC 4.4 (removed -Werror in V8),
on Linux 2.4,
and with Python 2.4.4.
* Add read() and write() to /file.js to read and write
whole files at once.
2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec
* Feature: System modules, node.libraryPaths

Просмотреть файл

@ -19,8 +19,8 @@ window.onload = function(){generateToc(2)}
<h1>NODE(1)</h1>
<span id="author">Ryan Dahl</span><br />
<span id="email"><tt>&lt;<a href="mailto:ry@tinyclouds.org">ry@tinyclouds.org</a>&gt;</tt></span><br />
<span id="revnumber">version 0.1.12,</span>
<span id="revdate">2009.09.24</span>
<span id="revnumber">version 0.1.13,</span>
<span id="revdate">2009.09.30</span>
<div id="toc">
<div id="toctitle">Table of Contents</div>
<noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
@ -2028,8 +2028,8 @@ init (Handle&lt;Object&gt; target)
</div>
<div id="footer">
<div id="footer-text">
Version 0.1.12<br />
Last updated 2009-09-29 19:22:27 CEST
Version 0.1.13<br />
Last updated 2009-09-30 23:15:59 CEST
</div>
</div>
</body>

Просмотреть файл

@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.12, 2009.09.24
Version, 0.1.13, 2009.09.30
== NAME

Просмотреть файл

@ -149,8 +149,8 @@ Server running at http://127.0.0.1:8000/</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
2009.09.24
<a href="http://s3.amazonaws.com/four.livejournal/20090924/node-0.1.12.tar.gz">node-0.1.12.tar.gz</a>
2009.09.30
<a href="http://s3.amazonaws.com/four.livejournal/20090930/node-0.1.13.tar.gz">node-0.1.13.tar.gz</a>
</p>
<h2 id="build">Build</h2>

Просмотреть файл

@ -1,11 +1,11 @@
.\" Title: node
.\" Author:
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\" Date: 09/29/2009
.\" Date: 09/30/2009
.\" Manual:
.\" Source:
.\"
.TH "NODE" "1" "09/29/2009" "" ""
.TH "NODE" "1" "09/30/2009" "" ""
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)

Просмотреть файл

@ -6,7 +6,7 @@ import sys, os, shutil
from os.path import join, dirname, abspath
from logging import fatal
VERSION="0.1.12"
VERSION="0.1.13"
APPNAME="node.js"
import js2c