blob: d7cd9ab4a8141b183cea78ca9170d748f236e0b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
$FreeBSD$
This patch removes the webstart support.
--- build.xml.orig Mon Dec 12 14:57:02 2005
+++ build.xml Fri Jan 27 12:20:52 2006
@@ -180,6 +180,10 @@
</fileset>
</copy>
<!-- the default keystore details might need to be edited here -->
+<!-- Remove all the remaining stuff for this target
+ which is only necessary if we want to start jalview
+ using java web start. It requires us to generate a key
+ before building the port - Fernan - 27.Jan.2006
<signjar
storepass="alignmentisfun"
keypass="alignmentisfun"
@@ -194,8 +198,9 @@
</fileset>
</signjar>
<taskdef classpathref="build.classpath" resource="com/roxes/tools/ant/taskdefs.properties"/>
-
+-->
<!-- codebase="http://www.jalview.org/jalview/webstart" -->
+<!--
<jnlp toFile="${packageDir}/jalview.jnlp" href="jalview.jnlp"
codebase="${WebStartLocation}">
<information>
@@ -206,6 +211,7 @@
<description kind="short">Jalview</description>
<icon href="logo_big.gif"/>
<offline_allowed/>
+-->
<!--
<association mime-type="application-x/ext-file" extensions="fa"/>
<association mime-type="application-x/ext-file" extensions="fasta"/>
@@ -216,6 +222,7 @@
<association mime-type="application-x/ext-file" extensions="aln"/>
<association mime-type="application-x/ext-file" extensions="pir"/>
-->
+<!--
</information>
<resources>
<j2se version="1.4+"/>
@@ -234,6 +241,7 @@
<all_permissions/>
</security>
</jnlp>
+-->
</target>
<target name="runenv" depends="init">
<path id="run.classpath">
|