diff options
author | sg215889 <[email protected]> | 2009-07-30 01:50:41 -0700 |
---|---|---|
committer | sg215889 <[email protected]> | 2009-07-30 01:50:41 -0700 |
commit | 157f0a8ebacfe23ebb51887b7414f225f88554d5 (patch) | |
tree | ebe01f2ca6452b6a43b6cd5a8be6acfcd6feef5e | |
parent | 323d6b56ffc52461240d447de7239379d3e8cc8a (diff) |
Fix web documentation ..
-rw-r--r-- | doc/HowToBuild.html | 15 | ||||
-rw-r--r-- | doc/userguide/index.html | 15 | ||||
-rw-r--r-- | www/index.html | 453 |
3 files changed, 192 insertions, 291 deletions
diff --git a/doc/HowToBuild.html b/doc/HowToBuild.html index 8fab8bdbf..f0b381d74 100644 --- a/doc/HowToBuild.html +++ b/doc/HowToBuild.html @@ -58,12 +58,17 @@ build system, but are not officially supported. <P> Here are the steps that are required in order to build the JOGL OpenGL binding from a fresh copy of the source distribution, which can be -obtained either from <a -href="https://jogl.dev.java.net/source/browse/jogl/">CVS</a> or a <a -href="https://jogl.dev.java.net/servlets/ProjectDocumentList">release -build</a>. +obtained either from +<a href="http://kenai.com/projects/jogl/sources/">GIT</a> or an +<a href="http://download.java.net/media/jogl/builds/archive/">archived build</a>. +</P> +<P> +JOGL depends on our GlueGen project, which can be optained either from +<a href="http://kenai.com/projects/gluegen/sources/">GIT</a> or an +<a href="http://download.java.net/media/gluegen/builds/archive/">archived build</a>. </P> + <OL> <LI> <B>Install the JDK:</B> <br> the JOGL build requires JDK 1.4.2 or later. On AMD64 platforms such as Linux/AMD64, Solaris/AMD64 and Windows/AMD64, the build requires the Sun JDK 5.0 or later, as the 1.4.2 releases did not have an AMD64-specific JVM. On these platforms, it is also currently necessary to have e.g. <code>bin/amd64/java</code> in your PATH, although from a technical standpoint this could be worked around in the build process. <LI> <B>Install Ant:</B> <br> Download and unpack the latest version of Ant from <a href="http://ant.apache.org/">http://ant.apache.org</a> and add the <code>bin/</code> subdirectory to your PATH environment variable. @@ -93,7 +98,7 @@ build</a>. <LI> <B>Add JOGL and the GlueGen runtime to your CLASSPATH:</B> <br> To be able to use JOGL once built, you must add the build process' resulting jogl.jar (.../jogl/build/jogl.jar) and gluegen-rt.jar (.../gluegen/build/gluegen-rt.jar) to your CLASSPATH environment variable. <LI> <B>Add JOGL and the GlueGen runtime to your PATH, LD_LIBRARY_PATH, or DYLD_LIBRARY_PATH:</B> <br> To be able to use JOGL once built, you must also add the build process's JNI code library directories (.../jogl/build/obj and .../gluegen/build/obj) to your PATH (on Windows), LD_LIBRARY_PATH (on most Unix platforms), or DYLD_LIBRARY_PATH (on Mac OS X) environment variable. - <LI> <B>Test if everything's working:</B> <br> To test if everything went well, you should check out the source code for the <B>jogl-demos</B> project (available at <a href = "http://jogl-demos.dev.java.net/">http://jogl-demos.dev.java.net/</a>), build the demos using the supplied instructions, and run the Gears demo ("java demos.gears.Gears"). + <LI> <B>Test if everything's working:</B> <br> To test if everything went well, you should check out the source code for the <B>jogl-demos</B> project (available at <a href = "http://download.java.net/media/jogl/demos/www/">http://download.java.net/media/jogl/demos/www/</a>), build the demos using the supplied instructions, and run the Gears demo ("java demos.gears.Gears"). <LI> <B>Build Javadoc:</B> <br> "ant javadoc" will produce the end-user documentation for JOGL along with some auxiliary utility packages. The developers' documentation, including that for the GlueGen tool, can be generated for your current platform using one of the following commands: "ant javadoc.dev.win32", "ant javadoc.dev.x11", or "ant javadoc.dev.macosx". (The javadoc for the Cg binding can be built by inserting <code>-Djogl.cg=1</code> into the command line as above.) </OL> diff --git a/doc/userguide/index.html b/doc/userguide/index.html index 233f6090a..64047cf8d 100644 --- a/doc/userguide/index.html +++ b/doc/userguide/index.html @@ -69,7 +69,7 @@ There are roughly 150 lines of handwritten C code in the entire Jogl source base (100 of which work around bugs in older OpenGL drivers on Windows); the rest of the native code is autogenerated during the build process by a new tool called <a -href="http://gluegen.dev.java.net/">GlueGen</a>, the source code of +href="http://kenai.com/projects/gluegen/pages/Home/">GlueGen</a>, the source code of which is available from its own java.net project. </P> @@ -92,11 +92,10 @@ the JSR has not yet been produced. <P> -Most developers using JOGL will download the most current <a -href="https://jogl.dev.java.net/servlets/ProjectDocumentList">release -build</a>. Separate instructions are available on how to <a -href="https://jogl.dev.java.net/source/browse/*checkout*/jogl/trunk/doc/HowToBuild.html">build -the source tree</a>. +Most developers using JOGL will download the most current +<a href="http://download.java.net/media/jogl/builds/archive/">release build</a>. +Separate instructions are available on how to +<a href="http://download.java.net/media/jogl/doc/HowToBuild.html">build the source tree</a>. </P> @@ -177,7 +176,7 @@ To reference JOGL within your application's JNLP file, simply place the following line in the <code><resources></code> section: <PRE> - <extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp" /> + <extension name="jogl" href="http://download.java.net/media/jogl/jsr-231-2.x-webstart/jogl-all-awt.jnlp" /> </PRE> This JNLP file points to the current JSR-231 unofficial development @@ -771,7 +770,7 @@ distilled into documentation). </P> <P> -The <A HREF="http://jogl-demos.dev.java.net/">JOGL demos</A> provide +The <A HREF="http://download.java.net/media/jogl/demos/www/">JOGL demos</A> provide several examples of usage of the library. </P> diff --git a/www/index.html b/www/index.html index 569414983..7ca5dda90 100644 --- a/www/index.html +++ b/www/index.html @@ -10,177 +10,185 @@ </head> <body bgcolor="#f5f5f5"> -<div align="center"><font color="#005177" size="+2">Welcome to the JOGL API - Project! </font></div> +<div align="center"> +<font color="#005177" size="+3">JOGL</font><br> +<font color="#005177" size="+2">Java™ Binding for the OpenGL® API +(<a href="http://jcp.org/en/jsr/detail?id=231">JSR-231</a>)</font> +</div> <table border="0" cellpadding="0" cellspacing="1" width="100%"> - <tbody> - <tr> - <td valign="top" width="66%"> - <table border="0" cellpadding="5" cellspacing="1" height="358" - width="100%"> - <tbody> - <tr> - <td valign="top"> - - <table bgcolor="#6E94B7" border="0" cellpadding="5" - cellspacing="1" width="100%"> - <tbody> - <tr> - <td bgcolor="#6E94B7" valign="top" width="589"> - - - <div align="left"><font color="#ffffff"><strong>Overview</strong></font></div> - </td> - </tr> - <tr> - <td bgcolor="#F8F8F8" valign="top"> - - - <div align="justify"> - - <p> - -The JOGL project hosts the development version of the Java™ -Binding for the OpenGL® API (<a -href="http://jcp.org/en/jsr/detail?id=231">JSR-231</a>), and is -designed to provide hardware-supported 3D graphics to applications -written in Java. JOGL provides full access to the APIs in the OpenGL -2.0 specification as well as nearly all vendor extensions, and -integrates with the AWT and Swing widget sets. It is part of a suite -of open-source technologies initiated by the Game Technology Group at -Sun Microsystems. - </p> - - <p>Please see the <a - href="https://jogl-demos.dev.java.net/">JOGL demos</a> for illustrations of -advanced OpenGL techniques now possible with the Java platform. - </p> - -<p>Documentation is available for <a -href="https://jogl.dev.java.net/source/browse/*checkout*/jogl/trunk/doc/userguide/index.html">developers -wishing to use</a> JOGL in their applications as well as those wishing -to <a -href="https://jogl.dev.java.net/source/browse/*checkout*/jogl/trunk/doc/HowToBuild.html">build -the JOGL source tree</a>. - </p> - </div> - </td> - </tr> - - </tbody> - - </table> - </td> - </tr> - - <tr> - <td> - - <table bgcolor="#6E94B7" border="0" cellpadding="5" - cellspacing="1" width="100%"> - <tbody> - <tr> - <td="#6E94B7" valign="top"> - - - <div align="left"><font color="#ffffff"><strong>Downloads</strong></font></div> - </td> - </tr> - <tr> - <td valign="top" bgcolor="#F8F8F8"> - - <ul> - <li><a href="#NIGHTLY">Current nightly build</a></li> - - <li><a - - href="https://jogl.dev.java.net/servlets/ProjectDocumentList?folderID=11509&expandFolder=11509&folderID=11508" - target="_blank">Current release build (JSR-231 1.1.1a)</a></li> - - <li><a - href="https://jogl.dev.java.net/servlets/ProjectDocumentList" - target="_blank">Archived release and pre-release builds</a></li> - - - </ul> - </td> - </tr> - - </tbody> - - </table> - </td> - </tr> +<tbody> +<tr> + <td valign="top"> + <table bgcolor="#6E94B7" border="0" cellpadding="5" cellspacing="1" width="100%"> + <tbody> + <tr> + <td bgcolor="#6E94B7" valign="top" width="589"> + <div align="left"><font color="#ffffff"><strong>Overview</strong></font></div> + </td> + </tr> + <tr> + <td bgcolor="#F8F8F8" valign="top"> + <div align="justify"> + + <p> The JOGL project hosts the development version of the + Java™ Binding for the OpenGL® API (<a href="http://jcp.org/en/jsr/detail?id=231">JSR-231</a>), + and is designed to provide hardware-supported 3D graphics to applications written in Java. + JOGL provides full access to the APIs in the OpenGL 1.3 - 3.0, ≥ 3.1, ES 1.x and ES 2.x specification + as well as nearly all vendor extensions. + It integrates with the AWT and Swing widget sets, as well with custom windowing toolkits using the the NativeWindow API. + It is part of a suite of open-source technologies initiated by the Game Technology Group at Sun Microsystems. </p> + + <p>Please see the <a href="http://download.java.net/media/jogl/demos/www/">JOGL demos</a> for illustrations of + advanced OpenGL techniques now possible with the Java platform. </p> + + <p>Documentation is available for <a href="http://download.java.net/media/jogl/doc/userguide/">developers wishing to use</a> + JOGL in their applications as well as those wishing to + <a href="http://download.java.net/media/jogl/doc/HowToBuild.html">build the JOGL source tree</a>. </p> + </div> + </td> + </tr> + </tbody> + </table> + </td> +</tr> +</tbody> +</table> +<table border="0" cellpadding="0" cellspacing="1" width="100%"> +<tbody> +<tr> + <td valign="top" width="50%"> + <table border="0" cellpadding="5" cellspacing="1" height="358" width="100%"> + <tbody> + <tr> + <td valign="top"> + <table bgcolor="#6E94B7" border="0" cellpadding="5" cellspacing="1" width="100%"> + <tbody> + <tr> <td bgcolor="#6E94B7" valign="top"> <div align="left"><font color="#ffffff"><strong>Documentation</strong></font></div> </td> </tr> + <tr> <td valign="top" bgcolor="#F8F8F8"> + <ul> + <li> <a href="http://kenai.com/projects/jogl/pages/Home/">Project Home</a></li> + <li> <a href="http://download.java.net/media/jogl/www/">This Presentation Page</a></li> + <li> <a href="http://download.java.net/media/jogl/demos/www/">Demos</a></li> + <li> <a href="http://download.java.net/media/jogl/jogl-2.x-docs/">API Specification</a></li> + <li> <a href="http://kenai.com/projects/jogl/pages/FAQ">FAQ</a></li> + <li> <a href="http://download.java.net/media/jogl/doc/HowToBuild.html">How To Build</a></li> + <li> <a href="http://download.java.net/media/jogl/doc/userguide/">Userguide</a></li> + <li> <a href="http://www.javagaming.org/index.php?board=25.0">Forum JavaGaming</a></li> + <li> <a href="http://kenai.com/projects/jogl/forums">Forum Kenai</a></li> + <li> <a href="http://kenai.com/projects/jogl/lists">Mailinglists</a></li> + <li> <a href="http://blog.jausoft.com/category/computer-stuff/3d-opengl/jogl/">Sven’s JOGL BLOG</a></li> + </ul> + </td> + </tr> + </tbody> + </table> + <table bgcolor="#6E94B7" border="0" cellpadding="5" cellspacing="1" width="100%"> + <tbody> + <tr> <td bgcolor="#6E94B7" valign="top"> <div align="left"><font color="#ffffff"><strong>Builds</strong></font></div> </td> </tr> + <tr> <td valign="top" bgcolor="#F8F8F8"> + <ul> + + <li> <a href="http://download.java.net/media/jogl/builds/archive/">Archived Builds incl. archived signed webstart bundles</a></li> + <li> <a href="http://download.java.net/media/jogl/jsr-231-2.x-webstart/">JSR-231 2.x Webstart Codebase</a></li> + <li> <a href="http://download.java.net/media/jogl/jsr-231-2.x-demos-webstart/">Demos 2.x Webstart Codebase</a></li> + <li> <a href="http://download.java.net/media/gluegen/webstart-2.x/">GlueGen 2.x Webstart Codebase</a></li> + <li> <a href="http://download.java.net/media/gluegen/builds/archive/">GlueGen Archived Builds</a></li> + </ul> + </td> + </tr> + </tbody> + </table> + <table bgcolor="#6E94B7" border="0" cellpadding="5" cellspacing="1" width="100%"> + <tbody> + <tr> <td bgcolor="#6E94B7" valign="top"> <div align="left"><font color="#ffffff"><strong>Nightlies</strong></font></div> </td> </tr> + <tr> <td valign="top" bgcolor="#F8F8F8"> + <ul> + + <li> <a href="http://download.java.net/media/jogl/jogl-2.x-docs-next/">API Specification</a></li> + <li> <a href="http://download.java.net/media/jogl/demos/www/test.html">Demos</a></li> + <li> <a href="http://download.java.net/media/jogl/builds/nightly/">Nightly Build</a></li> + <li> <a href="http://download.java.net/media/jogl/jsr-231-2.x-webstart-next/">JSR-231 2.x Webstart Next Codebase</a></li> + <li> <a href="http://download.java.net/media/jogl/jsr-231-2.x-demos-webstart-next/">Demos 2.x Webstart Next Codebase</a></li> + <li> <a href="http://download.java.net/media/gluegen/webstart-2.x-next/">GlueGen 2.x Webstart Codebase</a></li> + </ul> + </td> + </tr> + </tbody> + </table> + </td> + </tr> </tbody> - </table> - - </td> - <td valign="top"> - <table border="0" cellpadding="5" cellspacing="1" width="100%"> - <tbody> - <tr> - <td> - - <table bgcolor="#6E94B7" border="0" cellpadding="5" - cellspacing="1" width="100%"> - <tbody> - <tr> - <td bgcolor="#6E94B7" valign="top"> - - - <div align="left"><font color="#ffffff"><strong>Useful - Links</strong></font></div> - </td> - </tr> - <tr> - <td valign="top" bgcolor="#F8F8F8"> - - <ul> - <li><a - href="http://www.javagaming.org/index.php?board=25.0">JOGL - Forums</a></li> - <li><a href="http://www.opengl.org" - target="_blank">OpenGL</a> Home</li> - <li><a href="https://jogl-demos.dev.java.net/">JOGL - Demos</a></li> - <li><a - href="https://jogl.dev.java.net/source/browse/*checkout*/jogl/trunk/doc/userguide/index.html">JOGL User's Guide</a></li> - <li><a href="http://netbeans-opengl-pack.dev.java.net/">The NetBeans OpenGL Pack</a></li> - <li><a - href="BOF-3908-JOGL-slides.pdf"> JavaOne 2007 BOF Slides on JOGL</a></li> - <li><a - href="bof0899.pdf">JavaOne 2006 BOF Slides on JOGL</a></li> - <li><a - href="ts1361.pdf">JavaOne 2004 Presentation Slides on JOGL</a></li> - <li><a - href="2125.pdf">JavaOne 2003 Presentation Slides on JOGL</a></li> - <li><a - href="3167.pdf">JavaOne - 2002 Slides</a> on <a href="http://jausoft.com/gl4java/">OpenGL for Java</a><br> - </li> - <li><a - href="http://www.sun.com/software/opensource/sca.pdf">Sun Contributor Agreement</a> (<a href="http://www.sun.com/software/opensource/contributor_agreement.jsp">FAQ</a>)<br> - </li> - - - </ul> - </td> - </tr> - - </tbody> - - </table> - </td> - </tr> - - </tbody> - </table> - </td> + </table> + </td> + <td valign="top"> + <table border="0" cellpadding="5" cellspacing="1" width="100%"> + <tbody> + <tr> + <td> + <table bgcolor="#6E94B7" border="0" cellpadding="5" cellspacing="1" width="100%"> + <tbody> + <tr> <td bgcolor="#6E94B7" valign="top"> <div align="left"><font color="#ffffff"><strong>JOGL 1.x</strong></font></div> </td> </tr> + <tr> <td valign="top" bgcolor="#F8F8F8"> + <ul> + + <li> <a href="http://download.java.net/media/jogl/builds/archive/">Archived Builds incl. archived signed webstart bundles</a></li> + <li> <a href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/">Old JOGL 1.x Webstart Codebase</a></li> + <li> <a href="http://download.java.net/media/jogl/builds/archive/jsr-231-1.x-webstart-current/">New JOGL 1.x Webstart Codebase</a></li> + <li> <a href="http://download.java.net/media/gluegen/builds/archive/">GlueGen Archived Builds</a></li> + </ul> + </td> + </tr> + </tbody> + </table> + <table bgcolor="#6E94B7" border="0" cellpadding="5" cellspacing="1" width="100%"> + <tbody> + <tr> + <td bgcolor="#6E94B7" valign="top"> + <div align="left"><font color="#ffffff"><strong>Useful Links</strong></font></div> + </td> + </tr> + <tr> + <td valign="top" bgcolor="#F8F8F8"> + <ul> + <li><a href="http://www.opengl.org" target="_blank">OpenGL Home</a></li> + <li><a href="http://kenai.com/projects/netbeans-opengl-pack/" target="_blank">The NetBeans OpenGL Pack</a></li> + <li><a href="http://www.sun.com/software/opensource/sca.pdf" target="_blank">Sun Contributor Agreement</a> (<a href="http://www.sun.com/software/opensource/contributor_agreement.jsp">FAQ</a>)<br> </li> + <li><a href="https://jdk6.dev.java.net/plugin2/jnlp/" target="_blank">Java Plugin JNLP support</a></li> + </ul> + </td> + </tr> + </tbody> + </table> + <table bgcolor="#6E94B7" border="0" cellpadding="5" cellspacing="1" width="100%"> + <tbody> + <tr> + <td bgcolor="#6E94B7" valign="top"> + <div align="left"><font color="#ffffff"><strong>Historic Stuff</strong></font></div> + </td> + </tr> + <tr> + <td valign="top" bgcolor="#F8F8F8"> + <ul> + <li><a href="BOF-3908-JOGL-slides.pdf"> JavaOne 2007 BOF Slides on JOGL</a></li> + <li><a href="bof0899.pdf">JavaOne 2006 BOF Slides on JOGL</a></li> + <li><a href="ts1361.pdf">JavaOne 2004 Presentation Slides on JOGL</a></li> + <li><a href="2125.pdf">JavaOne 2003 Presentation Slides on JOGL</a></li> + <li><a href="3167.pdf">JavaOne 2002 Slides</a> on <a href="http://jausoft.com/gl4java/" target="_blank">OpenGL for Java</a></li> + <li><a href="http://jausoft.com/gl4java/" target="_blank">OpenGL for Java</a></li> + </ul> + </td> + </tr> + </tbody> + </table> + </td> </tr> - - </tbody> + </tbody> + </table> + </td> +</tr> +</tbody> </table> <table border="0" cellpadding="0" cellspacing="1" width="100%"> @@ -204,7 +212,7 @@ the JOGL source tree</a>. <td> The following are a few examples of projects and products using JOGL. To have your project featured here, please email the <a -href="mailto:[email protected]">project owners</a>. +href="http://kenai.com/projects/jogl/">project owners</a>. </td> </tr> </table> @@ -645,116 +653,5 @@ environment. -<table border="0" cellpadding="0" cellspacing="1" width="100%"> - <tbody> - <tr> - <td valign="top" width="100%"> - <table bgcolor="#6E94B7" border="0" cellpadding="5" - cellspacing="1" width="100%"> - <tbody> - <tr> - <td bgcolor="#6E94B7" width="589"> - - - <div align="left"><font color="#ffffff"><strong><a name="NIGHTLY">Current nightly build</a></strong></font></div> - </td> - </tr> - <tr> - <td bgcolor="#F8F8F8"> - -<!- BEGIN NIGHTLY --> -<TABLE CELLPADDING=3> -<TR> <TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-docs/>Browsable javadoc</A></TD></TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/gluegen-rt-2.0-webstart.zip> gluegen-rt-2.0-webstart.zip </A></TD> -<TD> 44021 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-docs.zip> jogl-2.0-docs.zip </A></TD> -<TD> 1758943 bytes </TD> -<TD> 2009-07-09 02:46 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-linux-amd64.zip> jogl-2.0-linux-amd64.zip </A></TD> -<TD> 4404428 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-linux-i586.zip> jogl-2.0-linux-i586.zip </A></TD> -<TD> 4357502 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-macosx-universal.zip> jogl-2.0-macosx-universal.zip </A></TD> -<TD> 4795900 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-solaris-sparcv9.zip> jogl-2.0-solaris-sparcv9.zip </A></TD> -<TD> 4309749 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-solaris-sparc.zip> jogl-2.0-solaris-sparc.zip </A></TD> -<TD> 4328496 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-specdocs.zip> jogl-2.0-specdocs.zip </A></TD> -<TD> 1301096 bytes </TD> -<TD> 2009-07-09 02:46 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-src.zip> jogl-2.0-src.zip </A></TD> -<TD> 4548368 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-webstart.zip> jogl-2.0-webstart.zip </A></TD> -<TD> 6084385 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-windows-amd64.zip> jogl-2.0-windows-amd64.zip </A></TD> -<TD> 4094446 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-2.0-windows-i586.zip> jogl-2.0-windows-i586.zip </A></TD> -<TD> 4039760 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-demos-src.zip> jogl-demos-src.zip </A></TD> -<TD> 11009506 bytes </TD> -<TD> 2009-07-09 02:46 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/jogl-demos.zip> jogl-demos.zip </A></TD> -<TD> 8691698 bytes </TD> -<TD> 2009-07-09 02:46 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/nativewindow-2.0-webstart.zip> nativewindow-2.0-webstart.zip </A></TD> -<TD> 196854 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -<TR> -<TD> <A HREF=http://download.java.net/media/jogl/builds/nightly/newt-2.0-webstart.zip> newt-2.0-webstart.zip </A></TD> -<TD> 277196 bytes </TD> -<TD> 2009-07-09 02:45 </TD> -</TR> -</TABLE> -<!- END NIGHTLY --> - </td> - </tr> - </table> - -</td> -</tr> -</tbody> -</table> - </body> </html> |