diff options
author | Sven Gothel <[email protected]> | 2010-12-13 19:09:13 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-13 19:09:13 +0100 |
commit | aa6715b0b968a588b421cb9c7cb837c4101243e7 (patch) | |
tree | cd25bcddac0f99db949991374fd0687f8051699f /jnlp-files | |
parent | 0d8e10fc2f3e5b8cfccc8e20d08c979f75bfb0a2 (diff) |
Add jnlp/html for jogl/joal demo
Diffstat (limited to 'jnlp-files')
-rw-r--r-- | jnlp-files/applet-gearsjoal-jnlp.html | 19 | ||||
-rw-r--r-- | jnlp-files/applet-gearsjoal.jnlp | 28 |
2 files changed, 47 insertions, 0 deletions
diff --git a/jnlp-files/applet-gearsjoal-jnlp.html b/jnlp-files/applet-gearsjoal-jnlp.html new file mode 100644 index 0000000..01e8117 --- /dev/null +++ b/jnlp-files/applet-gearsjoal-jnlp.html @@ -0,0 +1,19 @@ +<!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.jnlp b/jnlp-files/applet-gearsjoal.jnlp new file mode 100644 index 0000000..47820fd --- /dev/null +++ b/jnlp-files/applet-gearsjoal.jnlp @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<jnlp codebase="DEMO_CODEBASE_TAG" href="applet-gearsjoal.jnlp"> + <information> + <title>JOGL JNLP Applet GearsJOAL Demo</title> + <vendor>JogAmp Community</vendor> + <homepage href="http://jogamp.org/jogl-demos/"/> + <description>GearsJOAL Demo </description> + <description kind="short">Brian Paul's Gears demo ported to Java and JOGL.</description> + <offline-allowed/> + </information> + <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="jogl-demos.jar" main="true"/> + <jar href="jogl-demos-util.jar"/> + <extension name="newt-all-awt" href="JOGL_CODEBASE_TAG/newt-all-awt.jnlp" /> + <extension name="joal" href="JOAL_CODEBASE_TAG/joal.jnlp" /> + </resources> + + <applet-desc + name="GearsJOAL-Applet" + main-class="demos.applets.GearsJOALApplet" + width="640" + height="480"> + </applet-desc> +</jnlp> |