diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-14 00:10:22 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-14 00:10:22 +0000 |
commit | 6069e787991de587979306af768738945046ff94 (patch) | |
tree | 804f826eb7af0132b5305fa492097c0726d8db48 /client/trunk/master.jnlp | |
parent | 63cd2b169354de68ab878b53a043d5b9efa75183 (diff) | |
download | instadisc-6069e787991de587979306af768738945046ff94.tar.gz instadisc-6069e787991de587979306af768738945046ff94.tar.bz2 instadisc-6069e787991de587979306af768738945046ff94.zip |
Client: Added Java Web Start support
This has been discovered to be a much better way of Java distributation. Because of this, the loader script is no longer necessary.
Diffstat (limited to 'client/trunk/master.jnlp')
-rw-r--r-- | client/trunk/master.jnlp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/client/trunk/master.jnlp b/client/trunk/master.jnlp new file mode 100644 index 0000000..5f43198 --- /dev/null +++ b/client/trunk/master.jnlp | |||
@@ -0,0 +1,24 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <jnlp spec="1.0+" codebase="${jnlp.codebase}" href="launch.jnlp"> | ||
3 | <information> | ||
4 | <title>${APPLICATION.TITLE}</title> | ||
5 | <vendor>${APPLICATION.VENDOR}</vendor> | ||
6 | <description>${APPLICATION.DESC}</description> | ||
7 | <description kind="short">${APPLICATION.DESC.SHORT}</description> | ||
8 | <homepage href="${APPLICATION.HOMEPAGE}"/> | ||
9 | <!--${JNLP.ICONS}--> | ||
10 | <!--${JNLP.OFFLINE.ALLOWED}--> | ||
11 | </information> | ||
12 | <!--${JNLP.SECURITY}--> | ||
13 | <resources> | ||
14 | <!--${JNLP.RESOURCES.RUNTIME}--> | ||
15 | <!--${JNLP.RESOURCES.MAIN.JAR}--> | ||
16 | <!--${JNLP.RESOURCES.JARS}--> | ||
17 | </resources> | ||
18 | <security> | ||
19 | <all-permissions/> | ||
20 | </security> | ||
21 | <application-desc main-class="${jnlp.main.class}"> | ||
22 | <!--${JNLP.APPLICATION.ARGS}--> | ||
23 | </application-desc> | ||
24 | </jnlp> | ||