diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-12-13 06:26:01 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-12-13 06:26:01 +0000 |
commit | ae2d2859e7882d553276896d499064a2407c3853 (patch) | |
tree | 42f6b31b02394157458dda179fb5f52e68a0f40e /doc/index.html | |
parent | 4f2e036f607676493a43d5396f2f2330cfe4de66 (diff) | |
download | luasocket-ae2d2859e7882d553276896d499064a2407c3853.tar.gz luasocket-ae2d2859e7882d553276896d499064a2407c3853.tar.bz2 luasocket-ae2d2859e7882d553276896d499064a2407c3853.zip |
Spell checked the manual.
Diffstat (limited to 'doc/index.html')
-rw-r--r-- | doc/index.html | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/index.html b/doc/index.html index 727066e..aabf315 100644 --- a/doc/index.html +++ b/doc/index.html | |||
@@ -26,7 +26,7 @@ | |||
26 | <p class=bar> | 26 | <p class=bar> |
27 | <a href="home.html">home</a> · | 27 | <a href="home.html">home</a> · |
28 | <a href="home.html#download">download</a> · | 28 | <a href="home.html#download">download</a> · |
29 | <a href="instalation.html">instalation</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> |
32 | </p> | 32 | </p> |
@@ -122,7 +122,7 @@ LuaSocket a try (Those on Unix or Mac OS X can just type <tt>make</tt>): | |||
122 | <p> | 122 | <p> |
123 | The quick and dirty way to use these binaries is to unpack everything into a | 123 | The quick and dirty way to use these binaries is to unpack everything into a |
124 | directory, say <tt>c:\luasocket</tt> (include all Lua files from the | 124 | directory, say <tt>c:\luasocket</tt> (include all Lua files from the |
125 | LuaSocket distrbitution in the same directory too!). | 125 | LuaSocket distribution in the same directory too!). |
126 | Then set <tt>LUA_INIT</tt> to load the <tt>compat-5.1.lua</tt> and set | 126 | Then set <tt>LUA_INIT</tt> to load the <tt>compat-5.1.lua</tt> and set |
127 | <tt>LUA_PATH</tt> and <tt>LUA_CPATH</tt> to look for files in the current | 127 | <tt>LUA_PATH</tt> and <tt>LUA_CPATH</tt> to look for files in the current |
128 | directory: | 128 | directory: |
@@ -145,11 +145,11 @@ c:\luasocket\> lua | |||
145 | Lua 5.0.2 Copyright (C) 1994-2004 Tecgraf, PUC-Rio | 145 | Lua 5.0.2 Copyright (C) 1994-2004 Tecgraf, PUC-Rio |
146 | > http = require"http" | 146 | > http = require"http" |
147 | > print(http.request"http://www.tecgraf.puc-rio.br/luasocket/") | 147 | > print(http.request"http://www.tecgraf.puc-rio.br/luasocket/") |
148 | --> the source to this webpage gets dumped to terminal | 148 | --> the source to this web page gets dumped to terminal |
149 | </pre> | 149 | </pre> |
150 | 150 | ||
151 | <p> When you are done playing, take a look at the | 151 | <p> When you are done playing, take a look at the |
152 | <a href=instalation.html>installation</a> section of the manual to find out | 152 | <a href=installation.html>installation</a> section of the manual to find out |
153 | how to properly install the library. </p> | 153 | how to properly install the library. </p> |
154 | 154 | ||
155 | <!-- thanks +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | 155 | <!-- thanks +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> |
@@ -180,7 +180,7 @@ beta, is a beta). | |||
180 | <ul> | 180 | <ul> |
181 | <li> New compat-5.1 distribution: | 181 | <li> New compat-5.1 distribution: |
182 | <ul> | 182 | <ul> |
183 | <li> Instalation uses new directory structure; | 183 | <li> Installation uses new directory structure; |
184 | <li> Namespace hierarchy is in now back in use (ex. <tt>socket.url</tt> | 184 | <li> Namespace hierarchy is in now back in use (ex. <tt>socket.url</tt> |
185 | instead of <tt>url</tt>); | 185 | instead of <tt>url</tt>); |
186 | <li> Globals not visible from inside namespaces; | 186 | <li> Globals not visible from inside namespaces; |
@@ -196,7 +196,8 @@ beta, is a beta). | |||
196 | <li> <tt>socket.gettime</tt> returns time since Unix Epoch 1/1/1970 (UTC); | 196 | <li> <tt>socket.gettime</tt> returns time since Unix Epoch 1/1/1970 (UTC); |
197 | <li> <tt>socket.sleep</tt> is robust to interrupts; | 197 | <li> <tt>socket.sleep</tt> is robust to interrupts; |
198 | <li> <tt>socket.select</tt> wasn't calling <tt>tm_markstart</tt>; | 198 | <li> <tt>socket.select</tt> wasn't calling <tt>tm_markstart</tt>; |
199 | <li> <tt>http.PROXY</tt> wasn't working. | 199 | <li> <tt>http.PROXY</tt> wasn't working; |
200 | <li> <tt>url.escape</tt> escapes only dangerous characters. | ||
200 | </ul> | 201 | </ul> |
201 | 202 | ||
202 | <!-- incompatible +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | 203 | <!-- incompatible +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> |
@@ -228,7 +229,7 @@ those that have compatibility issues. | |||
228 | <p class=bar> | 229 | <p class=bar> |
229 | <a href="home.html#down">download</a> · | 230 | <a href="home.html#down">download</a> · |
230 | <a href="home.html#download">download</a> · | 231 | <a href="home.html#download">download</a> · |
231 | <a href="instalation.html">instalation</a> · | 232 | <a href="installation.html">installation</a> · |
232 | <a href="introduction.html">introduction</a> · | 233 | <a href="introduction.html">introduction</a> · |
233 | <a href="reference.html">reference</a> | 234 | <a href="reference.html">reference</a> |
234 | </p> | 235 | </p> |