Mercurial > hg > ConflictEditor
comparison webstart-package/src/jnlp/template.vm @ 39:3201f93801d0
add a module that generates a webstart package
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sun, 09 Oct 2011 08:15:11 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
38:6c85a4fcfe28 | 39:3201f93801d0 |
---|---|
1 <?xml version="1.0" encoding="ISO-8859-1"?> | |
2 <jnlp codebase="http://xanthippe.dyndns.org/ConflictEditor" href="$outputFile"> | |
3 <information> | |
4 <title>Conflict Editor</title> | |
5 <vendor>Codedo.de</vendor> | |
6 <homepage href="http://xanthippe.dyndns.org/ConflictEditor"/> | |
7 <description>Confict Editor</description> | |
8 <description kind="short">Editor for couchdb conflicts</description> | |
9 | |
10 <!-- Allow starting the app without existing internet connection --> | |
11 <offline-allowed/> | |
12 </information> | |
13 | |
14 <!-- The data is stored on the client using the java.util.prefs.Preferences API. | |
15 Since this is protected by a SecurityManager and there's no convenient way | |
16 to store data on the client in a WebStart conforming way, request all permissions | |
17 from user and stick with the Preferences API. --> | |
18 <security> | |
19 <all-permissions/> | |
20 </security> | |
21 | |
22 <resources> | |
23 <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/> | |
24 $dependencies | |
25 </resources> | |
26 | |
27 <application-desc main-class="$mainClass"/> | |
28 </jnlp> |