aboutsummaryrefslogtreecommitdiff
path: root/doc/index.html
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2009-05-27 09:31:38 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2009-05-27 09:31:38 +0000
commitbce60be30fe8e9c1b0eb33128c23c93d7bca5303 (patch)
tree3927343c777fcb7764a0f2f89754a0ceab141c21 /doc/index.html
parentd1a72435d5bd3528f3c334cd4d1da16dcead47bf (diff)
downloadluasocket-bce60be30fe8e9c1b0eb33128c23c93d7bca5303.tar.gz
luasocket-bce60be30fe8e9c1b0eb33128c23c93d7bca5303.tar.bz2
luasocket-bce60be30fe8e9c1b0eb33128c23c93d7bca5303.zip
Decent makefiles!
Diffstat (limited to 'doc/index.html')
-rw-r--r--doc/index.html77
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> &middot; 27<a href="index.html">home</a> &middot;
28<a href="home.html#download">download</a> &middot; 28<a href="index.html#download">download</a> &middot;
29<a href="installation.html">installation</a> &middot; 29<a href="installation.html">installation</a> &middot;
30<a href="introduction.html">introduction</a> &middot; 30<a href="introduction.html">introduction</a> &middot;
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>
90LuaSocket version 2.0.2 is now available for download! It is 90LuaSocket version 2.0.3 is now available for download! It is
91compatible with Lua&nbsp;5.1, and has 91compatible with Lua&nbsp;5.1, and has
92been tested on Windows&nbsp;XP, Linux, and Mac OS X. Chances 92been tested on Windows&nbsp;XP, Linux, and Mac OS X. Chances
93are it works well on most UNIX distributions and Windows flavors. 93are 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>
121Throughout LuaSocket's history, many people gave suggestions that helped 121Throughout LuaSocket's history, many people gave suggestions
122improve it. For that, I thank the Lua community. 122that helped improve it. For that, I thank the Lua community.
123Special thanks go to 123Special thanks go to David Burgess, who has helped push the
124David Burgess, who has helped push the library to a new level of quality and 124library to a new level of quality and from whom I have
125from whom I have learned a lot of stuff that doesn't show up in RFCs. 125learned a lot of stuff that doesn't show up in RFCs.
126Special thanks also to Carlos Cassino, who played a big part in the 126Special thanks also to Carlos Cassino, who played a big part
127extensible design seen in the C core of LuaSocket 2.0. Mike Pall 127in the extensible design seen in the C core of LuaSocket
128has been helping a lot too! Thanks to you all! 1282.0. Mike Pall has been helping a lot too! Thanks to you
129all!
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>
1362.0.2 is just a bug-fix/update release. 1372.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
141HTTP/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
146messages 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)
148base.error(). These would cause an error when an error was 149<li> Fixed: calling sleep() with negative numbers could
149reported :) (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
151of 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);
1552.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
161malformed 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>"
164header (William Trenker);
165<li> Improved: <tt>http.request</tt> is robust to evil
166servers that send inappropriate 100-continue messages
167(David Burgess);
168<li> Fixed: <tt>http.request</tt> was using the old host header during
169redirects (Florian Berger);
170<li> Fixed: sample <tt>unix.c</tt> had fallen through the
171cracks during development (Matthew Percival);
172<li> Fixed: error code was not being propagated correctly in
173ftp.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> &middot; 176<a href="index.html#download">download</a> &middot;
194<a href="installation.html">installation</a> &middot; 177<a href="installation.html">installation</a> &middot;
195<a href="introduction.html">introduction</a> &middot; 178<a href="introduction.html">introduction</a> &middot;
196<a href="reference.html">reference</a> 179<a href="reference.html">reference</a>