<include file="top.lhhtml">
<lconf pos="/leohtml" pagename="leohtml">
<section link="/leohtml">
<locale>
<locale language="de">
Die <code>leohtml</code> Klasse ist eine einfache Klasse,
die Informationen darüber bereitstellt wie das Programm
kompiliert wurde und was unterstützt wird.
</locale>
<locale language="en">
The <code>leohtml</code> class is a simple class
that provides some informations how the application
was compiled, was is supported and what not.
</locale>
</locale>
<definition title-de="Leohtml Klassen Definition" title-en="Leohtml Class Definition">
<include file="leohtml.def">
</definition>
<faq title-en="Handling" title-de="Handhabung">
<locale>
<locale language="de">
Diese Klasse muß nicht erst generiert werden. Ein Instanz wurde
schon im Root Scope erzeugt. Das heißt auf sie kann man wie auf eine
globale Variable zugreifen.
</locale>
<locale language="en">
This has not to be generated explicitly. A instance is already generated
within the root scaope of the interpeter. This means you can access at it like
a global variable.
</locale>
</locale>
<example mode="fixed">
<char latin1>
function info()
{
print( "This is Leo<HTML> version", leohtml.version );
var is;
if( leohtml.image_size_support )
is = "true";
else
is = "false";
print ("image size support", is );
if( leohtml.char_set_support )
is = "true";
else
is = "false";
print("char set support", is );
}
</char>
</example>
</faq>
</section>
|