Initial temp support. (Thanks, Jack)
[desert.git] / preview-applet.html
blobc8b84315e335a71ab2e2a7f1156de8734720a65a
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <!-- ########################## IMPORTANT NOTE ############################ -->
3 <!-- This preview HTML page will work only with JDK 6 update 10 and higher! -->
4 <!-- ###################################################################### -->
5 <html>
6 <head>
7 <title>Test page for launching the applet via JNLP</title>
8 </head>
9 <body>
10 <h3>Test page for launching the applet via JNLP</h3>
11 <applet width="${JNLP.APPLET.WIDTH}" height="${JNLP.APPLET.HEIGHT}">
12 <param name="jnlp_href" value="${JNLP.FILE}"/>
13 </applet>
14 <!-- Or use the following script element to launch with the Deployment Toolkit -->
15 <!-- Open the deployJava.js script to view its documentation -->
16 <!--
17 <script src="http://java.com/js/deployJava.js"></script>
18 <script>
19 var attributes = {
20 codebase: [applet codebase],
21 code: [class to launch],
22 archive: [JAR file with the applet],
23 width: [applet width],
24 height: [applet height]
26 var parameters = { [applet parameters] };
27 var version = [JDK version];
28 deployJava.runApplet(attributes, parameters, version);
29 </script>
30 -->
31 </body>
32 </html>