diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-02-04 14:29:11 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-02-04 14:29:11 +0000 |
commit | 0b2542d1a61fc5425ff65ab3dbf7ba7de174763f (patch) | |
tree | 8a6188e11db0c9ef6891c31e8a1bebca050b23b2 /doc/index.html | |
parent | f67864f86c7d703325e86b14d0ba33992c52891b (diff) | |
download | luasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.tar.gz luasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.tar.bz2 luasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.zip |
Worked on the manual.
Implemented stuffing (needs test)
Added cddb and qp examples.
Diffstat (limited to 'doc/index.html')
-rw-r--r-- | doc/index.html | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/doc/index.html b/doc/index.html index 620f385..a2c2d59 100644 --- a/doc/index.html +++ b/doc/index.html | |||
@@ -40,7 +40,8 @@ LuaSocket is a <a href="http://www.lua.org">Lua</a> extension library | |||
40 | that is composed by two parts: a C layer that provides support for the TCP | 40 | that is composed by two parts: a C layer that provides support for the TCP |
41 | and UDP transport layers, and a set of Lua modules that add support for | 41 | and UDP transport layers, and a set of Lua modules that add support for |
42 | the SMTP (sending e-mails), HTTP (WWW access) and FTP (uploading and | 42 | the SMTP (sending e-mails), HTTP (WWW access) and FTP (uploading and |
43 | downloading files) protocols. | 43 | downloading files) protocols and other functionality commonly needed by |
44 | applications that deal with the Internet. | ||
44 | </p> | 45 | </p> |
45 | 46 | ||
46 | <p> | 47 | <p> |
@@ -106,10 +107,25 @@ This binary has been compiled with the <tt>LUASOCKET_DEBUG</tt> | |||
106 | option, and should be able to run the automatic test procedures. | 107 | option, and should be able to run the automatic test procedures. |
107 | </p> | 108 | </p> |
108 | 109 | ||
110 | <!-- thanks +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
111 | |||
112 | <h2 id=thanks>Special thanks</h2> | ||
113 | |||
114 | <p> | ||
115 | Throughout LuaSocket its history, many people gave sugestions that helped | ||
116 | improve it. For that, I thank the Lua comunity. | ||
117 | Special thanks go to | ||
118 | David Burgess, who has pushed the library to a new level of quality and | ||
119 | from whom I have learned a lot stuff that doesn't show up in RFCs. | ||
120 | Special thanks also to Carlos Cassino, who played a big part in the | ||
121 | extensible design seen in the C core of LuaSocket 2.0. | ||
122 | </p> | ||
123 | |||
109 | <!-- whatsnew +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | 124 | <!-- whatsnew +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> |
110 | 125 | ||
111 | <h2 id=new>What's New</h2> | 126 | <h2 id=new>What's New</h2> |
112 | 127 | ||
128 | |||
113 | <p> | 129 | <p> |
114 | Most of the changes for 2.0 happened in the C layer, which | 130 | Most of the changes for 2.0 happened in the C layer, which |
115 | has been almost completely rewritten. The code has been ported to Lua 5.0 | 131 | has been almost completely rewritten. The code has been ported to Lua 5.0 |