diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2009-05-27 09:31:38 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2009-05-27 09:31:38 +0000 |
commit | bce60be30fe8e9c1b0eb33128c23c93d7bca5303 (patch) | |
tree | 3927343c777fcb7764a0f2f89754a0ceab141c21 /doc/index.html | |
parent | d1a72435d5bd3528f3c334cd4d1da16dcead47bf (diff) | |
download | luasocket-bce60be30fe8e9c1b0eb33128c23c93d7bca5303.tar.gz luasocket-bce60be30fe8e9c1b0eb33128c23c93d7bca5303.tar.bz2 luasocket-bce60be30fe8e9c1b0eb33128c23c93d7bca5303.zip |
Decent makefiles!
Diffstat (limited to 'doc/index.html')
-rw-r--r-- | doc/index.html | 77 |
1 files changed, 30 insertions, 47 deletions
diff --git a/doc/index.html b/doc/index.html index 57a7907..5b54c59 100644 --- a/doc/index.html +++ b/doc/index.html | |||
@@ -24,8 +24,8 @@ | |||
24 | </td></tr> | 24 | </td></tr> |
25 | </table> | 25 | </table> |
26 | <p class=bar> | 26 | <p class=bar> |
27 | <a href="home.html">home</a> · | 27 | <a href="index.html">home</a> · |
28 | <a href="home.html#download">download</a> · | 28 | <a href="index.html#download">download</a> · |
29 | <a href="installation.html">installation</a> · | 29 | <a href="installation.html">installation</a> · |
30 | <a href="introduction.html">introduction</a> · | 30 | <a href="introduction.html">introduction</a> · |
31 | <a href="reference.html">reference</a> | 31 | <a href="reference.html">reference</a> |
@@ -87,7 +87,7 @@ Author: <A href="http://www.cs.princeton.edu/~diego">Diego Nehab</a> | |||
87 | <h2 id=download>Download</h2> | 87 | <h2 id=download>Download</h2> |
88 | 88 | ||
89 | <p> | 89 | <p> |
90 | LuaSocket version 2.0.2 is now available for download! It is | 90 | LuaSocket version 2.0.3 is now available for download! It is |
91 | compatible with Lua 5.1, and has | 91 | compatible with Lua 5.1, and has |
92 | been tested on Windows XP, Linux, and Mac OS X. Chances | 92 | been tested on Windows XP, Linux, and Mac OS X. Chances |
93 | are it works well on most UNIX distributions and Windows flavors. | 93 | are it works well on most UNIX distributions and Windows flavors. |
@@ -118,14 +118,15 @@ manual to find out how to properly install the library. | |||
118 | <h2 id=thanks>Special thanks</h2> | 118 | <h2 id=thanks>Special thanks</h2> |
119 | 119 | ||
120 | <p> | 120 | <p> |
121 | Throughout LuaSocket's history, many people gave suggestions that helped | 121 | Throughout LuaSocket's history, many people gave suggestions |
122 | improve it. For that, I thank the Lua community. | 122 | that helped improve it. For that, I thank the Lua community. |
123 | Special thanks go to | 123 | Special thanks go to David Burgess, who has helped push the |
124 | David Burgess, who has helped push the library to a new level of quality and | 124 | library to a new level of quality and from whom I have |
125 | from whom I have learned a lot of stuff that doesn't show up in RFCs. | 125 | learned a lot of stuff that doesn't show up in RFCs. |
126 | Special thanks also to Carlos Cassino, who played a big part in the | 126 | Special thanks also to Carlos Cassino, who played a big part |
127 | extensible design seen in the C core of LuaSocket 2.0. Mike Pall | 127 | in the extensible design seen in the C core of LuaSocket |
128 | has been helping a lot too! Thanks to you all! | 128 | 2.0. Mike Pall has been helping a lot too! Thanks to you |
129 | all! | ||
129 | </p> | 130 | </p> |
130 | 131 | ||
131 | <!-- whatsnew +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | 132 | <!-- whatsnew +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> |
@@ -133,44 +134,26 @@ has been helping a lot too! Thanks to you all! | |||
133 | <h2 id=new>What's New</h2> | 134 | <h2 id=new>What's New</h2> |
134 | 135 | ||
135 | <p> | 136 | <p> |
136 | 2.0.2 is just a bug-fix/update release. | 137 | 2.0.3 is just a bug-fix/update release. |
137 | </p> | 138 | </p> |
138 | 139 | ||
139 | <ul> | 140 | <ul> |
140 | <li> Improved: http.request() now supports deprecated | 141 | <li> Fixed: multicast didn't work on Windows, or anywhere |
141 | HTTP/0.9 servers (Florian Berger); | 142 | else for that matter (Herbert Leuwer, Adrian Sietsma) |
142 | <li> Fixed: could return "timedout" instead of "timeout" (Leo Leo); | 143 | <li> Fixed: select() now reports an error when called with more |
143 | <li> Fixed: crash when reading '*a' on closed socket (Paul Ducklin); | 144 | sockets than FD_SETSIZE (Lorenzo Leonini) |
144 | <li> Fixed: return values are consistent when reading from closed sockets; | 145 | <li> Fixed: manual links to home.html changed to index.html (Robert Hahn) |
145 | <li> Fixed: case sensitivity in headers of multipart | 146 | <li> Fixed: mime.unb64() would return an empty string on results that started |
146 | messages in smtp.message() (Graham Henstridge); | 147 | with a null character (Robert Raschke) |
147 | <li> Fixed a couple instances of error() being called instead of | 148 | <li> Fixed: HTTP now automatically redirects on 303 and 307 (Jonathan Gray) |
148 | base.error(). These would cause an error when an error was | 149 | <li> Fixed: calling sleep() with negative numbers could |
149 | reported :) (Ketmar Dark); | 150 | block forever, wasting CPU. Now it returns immediately (MPB); |
150 | <li> Fixed: test script now uses pairs() iterator instead | 151 | <li> Improved: FTP commands are now sent in upper case to |
151 | of the old Lua syntax (Robert Dodier). | 152 | help buggy servers (Anders Eurenius) |
152 | </ul> | 153 | <li> Improved: known headers now sent in canonic |
153 | 154 | capitalization to help buggy servers (Joseph Stewart); | |
154 | <p> | 155 | <li> Improved: Clarified tcp:receive() in the manual (MPB); |
155 | 2.0.1 is just a bug-fix/update release. | 156 | <li> Improved: Decent makefiles (LHF). |
156 | </p> | ||
157 | |||
158 | <ul> | ||
159 | <li> Updated: now using <tt>compat-5.1r5</tt>; | ||
160 | <li> Improved: <tt>http.request</tt> is more robust to | ||
161 | malformed URLs (Adrian Sietsma); | ||
162 | <li> Improved: the simple <tt>http.request</tt> interface sends a | ||
163 | "<tt>Content-type: application/x-www-form-urlencoded</tt>" | ||
164 | header (William Trenker); | ||
165 | <li> Improved: <tt>http.request</tt> is robust to evil | ||
166 | servers that send inappropriate 100-continue messages | ||
167 | (David Burgess); | ||
168 | <li> Fixed: <tt>http.request</tt> was using the old host header during | ||
169 | redirects (Florian Berger); | ||
170 | <li> Fixed: sample <tt>unix.c</tt> had fallen through the | ||
171 | cracks during development (Matthew Percival); | ||
172 | <li> Fixed: error code was not being propagated correctly in | ||
173 | ftp.lua (David Burgess). | ||
174 | </ul> | 157 | </ul> |
175 | 158 | ||
176 | <!-- old ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | 159 | <!-- old ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> |
@@ -190,7 +173,7 @@ still available for those that have compatibility issues. | |||
190 | <hr> | 173 | <hr> |
191 | <center> | 174 | <center> |
192 | <p class=bar> | 175 | <p class=bar> |
193 | <a href="home.html#download">download</a> · | 176 | <a href="index.html#download">download</a> · |
194 | <a href="installation.html">installation</a> · | 177 | <a href="installation.html">installation</a> · |
195 | <a href="introduction.html">introduction</a> · | 178 | <a href="introduction.html">introduction</a> · |
196 | <a href="reference.html">reference</a> | 179 | <a href="reference.html">reference</a> |