1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00

Features added to WebBook HTML generator :

- New parameters in wb_usr to specify:
- logo image file name
- search box visibility
- search box title and label
- vertical size of title bar (for bigger logos)

Features changed in WebBook HTML generator:
- copywrite notice now optional
- mail contact now optional
- UTF-8 used for Portuguese version
- search box now has a separate template to allow positioning flexibility

HTML Templates enhanced

Ongoing work....
This commit is contained in:
Dado Sutter 2009-02-16 17:15:17 +00:00
parent db423ba662
commit 4a8edbeb0b
17 changed files with 599 additions and 548 deletions

View File

@ -708,7 +708,7 @@ specified UART interface.</font></p>
</p> </p>
<h3><a name="platdepmodules"></a>eLua Platform <h3><a name="platdepmodules"></a>eLua Platform
Dependent Dependent
Modules</h3><h3><a name="adcmodule"></a>adc</h3><br><a name="adc_sample"></a>adc.sample(channel_id) - returns a single integer value from the ADC<br><br><a name="adc_maxval"></a>adc.maxval(channel_id) - returns largest integer one can expect for this channel on a given platform (based on bit depth)<br><br><a name="adc_dataready"></a>adc.dataready(channel_id) Modules</h3><h3><a name="adcmodule"></a>adc</h3>Currently runs on: LM3S <br><br><a name="adc_sample"></a>adc.sample(channel_id) - returns a single integer value from the ADC<br><br><a name="adc_maxval"></a>adc.maxval(channel_id) - returns largest integer one can expect for this channel on a given platform (based on bit depth)<br><br><a name="adc_dataready"></a>adc.dataready(channel_id)
- if running in non-blocking mode, this will indicate if all of the - if running in non-blocking mode, this will indicate if all of the
samples requested from the last sample or <br>burst have been acquired and samples requested from the last sample or <br>burst have been acquired and
are waiting in the buffer<br><br><a name="adc_setmode"></a>adc.setmode(channel_id, mode) - mode: 0 are waiting in the buffer<br><br><a name="adc_setmode"></a>adc.setmode(channel_id, mode) - mode: 0
@ -721,7 +721,7 @@ channel_id, count, timer_id, frequency) - request that (count) samples
(channel_id), using (timer_id) at (frequency). results are returned as (channel_id), using (timer_id) at (frequency). results are returned as
a table<br><br> a table<br><br>
<h3><a name="dispmodule"></a>disp</h3> <h3><a name="dispmodule"></a>disp</h3>
<span style="font-weight: bold;"></span><br> <span style="font-weight: bold;"></span>Currently runs on: LM3S <br>
<p class="MsoNormal"><a name="disp_init"></a> <p class="MsoNormal"><a name="disp_init"></a>
disp.init </p> disp.init </p>
<p class="MsoNormal"> <br> <p class="MsoNormal"> <br>

View File

@ -2,11 +2,11 @@
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>eLua Doc</title> <title>eLua Doc</title>
</head> </head>
<frameset rows="51,*" frameborder="0" framespacing="0" bordercolor="#0B6DCE"> <frameset rows="80,*" frameborder="0" framespacing="0" bordercolor="#0B6DCE">
<frame name="wb_title" scrolling="no" noresize="noresize" src="wb_title_en.html" <frame name="wb_title" scrolling="no" noresize="noresize" src="wb_title_en.html"
frameborder="0" marginheight="0" marginwidth="0" target="wb_cont"> frameborder="0" marginheight="0" marginwidth="0" target="wb_cont">
<frameset cols="200,*" frameborder="1" framespacing="4" bordercolor="#0B6DCE" border="4"> <frameset cols="200,*" frameborder="1" framespacing="4" bordercolor="#0B6DCE" border="4">

View File

@ -2,11 +2,11 @@
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>eLua Doc</title> <title>eLua Doc</title>
</head> </head>
<frameset rows="51,*" frameborder="0" framespacing="0" bordercolor="#0B6DCE"> <frameset rows="80,*" frameborder="0" framespacing="0" bordercolor="#0B6DCE">
<frame name="wb_title" scrolling="no" noresize="noresize" src="wb_title_pt.html" <frame name="wb_title" scrolling="no" noresize="noresize" src="wb_title_pt.html"
frameborder="0" marginheight="0" marginwidth="0" target="wb_cont"> frameborder="0" marginheight="0" marginwidth="0" target="wb_cont">
<frameset cols="200,*" frameborder="1" framespacing="4" bordercolor="#0B6DCE" border="4"> <frameset cols="200,*" frameborder="1" framespacing="4" bordercolor="#0B6DCE" border="4">

View File

@ -2,11 +2,11 @@
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>WB_TITLE</title> <title>WB_TITLE</title>
</head> </head>
<frameset rows="51,*" frameborder="0" framespacing="0" bordercolor="#0B6DCE"> <frameset rows="TITLE_BAR_HEIGHT,*" frameborder="0" framespacing="0" bordercolor="#0B6DCE">
<frame name="wb_title" scrolling="no" noresize="noresize" src="wb_titleWB_LNG.html" <frame name="wb_title" scrolling="no" noresize="noresize" src="wb_titleWB_LNG.html"
frameborder="0" marginheight="0" marginwidth="0" target="wb_cont"> frameborder="0" marginheight="0" marginwidth="0" target="wb_cont">
<frameset cols="WB_START_SIZE,*" frameborder="1" framespacing="4" bordercolor="#0B6DCE" border="4"> <frameset cols="WB_START_SIZE,*" frameborder="1" framespacing="4" bordercolor="#0B6DCE" border="4">

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us" > <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bar</title> <title>Bar</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">
@ -20,8 +20,10 @@
<body style="margin: 2px; background-color: #F1F1F1"> <body style="margin: 2px; background-color: #F1F1F1">
<div class="navigation"> <div class="navigation">
<p><a target="_blank" href="http://www.eluaproject.net"><img <p><a target="_blank" href="http://www.eluaproject.net"><img src="wb_img/logo.png" style="border-width: 0px"></a>
src="wb_img/logo.png" style="border-width: 0px"></a><img src="wb_img/barlineleft.png"><img alt="WB_EXPALL_ALT" src="wb_img/showall.png" onclick="parent.wb_tree.showAllFolders()" onmouseover="this.src='wb_img/showall_over.png'" onmouseout="this.src='wb_img/showall.png'"><img alt="WB_CONTALL_ALT" src="wb_img/hideall.png" onclick="parent.wb_tree.hideAllFolders()" onmouseover="this.src='wb_img/hideall_over.png'" onmouseout="this.src='wb_img/hideall.png'"><img alt="WB_SYNC_ALT" src="wb_img/sync.png" onclick="parent.wb_tree.syncContents()" onmouseover="this.src='wb_img/sync_over.png'" onmouseout="this.src='wb_img/sync.png'"><img alt="WB_NEXT_ALT" src="wb_img/next.png" onclick="parent.wb_tree.nextContents()" onmouseover="this.src='wb_img/next_over.png'" onmouseout="this.src='wb_img/next.png'"><img alt="WB_PREV_ALT" src="wb_img/previous.png" onclick="parent.wb_tree.prevContents()" onmouseover="this.src='wb_img/previous_over.png'" onmouseout="this.src='wb_img/previous.png'">WB_LNG_BUTTON</p> <img src="wb_img/barlineleft.png"><img alt="WB_EXPALL_ALT" src="wb_img/showall.png" onclick="parent.wb_tree.showAllFolders()" onmouseover="this.src='wb_img/showall_over.png'" onmouseout="this.src='wb_img/showall.png'"><img alt="WB_CONTALL_ALT" src="wb_img/hideall.png" onclick="parent.wb_tree.hideAllFolders()" onmouseover="this.src='wb_img/hideall_over.png'" onmouseout="this.src='wb_img/hideall.png'"><img alt="WB_SYNC_ALT" src="wb_img/sync.png" onclick="parent.wb_tree.syncContents()" onmouseover="this.src='wb_img/sync_over.png'" onmouseout="this.src='wb_img/sync.png'"><img alt="WB_NEXT_ALT" src="wb_img/next.png" onclick="parent.wb_tree.nextContents()" onmouseover="this.src='wb_img/next_over.png'" onmouseout="this.src='wb_img/next.png'"><img alt="WB_PREV_ALT" src="wb_img/previous.png" onclick="parent.wb_tree.prevContents()" onmouseover="this.src='wb_img/previous_over.png'" onmouseout="this.src='wb_img/previous.png'">WB_LNG_BUTTON
</p>
</div> </div>
</body> </body>
</html> </html>

View File

@ -0,0 +1,11 @@
<FORM method=GET action="http://www.google.com/search" style="margin-bottom: 0; margin: 0; text-align: center;font-size:12px;font-family:verdana;">
<input type="hidden" name="ie" value="UTF-8" />
<input type="hidden" name=oe value="UTF-8" />
WB_SEARCH_LABEL
<INPUT TYPE="text" name="q" size="21" maxlength="255" value="" />
<INPUT type="submit" name="btnG" VALUE="Search" style="height: 21px; vertical-align: top; font-size: x-small;" />
<input type="hidden" name="domains" value="WB_SEARCH_LINK" />
<input type="hidden" name="sitesearch" value="WB_SEARCH_LINK" />
</FORM>

View File

@ -1,6 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Title</title> <title>Title</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">
@ -15,7 +16,7 @@ td.title {
td.contact { td.contact {
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
width: 11em; /*width: 11em;*/
} }
a.contact { a.contact {
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
@ -32,29 +33,22 @@ a.contact:hover {
<body style="background-color: WB_TITLE_BGCOLOR; margin-left: 3px; margin-right: 3px; margin-top: 2px; margin-bottom: 0; background-image: url('wb_img/title_background.png');"> <body style="background-color: WB_TITLE_BGCOLOR; margin-left: 3px; margin-right: 3px; margin-top: 2px; margin-bottom: 0; background-image: url('wb_img/title_background.png');">
<table style="width: 100%" cellspacing="0" cellpadding="0"> <table border="0" style="width: 100%;" cellspacing="0" cellpadding="0">
<tr> <tr>
<td style="width: 50px;"><img src="logo.gif"></td> <td valign="center" style="width: 30px;padding:0px 10px 0px 0px;">
<td class="title">WB_BAR_TITLE</td> WB_LOGO
<td style="width: 3.5em">
<a class="contact" href="ssSearchWB_LNG.html">SimpleSearch</a>
</td> </td>
<td style="width: 11em"> <td valign="center" class="title">WB_BAR_TITLE</td>
<FORM method=GET action="http://www.google.com/search" style="margin-bottom: 0; margin: 0; text-align: center; "> <!--td style="width: 3.5em">
<input type=hidden name=ie value=UTF-8> <a class="contact" href="ssSearchWB_LNG.html">SimpleSearch</a>
<input type=hidden name=oe value=UTF-8> </td-->
<INPUT TYPE=text name=q size=21 maxlength=255 value=""><br> <td style="width: 280px" >
<A HREF="http://www.google.com/"><IMG SRC="wb_img/google.gif" border="0" ALT="Google"></A> WB_SEARCH_FORM
<INPUT type=submit name=btnG VALUE="Search" style="height: 21px; vertical-align: top; font-size: x-small;">
<input type=hidden name=domains value="WB_SEARCH_LINK">
<input type=hidden name=sitesearch value="WB_SEARCH_LINK" checked>
<input type=hidden name=sitesearch value="">
</FORM>
</td> </td>
<td class="contact"> <td class="contact">
<a class="contact" target="_blank" href="WB_COPYRIGHT_LINK"><EFBFBD> WB_COPYRIGHT_NAME</a> WB_COPYRIGHT
<br> <br>
<a class="contact" href="mailto:WB_CONTACT">(WB_CONTACT)</a> WB_CONTACT
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us" > <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Tree</title> <title>Tree</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">

View File

@ -39,6 +39,17 @@ function addHtmlFile(v)
end end
-- ##################################################################### -- #####################################################################
function loadSearch()
local searchHTML = readFile("template_wb_search.html")
if(wb_usr.enable_search == true)then
searchHTML = string.gsub(searchHTML, "WB_SEARCH_LABEL", wb_usr.search_label or "")
searchHTML = string.gsub(searchHTML, "WB_SEARCH_LINK", wb_usr.search_link)
else
searchHTML = ""
end
return searchHTML
end
function writeIndexFile() function writeIndexFile()
print("Writing \"../index"..lngSuffix..".html\".") print("Writing \"../index"..lngSuffix..".html\".")
@ -46,6 +57,7 @@ function writeIndexFile()
local wb_index = readFile("template_index.html") local wb_index = readFile("template_index.html")
wb_index = string.gsub(wb_index, "WB_TITLE", wb_usr.messages[lngIndex].title) wb_index = string.gsub(wb_index, "WB_TITLE", wb_usr.messages[lngIndex].title)
wb_index = string.gsub(wb_index, "TITLE_BAR_HEIGHT", wb_usr.title_bar_height or 51)
wb_index = string.gsub(wb_index, "WB_START_SIZE", wb_usr.start_size) wb_index = string.gsub(wb_index, "WB_START_SIZE", wb_usr.start_size)
wb_index = string.gsub(wb_index, "WB_START_PAGE", lngIndex.."/"..wb_usr.tree.link) wb_index = string.gsub(wb_index, "WB_START_PAGE", lngIndex.."/"..wb_usr.tree.link)
if (lngCount > 1) then if (lngCount > 1) then
@ -63,13 +75,29 @@ function writeTitleFile()
print("Writing \"../wb_title"..lngSuffix..".html\".") print("Writing \"../wb_title"..lngSuffix..".html\".")
local wb_title = readFile("template_wb_title.html") local wb_title = readFile("template_wb_title.html")
if(wb_usr.logo_image_file ~= nil and wb_usr.logo_image_file ~= "")then
wb_title = string.gsub(wb_title, "WB_LOGO", [[<img src="wb_img/]]..wb_usr.logo_image_file..[[" border="0">]])
else
wb_title = string.gsub(wb_title, "WB_LOGO","")
end
wb_title = string.gsub(wb_title, "WB_BAR_TITLE", wb_usr.messages[lngIndex].bar_title) wb_title = string.gsub(wb_title, "WB_BAR_TITLE", wb_usr.messages[lngIndex].bar_title)
wb_title = string.gsub(wb_title, "WB_TITLE_BGCOLOR", wb_usr.title_bgcolor) wb_title = string.gsub(wb_title, "WB_TITLE_BGCOLOR", wb_usr.title_bgcolor)
wb_title = string.gsub(wb_title, "WB_SEARCH_LINK", wb_usr.search_link) wb_title = string.gsub(wb_title, "WB_SEARCH_FORM",loadSearch())
wb_title = string.gsub(wb_title, "WB_COPYRIGHT_LINK", wb_usr.copyright_link)
wb_title = string.gsub(wb_title, "WB_COPYRIGHT_NAME", wb_usr.copyright_name) local copyrightHTML = ""
wb_title = string.gsub(wb_title, "WB_CONTACT", wb_usr.contact) if (wb_usr.copyright_link ~= nil and wb_usr.copyright_name ~= nil and wb_usr.copyright_link ~= "" and wb_usr.copyright_name ~= "")then
copyrightHTML = [[<a class="contact" target="_blank" href="WB_COPYRIGHT_LINK">© WB_COPYRIGHT_NAME</a>]]
copyrightHTML = string.gsub(copyrightHTML, "WB_COPYRIGHT_LINK", wb_usr.copyright_link)
copyrightHTML = string.gsub(copyrightHTML, "WB_COPYRIGHT_NAME", wb_usr.copyright_name)
end
wb_title = string.gsub(wb_title, "WB_COPYRIGHT", copyrightHTML)
local contactHTML = ""
if wb_usr.contact ~= nil and wb_usr.contact ~= "" then
contactHTML = string.gsub([[<a class="contact" href="mailto:WB_CONTACT">(WB_CONTACT)</a>]], "WB_CONTACT", wb_usr.contact)
end
wb_title = string.gsub(wb_title, "WB_CONTACT", contactHTML)
if (lngCount > 1) then if (lngCount > 1) then
wb_title = string.gsub(wb_title, "WB_LNG", lngSuffix) wb_title = string.gsub(wb_title, "WB_LNG", lngSuffix)
@ -234,18 +262,18 @@ lngMessages =
}, },
exp_all= { exp_all= {
en= "Expand All Nodes", en= "Expand All Nodes",
pt= "Expande Todos os N<EFBFBD>s", pt= "Expande Todos os Nós",
es= "Ensanchar Todos Nodos", es= "Ensanchar Todos Nodos",
}, },
cont_all= { cont_all= {
en= "Contract All Nodes", en= "Contract All Nodes",
pt= "Contrai Todos os N<EFBFBD>s", pt= "Contrai Todos os Nós",
es= "Contrato Todos Nodos", es= "Contrato Todos Nodos",
}, },
sync= { sync= {
en= "Sync Tree with Contents", en= "Sync Tree with Contents",
pt= "Sincroniza <EFBFBD>rvore com Conte<74>do", pt= "Sincroniza Árvore com Conteúdo",
es= "Sincroniza <EFBFBD>rbol con el Contenido", es= "Sincroniza Árbol con el Contenido",
}, },
lang= { lang= {
en= "Switch Language", en= "Switch Language",
@ -254,8 +282,8 @@ lngMessages =
}, },
next= { next= {
en= "Next Link", en= "Next Link",
pt= "Pr<EFBFBD>ximo Link", pt= "Próximo Link",
es= "Pr<EFBFBD>ximo Link", es= "Próximo Link",
}, },
prev= { prev= {
en= "Previous Link", en= "Previous Link",

View File

@ -12,16 +12,18 @@
wb_usr = { wb_usr = {
langs = {"en","pt" }, langs = {"en","pt" },
start_size = "200", start_size = "200",
title_bar_height = 80,
enable_search = true,
--search_label = "Search:",
search_link = "http://www.eluaproject.net",
--contact = "dadosutter@eluaproject.net", --contact = "dadosutter@eluaproject.net",
contact = "",
copyright_link = "http://www.eluaproject.net",
-- copyright_link = "",
search_link = "http://www.eluaproject.net/doc",
--copyright_name = "eLua Team", --copyright_name = "eLua Team",
copyright_name = "", --copyright_link = "http://www.eluaproject.net",
title_bgcolor = "midnightblue", title_bgcolor = "midnightblue",
file_title = "wb", file_title = "wb",
start_open = "1" start_open = "1",
logo_image_file = "eLua-logo-80x80.png"
} }
@ -50,17 +52,17 @@ wb_usr.tree =
link = "news.html", link = "news.html",
folder = folder =
{ {
{ name = {en = "Overview", pt = "Apresenta<EFBFBD><EFBFBD>o" }, { name = {en = "Overview", pt = "Apresentação" },
link = "overview.html", link = "overview.html",
folder = folder =
{ {
{ name = { en = "What is", pt = "O que <EFBFBD> eLua ?" }, { name = { en = "What is", pt = "O que é eLua ?" },
link = "overview.html#whatis", link = "overview.html#whatis",
}, },
{ name = { en = "Audience", pt = "P<EFBFBD>blico alvo" }, { name = { en = "Audience", pt = "Público alvo" },
link = "overview.html#audience", link = "overview.html#audience",
}, },
{ name = { en = "Uses", pt = "Aplica<EFBFBD><EFBFBD>es" }, { name = { en = "Uses", pt = "Aplicações" },
link = "overview.html#uses", link = "overview.html#uses",
}, },
{ name = { en = "Authors", pt = "Autores" }, { name = { en = "Authors", pt = "Autores" },
@ -69,7 +71,7 @@ wb_usr.tree =
{ name = { en = "Contacts", pt = "Contatos" }, { name = { en = "Contacts", pt = "Contatos" },
link = "overview.html#contacts", link = "overview.html#contacts",
}, },
{ name = { en = "Licence", pt = "Licen<EFBFBD>a" }, { name = { en = "Licence", pt = "Licença" },
link = "overview.html#license", link = "overview.html#license",
}, },
}, },
@ -82,7 +84,7 @@ wb_usr.tree =
{ name = { en = "Lists", pt = "Listas" }, { name = { en = "Lists", pt = "Listas" },
link = "community.html#lists", link = "community.html#lists",
}, },
{ name = { en = "Credits", pt = "Cr<EFBFBD>ditos" }, { name = { en = "Credits", pt = "Créditos" },
link = "community.html#credits", link = "community.html#credits",
}, },
--[[ --[[
@ -100,7 +102,7 @@ wb_usr.tree =
link = "status.html", link = "status.html",
folder = folder =
{ {
{ name = { en = "News", pt = "Not<EFBFBD>cias" }, { name = { en = "News", pt = "Notícias" },
link = "news.html", link = "news.html",
}, },
{ name = { en = "Platforms", pt = "Plataformas" }, { name = { en = "Platforms", pt = "Plataformas" },
@ -112,7 +114,7 @@ wb_usr.tree =
}, },
}, },
{ {
name = { en = "Documentation", pt = "Documenta<EFBFBD><EFBFBD>o" }, name = { en = "Documentation", pt = "Documentação" },
link = "using.html", link = "using.html",
folder = folder =
{ {
@ -197,7 +199,7 @@ wb_usr.tree =
}, },
}, },
{ {
name = {en = "Version History", pt = "Hist<EFBFBD>rico de Vers<72>es" }, name = {en = "Version History", pt = "Histórico de Versões" },
link = "versionhistory.html", link = "versionhistory.html",
folder = folder =
{ {
@ -215,12 +217,12 @@ wb_usr.tree =
}, },
}, },
{ {
name = { en = "Reference Manual", pt = "Manual de Refer<EFBFBD>ncia" }, name = { en = "Reference Manual", pt = "Manual de Referência" },
link = "refman.html#genericmodules", link = "refman.html#genericmodules",
folder = folder =
{ {
{ {
name = { en = "Generic Modules", pt = "M<EFBFBD>dulos Gen<65>ricos" }, name = { en = "Generic Modules", pt = "Módulos Genéricos" },
link = "refman.html#genericmodules", link = "refman.html#genericmodules",
folder = folder =
{ {

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us" > <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bar</title> <title>Bar</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">
@ -20,8 +20,10 @@
<body style="margin: 2px; background-color: #F1F1F1"> <body style="margin: 2px; background-color: #F1F1F1">
<div class="navigation"> <div class="navigation">
<p><a target="_blank" href="http://www.eluaproject.net"><img <p><a target="_blank" href="http://www.eluaproject.net"><img src="wb_img/logo.png" style="border-width: 0px"></a>
src="wb_img/logo.png" style="border-width: 0px"></a><img src="wb_img/barlineleft.png"><img alt="Expand All Nodes" src="wb_img/showall.png" onclick="parent.wb_tree.showAllFolders()" onmouseover="this.src='wb_img/showall_over.png'" onmouseout="this.src='wb_img/showall.png'"><img alt="Contract All Nodes" src="wb_img/hideall.png" onclick="parent.wb_tree.hideAllFolders()" onmouseover="this.src='wb_img/hideall_over.png'" onmouseout="this.src='wb_img/hideall.png'"><img alt="Sync Tree with Contents" src="wb_img/sync.png" onclick="parent.wb_tree.syncContents()" onmouseover="this.src='wb_img/sync_over.png'" onmouseout="this.src='wb_img/sync.png'"><img alt="Next Link" src="wb_img/next.png" onclick="parent.wb_tree.nextContents()" onmouseover="this.src='wb_img/next_over.png'" onmouseout="this.src='wb_img/next.png'"><img alt="Previous Link" src="wb_img/previous.png" onclick="parent.wb_tree.prevContents()" onmouseover="this.src='wb_img/previous_over.png'" onmouseout="this.src='wb_img/previous.png'"><img src="wb_img/barlineright.png"><a target="_top" href="index_pt.html"><img alt="Switch Language" src="wb_img/lng_en.png" onmouseover="this.src='wb_img/lng_en_over.png'" onmouseout="this.src='wb_img/lng_en.png'" style="border-width: 0px"></a></p> <img src="wb_img/barlineleft.png"><img alt="Expand All Nodes" src="wb_img/showall.png" onclick="parent.wb_tree.showAllFolders()" onmouseover="this.src='wb_img/showall_over.png'" onmouseout="this.src='wb_img/showall.png'"><img alt="Contract All Nodes" src="wb_img/hideall.png" onclick="parent.wb_tree.hideAllFolders()" onmouseover="this.src='wb_img/hideall_over.png'" onmouseout="this.src='wb_img/hideall.png'"><img alt="Sync Tree with Contents" src="wb_img/sync.png" onclick="parent.wb_tree.syncContents()" onmouseover="this.src='wb_img/sync_over.png'" onmouseout="this.src='wb_img/sync.png'"><img alt="Next Link" src="wb_img/next.png" onclick="parent.wb_tree.nextContents()" onmouseover="this.src='wb_img/next_over.png'" onmouseout="this.src='wb_img/next.png'"><img alt="Previous Link" src="wb_img/previous.png" onclick="parent.wb_tree.prevContents()" onmouseover="this.src='wb_img/previous_over.png'" onmouseout="this.src='wb_img/previous.png'"><img src="wb_img/barlineright.png"><a target="_top" href="index_pt.html"><img alt="Switch Language" src="wb_img/lng_en.png" onmouseover="this.src='wb_img/lng_en_over.png'" onmouseout="this.src='wb_img/lng_en.png'" style="border-width: 0px"></a>
</p>
</div> </div>
</body> </body>
</html> </html>

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us" > <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bar</title> <title>Bar</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">
@ -20,8 +20,10 @@
<body style="margin: 2px; background-color: #F1F1F1"> <body style="margin: 2px; background-color: #F1F1F1">
<div class="navigation"> <div class="navigation">
<p><a target="_blank" href="http://www.eluaproject.net"><img <p><a target="_blank" href="http://www.eluaproject.net"><img src="wb_img/logo.png" style="border-width: 0px"></a>
src="wb_img/logo.png" style="border-width: 0px"></a><img src="wb_img/barlineleft.png"><img alt="Expande Todos os N<>s" src="wb_img/showall.png" onclick="parent.wb_tree.showAllFolders()" onmouseover="this.src='wb_img/showall_over.png'" onmouseout="this.src='wb_img/showall.png'"><img alt="Contrai Todos os N<>s" src="wb_img/hideall.png" onclick="parent.wb_tree.hideAllFolders()" onmouseover="this.src='wb_img/hideall_over.png'" onmouseout="this.src='wb_img/hideall.png'"><img alt="Sincroniza <20>rvore com Conte<74>do" src="wb_img/sync.png" onclick="parent.wb_tree.syncContents()" onmouseover="this.src='wb_img/sync_over.png'" onmouseout="this.src='wb_img/sync.png'"><img alt="Pr<50>ximo Link" src="wb_img/next.png" onclick="parent.wb_tree.nextContents()" onmouseover="this.src='wb_img/next_over.png'" onmouseout="this.src='wb_img/next.png'"><img alt="Link Anterior" src="wb_img/previous.png" onclick="parent.wb_tree.prevContents()" onmouseover="this.src='wb_img/previous_over.png'" onmouseout="this.src='wb_img/previous.png'"><img src="wb_img/barlineright.png"><a target="_top" href="index_en.html"><img alt="Troca Idioma" src="wb_img/lng_pt.png" onmouseover="this.src='wb_img/lng_pt_over.png'" onmouseout="this.src='wb_img/lng_pt.png'" style="border-width: 0px"></a></p> <img src="wb_img/barlineleft.png"><img alt="Expande Todos os Nós" src="wb_img/showall.png" onclick="parent.wb_tree.showAllFolders()" onmouseover="this.src='wb_img/showall_over.png'" onmouseout="this.src='wb_img/showall.png'"><img alt="Contrai Todos os Nós" src="wb_img/hideall.png" onclick="parent.wb_tree.hideAllFolders()" onmouseover="this.src='wb_img/hideall_over.png'" onmouseout="this.src='wb_img/hideall.png'"><img alt="Sincroniza Árvore com Conteúdo" src="wb_img/sync.png" onclick="parent.wb_tree.syncContents()" onmouseover="this.src='wb_img/sync_over.png'" onmouseout="this.src='wb_img/sync.png'"><img alt="Próximo Link" src="wb_img/next.png" onclick="parent.wb_tree.nextContents()" onmouseover="this.src='wb_img/next_over.png'" onmouseout="this.src='wb_img/next.png'"><img alt="Link Anterior" src="wb_img/previous.png" onclick="parent.wb_tree.prevContents()" onmouseover="this.src='wb_img/previous_over.png'" onmouseout="this.src='wb_img/previous.png'"><img src="wb_img/barlineright.png"><a target="_top" href="index_en.html"><img alt="Troca Idioma" src="wb_img/lng_pt.png" onmouseover="this.src='wb_img/lng_pt_over.png'" onmouseout="this.src='wb_img/lng_pt.png'" style="border-width: 0px"></a>
</p>
</div> </div>
</body> </body>
</html> </html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -1,6 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Title</title> <title>Title</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">
@ -15,7 +16,7 @@ td.title {
td.contact { td.contact {
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
width: 11em; /*width: 11em;*/
} }
a.contact { a.contact {
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
@ -32,29 +33,33 @@ a.contact:hover {
<body style="background-color: midnightblue; margin-left: 3px; margin-right: 3px; margin-top: 2px; margin-bottom: 0; background-image: url('wb_img/title_background.png');"> <body style="background-color: midnightblue; margin-left: 3px; margin-right: 3px; margin-top: 2px; margin-bottom: 0; background-image: url('wb_img/title_background.png');">
<table style="width: 100%" cellspacing="0" cellpadding="0"> <table border="0" style="width: 100%;" cellspacing="0" cellpadding="0">
<tr> <tr>
<td style="width: 50px;"><img src="logo.gif"></td> <td valign="center" style="width: 30px;padding:0px 10px 0px 0px;">
<td class="title">eLua - Embedded Lua</td> <img src="wb_img/eLua-logo-80x80.png" border="0">
<td style="width: 3.5em">
<a class="contact" href="ssSearch_en.html">SimpleSearch</a>
</td> </td>
<td style="width: 11em"> <td valign="center" class="title">eLua - Embedded Lua</td>
<FORM method=GET action="http://www.google.com/search" style="margin-bottom: 0; margin: 0; text-align: center; "> <!--td style="width: 3.5em">
<input type=hidden name=ie value=UTF-8> <a class="contact" href="ssSearch_en.html">SimpleSearch</a>
<input type=hidden name=oe value=UTF-8> </td-->
<INPUT TYPE=text name=q size=21 maxlength=255 value=""><br> <td style="width: 280px" >
<A HREF="http://www.google.com/"><IMG SRC="wb_img/google.gif" border="0" ALT="Google"></A>
<INPUT type=submit name=btnG VALUE="Search" style="height: 21px; vertical-align: top; font-size: x-small;"> <FORM method=GET action="http://www.google.com/search" style="margin-bottom: 0; margin: 0; text-align: center;font-size:12px;font-family:verdana;">
<input type=hidden name=domains value="http://www.eluaproject.net/doc"> <input type="hidden" name="ie" value="UTF-8" />
<input type=hidden name=sitesearch value="http://www.eluaproject.net/doc" checked> <input type="hidden" name=oe value="UTF-8" />
<input type=hidden name=sitesearch value="">
<INPUT TYPE="text" name="q" size="21" maxlength="255" value="" />
<INPUT type="submit" name="btnG" VALUE="Search" style="height: 21px; vertical-align: top; font-size: x-small;" />
<input type="hidden" name="domains" value="http://www.eluaproject.net/doc" />
<input type="hidden" name="sitesearch" value="http://www.eluaproject.net/doc" />
</FORM> </FORM>
</td> </td>
<td class="contact"> <td class="contact">
<a class="contact" target="_blank" href="http://www.eluaproject.net"><EFBFBD> </a>
<br> <br>
<a class="contact" href="mailto:">()</a>
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -1,6 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Title</title> <title>Title</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">
@ -15,7 +16,7 @@ td.title {
td.contact { td.contact {
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
width: 11em; /*width: 11em;*/
} }
a.contact { a.contact {
font-family: Arial, Helvetica, sans-serif; font-family: Arial, Helvetica, sans-serif;
@ -32,29 +33,33 @@ a.contact:hover {
<body style="background-color: midnightblue; margin-left: 3px; margin-right: 3px; margin-top: 2px; margin-bottom: 0; background-image: url('wb_img/title_background.png');"> <body style="background-color: midnightblue; margin-left: 3px; margin-right: 3px; margin-top: 2px; margin-bottom: 0; background-image: url('wb_img/title_background.png');">
<table style="width: 100%" cellspacing="0" cellpadding="0"> <table border="0" style="width: 100%;" cellspacing="0" cellpadding="0">
<tr> <tr>
<td style="width: 50px;"><img src="logo.gif"></td> <td valign="center" style="width: 30px;padding:0px 10px 0px 0px;">
<td class="title">eLua - Embedded Lua</td> <img src="wb_img/eLua-logo-80x80.png" border="0">
<td style="width: 3.5em">
<a class="contact" href="ssSearch_pt.html">SimpleSearch</a>
</td> </td>
<td style="width: 11em"> <td valign="center" class="title">eLua - Embedded Lua</td>
<FORM method=GET action="http://www.google.com/search" style="margin-bottom: 0; margin: 0; text-align: center; "> <!--td style="width: 3.5em">
<input type=hidden name=ie value=UTF-8> <a class="contact" href="ssSearch_pt.html">SimpleSearch</a>
<input type=hidden name=oe value=UTF-8> </td-->
<INPUT TYPE=text name=q size=21 maxlength=255 value=""><br> <td style="width: 280px" >
<A HREF="http://www.google.com/"><IMG SRC="wb_img/google.gif" border="0" ALT="Google"></A>
<INPUT type=submit name=btnG VALUE="Search" style="height: 21px; vertical-align: top; font-size: x-small;"> <FORM method=GET action="http://www.google.com/search" style="margin-bottom: 0; margin: 0; text-align: center;font-size:12px;font-family:verdana;">
<input type=hidden name=domains value="http://www.eluaproject.net/doc"> <input type="hidden" name="ie" value="UTF-8" />
<input type=hidden name=sitesearch value="http://www.eluaproject.net/doc" checked> <input type="hidden" name=oe value="UTF-8" />
<input type=hidden name=sitesearch value="">
<INPUT TYPE="text" name="q" size="21" maxlength="255" value="" />
<INPUT type="submit" name="btnG" VALUE="Search" style="height: 21px; vertical-align: top; font-size: x-small;" />
<input type="hidden" name="domains" value="http://www.eluaproject.net/doc" />
<input type="hidden" name="sitesearch" value="http://www.eluaproject.net/doc" />
</FORM> </FORM>
</td> </td>
<td class="contact"> <td class="contact">
<a class="contact" target="_blank" href="http://www.eluaproject.net"><EFBFBD> </a>
<br> <br>
<a class="contact" href="mailto:">()</a>
</td> </td>
</tr> </tr>
</table> </table>

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us" > <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Tree</title> <title>Tree</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html> <html>
<head> <head>
<meta http-equiv="Content-Language" content="en-us" > <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Tree</title> <title>Tree</title>
<base target="wb_cont"> <base target="wb_cont">
<style type="text/css"> <style type="text/css">
@ -219,27 +219,27 @@
<body style="margin: 2px; background-color: #F1F1F1" onload="showStartPage()"> <body style="margin: 2px; background-color: #F1F1F1" onload="showStartPage()">
<div class="tree" onmouseout="clearLastLink()"> <div class="tree" onmouseout="clearLastLink()">
<h3><a name="link0folder.0" class="el" href="pt/news.html">eLua</a></h3> <h3><a name="link0folder.0" class="el" href="pt/news.html">eLua</a></h3>
<p><img name="imgfolder.1" src="wb_img/minusnode.png" onclick="toggleFolder('folder.1')"><a name="link149folder.1" class="el" href="pt/overview.html">Apresenta<EFBFBD><EFBFBD>o</a></p> <p><img name="imgfolder.1" src="wb_img/minusnode.png" onclick="toggleFolder('folder.1')"><a name="link149folder.1" class="el" href="pt/overview.html">Apresentação</a></p>
<div id="folder.1" style="display:block"> <div id="folder.1" style="display:block">
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link150folder.1" href="pt/overview.html#whatis">O que <EFBFBD> eLua ?</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link150folder.1" href="pt/overview.html#whatis">O que é eLua ?</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link151folder.1" href="pt/overview.html#audience">P<EFBFBD>blico alvo</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link151folder.1" href="pt/overview.html#audience">Público alvo</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link152folder.1" href="pt/overview.html#uses">Aplica<EFBFBD><EFBFBD>es</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link152folder.1" href="pt/overview.html#uses">Aplicações</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link153folder.1" href="pt/overview.html#authors">Autores</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link153folder.1" href="pt/overview.html#authors">Autores</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link154folder.1" href="pt/overview.html#contacts">Contatos</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link154folder.1" href="pt/overview.html#contacts">Contatos</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link155folder.1" href="pt/overview.html#license">Licen<EFBFBD>a</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link155folder.1" href="pt/overview.html#license">Licença</a></p>
</div> </div>
<p><img name="imgfolder.2" src="wb_img/plusnode.png" onclick="toggleFolder('folder.2')"><a name="link156folder.2" class="el" href="pt/community.html">Comunidade</a></p> <p><img name="imgfolder.2" src="wb_img/plusnode.png" onclick="toggleFolder('folder.2')"><a name="link156folder.2" class="el" href="pt/community.html">Comunidade</a></p>
<div id="folder.2"> <div id="folder.2">
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link157folder.2" href="pt/community.html#lists">Listas</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link157folder.2" href="pt/community.html#lists">Listas</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link158folder.2" href="pt/community.html#credits">Cr<EFBFBD>ditos</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link158folder.2" href="pt/community.html#credits">Créditos</a></p>
</div> </div>
<p><img name="imgfolder.3" src="wb_img/plusnode.png" onclick="toggleFolder('folder.3')"><a name="link159folder.3" class="el" href="pt/status.html">Status</a></p> <p><img name="imgfolder.3" src="wb_img/plusnode.png" onclick="toggleFolder('folder.3')"><a name="link159folder.3" class="el" href="pt/status.html">Status</a></p>
<div id="folder.3"> <div id="folder.3">
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link160folder.3" href="pt/news.html">Not<EFBFBD>cias</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link160folder.3" href="pt/news.html">Notícias</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link161folder.3" href="pt/status.html#platforms">Plataformas</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link161folder.3" href="pt/status.html#platforms">Plataformas</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link162folder.3" href="pt/status.html#roadmap">Futuro</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link162folder.3" href="pt/status.html#roadmap">Futuro</a></p>
</div> </div>
<p><img name="imgfolder.4" src="wb_img/plusnode.png" onclick="toggleFolder('folder.4')"><a name="link163folder.4" class="el" href="pt/using.html">Documenta<EFBFBD><EFBFBD>o</a></p> <p><img name="imgfolder.4" src="wb_img/plusnode.png" onclick="toggleFolder('folder.4')"><a name="link163folder.4" class="el" href="pt/using.html">Documentação</a></p>
<div id="folder.4"> <div id="folder.4">
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link164folder.4" href="pt/faq.html">FAQ</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link164folder.4" href="pt/faq.html">FAQ</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link165folder.4" href="pt/using.html">Usando</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/node.png"><a class="el" name="link165folder.4" href="pt/using.html">Usando</a></p>
@ -269,16 +269,16 @@
</div> </div>
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link185folder.4.2" href="pt/tut_openocd.html">Using OpenOC</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img src="wb_img/nodelast.png"><a class="el" name="link185folder.4.2" href="pt/tut_openocd.html">Using OpenOC</a></p>
</div> </div>
<p><img src="wb_img/vertline.png"><img name="imgfolder.4.3" src="wb_img/plusnodelast.png" onclick="toggleFolder('folder.4.3')"><a name="link186folder.4.3" class="el" href="pt/versionhistory.html">Hist<EFBFBD>rico de Vers<72>es</a></p> <p><img src="wb_img/vertline.png"><img name="imgfolder.4.3" src="wb_img/plusnodelast.png" onclick="toggleFolder('folder.4.3')"><a name="link186folder.4.3" class="el" href="pt/versionhistory.html">Histórico de Versões</a></p>
<div id="folder.4.3"> <div id="folder.4.3">
<p><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link187folder.4.3" href="pt/versionhistory.html#04">v 0.4</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link187folder.4.3" href="pt/versionhistory.html#04">v 0.4</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link188folder.4.3" href="pt/versionhistory.html#05">v 0.5</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/node.png"><a class="el" name="link188folder.4.3" href="pt/versionhistory.html#05">v 0.5</a></p>
<p><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/nodelast.png"><a class="el" name="link189folder.4.3" href="pt/versionhistory.html#06">v 0.6</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/blank.png"><img src="wb_img/nodelast.png"><a class="el" name="link189folder.4.3" href="pt/versionhistory.html#06">v 0.6</a></p>
</div> </div>
</div> </div>
<p><img name="imgfolder.5" src="wb_img/plusnode.png" onclick="toggleFolder('folder.5')"><a name="link190folder.5" class="el" href="pt/refman.html#genericmodules">Manual de Refer<EFBFBD>ncia</a></p> <p><img name="imgfolder.5" src="wb_img/plusnode.png" onclick="toggleFolder('folder.5')"><a name="link190folder.5" class="el" href="pt/refman.html#genericmodules">Manual de Referência</a></p>
<div id="folder.5"> <div id="folder.5">
<p><img src="wb_img/vertline.png"><img name="imgfolder.5.1" src="wb_img/plusnode.png" onclick="toggleFolder('folder.5.1')"><a name="link191folder.5.1" class="el" href="pt/refman.html#genericmodules">M<EFBFBD>dulos Gen<65>ricos</a></p> <p><img src="wb_img/vertline.png"><img name="imgfolder.5.1" src="wb_img/plusnode.png" onclick="toggleFolder('folder.5.1')"><a name="link191folder.5.1" class="el" href="pt/refman.html#genericmodules">Módulos Genéricos</a></p>
<div id="folder.5.1"> <div id="folder.5.1">
<p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img name="imgfolder.5.1.1" src="wb_img/plusnode.png" onclick="toggleFolder('folder.5.1.1')"><a name="link192folder.5.1.1" class="el" href="pt/refman.html#bitmodule">bit</a></p> <p><img src="wb_img/vertline.png"><img src="wb_img/vertline.png"><img name="imgfolder.5.1.1" src="wb_img/plusnode.png" onclick="toggleFolder('folder.5.1.1')"><a name="link192folder.5.1.1" class="el" href="pt/refman.html#bitmodule">bit</a></p>
<div id="folder.5.1.1"> <div id="folder.5.1.1">