diff options
-rwxr-xr-x | doc/manual/index.html | 46 | ||||
-rw-r--r-- | www/index.html | 48 |
2 files changed, 77 insertions, 17 deletions
diff --git a/doc/manual/index.html b/doc/manual/index.html index 6ac46ac..9fe4e5e 100755 --- a/doc/manual/index.html +++ b/doc/manual/index.html @@ -1,8 +1,30 @@ -<HTML> -<HEAD> -<TITLE>GlueGen Manual</TITLE> -</HEAD> -<BODY> +<!DOCTYPE html PUBliC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <link href="../../../style.css" rel="stylesheet" type="text/css"/> + <title></title> + </head> + <body> + <div id="container"> + <div id="header"> + <div id="slogan">Gluegen Manual</div> + <div id="logo"><a href="http://jogamp.org/">Gluegen</a></div> + </div> + <div id="menu"> + <ul> + <li><a href="http://jogamp.org/">Home</a></li> + <li><a href="../../../gluegen/www/">Gluegen</a></li> + <li><a href="../../../joal/www/">JOAL</a></li> + <li><a href="../../../jocl/www/">JOCL</a></li> + <li><a href="../../../jogl/www/">JOGL</a></li> + <li><a href="../../../demos/">Demos</a></li> + <li><a href="../../../wiki/">Wiki</a></li> + <li><a href="../../../deployment/gluegen-next/javadoc_public/">JavaDoc</a></li> + </ul> + </div> + <div id="main" class="fill"> + <H1>GlueGen Manual</H1> @@ -2267,5 +2289,15 @@ of an array, we can not use the Opaque directive to erase this data type to <CODE>long</CODE> as we did with the <CODE>Display</CODE> data type. -</BODY> -</HTML> + </div> + <div id="footer"> + <div id="footer_left"> + <span xmlns:dc="http://purl.org/dc/elements/1.1/" property="dc:title">JogAmp.org</span> + by <a xmlns:cc="http://creativecommons.org/ns#" href="http://jogamp.org" property="cc:attributionName" rel="cc:attributionURL">http://jogamp.org</a> + is licensed under a <br/> + <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 License</a>. + </div> + </div> + </div> + </body> +</html> diff --git a/www/index.html b/www/index.html index 745bec6..348f403 100644 --- a/www/index.html +++ b/www/index.html @@ -1,10 +1,28 @@ -<html> -<head> -<title>GlueGen Home Page</title> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -</head> - -<body bgcolor="#FFFFFF" text="#000000"> +<!DOCTYPE html PUBliC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <link href="../../style.css" rel="stylesheet" type="text/css"/> + <title></title> + </head> + <body> + <div id="container"> + <div id="header"> + <div id="slogan">Gluegen</div> + <div id="logo"><a href="http://jogamp.org/">Gluegen</a></div> + </div> + <div id="menu"> + <ul> + <li><a href="http://jogamp.org/">Home</a></li> + <li><a href="../../joal/www/">JOAL</a></li> + <li><a href="../../jocl/www/">JOCL</a></li> + <li><a href="../../jogl/www/">JOGL</a></li> + <li><a href="../../demos/www/">Demos</a></li> + <li><a href="../../wiki/">Wiki</a></li> + <li><a href="../../deployment/gluegen-next/javadoc_public/">JavaDoc</a></li> + </ul> + </div> + <div id="main" class="fill"> <P> @@ -19,8 +37,8 @@ before glue code emission. GlueGen is currently powerful enough to bind even low-level APIs such as the Java Native Interface (JNI) and the AWT Native Interface (JAWT) back up to the Java programming language. GlueGen is currently used to generate the <a -href="http://jogl.dev.java.net/">JOGL</a> interface to the OpenGL 3D -graphics API and the <a href="http://joal.dev.java.net/">JOAL</a> +href="../../jogl/www/">JOGL</a> interface to the OpenGL 3D +graphics API and the <a href="../../joal/www/">JOAL</a> interface to the OpenAL audio library. </P> @@ -44,5 +62,15 @@ Please check the <a href="http://jogamp.org">JogAmp Community Page</a>. </P> -</body> + </div> + <div id="footer"> + <div id="footer_left"> + <span xmlns:dc="http://purl.org/dc/elements/1.1/" property="dc:title">JogAmp.org</span> + by <a xmlns:cc="http://creativecommons.org/ns#" href="http://jogamp.org" property="cc:attributionName" rel="cc:attributionURL">http://jogamp.org</a> + is licensed under a <br/> + <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 License</a>. + </div> + </div> + </div> + </body> </html> |