From: John L. <jr...@us...> - 2007-07-01 00:10:25
|
Update of /cvsroot/wxlua/website In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv26770/website Modified Files: documentation.php download.php support.php Log Message: some updates to the docs, move FAQ to documentation and it's own file. Index: support.php =================================================================== RCS file: /cvsroot/wxlua/website/support.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** support.php 3 May 2006 04:45:51 -0000 1.7 --- support.php 1 Jul 2007 00:10:22 -0000 1.8 *************** *** 17,33 **** <a href="http://sourceforge.net/mailarchive/forum.php?forum_id=45270">wxlua-commit archives</a>.</p> - - <h1 id="faq">Frequently Asked Questions (FAQ)</h1> - <div class="indented"> - <h2>1. Can I use wxLua as script interpreter embedded in my own applications ?</h2> - <p>Yes ! That's explained also in the <a href="index.php">homepage</a>. This is one of the strong points of wxLua: - it can be a lightweight, fast interpreter to extend your application and let the user customize it... - You may create as many wxLua interpreters in a single program as you like.</p> - - <h2>2. What's best for my needs: wxLua, wxPython, wxSomethingElse ?</h2> - <p>It depends: <a href="http://www.wxpython.org/">wxPython</a> has a much larger footprint and greater overhead than wxLua, but it does provide more add-ons from the Python standard library.</p> - <p>On the other hand, wxLua is as large as the wxWidgets library + ~100K for lua and can be easily interfaced with C++ code making it a powerful extension language (which is exactly the intent of its designers); look at <a href="http://www.lua.org/about.html">this page</a> for more info.</p> - <p>In conclusion, if you want to write an entire application in a scripting language and you need things supported by Python which are not present in wxLua out-of-the-box, then you should use wxPython. Instead, if you want to write applications with little overhead or extend your C++ applications, go for wxLua.</p> - </div> - <?php include_once("footer.inc.php"); ?> \ No newline at end of file --- 17,19 ---- Index: documentation.php =================================================================== RCS file: /cvsroot/wxlua/website/documentation.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** documentation.php 21 May 2006 13:20:22 -0000 1.1 --- documentation.php 1 Jul 2007 00:10:22 -0000 1.2 *************** *** 8,12 **** <h1 id="reference" class="first">Reference manuals</h1> ! <p>The following links contain useful documents for those who already know Lua, wxWidgets and wxLua.<br/> If you're looking for tutorials see the "Getting started" section in the <a href="index.php">homepage</a>...</p> --- 8,12 ---- <h1 id="reference" class="first">Reference manuals</h1> ! <p>The following links contain useful documents for learning and understanding wxLua, Lua, and wxWidgets.<br/> If you're looking for tutorials see the "Getting started" section in the <a href="index.php">homepage</a>...</p> *************** *** 16,21 **** programming in lua and wxLua as well as how to use the wxLua library in a C++ program.</p> <p>The <a href="docs/wxluaref.html">wxLua class reference</a> has a complete list of wxWidgets classes ! and datatypes that wxLua wraps.<br/> ! There are also <a href="http://www.doxygen.org">doxygen</a>-generated documentation for the C++ wxLua library at <a href="docs/doxygen/html/index.html">this page</a>.</p> --- 16,22 ---- programming in lua and wxLua as well as how to use the wxLua library in a C++ program.</p> <p>The <a href="docs/wxluaref.html">wxLua class reference</a> has a complete list of wxWidgets classes ! and datatypes that wxLua wraps.</p> ! <p>The <a href="docs/FAQ.html">FAQ</a> may answer some of your questions and it highlights important points.</p> ! <p>There are also <a href="http://www.doxygen.org">doxygen</a>-generated documentation for the C++ wxLua library at <a href="docs/doxygen/html/index.html">this page</a>.</p> *************** *** 56,60 **** <li><strong>Klaas Holwerda</strong>: author of wxLuaCan sample and indefatigable source of ideas.</li> <li><strong>Francesco Montorsi</strong>: worked on the bakefile-based build system, on this website and the wxLua packaging.</li> ! <li><strong>Anders F Björklund</strong>: contributed wxMac screenshots and created wxMac package.</li> <li><strong>Did we forget you?</strong> contact us and we'll add you.</li> </ol> --- 57,62 ---- <li><strong>Klaas Holwerda</strong>: author of wxLuaCan sample and indefatigable source of ideas.</li> <li><strong>Francesco Montorsi</strong>: worked on the bakefile-based build system, on this website and the wxLua packaging.</li> ! <li><strong>Anders F Björklund</strong>: contributed wxMac screenshots and created wxMac package.</li> ! <li><strong>Reuben Thomas</strong>: wrote the bit library that wxLua includes.</li> <li><strong>Did we forget you?</strong> contact us and we'll add you.</li> </ol> Index: download.php =================================================================== RCS file: /cvsroot/wxlua/website/download.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** download.php 30 Jun 2007 23:46:38 -0000 1.24 --- download.php 1 Jul 2007 00:10:22 -0000 1.25 *************** *** 74,78 **** Instead, if you are interested to wxLua for scripting only, then go with the <strong>binaries</strong> !</p> ! <p>You can view all the downloads <a href="http://sourceforge.net/project/showfiles.php?group_id=140042">here<alt="Downloads"/></a>.</p> <div class="indented"> --- 74,78 ---- Instead, if you are interested to wxLua for scripting only, then go with the <strong>binaries</strong> !</p> ! <p><b>You can view all the downloads <a href="http://sourceforge.net/project/showfiles.php?group_id=140042">here<alt="Downloads"/></a>.</b></p> <div class="indented"> |