From: Francesco M. <fr...@us...> - 2006-12-20 12:04:20
|
Update of /cvsroot/wxlua/website In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv7074 Modified Files: header.inc.php luasample.lua luasample.lua.html style.css Log Message: recreated the logo using a SVG-rendered image; updated builtwithwx.png logo with a better suited one; added a line in the sample to make it more readable; removing padding/margins from headers to make it smaller; now title colours are brigther Index: header.inc.php =================================================================== RCS file: /cvsroot/wxlua/website/header.inc.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** header.inc.php 19 Dec 2006 23:36:27 -0000 1.15 --- header.inc.php 20 Dec 2006 12:04:10 -0000 1.16 *************** *** 20,25 **** <div id="header"> <table border="0" style="width:100%; vertical-align: middle;"> ! <tr style="vertical-align: middle; margin:0"> ! <td style="width:50%"> <a href="http://wxlua.sourceforge.net"> <img src="images/wxlualogo.png" style="border:0; float:left" alt="The wxLua logo"/> --- 20,25 ---- <div id="header"> <table border="0" style="width:100%; vertical-align: middle;"> ! <tr style="vertical-align: middle; margin:0; padding: 0"> ! <td style="width:50%; margin:0; padding: 0"> <a href="http://wxlua.sourceforge.net"> <img src="images/wxlualogo.png" style="border:0; float:left" alt="The wxLua logo"/> Index: style.css =================================================================== RCS file: /cvsroot/wxlua/website/style.css,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** style.css 19 Dec 2006 23:28:06 -0000 1.18 --- style.css 20 Dec 2006 12:04:11 -0000 1.19 *************** *** 82,86 **** .headerTitle span { ! color: green; background-color: transparent; font-weight: normal; --- 82,86 ---- .headerTitle span { ! color: rgb(100,200,100); background-color: transparent; font-weight: normal; Index: luasample.lua =================================================================== RCS file: /cvsroot/wxlua/website/luasample.lua,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** luasample.lua 19 Dec 2006 23:45:20 -0000 1.3 --- luasample.lua 20 Dec 2006 12:04:10 -0000 1.4 *************** *** 10,13 **** --- 10,14 ---- helpMenu:Append(wx.wxID_ABOUT, "&About", "About the wxLua Minimal Application") + -- create a menu bar and append the file and help menus local menuBar = wx.wxMenuBar() Index: luasample.lua.html =================================================================== RCS file: /cvsroot/wxlua/website/luasample.lua.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** luasample.lua.html 19 Dec 2006 23:45:20 -0000 1.3 --- luasample.lua.html 20 Dec 2006 12:04:10 -0000 1.4 *************** *** 10,13 **** --- 10,14 ---- <span style="font-weight: bold"><span style="color: #000000">helpMenu:Append</span></span><span style="color: #990000">(</span>wx<span style="color: #990000">.</span>wxID_ABOUT<span style="color: #990000">,</span> <span style="color: #FF0000">"&About"</span><span style="color: #990000">,</span> <span style="color: #FF0000">"About the wxLua Minimal Application"</span><span style="color: #990000">)</span> + <span style="font-style: italic"><span style="color: #9A1900">-- create a menu bar and append the file and help menus</span></span> <span style="font-weight: bold"><span style="color: #0000FF">local</span></span> menuBar <span style="color: #990000">=</span> wx<span style="color: #990000">.</span><span style="font-weight: bold"><span style="color: #000000">wxMenuBar</span></span><span style="color: #990000">(</span><span style="color: #990000">)</span> |