aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorendolf <[email protected]>2008-11-14 22:31:08 +0000
committerendolf <[email protected]>2008-11-14 22:31:08 +0000
commit10c2e694cc7016ed7a4a89b7f6232aeb31f71dea (patch)
treef8796e38aa2474dfdf87c10330937e20ef5ccb9a
parent45fbdfbf7c0ef9e1fd66c5e531aeff6f9e7f064e (diff)
*** empty log message ***
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@213 e343933a-64c8-49c5-92b1-88f2ce3e89e8
-rw-r--r--applet/build.xml10
-rw-r--r--applet/jinput.html4
2 files changed, 12 insertions, 2 deletions
diff --git a/applet/build.xml b/applet/build.xml
index 562a19f..f05355e 100644
--- a/applet/build.xml
+++ b/applet/build.xml
@@ -31,4 +31,14 @@
<fileset dir="../webstart/dist/"/>
</copy>
</target>
+
+ <target name="sign" depends="jar">
+ <input message="Input keystore alias: " addproperty="keystoreAlias"/>
+ <input message="Input keystore password: " addproperty="keystorePassword"/>
+ <signjar alias="${keystoreAlias}" keystore="../webstart/myKeyStore" storepass="${keystorePassword}" verbose="true">
+ <fileset dir="dist">
+ <include name="**/jinput-applet-test.jar"/>
+ </fileset>
+ </signjar>
+ </target>
</project> \ No newline at end of file
diff --git a/applet/jinput.html b/applet/jinput.html
index 5700f4c..f18fe34 100644
--- a/applet/jinput.html
+++ b/applet/jinput.html
@@ -2,7 +2,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="content-language" content="en">
- <title>Introducing Java SE 6 Update 10</title>
+ <title>JInput Applet Test</title>
<script src="http://java.com/js/deployJava.js"></script>
</head>
<body>
@@ -10,7 +10,7 @@
deployJava.setInstallerType('kernel');
// include any required packages as shown below
deployJava.setAdditionalPackages('javax.swing, javax.xml');
- deployJava.runApplet({codebase:"file:/C:/code/workspace/jinput/webstart/dist/",
+ deployJava.runApplet({codebase:"file:/C:/code/workspace/jinput/applet/dist/",
archive:"jinput.jar,jinput-test.jar,jinput-applet-test.jar", code:"net.java.games.input.applet.test.ControllerReadTestApplet",
width:"320", Height:"400"}, null, "1.4.2");
</script>