annotate webstart-package/src/jnlp/template.vm @ 42:7380d8ff1a66 default tip

bring up a message dialog if the selected database did not contain any conflicts
author dirk
date Thu, 05 Jan 2012 05:33:19 +0100
parents 3201f93801d0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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>