diff options
Diffstat (limited to 'www/applettest.html')
-rw-r--r-- | www/applettest.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/www/applettest.html b/www/applettest.html index 3f3a010..a49a709 100644 --- a/www/applettest.html +++ b/www/applettest.html @@ -23,11 +23,11 @@ as an applet: <applet code="org.jdesktop.applet.util.JNLPAppletLauncher" width=600 height=400 - archive="http://download.java.net/media/applet-launcher/applet-launcher.jar, - http://download.java.net/media/jogl/jsr-231-2.x-webstart/jogl.all.jar, - http://download.java.net/media/jogl/jsr-231-2.x-webstart/nativewindow.all.jar, - http://download.java.net/media/gluegen/webstart-2.x/gluegen-rt.jar, - http://download.java.net/media/jogl/jsr-231-2.x-demos-webstart/jogl-demos.jar"> + archive="http://jogamp.org/deployment/util/applet-launcher.jar, + http://jogamp.org/deployment/webstart/jogl.all.jar, + http://jogamp.org/deployment/webstart/nativewindow.all.jar, + http://jogamp.org/deployment/webstart/gluegen-rt.jar, + http://jogamp.org/deployment/webstart/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"> @@ -35,7 +35,7 @@ as an applet: <param name="progressbar" value="true"> <param name="jnlpNumExtensions" value="1"> <param name="jnlpExtension1" - value="http://download.java.net/media/jogl/jsr-231-2.x-webstart/jogl-core.jnlp"> + value="http://jogamp.org/deployment/webstart/jogl-core.jnlp"> </applet> </P> @@ -47,11 +47,11 @@ The applet above is instantiated with the following code: <applet code="org.jdesktop.applet.util.JNLPAppletLauncher" width=600 height=400 - archive="http://download.java.net/media/applet-launcher/applet-launcher.jar, - http://download.java.net/media/jogl/jsr-231-2.x-webstart/nativewindow.all.jar, - http://download.java.net/media/jogl/jsr-231-2.x-webstart/jogl.all.jar, - http://download.java.net/media/gluegen/webstart-2.x/gluegen-rt.jar, - http://download.java.net/media/jogl/jsr-231-2.x-demos-webstart/jogl-demos.jar"> + archive="http://jogamp.org/deployment/util/applet-launcher.jar, + http://jogamp.org/deployment/webstart/nativewindow.all.jar, + http://jogamp.org/deployment/webstart/jogl.all.jar, + http://jogamp.org/deployment/webstart/gluegen-rt.jar, + http://jogamp.org/deployment/webstart/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"> @@ -59,7 +59,7 @@ The applet above is instantiated with the following code: <param name="progressbar" value="true"> <param name="jnlpNumExtensions" value="1"> <param name="jnlpExtension1" - value="http://download.java.net/media/jogl/jsr-231-2.x-webstart/jogl-core.jnlp"> + value="http://jogamp.org/deployment/webstart/jogl-core.jnlp"> </applet> </pre> @@ -67,7 +67,7 @@ The applet above is instantiated with the following code: <P> Note that the jogl-demos.jar, which contains the GearsApplet class, -<B>does not need to be signed</B>! Sun Microsystems, Inc. signs +<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 |