view 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
line wrap: on
line source

<?xml version="1.0" encoding="ISO-8859-1"?>
<jnlp codebase="http://xanthippe.dyndns.org/ConflictEditor" href="$outputFile">
    <information>
        <title>Conflict Editor</title>
        <vendor>Codedo.de</vendor>
        <homepage href="http://xanthippe.dyndns.org/ConflictEditor"/>
        <description>Confict Editor</description>
        <description kind="short">Editor for couchdb conflicts</description>

        <!-- Allow starting the app without existing internet connection -->
        <offline-allowed/>
    </information>

    <!-- The data is stored on the client using the java.util.prefs.Preferences API.
         Since this is protected by a SecurityManager and there's no convenient way
         to store data on the client in a WebStart conforming way, request all permissions
         from user and stick with the Preferences API. -->
    <security>
        <all-permissions/>
    </security>

    <resources>
        <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
        $dependencies
    </resources>

    <application-desc main-class="$mainClass"/>
</jnlp>