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