summaryrefslogtreecommitdiffstats
path: root/www/applettest-joal.html
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 /www/applettest-joal.html
parent71f8b57305caad1cce7a6c9e42b282c8d863bdb7 (diff)
cleanup www and jnlp-files folder, dropping all jnlp/html code to jnlp-files
Diffstat (limited to 'www/applettest-joal.html')
-rw-r--r--www/applettest-joal.html99
1 files changed, 0 insertions, 99 deletions
diff --git a/www/applettest-joal.html b/www/applettest-joal.html
deleted file mode 100644
index 303ef44..0000000
--- a/www/applettest-joal.html
+++ /dev/null
@@ -1,99 +0,0 @@
-<!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="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">
- <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="http://jogamp.org/deployment/jogamp-current/jogl-all-awt.jnlp">
- <param name="jnlpExtension2"
- value="http://jogamp.org/deployment/jogamp-current/joal.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;/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>! Sun
-Microsystems, Inc. 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>