summaryrefslogtreecommitdiffstats
path: root/jnlp-files
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-09-15 07:50:41 +0200
committerSven Gothel <[email protected]>2011-09-15 07:50:41 +0200
commit926bf101da90eb450d1700d2ddc1242c9e18a2cb (patch)
tree25bb837ccb26017e4694540b20633a1f05b37c4f /jnlp-files
parent71f8b57305caad1cce7a6c9e42b282c8d863bdb7 (diff)
cleanup www and jnlp-files folder, dropping all jnlp/html code to jnlp-files
Diffstat (limited to 'jnlp-files')
-rw-r--r--jnlp-files/applet-gears-jnlp.html19
-rw-r--r--jnlp-files/applet-gears-launcheronly.html87
-rw-r--r--jnlp-files/applet-gears.html121
-rw-r--r--jnlp-files/applet-gears.jnlp4
-rw-r--r--jnlp-files/applet-gearsjoal-jnlp.html19
-rw-r--r--jnlp-files/applet-gearsjoal-laucheronly.html101
-rw-r--r--jnlp-files/applet-gearsjoal.html84
-rw-r--r--jnlp-files/applet-gearsjoal.jnlp6
-rw-r--r--jnlp-files/applet-redsquare-newtawt.html33
-rw-r--r--jnlp-files/applet-redsquare-newtawt.jnlp26
-rw-r--r--jnlp-files/jogl-newt-applet-runner-gears.html2
-rw-r--r--jnlp-files/jogl-newt-applet-runner.jnlp12
-rw-r--r--jnlp-files/test.html78
13 files changed, 542 insertions, 50 deletions
diff --git a/jnlp-files/applet-gears-jnlp.html b/jnlp-files/applet-gears-jnlp.html
deleted file mode 100644
index 64a16d9..0000000
--- a/jnlp-files/applet-gears-jnlp.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<title>JOGL JNLP Applet Gears</title>
-</head>
-<body>
-
-<P>
-
-<applet width=600 height=400>
- <param name="java_arguments" value="-Dsun.java2d.noddraw=true">
- <param name="jnlp_href" value="applet-gears.jnlp">
-</applet>
-
-</P>
-<P>
-
-</body>
-</html>
diff --git a/jnlp-files/applet-gears-launcheronly.html b/jnlp-files/applet-gears-launcheronly.html
new file mode 100644
index 0000000..5146e43
--- /dev/null
+++ b/jnlp-files/applet-gears-launcheronly.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+<title>JOGL Applet Test</title>
+</head>
+<body>
+
+<P>
+
+The new <a
+href="http://jogamp.org/applet-launcher/www/">JNLPAppletLauncher</a>
+enables the creation and deployment of applets using 3D graphics via
+OpenGL without requiring the applet to be signed or performing any
+manual installation of software on users' computers. It has been
+tested and should work on any OS/CPU combination supported by JOGL
+with a Java Runtime Environment version 1.4.2 or later installed into
+the web browser. Here is an example of the standard Gears demo running
+as an applet:
+
+</P>
+<P>
+
+<applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="../jar/applet-launcher.jar,
+ ../jar/gluegen-rt.jar,
+ ../jar/jogl.all.jar,
+ jar/jogl-demos.jar">
+ <param name="codebase_lookup" value="false">
+ <param name="subapplet.classname" value="demos.applets.GearsApplet">
+ <param name="subapplet.displayname" value="JOGL Gears Applet">
+ <param name="noddraw.check" value="true">
+ <param name="progressbar" value="true">
+ <param name="jnlpNumExtensions" value="1">
+ <param name="jnlpExtension1"
+ value="../jogl-all-awt.jnlp">
+ <param name="java_arguments" value="-Dsun.java2d.noddraw=true">
+</applet>
+
+</P>
+<P>
+
+The applet above is instantiated with the following code:
+
+<pre>
+&lt;applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="http://jogamp.org/deployment/jogamp-current/jar/applet-launcher.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/gluegen-rt.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/jogl.all.jar,
+ http://jogamp.org/deployment/jogamp-current/jogl-demos/jar/jogl-demos.jar"&gt;
+ &lt;param name="codebase_lookup" value="false"&gt;
+ &lt;param name="subapplet.classname" value="demos.applets.GearsApplet"&gt;
+ &lt;param name="subapplet.displayname" value="JOGL Gears Applet"&gt;
+ &lt;param name="noddraw.check" value="true"&gt;
+ &lt;param name="progressbar" value="true"&gt;
+ &lt;param name="jnlpNumExtensions" value="1"&gt;
+ &lt;param name="jnlpExtension1"
+ value="http://jogamp.org/deployment/jogamp-current/jogl-all-awt.jnlp"&gt;
+ &lt;param name="java_arguments" value="-Dsun.java2d.noddraw=true"&gt;
+&lt;/applet&gt;
+</pre>
+
+</P>
+<P>
+
+Note that the jogl-demos.jar, which contains the GearsApplet class,
+<B>does not need to be signed</B>! JogAmp Community signs
+applet-launcher.jar, jogl.jar and gluegen-rt.jar, which contain the
+JNLPAppletLauncher and JOGL's supporting classes; this is the only
+Java code which needs to be signed in order to deploy applets using
+JOGL and is the only certificate the end user must accept.
+
+</P>
+<P>
+
+The <a href="http://jogamp.org/applet-launcher/www/">JNLPAppletLauncher
+home page</a> contains more information about what files must be
+placed on the web server in order to enable the deployment of applets
+using JOGL and other extensions.
+
+</P>
+
+</body>
+</html>
diff --git a/jnlp-files/applet-gears.html b/jnlp-files/applet-gears.html
new file mode 100644
index 0000000..eb27188
--- /dev/null
+++ b/jnlp-files/applet-gears.html
@@ -0,0 +1,121 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+<title>JOGL JNLP Applet Test</title>
+</head>
+<body>
+
+<P>
+In case your <a href="https://jdk6.dev.java.net/plugin2/jnlp/">Java Plugin supports JNLP</a>,
+the <em>applet-gears.jnlp</em> is used,
+otherwise it shall fallback to <a href="http://jogamp.org/applet-launcher/www/">JNLPAppletLauncher</a>.
+</P>
+
+<P>
+Note that it is important for the startup time to have the same JVM arguments in the applet tags,
+as well as within the JNLP applet description, here see property <em>sun.java2d.noddraw</em>. <br>
+Only if JVM arguments of the JNLP applet description are satisfied by the applet tag's JVM,<br>
+the plugin will not need to start a new JVM. OF course, the applet tag's JVM spec may exceed the
+JNLP applet's one.
+</P>
+
+<P>
+
+<applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="../jar/applet-launcher.jar,
+ ../jar/gluegen-rt.jar,
+ ../jar/jogl.all.jar,
+ jar/jogl-demos.jar">
+ <param name="codebase_lookup" value="false">
+ <param name="subapplet.classname" value="demos.applets.GearsApplet">
+ <param name="subapplet.displayname" value="JOGL Gears Applet">
+ <param name="noddraw.check" value="true">
+ <param name="progressbar" value="true">
+ <param name="jnlpNumExtensions" value="1">
+ <param name="jnlpExtension1"
+ value="../jogl-all-awt.jnlp">
+ <param name="java_arguments" value="-Dsun.java2d.noddraw=true">
+ <param name="jnlp_href" value="applet-gears.jnlp">
+</applet>
+
+</P>
+<P>
+
+The applet above is instantiated with the following code:
+
+<pre>
+&lt;applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="http://jogamp.org/deployment/jogamp-current/jar/applet-launcher.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/gluegen-rt.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/jogl.all.jar,
+ http://jogamp.org/deployment/jogamp-current/jogl-demos/jar/jogl-demos.jar"&gt;
+ &lt;param name="codebase_lookup" value="false"&gt;
+ &lt;param name="subapplet.classname" value="demos.applets.GearsApplet"&gt;
+ &lt;param name="subapplet.displayname" value="JOGL Gears Applet"&gt;
+ &lt;param name="noddraw.check" value="true"&gt;
+ &lt;param name="progressbar" value="true"&gt;
+ &lt;param name="jnlpNumExtensions" value="1"&gt;
+ &lt;param name="jnlpExtension1"
+ value="http://jogamp.org/deployment/jogamp-current/jogl-all-awt.jnlp"&gt;
+ &lt;param name="java_arguments" value="-Dsun.java2d.noddraw=true"&gt;
+ &lt;param name="jnlp_href" value="applet-gears.jnlp"&gt;
+&lt;/applet&gt;
+</pre>
+
+Where the referenced JNLP file <em>applet-gears.jnlp</em> looks as follow:
+
+<pre>
+&lt;?xml version="1.0" encoding="utf-8"?&gt;
+&lt;jnlp href="applet-gears.jnlp"&gt;
+ &lt;information&gt;
+ &lt;title&gt;JOGL JNLP Applet Gears Demo&lt;/title&gt;
+ &lt;vendor&gt;JogAmp Community&lt;/vendor&gt;
+ &lt;homepage href="http://jogamp.org/jogl-demos/"/&gt;
+ &lt;description&gt;Gears Demo&lt;/description&gt;
+ &lt;description kind="short"&gt;Brian Paul's Gears demo ported to Java and JOGL.&lt;/description&gt;
+ &lt;offline-allowed/&gt;
+ &lt;/information&gt;
+
+ &lt;resources&gt;
+ &lt;j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/&gt;
+ &lt;property name="sun.java2d.noddraw" value="true"/&gt;
+ &lt;jar href="http://jogamp.org/deployment/jogamp-current/jogl-demos/jar/jogl-demos.jar" main="true"/&gt;
+ &lt;jar href="http://jogamp.org/deployment/jogamp-current/jogl-demos/jar/jogl-demos-util.jar"/&gt;
+ &lt;extension name="newt-all-awt" href="http://jogamp.org/deployment/jogamp-current/jogl-all-awt.jnlp" /&gt;
+ &lt;/resources&gt;
+
+ &lt;applet-desc
+ name="Gears-Applet"
+ main-class="demos.applets.GearsApplet"
+ width="640"
+ height="480"&gt;
+ &lt;/applet-desc&gt;
+&lt;/jnlp&gt;
+</pre>
+
+</P>
+<P>
+
+Note that the jogl-demos.jar, which contains the GearsApplet class,
+<B>does not need to be signed</B>! JogAmp Community signs
+applet-launcher.jar, jogl.jar and gluegen-rt.jar, which contain the
+JNLPAppletLauncher and JOGL's supporting classes; this is the only
+Java code which needs to be signed in order to deploy applets using
+JOGL and is the only certificate the end user must accept.
+
+</P>
+<P>
+
+The <a href="http://jogamp.org/applet-launcher/www/">JNLPAppletLauncher
+home page</a> contains more information about what files must be
+placed on the web server in order to enable the deployment of applets
+using JOGL and other extensions.
+
+</P>
+
+</body>
+</html>
diff --git a/jnlp-files/applet-gears.jnlp b/jnlp-files/applet-gears.jnlp
index 122a9db..bb8246d 100644
--- a/jnlp-files/applet-gears.jnlp
+++ b/jnlp-files/applet-gears.jnlp
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<jnlp codebase="DEMO_CODEBASE_TAG" href="applet-gears.jnlp">
+<jnlp href="applet-gears.jnlp">
<information>
<title>JOGL JNLP Applet Gears Demo</title>
<vendor>JogAmp Community</vendor>
@@ -15,7 +15,7 @@
<property name="sun.java2d.noddraw" value="true"/>
<jar href="jar/jogl-demos.jar" main="true"/>
<jar href="jar/jogl-demos-util.jar"/>
- <extension name="jogl-all-awt" href="JOGL_CODEBASE_TAG/jogl-all-awt.jnlp" />
+ <extension name="jogl-all-awt" href="../jogl-all-awt.jnlp" />
</resources>
<applet-desc
diff --git a/jnlp-files/applet-gearsjoal-jnlp.html b/jnlp-files/applet-gearsjoal-jnlp.html
deleted file mode 100644
index 01e8117..0000000
--- a/jnlp-files/applet-gearsjoal-jnlp.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-<title>JOGL JNLP Applet GearsJOAL</title>
-</head>
-<body>
-
-<P>
-
-<applet width=600 height=400>
- <param name="java_arguments" value="-Dsun.java2d.noddraw=true">
- <param name="jnlp_href" value="applet-gearsjoal.jnlp">
-</applet>
-
-</P>
-<P>
-
-</body>
-</html>
diff --git a/jnlp-files/applet-gearsjoal-laucheronly.html b/jnlp-files/applet-gearsjoal-laucheronly.html
new file mode 100644
index 0000000..b6af723
--- /dev/null
+++ b/jnlp-files/applet-gearsjoal-laucheronly.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+<title>JOGL / JOAL Applet Test</title>
+</head>
+<body>
+
+<P>
+
+The new <a
+href="http://jogamp.org/applet-launcher/www/">JNLPAppletLauncher</a>
+supports deployment of high-end applets using arbitrary extensions
+such as JOGL for 3D graphics and JOAL for spatialized audio. The
+user's applet does not have to be signed, and no manual installation
+of software on the user's machine is necessary. Combined JOGL and JOAL
+applets are supported by the JNLPAppletLauncher on all OS and CPU
+combinations where these libraries are supported: currently
+Windows/x86, Linux/x86, and Mac OS X, both PowerPC and Intel.
+
+</P>
+<P>
+
+Here is a simple example of an applet which combines both OpenGL
+rendering and OpenAL audio:
+
+</P>
+<P>
+
+<applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="../jar/applet-launcher.jar,
+ ../jar/gluegen-rt.jar,
+ ../jar/jogl.all.jar,
+ ../jar/joal.jar,
+ jar/jogl-demos.jar">
+ <param name="codebase_lookup" value="false">
+ <param name="subapplet.classname" VALUE="demos.applets.GearsJOALApplet">
+ <param name="subapplet.displayname" VALUE="JOGL / JOAL Gears Applet">
+ <param name="noddraw.check" value="true">
+ <param name="progressbar" value="true">
+ <param name="jnlpNumExtensions" value="2">
+ <param name="jnlpExtension1"
+ value="../jogl-all-awt.jnlp">
+ <param name="jnlpExtension2"
+ value="../joal.jnlp">
+ <param name="java_arguments" value="-Dsun.java2d.noddraw=true">
+</applet>
+
+
+</P>
+<P>
+
+The applet above is instantiated with the following code:
+
+<pre>
+&lt;applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="http://jogamp.org/deployment/jogamp-current/jar/applet-launcher.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/gluegen-rt.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/jogl.all.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/joal.jar,
+ http://jogamp.org/deployment/jogamp-current/jogl-demos/jar/jogl-demos.jar"&gt;
+ &lt;param name="codebase_lookup" value="false"&gt;
+ &lt;param name="subapplet.classname" VALUE="demos.applets.GearsJOALApplet"&gt;
+ &lt;param name="subapplet.displayname" VALUE="JOGL / JOAL Gears Applet"&gt;
+ &lt;param name="noddraw.check" value="true"&gt;
+ &lt;param name="progressbar" value="true"&gt;
+ &lt;param name="jnlpNumExtensions" value="2"&gt;
+ &lt;param name="jnlpExtension1"
+ value="http://jogamp.org/deployment/jogamp-current/jogl-all-awt.jnlp"&gt;
+ &lt;param name="jnlpExtension2"
+ value="http://jogamp.org/deployment/jogamp-current/joal.jnlp"&gt;
+ &lt;param name="java_arguments" value="-Dsun.java2d.noddraw=true"&gt;
+&lt;/applet&gt;
+</pre>
+
+</P>
+<P>
+
+Note that the jogl-demos.jar and joal-demos.jar files, which contain
+the applet's classes, <B>do not need to be signed</B>! JogAmp Community
+signs applet-launcher.jar, jogl.jar, joal.jar and
+gluegen-rt.jar, which contain the JNLPAppletLauncher, JOGL, JOAL and
+supporting classes; this is the only Java code which needs to be
+signed in order to deploy applets using JOGL and JOAL and is the only
+certificate the end user must accept.
+
+</P>
+<P>
+
+The <a href="http://jogamp.org/applet-launcher/www/">JNLPAppletLauncher
+home page</a> contains more information about what files must be
+placed on the web server in order to enable the deployment of applets
+using JOGL and other extensions.
+
+</P>
+
+</body>
+</html>
diff --git a/jnlp-files/applet-gearsjoal.html b/jnlp-files/applet-gearsjoal.html
new file mode 100644
index 0000000..551d7a0
--- /dev/null
+++ b/jnlp-files/applet-gearsjoal.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+<title>JOGL JNLP Applet GearsJOAL</title>
+</head>
+<body>
+
+<P>
+
+<applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="../jar/applet-launcher.jar,
+ ../jar/gluegen-rt.jar,
+ ../jar/jogl.all.jar,
+ ../jar/joal.jar,
+ jar/jogl-demos.jar">
+ <param name="codebase_lookup" value="false">
+ <param name="subapplet.classname" VALUE="demos.applets.GearsJOALApplet">
+ <param name="subapplet.displayname" VALUE="JOGL / JOAL Gears Applet">
+ <param name="noddraw.check" value="true">
+ <param name="progressbar" value="true">
+ <param name="jnlpNumExtensions" value="2">
+ <param name="jnlpExtension1"
+ value="../jogl-all-awt.jnlp">
+ <param name="jnlpExtension2"
+ value="../joal.jnlp">
+ <param name="java_arguments" value="-Dsun.java2d.noddraw=true">
+ <param name="jnlp_href" value="applet-gearsjoal.jnlp">
+</applet>
+
+</P>
+<P>
+
+The applet above is instantiated with the following code:
+
+<pre>
+&lt;applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="http://jogamp.org/deployment/jogamp-current/jar/applet-launcher.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/gluegen-rt.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/jogl.all.jar,
+ http://jogamp.org/deployment/jogamp-current/jar/joal.jar,
+ http://jogamp.org/deployment/jogamp-current/jogl-demos/jar/jogl-demos.jar"&gt;
+ &lt;param name="codebase_lookup" value="false"&gt;
+ &lt;param name="subapplet.classname" VALUE="demos.applets.GearsJOALApplet"&gt;
+ &lt;param name="subapplet.displayname" VALUE="JOGL / JOAL Gears Applet"&gt;
+ &lt;param name="noddraw.check" value="true"&gt;
+ &lt;param name="progressbar" value="true"&gt;
+ &lt;param name="jnlpNumExtensions" value="2"&gt;
+ &lt;param name="jnlpExtension1"
+ value="http://jogamp.org/deployment/jogamp-current/jogl-all-awt.jnlp"&gt;
+ &lt;param name="jnlpExtension2"
+ value="http://jogamp.org/deployment/jogamp-current/joal.jnlp"&gt;
+ &lt;param name="java_arguments" value="-Dsun.java2d.noddraw=true"&gt;
+ &lt;param name="jnlp_href" value="applet-gearsjoal.jnlp"&gt;
+&lt;/applet&gt;
+</pre>
+
+</P>
+<P>
+
+Note that the jogl-demos.jar and joal-demos.jar files, which contain
+the applet's classes, <B>do not need to be signed</B>! JogAmp Community
+signs applet-launcher.jar, jogl.jar, joal.jar and
+gluegen-rt.jar, which contain the JNLPAppletLauncher, JOGL, JOAL and
+supporting classes; this is the only Java code which needs to be
+signed in order to deploy applets using JOGL and JOAL and is the only
+certificate the end user must accept.
+
+</P>
+<P>
+
+The <a href="http://jogamp.org/applet-launcher/www/">JNLPAppletLauncher
+home page</a> contains more information about what files must be
+placed on the web server in order to enable the deployment of applets
+using JOGL and other extensions.
+
+</P>
+
+
+</body>
+</html>
diff --git a/jnlp-files/applet-gearsjoal.jnlp b/jnlp-files/applet-gearsjoal.jnlp
index 40f3d2c..c097256 100644
--- a/jnlp-files/applet-gearsjoal.jnlp
+++ b/jnlp-files/applet-gearsjoal.jnlp
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<jnlp codebase="DEMO_CODEBASE_TAG" href="applet-gearsjoal.jnlp">
+<jnlp href="applet-gearsjoal.jnlp">
<information>
<title>JOGL JNLP Applet GearsJOAL Demo</title>
<vendor>JogAmp Community</vendor>
@@ -16,8 +16,8 @@
<jar href="jar/jogl-demos.jar" main="true"/>
<jar href="jar/jogl-demos-data.jar"/>
<jar href="jar/jogl-demos-util.jar"/>
- <extension name="jogl-all-awt" href="JOGL_CODEBASE_TAG/jogl-all-awt.jnlp" />
- <extension name="joal" href="JOAL_CODEBASE_TAG/joal.jnlp" />
+ <extension name="jogl-all-awt" href="../jogl-all-awt.jnlp" />
+ <extension name="joal" href="../joal.jnlp" />
</resources>
<applet-desc
diff --git a/jnlp-files/applet-redsquare-newtawt.html b/jnlp-files/applet-redsquare-newtawt.html
new file mode 100644
index 0000000..bf7832f
--- /dev/null
+++ b/jnlp-files/applet-redsquare-newtawt.html
@@ -0,0 +1,33 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+<title>JOGL JNLP Applet Test</title>
+</head>
+<body>
+
+<P>
+
+<applet code="org.jdesktop.applet.util.JNLPAppletLauncher"
+ width=600
+ height=400
+ archive="../jar/applet-launcher.jar,
+ ../jar/gluegen-rt.jar,
+ ../jar/jogl.all.jar,
+ jar/jogl-demos.jar">
+ <param name="codebase_lookup" value="false">
+ <param name="subapplet.classname" value="demos.applets.RedSquareNEWTAWTApplet">
+ <param name="subapplet.displayname" value="JOGL RedSquare NEWT-AWT Applet">
+ <param name="noddraw.check" value="true">
+ <param name="progressbar" value="true">
+ <param name="jnlpNumExtensions" value="1">
+ <param name="jnlpExtension1"
+ value="../jogl-all-awt.jnlp">
+ <param name="java_arguments" value="-Dsun.java2d.noddraw=true">
+ <param name="jnlp_href" value="applet-redsquare-newtawt.jnlp">
+</applet>
+
+</P>
+<P>
+
+</body>
+</html>
diff --git a/jnlp-files/applet-redsquare-newtawt.jnlp b/jnlp-files/applet-redsquare-newtawt.jnlp
new file mode 100644
index 0000000..f184960
--- /dev/null
+++ b/jnlp-files/applet-redsquare-newtawt.jnlp
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<jnlp href="applet-redsquare-newtawt.jnlp">
+ <information>
+ <title>JOGL JNLP Applet RedSquare NEWT-AWT Demo</title>
+ <vendor>JogAmp Community</vendor>
+ <homepage href="http://jogamp.org/jogl-demos/"/>
+ <description>RedSquare NEWT-AWT Demo</description>
+ <description kind="short">RedSquare NEWT-AWT Demo</description>
+ <offline-allowed/>
+ </information>
+
+ <resources>
+ <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
+ <property name="sun.java2d.noddraw" value="true"/>
+ <jar href="../jar/jogl-demos.jar" main="true"/>
+ <jar href="../jar/jogl-demos-util.jar"/>
+ <extension name="jogl-all-awt" href="../jogl-all-awt.jnlp" />
+ </resources>
+
+ <applet-desc
+ name="RedSquare-NEWT-AWT-Applet"
+ main-class="demos.applets.RedSquareNEWTAWTApplet"
+ width="640"
+ height="480">
+ </applet-desc>
+</jnlp>
diff --git a/jnlp-files/jogl-newt-applet-runner-gears.html b/jnlp-files/jogl-newt-applet-runner-gears.html
index 6da92ea..f991817 100644
--- a/jnlp-files/jogl-newt-applet-runner-gears.html
+++ b/jnlp-files/jogl-newt-applet-runner-gears.html
@@ -3,7 +3,7 @@
<head>
<title>JOGL NEWT JNLP Applet Runner - Gears</title>
</head>
-<body>
+<body BGCOLOR="#333333">
<P>
diff --git a/jnlp-files/jogl-newt-applet-runner.jnlp b/jnlp-files/jogl-newt-applet-runner.jnlp
index c3c70da..523ed59 100644
--- a/jnlp-files/jogl-newt-applet-runner.jnlp
+++ b/jnlp-files/jogl-newt-applet-runner.jnlp
@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
-<jnlp codebase="DEMO_CODEBASE_TAG" href="jogl-newt-applet-runner.jnlp">
+<jnlp href="jogl-newt-applet-runner.jnlp">
<information>
<title>JOGL NEWT JNLP Applet Runner</title>
<vendor>JogAmp Community</vendor>
<homepage href="http://jogamp.org/jogl-demos/"/>
<description>JOGL NEWT JNLP Applet Runner</description>
- <offline-allowed/>
+ <!-- offline-allowed/-->
</information>
- <update check="background" policy="always"/>
+ <!-- update check="background" policy="always"/-->
<resources>
<j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
<property name="sun.java2d.noddraw" value="true"/>
- <jar href="jar/jogl-demos.jar" main="true"/>
- <jar href="jar/jogl-demos-util.jar"/>
- <extension name="jogl-all-awt" href="JOGL_CODEBASE_TAG/jogl-all-awt.jnlp" />
+ <jar href="../jar/jogl-demos.jar" main="true"/>
+ <jar href="../jar/jogl-demos-util.jar"/>
+ <extension name="jogl-all-awt" href="http://jogamp.org/deployment/jogamp-next/jogl-all-awt.jnlp" />
</resources>
<applet-desc
diff --git a/jnlp-files/test.html b/jnlp-files/test.html
new file mode 100644
index 0000000..4ebef51
--- /dev/null
+++ b/jnlp-files/test.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+<title>JOGL Demos Test Page</title>
+</head>
+<body BGCOLOR="#ffffff">
+
+<H2> Test page for JOGL demos </H2>
+
+<p>
+<H3> Version </H3>
+<ul>
+ <li><a href="../jogl-applet-version.html">Applet (JNLP/Launcher)</a></li>
+ <li><a href="../jogl-applet-version-lancheronly.html">Applet (Launcher Only)</a></li>
+ <li><a href="../jogl-application-version.jnlp">Application</a></li>
+</ul>
+</p>
+
+<p>
+<H3> AWT JNLP Applet test with Applet Launcher fallback </H3>
+<ul>
+ <li><a href="applet-gears.html">JNLP Applet test</a></li>
+ <li><a href="applet-gears-launcheronly.html">Applet Launcher test</a></li>
+</ul>
+</p>
+
+<p>
+<H3> AWT JNLP Applet's using native NEWT</H3>
+<ul>
+ <li><a href="applet-redsquare-newtawt.html">AWT Applet JOGL/NEWT RedSquare</a></li>
+</ul>
+</p>
+
+<p>
+<H3> AWT JNLP Applet's using native NEWT (JOGL NEWT Applet Runner)</H3>
+<ul>
+ <li><a href="jogl-newt-applet-runner-gears.html">AWT Applet JOGL/NEWT GL2 Gears</a></li>
+ <li><a href="jogl-newt-applet-runner-cube.html">AWT Applet JOGL/NEWT GL2ES1 Cube</a></li>
+ <li><a href="jogl-newt-applet-runner-fbcubes.html">AWT Applet JOGL/NEWT GL2ES1 FBO Cubes</a></li>
+ <li><a href="jogl-newt-applet-runner-angelesgl2es1.html">AWT Applet JOGL/NEWT GL2ES1 Angeles</a></li>
+</ul>
+</p>
+
+<p>
+<H3> JOAL test .. </H3>
+<ul>
+ <li><a href="applet-gearsjoal.html">JOGL/JOAL Applet test</a></li>
+ <li><a href="applet-gearsjoal-launcheronly.html">JOGL/JOAL Applet test (Launcher Only)</a></li>
+</ul>
+</p>
+
+<p>
+<H3> JNLP Launcher .. </H3>
+<ul>
+ <li><a href="Gears.jnlp">Gears</a></li>
+ <li><a href="HWShadowmapsSimple.jnlp">Hardware Shadow Maps</a></li>
+ <li><a href="HDR.jnlp">HDR</a></li>
+ <li><a href="InfiniteShadowVolumes.jnlp">Infinite Shadow Volumes</a></li>
+ <li><a href="JRefractNoOGL.jnlp">JRefract</a></li>
+ <li><a href="JRefract.jnlp">JRefract with Java2D/JOGL Bridge (Java SE 6 only)</a></li>
+ <li><a href="ParticleEngine.jnlp">Particle Engine</a></li>
+ <li><a href="TestTextRenderer.jnlp">Text Renderer Test</a></li>
+ <li><a href="FlyingText.jnlp">Flying Text</a></li>
+ <li><a href="TextFlow.jnlp">Text Flow</a></li>
+ <li><a href="TextCube.jnlp">Text Cube</a></li>
+ <li><a href="VertexProgWarp.jnlp">Vertex Prog Warp</a></li>
+ <li><a href="VertexProgRefract.jnlp">Vertex Prog Refract</a></li>
+ <li><a href="ProceduralTexturePhysics.jnlp">Water</a></li>
+ <li><a href="XTrans.jnlp">XTrans (Java SE 6 only)</a></li>
+ <li><a href="VertexBufferObject.jnlp">Vertex Buffer Object</a></li>
+ <li><a href="VertexArrayRange.jnlp">Vertex Array Range</a></li>
+ <li><a href="WorldWindBasicDemo.jnlp">NASA World Wind Java (version hosted by NASA)</a></li>
+ <li><a href="worldwind.jnlp">NASA World Wind Java (older version copied from NASA)</a></li>
+</ul>
+</p>
+
+</body>
+</html>