~ubuntu-branches/ubuntu/oneiric/icedtea-web/oneiric

« back to all changes in this revision

Viewing changes to tests/netx/unit/net/sourceforge/jnlp/basic.jnlp

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-04-06 13:10:44 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110406131044-6jky8obchc43cf02
Tags: 1.1~20110406-0ubuntu1
Fix typo in icedtea-netx postinst to install the javaws alternative.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version='1.0' encoding='utf-8'?>
 
2
<!-- this is a sample jnlp file -->
 
3
<jnlp spec='1.0'
 
4
    codebase='http://localhost/'
 
5
    href='jnlp.jnlp'>
 
6
  <information>
 
7
    <!-- this is the information section -->
 
8
    <title>Large JNLP</title>
 
9
    <vendor>The IcedTea Project</vendor>
 
10
    <homepage href='http://homepage/' />
 
11
    <description kind='one-line'>one-line</description>
 
12
    <description kind='short'>short</description>
 
13
    <description kind='tooltip'>tooltip</description>
 
14
    <icon href='icon.png' />
 
15
    <icon href='splash.png' kind='splash' />
 
16
    <offline-allowed />
 
17
    <shortcut online='true'>
 
18
      <desktop/>
 
19
      <menu submenu='submenu'/>
 
20
    </shortcut>
 
21
    <association extensions='*.foo' mime-type='foo/bar'/>
 
22
    <related-content href='http://related-content/'>
 
23
      <title>related-content <!-- or something -->title</title>
 
24
      <description>decription of related-content</description>
 
25
      <icon href='related-content-icon.png' />
 
26
    </related-content>
 
27
  </information>
 
28
  <security>
 
29
    <all-permissions/>
 
30
  </security>
 
31
  <resources>
 
32
    <!-- the resources section describes things needed -->
 
33
    <java version='1.3+' href='http://java-url/'
 
34
        initial-heap-size='64m'
 
35
        max-heap-size='128m' />
 
36
    <jar href='eager.jar' download='eager'/>
 
37
    <jar href='lazy.jar' download='lazy'/>
 
38
    <nativelib href='native.jar'/>
 
39
    <extension name='extension' version='0.1.1' href='http://extension/'/>
 
40
    <property name='key' value='value'/>
 
41
  </resources>
 
42
  <application-desc main-class='MainClass'>
 
43
    <argument>arg1</argument>
 
44
    <argument>arg2</argument>
 
45
  </application-desc>
 
46
</jnlp>
 
47