From: John L. <jr...@us...> - 2008-01-25 23:51:32
|
Update of /cvsroot/wxlua/wxLua/modules/lua/doc In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1159/wxLua/modules/lua/doc Modified Files: contents.html lua.html luac.html manual.css manual.html readme.html Log Message: - Removed the wxLuaBinding::PreRegister() and PostRegister() functions and made RegisterBinding() virtual Note: wxLuaBinding::RegisterBinding() now leaves the Lua table that the binding objects were installed into on the stack. You must pop it. * The rules.lua for genwxbind.lua now uses wxLuaBinding_class_declaration and wxLuaBinding_class_implementation to replace wxLuaBinding_preregister and wxLuaBinding_postregister. You may now add whatever you like to the class declaration and implementation source code. Updated to Lua 5.1.3 official Index: manual.css =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/doc/manual.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** manual.css 25 Apr 2007 02:52:20 -0000 1.1 --- manual.css 25 Jan 2008 23:50:50 -0000 1.2 *************** *** 6,7 **** --- 6,13 ---- font-size: 105% ; } + + span.apii { + float: right ; + font-family: inherit ; + } + Index: manual.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/doc/manual.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** manual.html 25 Apr 2007 02:52:20 -0000 1.4 --- manual.html 25 Jan 2008 23:50:50 -0000 1.5 *************** *** 1,3 **** ! <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> --- 1,3 ---- ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> *************** *** 6,9 **** --- 6,10 ---- [...3029 lines suppressed...] Last update: ! Mon Mar 26 12:59:26 BRT 2007 </SMALL> <!-- ! Last change: ready for Lua 5.1.2 --> --- 8751,8762 ---- + <HR> <SMALL> Last update: ! Fri Jan 18 22:32:24 BRST 2008 </SMALL> <!-- ! Last change: revised for Lua 5.1.3 --> Index: contents.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/doc/contents.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** contents.html 25 Apr 2007 02:52:20 -0000 1.4 --- contents.html 25 Jan 2008 23:50:50 -0000 1.5 *************** *** 1,6 **** <HTML> <HEAD> ! <TITLE>Lua 5.1 reference manual - contents</TITLE> <LINK REL="stylesheet" TYPE="text/css" HREF="lua.css"> <STYLE TYPE="text/css"> ul { --- 1,8 ---- + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> ! <TITLE>Lua 5.1 Reference Manual - contents</TITLE> <LINK REL="stylesheet" TYPE="text/css" HREF="lua.css"> + <META HTTP-EQUIV="content-type" CONTENT="text/html; charset=iso-8859-1"> <STYLE TYPE="text/css"> ul { *************** *** 34,42 **** <P> ! Buy a paper copy and <A HREF="http://www.lua.org/donations.html">help to support</A> the Lua project. <P> <A HREF="manual.html">start</A> · --- 36,49 ---- <P> ! Buy a copy of this book and <A HREF="http://www.lua.org/donations.html">help to support</A> the Lua project. <P> + The reference manual is the official definition of the Lua language. + For a complete introduction to Lua programming, see the book + <A HREF="http://www.lua.org/docs.html#books">Programming in Lua</A>. + <P> + <A HREF="manual.html">start</A> · *************** *** 45,52 **** <A HREF="#index">index</A> · ! <A HREF="http://www.lua.org/manual/5.1/errata.html">errata</A> <HR> <SMALL> ! Copyright © 2006-2007 Lua.org, PUC-Rio. Freely available under the terms of the <a href="http://www.lua.org/license.html#5">Lua license</a>. --- 52,61 ---- <A HREF="#index">index</A> · ! <A HREF="http://www.lua.org/manual/5.1/pt/">português</A> ! · ! <A HREF="http://www.lua.org/manual/5.1/es/">español</A> <HR> <SMALL> ! Copyright © 2006-2008 Lua.org, PUC-Rio. Freely available under the terms of the <a href="http://www.lua.org/license.html#5">Lua license</a>. *************** *** 56,60 **** <H2><A NAME="contents">Contents</A></H2> <UL style="padding: 0"> ! <LI><A HREF="manual.html#1">1 - Introduction</A> <LI><A HREF="manual.html#2">2 - The Language</A> <UL> --- 65,70 ---- <H2><A NAME="contents">Contents</A></H2> <UL style="padding: 0"> ! <LI><A HREF="manual.html">1 - Introduction</A> ! <P> <LI><A HREF="manual.html#2">2 - The Language</A> <UL> *************** *** 98,101 **** --- 108,112 ---- <LI><A HREF="manual.html#2.11">2.11 - Coroutines</A> </UL> + <P> <LI><A HREF="manual.html#3">3 - The Application Program Interface</A> <UL> *************** *** 109,116 **** --- 120,129 ---- <LI><A HREF="manual.html#3.8">3.8 - The Debug Interface</A> </UL> + <P> <LI><A HREF="manual.html#4">4 - The Auxiliary Library</A> <UL> <LI><A HREF="manual.html#4.1">4.1 - Functions and Types</A> </UL> + <P> <LI><A HREF="manual.html#5">5 - Standard Libraries</A> <UL> *************** *** 128,132 **** --- 141,147 ---- <LI><A HREF="manual.html#5.9">5.9 - The Debug Library</A> </UL> + <P> <LI><A HREF="manual.html#6">6 - Lua Stand-alone</A> + <P> <LI><A HREF="manual.html#7">7 - Incompatibilities with the Previous Version</A> <UL> *************** *** 135,138 **** --- 150,154 ---- <LI><A HREF="manual.html#7.3">7.3 - Changes in the API</A> </UL> + <P> <LI><A HREF="manual.html#8">8 - The Complete Syntax of Lua</A> </UL> *************** *** 172,179 **** <A HREF="manual.html#pdf-unpack">unpack</A><BR> <A HREF="manual.html#pdf-xpcall">xpcall</A><BR> - </TD> - <TD> - <H3> </H3> <A HREF="manual.html#pdf-coroutine.create">coroutine.create</A><BR> <A HREF="manual.html#pdf-coroutine.resume">coroutine.resume</A><BR> --- 188,193 ---- <A HREF="manual.html#pdf-unpack">unpack</A><BR> <A HREF="manual.html#pdf-xpcall">xpcall</A><BR> + <P> <A HREF="manual.html#pdf-coroutine.create">coroutine.create</A><BR> <A HREF="manual.html#pdf-coroutine.resume">coroutine.resume</A><BR> *************** *** 182,185 **** --- 196,201 ---- <A HREF="manual.html#pdf-coroutine.wrap">coroutine.wrap</A><BR> <A HREF="manual.html#pdf-coroutine.yield">coroutine.yield</A><BR> + <P> + <A HREF="manual.html#pdf-debug.debug">debug.debug</A><BR> <A HREF="manual.html#pdf-debug.getfenv">debug.getfenv</A><BR> *************** *** 196,199 **** --- 212,219 ---- <A HREF="manual.html#pdf-debug.setupvalue">debug.setupvalue</A><BR> <A HREF="manual.html#pdf-debug.traceback">debug.traceback</A><BR> + + </TD> + <TD> + <H3> </H3> <A HREF="manual.html#pdf-file:close">file:close</A><BR> <A HREF="manual.html#pdf-file:flush">file:flush</A><BR> *************** *** 203,206 **** --- 223,228 ---- <A HREF="manual.html#pdf-file:setvbuf">file:setvbuf</A><BR> <A HREF="manual.html#pdf-file:write">file:write</A><BR> + <P> + <A HREF="manual.html#pdf-io.close">io.close</A><BR> <A HREF="manual.html#pdf-io.flush">io.flush</A><BR> *************** *** 211,225 **** <A HREF="manual.html#pdf-io.popen">io.popen</A><BR> <A HREF="manual.html#pdf-io.read">io.read</A><BR> <A HREF="manual.html#pdf-io.tmpfile">io.tmpfile</A><BR> <A HREF="manual.html#pdf-io.type">io.type</A><BR> <A HREF="manual.html#pdf-io.write">io.write</A><BR> <A HREF="manual.html#pdf-math.abs">math.abs</A><BR> <A HREF="manual.html#pdf-math.acos">math.acos</A><BR> <A HREF="manual.html#pdf-math.asin">math.asin</A><BR> - <A HREF="manual.html#pdf-math.atan2">math.atan2</A><BR> <A HREF="manual.html#pdf-math.atan">math.atan</A><BR> <A HREF="manual.html#pdf-math.ceil">math.ceil</A><BR> - <A HREF="manual.html#pdf-math.cosh">math.cosh</A><BR> <A HREF="manual.html#pdf-math.cos">math.cos</A><BR> <A HREF="manual.html#pdf-math.deg">math.deg</A><BR> <A HREF="manual.html#pdf-math.exp">math.exp</A><BR> --- 233,252 ---- <A HREF="manual.html#pdf-io.popen">io.popen</A><BR> <A HREF="manual.html#pdf-io.read">io.read</A><BR> + <A HREF="manual.html#pdf-io.stderr">io.stderr</A><BR> + <A HREF="manual.html#pdf-io.stdin">io.stdin</A><BR> + <A HREF="manual.html#pdf-io.stdout">io.stdout</A><BR> <A HREF="manual.html#pdf-io.tmpfile">io.tmpfile</A><BR> <A HREF="manual.html#pdf-io.type">io.type</A><BR> <A HREF="manual.html#pdf-io.write">io.write</A><BR> + <P> + <A HREF="manual.html#pdf-math.abs">math.abs</A><BR> <A HREF="manual.html#pdf-math.acos">math.acos</A><BR> <A HREF="manual.html#pdf-math.asin">math.asin</A><BR> <A HREF="manual.html#pdf-math.atan">math.atan</A><BR> + <A HREF="manual.html#pdf-math.atan2">math.atan2</A><BR> <A HREF="manual.html#pdf-math.ceil">math.ceil</A><BR> <A HREF="manual.html#pdf-math.cos">math.cos</A><BR> + <A HREF="manual.html#pdf-math.cosh">math.cosh</A><BR> <A HREF="manual.html#pdf-math.deg">math.deg</A><BR> <A HREF="manual.html#pdf-math.exp">math.exp</A><BR> *************** *** 229,234 **** <A HREF="manual.html#pdf-math.huge">math.huge</A><BR> <A HREF="manual.html#pdf-math.ldexp">math.ldexp</A><BR> - <A HREF="manual.html#pdf-math.log10">math.log10</A><BR> <A HREF="manual.html#pdf-math.log">math.log</A><BR> <A HREF="manual.html#pdf-math.max">math.max</A><BR> <A HREF="manual.html#pdf-math.min">math.min</A><BR> --- 256,261 ---- <A HREF="manual.html#pdf-math.huge">math.huge</A><BR> <A HREF="manual.html#pdf-math.ldexp">math.ldexp</A><BR> <A HREF="manual.html#pdf-math.log">math.log</A><BR> + <A HREF="manual.html#pdf-math.log10">math.log10</A><BR> <A HREF="manual.html#pdf-math.max">math.max</A><BR> <A HREF="manual.html#pdf-math.min">math.min</A><BR> *************** *** 239,247 **** <A HREF="manual.html#pdf-math.random">math.random</A><BR> <A HREF="manual.html#pdf-math.randomseed">math.randomseed</A><BR> - <A HREF="manual.html#pdf-math.sinh">math.sinh</A><BR> <A HREF="manual.html#pdf-math.sin">math.sin</A><BR> <A HREF="manual.html#pdf-math.sqrt">math.sqrt</A><BR> - <A HREF="manual.html#pdf-math.tanh">math.tanh</A><BR> <A HREF="manual.html#pdf-math.tan">math.tan</A><BR> <A HREF="manual.html#pdf-os.clock">os.clock</A><BR> <A HREF="manual.html#pdf-os.date">os.date</A><BR> --- 266,276 ---- <A HREF="manual.html#pdf-math.random">math.random</A><BR> <A HREF="manual.html#pdf-math.randomseed">math.randomseed</A><BR> <A HREF="manual.html#pdf-math.sin">math.sin</A><BR> + <A HREF="manual.html#pdf-math.sinh">math.sinh</A><BR> <A HREF="manual.html#pdf-math.sqrt">math.sqrt</A><BR> <A HREF="manual.html#pdf-math.tan">math.tan</A><BR> + <A HREF="manual.html#pdf-math.tanh">math.tanh</A><BR> + <P> + <A HREF="manual.html#pdf-os.clock">os.clock</A><BR> <A HREF="manual.html#pdf-os.date">os.date</A><BR> *************** *** 255,264 **** --- 284,298 ---- <A HREF="manual.html#pdf-os.time">os.time</A><BR> <A HREF="manual.html#pdf-os.tmpname">os.tmpname</A><BR> + <P> + <A HREF="manual.html#pdf-package.cpath">package.cpath</A><BR> <A HREF="manual.html#pdf-package.loaded">package.loaded</A><BR> + <A HREF="manual.html#pdf-package.loaders">package.loaders</A><BR> <A HREF="manual.html#pdf-package.loadlib">package.loadlib</A><BR> <A HREF="manual.html#pdf-package.path">package.path</A><BR> <A HREF="manual.html#pdf-package.preload">package.preload</A><BR> <A HREF="manual.html#pdf-package.seeall">package.seeall</A><BR> + <P> + <A HREF="manual.html#pdf-string.byte">string.byte</A><BR> <A HREF="manual.html#pdf-string.char">string.char</A><BR> *************** *** 275,278 **** --- 309,314 ---- <A HREF="manual.html#pdf-string.sub">string.sub</A><BR> <A HREF="manual.html#pdf-string.upper">string.upper</A><BR> + <P> + <A HREF="manual.html#pdf-table.concat">table.concat</A><BR> <A HREF="manual.html#pdf-table.insert">table.insert</A><BR> *************** *** 293,296 **** --- 329,334 ---- <A HREF="manual.html#lua_State">lua_State</A><BR> <A HREF="manual.html#lua_Writer">lua_Writer</A><BR> + <P> + <A HREF="manual.html#lua_atpanic">lua_atpanic</A><BR> <A HREF="manual.html#lua_call">lua_call</A><BR> *************** *** 324,327 **** --- 362,367 ---- <A HREF="manual.html#lua_islightuserdata">lua_islightuserdata</A><BR> <A HREF="manual.html#lua_isnil">lua_isnil</A><BR> + <A HREF="manual.html#lua_isnone">lua_isnone</A><BR> + <A HREF="manual.html#lua_isnoneornil">lua_isnoneornil</A><BR> <A HREF="manual.html#lua_isnumber">lua_isnumber</A><BR> <A HREF="manual.html#lua_isstring">lua_isstring</A><BR> *************** *** 345,348 **** --- 385,389 ---- <A HREF="manual.html#lua_pushinteger">lua_pushinteger</A><BR> <A HREF="manual.html#lua_pushlightuserdata">lua_pushlightuserdata</A><BR> + <A HREF="manual.html#lua_pushliteral">lua_pushliteral</A><BR> <A HREF="manual.html#lua_pushlstring">lua_pushlstring</A><BR> <A HREF="manual.html#lua_pushnil">lua_pushnil</A><BR> *************** *** 392,395 **** --- 433,438 ---- <A HREF="manual.html#luaL_Buffer">luaL_Buffer</A><BR> <A HREF="manual.html#luaL_Reg">luaL_Reg</A><BR> + <P> + <A HREF="manual.html#luaL_addchar">luaL_addchar</A><BR> <A HREF="manual.html#luaL_addlstring">luaL_addlstring</A><BR> *************** *** 447,454 **** <SMALL> Last update: ! Fri Mar 23 08:33:19 BRT 2007 </SMALL> <!-- ! Last change: minor edit --> --- 490,497 ---- <SMALL> Last update: ! Sat Jan 19 13:24:29 BRST 2008 </SMALL> <!-- ! Last change: revised for Lua 5.1.3 --> Index: readme.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/lua/doc/readme.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** readme.html 25 Apr 2007 02:52:20 -0000 1.3 --- readme.html 25 Jan 2008 23:50:50 -0000 1.4 *************** *** 13,17 **** </H1> ! This is the documentation included in the source distribution of Lua 5.1.2. <UL> --- 13,17 ---- </H1> ! This is the documentation included in the source distribution of Lua 5.1.3. <UL> *************** *** 34,38 **** <SMALL> Last update: ! Fri Mar 23 14:19:36 BRT 2007 </SMALL> --- 34,38 ---- <SMALL> Last update: ! Wed Dec 19 13:59:14 BRST 2007 </SMALL> |