~ubuntu-branches/ubuntu/raring/icedtea-web/raring

« back to all changes in this revision

Viewing changes to tests/jnlp_tests/signed/MissingJar/resources/MissingJar.jnlp

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-02-04 18:19:46 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20120204181946-jngobgzz4mlen9yl
Tags: 1.2~pre1-0ubuntu1
* Update to hg 20120203, taken from the icedtea-web-1.2 release branch.
* Build separate plugin packages for OpenJDK 6 and OpenJDK 7, needed
  to provide the path to the runtime and the mime description in the plugin.
* Use icedtea-<jre version>-plugin as the name for both plugin packages.
* Remove icedtea-web-1.1.4-npapi-fix.patch, fixed upstream.
* Pass -n to gzip when compressing manpages to be Multi-Arch: same safe.
* Build multiarch packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?> 
 
2
<jnlp spec="1.0"
 
3
      codebase="./"
 
4
      href="MissingJar.jnlp">
 
5
   <information> 
 
6
      <title>test MissingJar</title> 
 
7
   </information> 
 
8
   <resources>
 
9
      <!-- MissingJar is name of reproducer and of main jar,
 
10
      so MissingJar.jar is presented unlike the ThisOneIsMissing jar  -->
 
11
      <jar href="MissingJar.jar" main="true" />
 
12
   </resources>
 
13
   <resources>
 
14
      <jar href="ThisOneIsMissing.jar"  />
 
15
   </resources>
 
16
   <application-desc main-class="MissingJar"/>
 
17
   <security>
 
18
      <all-permissions/>
 
19
   </security>
 
20
</jnlp>