diff options
author | Kenneth Russel <[email protected]> | 2006-01-04 20:08:13 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-01-04 20:08:13 +0000 |
commit | d873efc54c38a8dcfcff82ee686f2cc4ad2a76d4 (patch) | |
tree | 3123cb86d508cddcd9c08fe8d7cc0803e22f99f5 /www/applettest.html | |
parent | 0528109e41cd314af6fa4f3e1e6c773042b18c26 (diff) |
Added JOGL Applet test page
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@156 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'www/applettest.html')
-rw-r--r-- | www/applettest.html | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/www/applettest.html b/www/applettest.html new file mode 100644 index 0000000..1d3bbda --- /dev/null +++ b/www/applettest.html @@ -0,0 +1,79 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<html> +<head> +<title>JOGL Applet Test</title> +</head> +<body> + +<P> + +The new JOGL Applet Launcher 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="com.sun.opengl.utils.JOGLAppletInstaller" + width=600 + height=400 + codebase="http://download.java.net/jogl/builds/archive/jsr-231-webstart-current" + archive="jogl.jar,jogl-demos.jar"> + <param name="subapplet.classname" VALUE="demos.applets.GearsApplet"> + <param name="subapplet.displayname" VALUE="JOGL Gears Applet"> + <param name="progressbar" value="true"> + <param name="cache_archive" VALUE="jogl.jar,jogl-demos.jar"> + <param name="cache_archive_ex" VALUE="jogl.jar;preload,jogl-demos.jar;preload"> +</applet> + +</P> +<P> + +The applet above is instantiated with the following code: + +<pre> +<applet code="com.sun.opengl.utils.JOGLAppletInstaller" + width=600 + height=400 + codebase="http://download.java.net/jogl/builds/archive/jsr-231-webstart-current" + archive="jogl.jar,jogl-demos.jar"> + <param name="subapplet.classname" VALUE="demos.applets.GearsApplet"> + <param name="subapplet.displayname" VALUE="JOGL Gears Applet"> + <param name="progressbar" value="true"> + <param name="cache_archive" VALUE="jogl.jar,jogl-demos.jar"> + <param name="cache_archive_ex" VALUE="jogl.jar;preload,jogl-demos.jar;preload"> +</applet> +</pre> + +</P> +<P> + +Note that the jogl-demos.jar, which contains the GearsApplet class, +<B>does not need to be signed</B>! Sun Microsystems, Inc. signs +jogl.jar, which contains the JOGLAppletLauncher; 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://download.java.net/media/jogl/builds/nightly/javadoc_public/com/sun/opengl/utils/JOGLAppletLauncher.html">JOGLAppletLauncher +javadoc</a> contains more information about what files must be placed +on the web server in order to enable the deployment of applets using +JOGL. + +</P> +<P> + +The JOGL Applet Launcher was originally contributed by Lilian +Chamontin. + +</P> + +</body> +</html> |