From: Francesco M. <fr...@us...> - 2006-07-19 19:09:08
|
Update of /cvsroot/wxlua/website In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv2218 Modified Files: index.php Log Message: fixed problem of news box overlapping with lua sample code Index: index.php =================================================================== RCS file: /cvsroot/wxlua/website/index.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** index.php 21 May 2006 13:20:22 -0000 1.18 --- index.php 19 Jul 2006 19:09:02 -0000 1.19 *************** *** 1,52 **** ! <!-- $Id$ --> ! <?php ! $pagetitle="index"; ! $anchors_href=array("whatis", "start"); ! $anchors_text=array("What is wxLua?", "Getting started"); ! include_once("header.inc.php"); ! ?> ! ! <!-- ##### News sidebar ##### --> ! <div class="rightSideBar"> ! <p class="sideBarTitle">News</p> ! <div class="sideBarText"><?php include_once("news.inc.php"); ?></div> ! </div> ! ! ! <h1 id="whatis" class="first">What is wxLua ?</h1> ! <p>wxLua is a set of bindings to the <a href="http://www.wxwidgets.org">wxWidgets</a> library for the ! <a href="http://www.lua.org">Lua</a> programming language. With <strong>wxLua</strong> you can write programs ! in Lua that use the wxWidgets <a href="http://en.wikipedia.org/wiki/Cross-platform">cross-platform</a> GUI library to ! develop and deliver your software with the programming ease of an interpreted language like Lua. ! Nearly all of the functionality of wxWidgets is exposed to Lua, meaning that your ! programs can have windows, dialogs, menus, toolbars, controls, image loading and saving, ! drawing, sockets, streams, printing, clipboard access... and much more.</p> ! ! <p>Additionally, wxLua can be used in your C++ programs to embed a <em>lua interpreter</em> ! with the wxWidgets API bindings. See the <a href="documentation.php">wxLua documentation</a> for more info.</p> ! ! <p>Want an example of how easy it is to write a cross-platform GUI? Here is a simple lua script which creates a ! wxFrame top level window and a menubar, just add your program to it:</p> ! <?php include_once("luasample.lua.html"); ?> ! <p>Easy, isn't it ? You can see more samples <a href="http://wxlua.cvs.sourceforge.net/wxlua/wxLua/samples/">here</a>.</p> ! ! <p><strong>If you use wxLua or you wrote a wxLua-based application, don't forget to <a href="http://news.gmane.org/gmane.comp.lib.wxwidgets.wxlua.user">tell us</a> about it !</strong></p> ! ! ! <h1 id="start">Getting started</h1> ! <ol> ! <li><p><strong>get the tools</strong>; the <a href="download.php">download page</a> contains ! the binary packages which allow you to get started in few minutes. You will find the <strong>wxLua</strong> ! and <strong>wxLuaEdit</strong> applications there which allow you to write and test your (wx)Lua programs.</p></li> ! ! <li> ! <p><strong>learn Lua</strong>; once you've got wxLua installed and running, you need to learn how to use it: a good way to learn <a href="http://www.lua.org">Lua</a>, in case you don't already know, is to refer to the ! <a href="http://lua-users.org/wiki/TutorialDirectory">tutorial</a> hosted in the Lua wiki.</p></li> ! ! <li> ! <p><strong>learn wxLua</strong>; once you've got some experience with Lua language you can start to learn wxLua bindings looking at the <a href="documentation.php">documentation page</a> and at the samples in the <tt>wxLua/samples</tt> directory.</p></li> ! </ol> ! ! <p>Last, if you need help look at the <a href="support.php">support page</a>.</p> ! <?php include_once("footer.inc.php"); ?> \ No newline at end of file --- 1,53 ---- ! <!-- $Id$ --> ! <?php ! $pagetitle="index"; ! $anchors_href=array("whatis", "start"); ! $anchors_text=array("What is wxLua?", "Getting started"); ! include_once("header.inc.php"); ! ?> ! ! <!-- ##### News sidebar ##### --> ! <div class="rightSideBar"> ! <p class="sideBarTitle">News</p> ! <!-- we want this box to be always on top of others --> ! <div class="sideBarText" style="z-index: 1000"><?php include_once("news.inc.php"); ?></div> ! </div> ! ! ! <h1 id="whatis" class="first">What is wxLua ?</h1> ! <p>wxLua is a set of bindings to the <a href="http://www.wxwidgets.org">wxWidgets</a> library for the ! <a href="http://www.lua.org">Lua</a> programming language. With <strong>wxLua</strong> you can write programs ! in Lua that use the wxWidgets <a href="http://en.wikipedia.org/wiki/Cross-platform">cross-platform</a> GUI library to ! develop and deliver your software with the programming ease of an interpreted language like Lua. ! Nearly all of the functionality of wxWidgets is exposed to Lua, meaning that your ! programs can have windows, dialogs, menus, toolbars, controls, image loading and saving, ! drawing, sockets, streams, printing, clipboard access... and much more.</p> ! ! <p>Additionally, wxLua can be used in your C++ programs to embed a <em>lua interpreter</em> ! with the wxWidgets API bindings. See the <a href="documentation.php">wxLua documentation</a> for more info.</p> ! ! <p>Want an example of how easy it is to write a cross-platform GUI? Here is a simple lua script which creates a ! wxFrame top level window and a menubar, just add your program to it:</p> ! <?php include_once("luasample.lua.html"); ?> ! <p>Easy, isn't it ? You can see more samples <a href="http://wxlua.cvs.sourceforge.net/wxlua/wxLua/samples/">here</a>.</p> ! ! <p><strong>If you use wxLua or you wrote a wxLua-based application, don't forget to <a href="http://news.gmane.org/gmane.comp.lib.wxwidgets.wxlua.user">tell us</a> about it !</strong></p> ! ! ! <h1 id="start">Getting started</h1> ! <ol> ! <li><p><strong>get the tools</strong>; the <a href="download.php">download page</a> contains ! the binary packages which allow you to get started in few minutes. You will find the <strong>wxLua</strong> ! and <strong>wxLuaEdit</strong> applications there which allow you to write and test your (wx)Lua programs.</p></li> ! ! <li> ! <p><strong>learn Lua</strong>; once you've got wxLua installed and running, you need to learn how to use it: a good way to learn <a href="http://www.lua.org">Lua</a>, in case you don't already know, is to refer to the ! <a href="http://lua-users.org/wiki/TutorialDirectory">tutorial</a> hosted in the Lua wiki.</p></li> ! ! <li> ! <p><strong>learn wxLua</strong>; once you've got some experience with Lua language you can start to learn wxLua bindings looking at the <a href="documentation.php">documentation page</a> and at the samples in the <tt>wxLua/samples</tt> directory.</p></li> ! </ol> ! ! <p>Last, if you need help look at the <a href="support.php">support page</a>.</p> ! <?php include_once("footer.inc.php"); ?> \ No newline at end of file |