jnlp 0.0.5.1 → 0.0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +11 -0
- data/Manifest.txt +7 -3
- data/Rakefile +8 -8
- data/lib/jnlp/jnlp.rb +82 -37
- data/lib/jnlp/version.rb +1 -1
- data/spec/fixtures/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp +150 -0
- data/spec/fixtures/all-otrunk-snapshot-0.1.0-20091221.214313.jnlp +169 -0
- data/spec/fixtures/all-otrunk-snapshot-CURRENT_VERSION.txt +1 -0
- data/spec/fixtures/maven-jnlp.html +180 -0
- data/spec/jnlp_spec.rb +151 -0
- data/spec/jnlp_with_certficate_versions_spec.rb +141 -0
- data/spec/spec_helper.rb +8 -0
- metadata +72 -68
- data/log/debug.log +0 -0
data/History.txt
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
== 0.0.5.2 2009-12-23
|
2
|
+
|
3
|
+
* add support for os-specific j2se elements
|
4
|
+
|
5
|
+
For example a jnlp might include this j2se specification to limit
|
6
|
+
the JVM to *only* 1.5 on Mac OS X.
|
7
|
+
|
8
|
+
<resources os="Mac OS X">
|
9
|
+
<j2se version="1.5" max-heap-size="128m" initial-heap-size="32m" />
|
10
|
+
</resources>
|
11
|
+
|
1
12
|
== 0.0.5.1 2009-06-24
|
2
13
|
|
3
14
|
* add certificate_version attribute to Jnlp::Resource
|
data/Manifest.txt
CHANGED
@@ -10,17 +10,21 @@ lib/jnlp/version.rb
|
|
10
10
|
lib/jnlp/jnlp.rb
|
11
11
|
lib/jnlp/otrunk.rb
|
12
12
|
lib/jnlp/maven_jnlp.rb
|
13
|
-
log/debug.log
|
14
13
|
script/console
|
15
14
|
script/destroy
|
16
15
|
script/generate
|
17
16
|
script/txt2html
|
18
17
|
setup.rb
|
18
|
+
spec/jnlp_spec.rb
|
19
|
+
spec/jnlp_with_certficate_versions_spec.rb
|
20
|
+
spec/spec_helper.rb
|
21
|
+
spec/fixtures/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp
|
22
|
+
spec/fixtures/all-otrunk-snapshot-CURRENT_VERSION.txt
|
23
|
+
spec/fixtures/all-otrunk-snapshot-0.1.0-20091221.214313.jnlp
|
24
|
+
spec/fixtures/maven-jnlp.html
|
19
25
|
tasks/deployment.rake
|
20
26
|
tasks/environment.rake
|
21
27
|
tasks/website.rake
|
22
|
-
test/test_helper.rb
|
23
|
-
test/test_jnlp.rb
|
24
28
|
website/index.html
|
25
29
|
website/index.txt
|
26
30
|
website/javascripts/rounded_corners_lite.inc.js
|
data/Rakefile
CHANGED
@@ -3,14 +3,14 @@ require 'hoe'
|
|
3
3
|
|
4
4
|
require './lib/jnlp.rb'
|
5
5
|
|
6
|
-
Hoe.
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
6
|
+
Hoe.spec 'jnlp' do |spec|
|
7
|
+
spec.rubyforge_name = 'rubywebstart' # if different than lowercase project name
|
8
|
+
spec.author = 'Stephen Bannasch'
|
9
|
+
spec.email = 'stephen.bannasch@gmail.com'
|
10
|
+
spec.url = 'http://rubywebstart.rubyforge.org/jnlp/rdoc/'
|
11
|
+
spec.summary = "Ruby tools for working with Java Web Start JNLPs."
|
12
|
+
spec.description = "For manipulation of Java Web Start Jnlps and the resources they reference."
|
13
|
+
spec.extra_deps << ['hpricot','=0.6.164']
|
14
14
|
end
|
15
15
|
|
16
16
|
task :default => :spec
|
data/lib/jnlp/jnlp.rb
CHANGED
@@ -93,6 +93,60 @@ module Jnlp #:nodoc:
|
|
93
93
|
@os = os
|
94
94
|
end
|
95
95
|
end
|
96
|
+
|
97
|
+
class J2se
|
98
|
+
#
|
99
|
+
# Contains the Hpricot element parsed from the orginal Jnlp
|
100
|
+
# that was used to create the Property
|
101
|
+
#
|
102
|
+
attr_reader :j2se
|
103
|
+
#
|
104
|
+
# Contains the version of the J2SE element:
|
105
|
+
#
|
106
|
+
# Example:
|
107
|
+
#
|
108
|
+
# "1.5+"
|
109
|
+
#
|
110
|
+
attr_reader :version
|
111
|
+
#
|
112
|
+
# Contains the max-heap-size specified in the J2SE element:
|
113
|
+
#
|
114
|
+
# Example:
|
115
|
+
#
|
116
|
+
# "128m"
|
117
|
+
#
|
118
|
+
attr_reader :max_heap_size
|
119
|
+
#
|
120
|
+
# Contains the initial-heap-size specified in the J2SE element:
|
121
|
+
#
|
122
|
+
# Example:
|
123
|
+
#
|
124
|
+
# "32m"
|
125
|
+
#
|
126
|
+
attr_reader :initial_heap_size
|
127
|
+
#
|
128
|
+
# Contains the value of the os attribute in the
|
129
|
+
# parent <resources> element that contains this property
|
130
|
+
# if the attribute was set in the parent.
|
131
|
+
# Example:
|
132
|
+
#
|
133
|
+
# "Mac OS X"
|
134
|
+
#
|
135
|
+
attr_reader :os
|
136
|
+
#
|
137
|
+
# Creates a new Jnlp::Property object.
|
138
|
+
# * _prop_: the Hpricot parsing of the specific jnlp/resources/property element
|
139
|
+
# * _os_: optional: include it if the resources parent element that contains the property has this attribute set
|
140
|
+
#
|
141
|
+
def initialize(j2se, os=nil)
|
142
|
+
@j2se = j2se
|
143
|
+
@version = j2se['version']
|
144
|
+
@max_heap_size = j2se['max-heap-size']
|
145
|
+
@initial_heap_size = j2se['initial-heap-size']
|
146
|
+
@os = os
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
96
150
|
#
|
97
151
|
# Icon objects encapsulate the <icon> element optionally present in
|
98
152
|
# the Java Web Start jnlp <information> element.
|
@@ -745,31 +799,6 @@ module Jnlp #:nodoc:
|
|
745
799
|
#
|
746
800
|
attr_reader :href
|
747
801
|
#
|
748
|
-
# Contains the Hpricot parsing of the <j2se> element in the Jnlp <resources> element.
|
749
|
-
#
|
750
|
-
attr_reader :j2se
|
751
|
-
#
|
752
|
-
# Contains the version attribute in the jnlp/resources/j2se element
|
753
|
-
# Example:
|
754
|
-
#
|
755
|
-
# "1.5+"
|
756
|
-
#
|
757
|
-
attr_reader :j2se_version
|
758
|
-
#
|
759
|
-
# Contains the max-heap-size attribute in the jnlp/resources/j2se element
|
760
|
-
# Example:
|
761
|
-
#
|
762
|
-
# "128m"
|
763
|
-
#
|
764
|
-
attr_reader :max_heap_size
|
765
|
-
#
|
766
|
-
# Contains the initial-heap-size attribute in the jnlp/resources/j2se element
|
767
|
-
# Example:
|
768
|
-
#
|
769
|
-
# "32m"
|
770
|
-
#
|
771
|
-
attr_reader :initial_heap_size
|
772
|
-
#
|
773
802
|
# Contains the value of the jnlp/information/title element
|
774
803
|
# Example:
|
775
804
|
#
|
@@ -809,6 +838,11 @@ module Jnlp #:nodoc:
|
|
809
838
|
#
|
810
839
|
attr_reader :offline_allowed
|
811
840
|
#
|
841
|
+
# Contains an array of Jnlp::J2se objects encapsulating
|
842
|
+
# jnlp/resources/j2se elements
|
843
|
+
#
|
844
|
+
attr_reader :j2ses
|
845
|
+
#
|
812
846
|
# Contains an array of Jnlp::Property objects encapsulating
|
813
847
|
# jnlp/resources/property elements
|
814
848
|
#
|
@@ -847,6 +881,23 @@ module Jnlp #:nodoc:
|
|
847
881
|
@verbose = options[:verbose]
|
848
882
|
import_jnlp(path) unless path.empty?
|
849
883
|
end
|
884
|
+
|
885
|
+
def j2se_version(os=nil)
|
886
|
+
j2se = j2ses.detect {|j2se| j2se.os == os }
|
887
|
+
j2se ? j2se.version : nil
|
888
|
+
end
|
889
|
+
|
890
|
+
def max_heap_size(os=nil)
|
891
|
+
j2se = j2ses.detect {|j2se| j2se.os == os }
|
892
|
+
j2se ? j2se.max_heap_size : nil
|
893
|
+
end
|
894
|
+
|
895
|
+
def initial_heap_size(os=nil)
|
896
|
+
j2se = j2ses.detect {|j2se| j2se.os == os }
|
897
|
+
j2se ? j2se.initial_heap_size : nil
|
898
|
+
end
|
899
|
+
|
900
|
+
|
850
901
|
#
|
851
902
|
# Saves a YAML version of the jnlp object.
|
852
903
|
#
|
@@ -889,30 +940,24 @@ module Jnlp #:nodoc:
|
|
889
940
|
@spec = (@jnlp/"jnlp").attr('spec')
|
890
941
|
@codebase = (@jnlp/"jnlp").attr('codebase')
|
891
942
|
@href = (@jnlp/"jnlp").attr('href')
|
892
|
-
@j2se_version, @max_heap_size, @initial_heap_size = nil, nil, nil
|
893
943
|
@title, @vendor, @homepage, @description, @icon = nil, nil, nil, nil, nil
|
894
944
|
unless (info = (@jnlp/"information")).empty?
|
895
|
-
@title = (info/"title").inner_html
|
896
|
-
@vendor = (info/"vendor").inner_html
|
945
|
+
@title = (info/"title").inner_html.strip
|
946
|
+
@vendor = (info/"vendor").inner_html.strip
|
897
947
|
@homepage = (info/"homepage").empty? ? '' : (info/"homepage").attr('href')
|
898
|
-
@description = (info/"description").empty? ? '' : (info/"description").inner_html
|
948
|
+
@description = (info/"description").empty? ? '' : (info/"description").inner_html.strip
|
899
949
|
icon = (info/"icon")
|
900
950
|
@icon = Icon.new(icon) unless icon.empty?
|
901
951
|
@offline_allowed = (info/"offline-allowed") ? true : false
|
902
952
|
end
|
903
953
|
@main_class = (@jnlp/"application-desc").attr('main-class')
|
904
|
-
@argument = (@jnlp/"argument").inner_html
|
905
|
-
@properties, @jars, @nativelibs = [], [], []
|
954
|
+
@argument = (@jnlp/"argument").inner_html.strip
|
955
|
+
@j2ses, @properties, @jars, @nativelibs = [], [], [], []
|
906
956
|
(@jnlp/"resources").each do |resources|
|
907
957
|
if os = resources[:os]
|
908
958
|
os = os.strip.downcase.gsub(/\W+/, '_').gsub(/^_+|_+$/, '')
|
909
959
|
end
|
910
|
-
|
911
|
-
@j2se = j
|
912
|
-
@j2se_version = j.attr('version')
|
913
|
-
@max_heap_size = j.attr('max-heap-size')
|
914
|
-
@initial_heap_size = j.attr('initial-heap-size')
|
915
|
-
end
|
960
|
+
(resources/"j2se").each { |j2se| @j2ses << J2se.new(j2se, os) }
|
916
961
|
(resources/"property").each { |prop| @properties << Property.new(prop, os) }
|
917
962
|
(resources/"jar").each { |res| @jars << Resource.new(res, @codebase, os) }
|
918
963
|
(resources/"nativelib").each { |res| @nativelibs << Resource.new(res, @codebase, os) }
|
data/lib/jnlp/version.rb
CHANGED
@@ -0,0 +1,150 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<jnlp spec="1.0+" codebase="http://jnlp.concord.org/dev" href="http://jnlp.concord.org/dev/org/concord/maven-jnlp/all-otrunk-snapshot/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp">
|
3
|
+
<information>
|
4
|
+
<title>All OTrunk snapshot</title>
|
5
|
+
<vendor>Concord Consortium</vendor>
|
6
|
+
<homepage href="index.html"/>
|
7
|
+
<description>Preview Basic Pas</description>
|
8
|
+
<offline-allowed/>
|
9
|
+
</information>
|
10
|
+
<security>
|
11
|
+
<all-permissions/>
|
12
|
+
</security>
|
13
|
+
<resources>
|
14
|
+
<j2se version="1.5+" max-heap-size="128m" initial-heap-size="32m"/>
|
15
|
+
<jar href="org/telscenter/sail-otrunk/sail-otrunk.jar" version="0.1.0-20090624.011056-1033-s1"/>
|
16
|
+
<jar href="org/concord/otrunk/otrunk.jar" version="0.1.0-20090618.143130-890-s1"/>
|
17
|
+
<jar href="org/concord/framework/framework.jar" version="0.1.0-20090608.200006-335-s1"/>
|
18
|
+
<jar href="org/concord/frameworkview/frameworkview.jar" version="0.1.0-20090609.080543-154-s1"/>
|
19
|
+
<jar href="org/concord/swing/swing.jar" version="0.1.0-20090514.210024-177-s1"/>
|
20
|
+
<jar href="jug/jug/jug.jar" version="1.1.2-s1"/>
|
21
|
+
<jar href="jdom/jdom/jdom.jar" version="1.0-s1"/>
|
22
|
+
<jar href="org/concord/apple-support/apple-support.jar" version="0.1.0-20090514.210144-119-s1"/>
|
23
|
+
<jar href="org/concord/loader/loader.jar" version="0.1.0-20090514.210305-114-s1"/>
|
24
|
+
<jar href="net/sf/sail/sail-core/sail-core.jar" version="0.4.5-20090622.191903-1197-s1"/>
|
25
|
+
<jar href="commons-beanutils/commons-beanutils/commons-beanutils.jar" version="1.7.0-s1"/>
|
26
|
+
<jar href="commons-logging/commons-logging/commons-logging.jar" version="1.0.4-s1"/>
|
27
|
+
<jar href="commons-lang/commons-lang/commons-lang.jar" version="2.0-s1"/>
|
28
|
+
<jar href="commons-io/commons-io/commons-io.jar" version="1.1-s1"/>
|
29
|
+
<jar href="log4j/log4j/log4j.jar" version="1.2.8-s1"/>
|
30
|
+
<jar href="rhino/js/js.jar" version="1.5R4.1-s1"/>
|
31
|
+
<jar href="script/jsr223/jsr223.jar" version="1.0-s1"/>
|
32
|
+
<jar href="xstream/xstream/xstream.jar" version="1.1.2-s1"/>
|
33
|
+
<jar href="net/sf/sail/sail-data-emf/sail-data-emf.jar" version="0.1.0-20090623.122855-1222-s1" main="true"/>
|
34
|
+
<jar href="org/eclipse/emf/ecore/ecore.jar" version="2.2.0-s1"/>
|
35
|
+
<jar href="org/eclipse/emf/common/common.jar" version="2.2.0-s1"/>
|
36
|
+
<jar href="org/eclipse/emf/ecore-xmi/ecore-xmi.jar" version="2.2.0-s1"/>
|
37
|
+
<jar href="org/concord/portfolio/portfolio.jar" version="0.1.0-20090623.220029-348-s1"/>
|
38
|
+
<jar href="org/concord/otrunk-ui/otrunk-ui.jar" version="0.1.0-20090623.210537-586-s1"/>
|
39
|
+
<jar href="org/concord/external/sound/jlayer/jlayer.jar" version="1.0-s1"/>
|
40
|
+
<jar href="org/concord/external/sound/mp3spi/mp3spi.jar" version="1.9.4-s1"/>
|
41
|
+
<jar href="org/concord/external/sound/tritonus/tritonus.jar" version="0.1-s1"/>
|
42
|
+
<jar href="org/concord/external/ekit/ekit.jar" version="1.0-s1"/>
|
43
|
+
<jar href="org/concord/httpclient/httpclient.jar" version="0.1.0-20080330.082248-19-s1"/>
|
44
|
+
<jar href="org/concord/datagraph/datagraph.jar" version="0.1.0-20090611.191746-347-s1"/>
|
45
|
+
<jar href="org/concord/data/data.jar" version="0.2.0-20090609.080111-22-s1"/>
|
46
|
+
<jar href="org/concord/graphutil/graphutil.jar" version="0.1.0-20090610.155749-284-s1"/>
|
47
|
+
<jar href="org/concord/graph/graph.jar" version="0.1.0-20090514.210056-141-s1"/>
|
48
|
+
<jar href="org/concord/pedagogica/pedagogica.jar" version="0.1.0-20090609.084420-169-s1"/>
|
49
|
+
<jar href="org/concord/collisions/collisions.jar" version="0.1.0-20090623.220135-381-s1"/>
|
50
|
+
<jar href="org/concord/math/math.jar" version="0.1.0-20090514.210625-115-s1"/>
|
51
|
+
<jar href="org/concord/external/jep/jep.jar" version="1.0-s1"/>
|
52
|
+
<jar href="org/concord/external/vecmath/vecmath.jar" version="2.0-s1"/>
|
53
|
+
<jar href="org/concord/multimedia/multimedia.jar" version="0.1.0-20090623.220116-389-s1"/>
|
54
|
+
<jar href="org/concord/external/animating-card-layout/animating-card-layout.jar" version="1.0-s1"/>
|
55
|
+
<jar href="org/concord/otrunk/data-util/data-util.jar" version="0.1.0-20090623.220054-593-s1"/>
|
56
|
+
<jar href="org/concord/sensor/sensor.jar" version="0.2.0-20090609.084454-4-s1"/>
|
57
|
+
<jar href="org/concord/external/rxtx/rxtx-comm/rxtx-comm.jar" version="2.1.7-r2-s1"/>
|
58
|
+
<jar href="org/concord/biologica/biologica.jar" version="0.1.0-20090623.154913-443-s1"/>
|
59
|
+
<jar href="org/concord/external/jna/jna-examples/jna-examples.jar" version="0.1.0-20090409.210850-1-s1"/>
|
60
|
+
<jar href="org/concord/external/jri/libjri/libjri.jar" version="0.4-1-20081104.174358-4-s1"/>
|
61
|
+
<jar href="bsf/bsf/bsf.jar" version="2.4.0-s1"/>
|
62
|
+
<jar href="org/concord/external/jna/jna-jws/jna-jws.jar" version="3.0.9-s1"/>
|
63
|
+
<jar href="org/concord/otrunk-biologica/otrunk-biologica.jar" version="0.1.0-20090623.220324-415-s1"/>
|
64
|
+
<jar href="org/concord/otrunk/ot-script/ot-javascript/ot-javascript.jar" version="0.1.0-20090619.090348-301-s1"/>
|
65
|
+
<jar href="org/concord/otrunk/ot-script/ot-script-api/ot-script-api.jar" version="0.1.0-20090619.080512-295-s1"/>
|
66
|
+
<jar href="org/concord/otrunk/ot-script/ot-script-view/ot-script-view.jar" version="0.1.0-20090619.090404-262-s1"/>
|
67
|
+
<jar href="org/concord/otrunk-mw/otrunk-mw.jar" version="0.1.0-20090623.220414-620-s1"/>
|
68
|
+
<jar href="org/concord/modeler/mw/mw.jar" version="2.1.0-20090619.190127-32-s1"/>
|
69
|
+
<jar href="org/concord/rtt-applets/rtt-applets.jar" version="0.1.0-20090624.025752-197-s1"/>
|
70
|
+
<jar href="org/concord/graph-function/graph-function.jar" version="0.1.0-20090623.040837-181-s1"/>
|
71
|
+
<jar href="org/concord/algebra-objects/algebra-objects.jar" version="0.1.0-20090623.080244-212-s1"/>
|
72
|
+
<jar href="org/concord/shape-scaler/shape-scaler.jar" version="0.1.0-20090515.084644-117-s1"/>
|
73
|
+
<jar href="org/concord/otrunk-nlogo4/otrunk-nlogo4.jar" version="0.1.0-20090609.084259-167-s1"/>
|
74
|
+
<jar href="org/concord/nlogo/netlogo4lite/netlogo4lite.jar" version="4.0-20080411.140821-1-s1"/>
|
75
|
+
<jar href="org/concord/external/log/log4j/log4j.jar" version="1.2.15-s1"/>
|
76
|
+
<jar href="org/concord/otrunk/otrunk-phet/otrunk-phet.jar" version="0.1.0-20090609.084329-189-s1"/>
|
77
|
+
<jar href="org/concord/external/phet/phetballoons/phetballoons.jar" version="1.0.3-s1"/>
|
78
|
+
<jar href="org/concord/external/phet/phetramp/phetramp.jar" version="1.0.0-s1"/>
|
79
|
+
<jar href="org/concord/external/phet/phetsound/phetsound.jar" version="1.0.1-s1"/>
|
80
|
+
<jar href="org/concord/external/phet/phetdischargelamps/phetdischargelamps.jar" version="1.0.1-s1"/>
|
81
|
+
<jar href="org/concord/external/phet/phetfaraday/phetfaraday.jar" version="1.0.3-s1"/>
|
82
|
+
<jar href="org/concord/external/phet/phetwave/phetwave.jar" version="1.0.3-s1"/>
|
83
|
+
<jar href="org/concord/external/phet/phetskatepark/phetskatepark.jar" version="1.2-s1"/>
|
84
|
+
<jar href="org/concord/otrunk-cck/otrunk-cck.jar" version="0.1.0-20090619.090141-375-s1"/>
|
85
|
+
<jar href="org/concord/external/phet/phetcck/phetcck.jar" version="1.0.4-20090122.200346-31-s1"/>
|
86
|
+
<jar href="org/concord/examples/examples.jar" version="0.1.0-20090623.220156-287-s1"/>
|
87
|
+
<jar href="org/concord/function-graph/function-graph.jar" version="0.1.0-20090515.082347-99-s1"/>
|
88
|
+
<jar href="org/concord/otrunk/otrunk-velocity/otrunk-velocity.jar" version="0.1.0-20090619.080914-278-s1"/>
|
89
|
+
<jar href="org/apache/velocity/velocity/velocity.jar" version="1.5-s1"/>
|
90
|
+
<jar href="commons-collections/commons-collections/commons-collections.jar" version="3.1-s1"/>
|
91
|
+
<jar href="oro/oro/oro.jar" version="2.0.8-s1"/>
|
92
|
+
<jar href="org/apache/velocity/velocity-tools/velocity-tools.jar" version="1.3-s1"/>
|
93
|
+
<jar href="commons-digester/commons-digester/commons-digester.jar" version="1.8-s1"/>
|
94
|
+
<jar href="commons-validator/commons-validator/commons-validator.jar" version="1.3.1-s1"/>
|
95
|
+
<jar href="sslext/sslext/sslext.jar" version="1.2-0-s1"/>
|
96
|
+
<jar href="velocity/velocity/velocity.jar" version="1.4-s1"/>
|
97
|
+
<jar href="velocity/velocity-dep/velocity-dep.jar" version="1.4-s1"/>
|
98
|
+
<jar href="org/concord/otrunk/otrunk-udl/otrunk-udl.jar" version="0.1.0-20090623.220455-990-s1"/>
|
99
|
+
<jar href="org/concord/otrunk-browser/otrunk-browser.jar" version="0.1.0-20090623.220215-361-s1"/>
|
100
|
+
<jar href="org/mozdev/mozswing/mozswing-complete/mozswing-complete.jar" version="1.1-s1"/>
|
101
|
+
<jar href="org/concord/external/tts/narrator/narrator.jar" version="1.1-s1"/>
|
102
|
+
<jar href="org/concord/external/tts/freetts/freetts.jar" version="1.1-s1"/>
|
103
|
+
<jar href="org/concord/external/tts/en_us/en_us.jar" version="1.1-s1"/>
|
104
|
+
<jar href="org/concord/external/tts/cmutimelex/cmutimelex.jar" version="1.1-s1"/>
|
105
|
+
<jar href="org/concord/external/tts/cmulex/cmulex.jar" version="1.1-s1"/>
|
106
|
+
<jar href="org/concord/external/tts/cmudict04/cmudict04.jar" version="1.1-s1"/>
|
107
|
+
<jar href="org/concord/external/tts/cmu_us_kal/cmu_us_kal.jar" version="1.1-s1"/>
|
108
|
+
<jar href="org/concord/external/tts/cmu_time_awb/cmu_time_awb.jar" version="1.1-s1"/>
|
109
|
+
<jar href="org/concord/otrunk/otrunk-swingx/otrunk-swingx.jar" version="0.1.0-20090623.220435-116-s1"/>
|
110
|
+
<jar href="org/swinglabs/swingx/swingx.jar" version="0.9.5-2-s1"/>
|
111
|
+
<jar href="org/concord/otrunk/otrunk-diy/otrunk-diy.jar" version="0.1.0-20080326.093552-20-s1"/>
|
112
|
+
<jar href="org/concord/sensor-native/sensor-native.jar" version="0.1.0-20090609.084526-195-s1"/>
|
113
|
+
<jar href="org/concord/sensor/sensor-vernier/sensor-vernier.jar" version="0.2.0-20090609.084509-4-s1"/>
|
114
|
+
<jar href="org/concord/sensor/labpro-usb/labpro-usb.jar" version="0.2.0-20090514.211132-4-s1"/>
|
115
|
+
<jar href="org/concord/sensor/labquest-jna/labquest-jna.jar" version="0.1.0-20090514.211150-11-s1"/>
|
116
|
+
<jar href="org/concord/sensor/sensor-dataharvest/sensor-dataharvest.jar" version="0.1.0-20090319.210620-9-s1"/>
|
117
|
+
<jar href="org/concord/ftdi-serial-wrapper/ftdi-serial-wrapper.jar" version="0.1.0-20090514.211036-121-s1"/>
|
118
|
+
<jar href="org/concord/otrunk/ot-script/ot-bsf/ot-bsf.jar" version="0.1.0-20090619.090331-302-s1"/>
|
119
|
+
<jar href="org/concord/otrunk/ot-script/ot-jruby/ot-jruby.jar" version="0.1.0-20090619.082151-289-s1"/>
|
120
|
+
<jar href="org/jruby/jruby-complete/jruby-complete.jar" version="1.1.4-s1"/>
|
121
|
+
<jar href="org/concord/otrunk/ot-script/ot-jython/ot-jython.jar" version="0.1.0-20090619.082210-280-s1"/>
|
122
|
+
<jar href="org/jython/jython/jython.jar" version="2.2.1-20080311.150247-1-s1"/>
|
123
|
+
<jar href="org/concord/otrunk-collisions/otrunk-collisions.jar" version="0.1.0-20090623.220341-361-s1"/>
|
124
|
+
<jar href="org/concord/otrunk/otrunk-intrasession/otrunk-intrasession.jar" version="0.1.0-20090623.220357-216-s1"/>
|
125
|
+
<jar href="org/concord/otrunk/otrunk-report-libraries/otrunk-report-libraries.jar" version="0.1.0-20090611.180115-10-s1"/>
|
126
|
+
<property name="maven.jnlp.version" value="all-otrunk-snapshot-0.1.0-20090624.030355"/>
|
127
|
+
</resources>
|
128
|
+
<resources os="Linux">
|
129
|
+
<nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar.jar" version="2.1.7-r2-s1"/>
|
130
|
+
</resources>
|
131
|
+
<resources os="Windows">
|
132
|
+
<nativelib href="org/concord/external/jna/jna-jnidispatch/jna-jnidispatch-win32-nar.jar" version="3.0.9-s1"/>
|
133
|
+
<nativelib href="org/concord/external/tts/quadmore/quadmore-win32-nar.jar" version="1.0-20080128.214245-1-s1"/>
|
134
|
+
<nativelib href="org/concord/sensor/vernier/vernier-goio/vernier-goio-win32-nar.jar" version="1.4.0-s1"/>
|
135
|
+
<nativelib href="org/concord/sensor/labpro-usb-native/labpro-usb-native-win32-nar.jar" version="0.2.0-20090323.155823-1-s1"/>
|
136
|
+
<nativelib href="org/concord/ftdi-serial-wrapper-native/ftdi-serial-wrapper-native-win32-nar.jar" version="0.1.0-20070303.181906-4-s1"/>
|
137
|
+
<nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-win32-nar.jar" version="2.1.7-r2-s1"/>
|
138
|
+
<nativelib href="org/concord/sensor/ti/ti-cbl/ti-cbl-win32-nar.jar" version="0.1.1-s1"/>
|
139
|
+
</resources>
|
140
|
+
<resources os="Mac OS X">
|
141
|
+
<nativelib href="org/concord/external/jri/libjri-native-osx/libjri-native-osx-macosx-nar.jar" version="0.4-1-20081104.174859-5-s1"/>
|
142
|
+
<nativelib href="org/concord/external/jna/jna-jnidispatch/jna-jnidispatch-macosx-nar.jar" version="3.0.9-s1"/>
|
143
|
+
<nativelib href="org/mozdev/mozswing/mozswing-cocoautils/mozswing-cocoautils-macosx-nar.jar" version="1.0-20080124.063453-1-s1"/>
|
144
|
+
<nativelib href="org/concord/sensor/vernier/vernier-goio/vernier-goio-macosx-nar.jar" version="1.4.0-s1"/>
|
145
|
+
<nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-macosx-nar.jar" version="2.1.7-r2-s1"/>
|
146
|
+
</resources>
|
147
|
+
<application-desc main-class="net.sf.sail.emf.launch.EMFLauncher3">
|
148
|
+
<argument>dummy</argument>
|
149
|
+
</application-desc>
|
150
|
+
</jnlp>
|
@@ -0,0 +1,169 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<jnlp spec="1.0+" codebase="http://jnlp.concord.org/dev" href="http://jnlp.concord.org/dev/org/concord/maven-jnlp/all-otrunk-snapshot/all-otrunk-snapshot-0.1.0-20091221.214313.jnlp">
|
3
|
+
<information>
|
4
|
+
<title>All OTrunk snapshot</title>
|
5
|
+
<vendor>
|
6
|
+
Concord Consortium
|
7
|
+
</vendor>
|
8
|
+
<homepage href="index.html" />
|
9
|
+
<description>
|
10
|
+
Preview Basic Pas
|
11
|
+
</description>
|
12
|
+
<offline-allowed />
|
13
|
+
</information>
|
14
|
+
<security>
|
15
|
+
<all-permissions />
|
16
|
+
</security>
|
17
|
+
<resources os="Mac OS X">
|
18
|
+
<j2se version="1.5" max-heap-size="128m" initial-heap-size="32m" />
|
19
|
+
</resources>
|
20
|
+
<resources>
|
21
|
+
<j2se version="1.5+" max-heap-size="128m" initial-heap-size="32m" />
|
22
|
+
<jar href="org/telscenter/sail-otrunk/sail-otrunk.jar" version="0.1.0-20091028.054139-1083" />
|
23
|
+
<jar href="org/concord/otrunk/otrunk.jar" version="0.1.0-20091110.190131-987" />
|
24
|
+
<jar href="org/concord/framework/framework.jar" version="0.1.0-20091215.203510-351" />
|
25
|
+
<jar href="org/concord/frameworkview/frameworkview.jar" version="0.1.0-20091216.090555-187" />
|
26
|
+
<jar href="org/concord/swing/swing.jar" version="0.1.0-20090923.200009-182" />
|
27
|
+
<jar href="jug/jug/jug.jar" version="1.1.2" />
|
28
|
+
<jar href="jdom/jdom/jdom.jar" version="1.0" />
|
29
|
+
<jar href="org/concord/apple-support/apple-support.jar" version="0.1.0-20090718.040447-120" />
|
30
|
+
<jar href="org/concord/utilities/response-cache/response-cache.jar" version="0.1.0-20091102.172339-21" />
|
31
|
+
<jar href="org/concord/loader/loader.jar" version="0.1.0-20090923.190435-116" />
|
32
|
+
<jar href="net/sf/sail/sail-core/sail-core.jar" version="0.4.5-20091028.123411-1249" />
|
33
|
+
<jar href="commons-beanutils/commons-beanutils/commons-beanutils.jar" version="1.7.0" />
|
34
|
+
<jar href="commons-logging/commons-logging/commons-logging.jar" version="1.0.4" />
|
35
|
+
<jar href="commons-lang/commons-lang/commons-lang.jar" version="2.0" />
|
36
|
+
<jar href="commons-io/commons-io/commons-io.jar" version="1.1" />
|
37
|
+
<jar href="log4j/log4j/log4j.jar" version="1.2.8" />
|
38
|
+
<jar href="rhino/js/js.jar" version="1.5R4.1" />
|
39
|
+
<jar href="script/jsr223/jsr223.jar" version="1.0" />
|
40
|
+
<jar href="xstream/xstream/xstream.jar" version="1.1.2" />
|
41
|
+
<jar href="net/sf/sail/sail-data-emf/sail-data-emf.jar" version="0.1.0-20091028.105311-1281" main="true" />
|
42
|
+
<jar href="org/eclipse/emf/ecore/ecore.jar" version="2.2.0" />
|
43
|
+
<jar href="org/eclipse/emf/common/common.jar" version="2.2.0" />
|
44
|
+
<jar href="org/eclipse/emf/ecore-xmi/ecore-xmi.jar" version="2.2.0" />
|
45
|
+
<jar href="org/concord/portfolio/portfolio.jar" version="0.1.0-20091217.090553-514" />
|
46
|
+
<jar href="org/concord/otrunk-ui/otrunk-ui.jar" version="0.1.0-20091216.170102-733" />
|
47
|
+
<jar href="org/concord/external/sound/jlayer/jlayer.jar" version="1.0" />
|
48
|
+
<jar href="org/concord/external/sound/mp3spi/mp3spi.jar" version="1.9.4" />
|
49
|
+
<jar href="org/concord/external/sound/tritonus/tritonus.jar" version="0.1" />
|
50
|
+
<jar href="org/concord/external/ekit/ekit.jar" version="1.0" />
|
51
|
+
<jar href="org/concord/httpclient/httpclient.jar" version="0.1.0-20080330.082248-19" />
|
52
|
+
<jar href="org/concord/datagraph/datagraph.jar" version="0.1.0-20091110.190309-427" />
|
53
|
+
<jar href="org/concord/data/data.jar" version="0.2.0-20091218.184859-58" />
|
54
|
+
<jar href="org/concord/graphutil/graphutil.jar" version="0.1.0-20091216.092727-343" />
|
55
|
+
<jar href="org/concord/graph/graph.jar" version="0.1.0-20091215.060020-150" />
|
56
|
+
<jar href="org/concord/pedagogica/pedagogica.jar" version="0.1.0-20091216.095039-203" />
|
57
|
+
<jar href="org/concord/collisions/collisions.jar" version="0.1.0-20091219.090328-643" />
|
58
|
+
<jar href="org/concord/math/math.jar" version="0.1.0-20090718.040952-116" />
|
59
|
+
<jar href="org/concord/external/jep/jep.jar" version="1.0" />
|
60
|
+
<jar href="org/concord/external/vecmath/vecmath.jar" version="2.0" />
|
61
|
+
<jar href="org/concord/multimedia/multimedia.jar" version="0.1.0-20091219.090255-631" />
|
62
|
+
<jar href="org/concord/external/animating-card-layout/animating-card-layout.jar" version="1.0" />
|
63
|
+
<jar href="org/concord/otrunk/data-util/data-util.jar" version="0.1.0-20091218.190355-821" />
|
64
|
+
<jar href="org/concord/sensor/sensor.jar" version="0.2.0-20091218.190338-54" />
|
65
|
+
<jar href="org/concord/external/rxtx/rxtx-comm/rxtx-comm.jar" version="2.1.7-r2" />
|
66
|
+
<jar href="org/concord/biologica/biologica.jar" version="0.1.0-20091218.184959-591" />
|
67
|
+
<jar href="org/concord/external/jna/jna-examples/jna-examples.jar" version="0.1.0-20090409.210850-1" />
|
68
|
+
<jar href="org/concord/external/jri/libjri/libjri.jar" version="0.4-1-20081104.174358-4" />
|
69
|
+
<jar href="bsf/bsf/bsf.jar" version="2.4.0" />
|
70
|
+
<jar href="org/concord/external/jna/jna-jws/jna-jws.jar" version="3.0.9" />
|
71
|
+
<jar href="org/concord/otrunk-biologica/otrunk-biologica.jar" version="0.1.0-20091219.091523-793" />
|
72
|
+
<jar href="org/concord/otrunk/ot-script/ot-javascript/ot-javascript.jar" version="0.1.0-20091216.092336-418" />
|
73
|
+
<jar href="org/concord/otrunk/ot-script/ot-script-api/ot-script-api.jar" version="0.1.0-20091216.092005-409" />
|
74
|
+
<jar href="org/concord/otrunk/ot-script/ot-script-view/ot-script-view.jar" version="0.1.0-20091216.092423-379" />
|
75
|
+
<jar href="org/concord/otrunk-mw/otrunk-mw.jar" version="0.1.0-20091218.190602-820" />
|
76
|
+
<jar href="org/concord/modeler/mw/mw.jar" version="2.1.0-20091212.230133-82" />
|
77
|
+
<jar href="org/concord/rtt-applets/rtt-applets.jar" version="0.1.0-20091218.191014-299" />
|
78
|
+
<jar href="org/concord/graph-function/graph-function.jar" version="0.1.0-20091216.090159-223" />
|
79
|
+
<jar href="org/concord/algebra-objects/algebra-objects.jar" version="0.1.0-20091218.190244-280" />
|
80
|
+
<jar href="org/concord/shape-scaler/shape-scaler.jar" version="0.1.0-20091215.091822-137" />
|
81
|
+
<jar href="org/concord/otrunk-nlogo41/otrunk-nlogo41.jar" version="0.1.0-20091218.190924-101" />
|
82
|
+
<jar href="org/concord/nlogo/netlogo4/netlogo4.jar" version="4.1-rc3.1" />
|
83
|
+
<jar href="org/concord/external/log/log4j/log4j.jar" version="1.2.15" />
|
84
|
+
<jar href="org/concord/otrunk/otrunk-phet/otrunk-phet.jar" version="0.1.0-20091216.094804-220" />
|
85
|
+
<jar href="org/concord/external/phet/phetballoons/phetballoons.jar" version="1.0.3" />
|
86
|
+
<jar href="org/concord/external/phet/phetramp/phetramp.jar" version="1.0.0" />
|
87
|
+
<jar href="org/concord/external/phet/phetsound/phetsound.jar" version="1.0.1" />
|
88
|
+
<jar href="org/concord/external/phet/phetdischargelamps/phetdischargelamps.jar" version="1.0.1" />
|
89
|
+
<jar href="org/concord/external/phet/phetfaraday/phetfaraday.jar" version="1.0.3" />
|
90
|
+
<jar href="org/concord/external/phet/phetwave/phetwave.jar" version="1.0.3" />
|
91
|
+
<jar href="org/concord/otrunk-cck/otrunk-cck.jar" version="0.1.0-20091216.091520-484" />
|
92
|
+
<jar href="org/concord/external/phet/phetcck/phetcck.jar" version="1.0.4-20090730.182144-32" />
|
93
|
+
<jar href="org/concord/examples/examples.jar" version="0.1.0-20091220.090306-563" />
|
94
|
+
<jar href="org/concord/function-graph/function-graph.jar" version="0.1.0-20091215.090819-114" />
|
95
|
+
<jar href="org/concord/otrunk/otrunk-velocity/otrunk-velocity.jar" version="0.1.0-20091216.092151-387" />
|
96
|
+
<jar href="org/apache/velocity/velocity/velocity.jar" version="1.5" />
|
97
|
+
<jar href="commons-collections/commons-collections/commons-collections.jar" version="3.1" />
|
98
|
+
<jar href="oro/oro/oro.jar" version="2.0.8" />
|
99
|
+
<jar href="org/apache/velocity/velocity-tools/velocity-tools.jar" version="1.3" />
|
100
|
+
<jar href="commons-digester/commons-digester/commons-digester.jar" version="1.8" />
|
101
|
+
<jar href="commons-validator/commons-validator/commons-validator.jar" version="1.3.1" />
|
102
|
+
<jar href="sslext/sslext/sslext.jar" version="1.2-0" />
|
103
|
+
<jar href="velocity/velocity/velocity.jar" version="1.4" />
|
104
|
+
<jar href="velocity/velocity-dep/velocity-dep.jar" version="1.4" />
|
105
|
+
<jar href="org/concord/otrunk/otrunk-udl/otrunk-udl.jar" version="0.1.0-20091220.090714-1297" />
|
106
|
+
<jar href="org/concord/otrunk-browser/otrunk-browser.jar" version="0.1.0-20091217.091207-531" />
|
107
|
+
<jar href="org/mozdev/mozswing/mozswing-complete/mozswing-complete.jar" version="1.1" />
|
108
|
+
<jar href="org/concord/external/tts/narrator/narrator.jar" version="1.1" />
|
109
|
+
<jar href="org/concord/external/tts/freetts/freetts.jar" version="1.1" />
|
110
|
+
<jar href="org/concord/external/tts/en_us/en_us.jar" version="1.1" />
|
111
|
+
<jar href="org/concord/external/tts/cmutimelex/cmutimelex.jar" version="1.1" />
|
112
|
+
<jar href="org/concord/external/tts/cmulex/cmulex.jar" version="1.1" />
|
113
|
+
<jar href="org/concord/external/tts/cmudict04/cmudict04.jar" version="1.1" />
|
114
|
+
<jar href="org/concord/external/tts/cmu_us_kal/cmu_us_kal.jar" version="1.1" />
|
115
|
+
<jar href="org/concord/external/tts/cmu_time_awb/cmu_time_awb.jar" version="1.1" />
|
116
|
+
<jar href="org/concord/sapi/sapi.jar" version="0.1.0-20090718.042133-4" />
|
117
|
+
<jar href="net/java/com4j/com4j/com4j.jar" version="20080107" />
|
118
|
+
<jar href="org/concord/otrunk/otrunk-swingx/otrunk-swingx.jar" version="0.1.0-20091218.184747-285" />
|
119
|
+
<jar href="org/swinglabs/swingx/swingx.jar" version="0.9.5-2" />
|
120
|
+
<jar href="org/concord/otrunk/otrunk-diy/otrunk-diy.jar" version="0.1.0-20080326.093552-20" />
|
121
|
+
<jar href="org/concord/sensor-native/sensor-native.jar" version="0.1.0-20091218.191104-250" />
|
122
|
+
<jar href="org/concord/sensor/sensor-vernier/sensor-vernier.jar" version="0.2.0-20091218.191047-60" />
|
123
|
+
<jar href="org/concord/sensor/labpro-usb/labpro-usb.jar" version="0.2.0-20090718.041553-5" />
|
124
|
+
<jar href="org/concord/sensor/labquest-jna/labquest-jna.jar" version="0.1.0-20090718.041607-12" />
|
125
|
+
<jar href="org/concord/sensor/sensor-dataharvest/sensor-dataharvest.jar" version="0.1.0-20090827.195540-10" />
|
126
|
+
<jar href="org/concord/ftdi-serial-wrapper/ftdi-serial-wrapper.jar" version="0.1.0-20090718.041452-122" />
|
127
|
+
<jar href="org/concord/otrunk/ot-script/ot-bsf/ot-bsf.jar" version="0.1.0-20091216.092250-422" />
|
128
|
+
<jar href="org/concord/otrunk/ot-script/ot-jruby/ot-jruby.jar" version="0.1.0-20091216.093947-411" />
|
129
|
+
<jar href="org/jruby/jruby-complete/jruby-complete.jar" version="1.1.4" />
|
130
|
+
<jar href="org/concord/otrunk/ot-script/ot-jython/ot-jython.jar" version="0.1.0-20091216.094109-396" />
|
131
|
+
<jar href="org/jython/jython/jython.jar" version="2.2.1-20080311.150247-1" />
|
132
|
+
<jar href="org/concord/otrunk-collisions/otrunk-collisions.jar" version="0.1.0-20091220.090629-632" />
|
133
|
+
<jar href="org/concord/otrunk/otrunk-intrasession/otrunk-intrasession.jar" version="0.1.0-20091219.091625-448" />
|
134
|
+
<jar href="org/concord/utilities/proxy/proxy.jar" version="0.1.0-20091216.094322-29" />
|
135
|
+
<jar href="org/mortbay/jetty/jetty/jetty.jar" version="6.1.20" />
|
136
|
+
<jar href="org/mortbay/jetty/jetty-util/jetty-util.jar" version="6.1.20" />
|
137
|
+
<jar href="org/mortbay/jetty/servlet-api/servlet-api.jar" version="2.5-20081211" />
|
138
|
+
<jar href="org/jdesktop/swing-worker/swing-worker.jar" version="1.1" />
|
139
|
+
<jar href="org/concord/otrunk/otrunk-report-libraries/otrunk-report-libraries.jar" version="0.1.0-20090923.191607-12" />
|
140
|
+
<jar href="org/concord/sensor/sensor-pasco/sensor-pasco.jar" version="0.1.0-20091019.172219-19" />
|
141
|
+
<jar href="org/concord/sensor/pasco-pasport/pasco-pasport.jar" version="0.1.0-20091019.171838-13" />
|
142
|
+
<property name="maven.jnlp.version" value="all-otrunk-snapshot-0.1.0-20091221.214313" />
|
143
|
+
</resources>
|
144
|
+
<resources os="Linux">
|
145
|
+
<nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar.jar" version="2.1.7-r2" />
|
146
|
+
</resources>
|
147
|
+
<resources os="Windows">
|
148
|
+
<nativelib href="org/concord/external/jna/jna-jnidispatch/jna-jnidispatch-win32-nar.jar" version="3.0.9" />
|
149
|
+
<nativelib href="org/concord/external/tts/quadmore/quadmore-win32-nar.jar" version="1.0-20080128.214245-1" />
|
150
|
+
<nativelib href="net/java/com4j/com4j-native/com4j-native-win32-nar.jar" version="20080107" />
|
151
|
+
<nativelib href="org/concord/sensor/vernier/vernier-goio/vernier-goio-win32-nar.jar" version="1.4.0" />
|
152
|
+
<nativelib href="org/concord/sensor/labpro-usb-native/labpro-usb-native-win32-nar.jar" version="0.2.0-20090323.155823-1" />
|
153
|
+
<nativelib href="org/concord/ftdi-serial-wrapper-native/ftdi-serial-wrapper-native-win32-nar.jar" version="0.1.0-20070303.181906-4" />
|
154
|
+
<nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-win32-nar.jar" version="2.1.7-r2" />
|
155
|
+
<nativelib href="org/concord/sensor/ti/ti-cbl/ti-cbl-win32-nar.jar" version="0.1.1" />
|
156
|
+
</resources>
|
157
|
+
<resources os="Mac OS X">
|
158
|
+
<nativelib href="org/concord/external/jri/libjri-native-osx/libjri-native-osx-macosx-nar.jar" version="0.4-1-20081104.174859-5" />
|
159
|
+
<nativelib href="org/concord/external/jna/jna-jnidispatch/jna-jnidispatch-macosx-nar.jar" version="3.0.9" />
|
160
|
+
<nativelib href="org/mozdev/mozswing/mozswing-cocoautils/mozswing-cocoautils-macosx-nar.jar" version="1.0-20080124.063453-1" />
|
161
|
+
<nativelib href="org/concord/sensor/vernier/vernier-goio/vernier-goio-macosx-nar.jar" version="1.4.0" />
|
162
|
+
<nativelib href="org/concord/external/rxtx/rxtx-serial/rxtx-serial-macosx-nar.jar" version="2.1.7-r2" />
|
163
|
+
</resources>
|
164
|
+
<application-desc main-class="net.sf.sail.emf.launch.EMFLauncher3">
|
165
|
+
<argument>
|
166
|
+
dummy
|
167
|
+
</argument>
|
168
|
+
</application-desc>
|
169
|
+
</jnlp>
|
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0-20091221.214313
|
@@ -0,0 +1,180 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>Directory Listing For /org/concord/maven-jnlp/</title>
|
4
|
+
<STYLE><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></STYLE> </head>
|
5
|
+
<body><h1>Directory Listing For /org/concord/maven-jnlp/ - <a href="/dev/org/concord/"><b>Up To /org/concord</b></a></h1><HR size="1" noshade="noshade"><table width="100%" cellspacing="0" cellpadding="5" align="center">
|
6
|
+
<tr>
|
7
|
+
<td align="left"><font size="+1"><strong>Filename</strong></font></td>
|
8
|
+
<td align="center"><font size="+1"><strong>Size</strong></font></td>
|
9
|
+
<td align="right"><font size="+1"><strong>Last Modified</strong></font></td>
|
10
|
+
</tr><tr>
|
11
|
+
<td align="left">
|
12
|
+
<a href="/dev/org/concord/maven-jnlp/all-otrunk-snapshot/"><tt>all-otrunk-snapshot/</tt></a></td>
|
13
|
+
<td align="right"><tt> </tt></td>
|
14
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:01 GMT</tt></td>
|
15
|
+
</tr>
|
16
|
+
<tr bgcolor="#eeeeee">
|
17
|
+
<td align="left">
|
18
|
+
<a href="/dev/org/concord/maven-jnlp/all-otrunk-snapshot-with-installer/"><tt>all-otrunk-snapshot-with-installer/</tt></a></td>
|
19
|
+
<td align="right"><tt> </tt></td>
|
20
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:03 GMT</tt></td>
|
21
|
+
</tr>
|
22
|
+
<tr>
|
23
|
+
<td align="left">
|
24
|
+
<a href="/dev/org/concord/maven-jnlp/capa-measuring-resistance/"><tt>capa-measuring-resistance/</tt></a></td>
|
25
|
+
<td align="right"><tt> </tt></td>
|
26
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:07 GMT</tt></td>
|
27
|
+
</tr>
|
28
|
+
<tr bgcolor="#eeeeee">
|
29
|
+
<td align="left">
|
30
|
+
<a href="/dev/org/concord/maven-jnlp/capa-otrunk/"><tt>capa-otrunk/</tt></a></td>
|
31
|
+
<td align="right"><tt> </tt></td>
|
32
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:18 GMT</tt></td>
|
33
|
+
</tr>
|
34
|
+
<tr>
|
35
|
+
<td align="left">
|
36
|
+
<a href="/dev/org/concord/maven-jnlp/er-otrunk/"><tt>er-otrunk/</tt></a></td>
|
37
|
+
<td align="right"><tt> </tt></td>
|
38
|
+
<td align="right"><tt>Fri, 15 May 2009 19:28:08 GMT</tt></td>
|
39
|
+
</tr>
|
40
|
+
<tr bgcolor="#eeeeee">
|
41
|
+
<td align="left">
|
42
|
+
<a href="/dev/org/concord/maven-jnlp/itsi-otrunk/"><tt>itsi-otrunk/</tt></a></td>
|
43
|
+
<td align="right"><tt> </tt></td>
|
44
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:25 GMT</tt></td>
|
45
|
+
</tr>
|
46
|
+
<tr>
|
47
|
+
<td align="left">
|
48
|
+
<a href="/dev/org/concord/maven-jnlp/java-checker/"><tt>java-checker/</tt></a></td>
|
49
|
+
<td align="right"><tt> </tt></td>
|
50
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:27 GMT</tt></td>
|
51
|
+
</tr>
|
52
|
+
<tr bgcolor="#eeeeee">
|
53
|
+
<td align="left">
|
54
|
+
<a href="/dev/org/concord/maven-jnlp/jnlp-servlet-mirror/"><tt>jnlp-servlet-mirror/</tt></a></td>
|
55
|
+
<td align="right"><tt> </tt></td>
|
56
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:26 GMT</tt></td>
|
57
|
+
</tr>
|
58
|
+
<tr>
|
59
|
+
<td align="left">
|
60
|
+
<a href="/dev/org/concord/maven-jnlp/loops-otrunk/"><tt>loops-otrunk/</tt></a></td>
|
61
|
+
<td align="right"><tt> </tt></td>
|
62
|
+
<td align="right"><tt>Fri, 15 May 2009 19:27:13 GMT</tt></td>
|
63
|
+
</tr>
|
64
|
+
<tr bgcolor="#eeeeee">
|
65
|
+
<td align="left">
|
66
|
+
<a href="/dev/org/concord/maven-jnlp/loops-pas-otrunk/"><tt>loops-pas-otrunk/</tt></a></td>
|
67
|
+
<td align="right"><tt> </tt></td>
|
68
|
+
<td align="right"><tt>Fri, 15 May 2009 19:27:56 GMT</tt></td>
|
69
|
+
</tr>
|
70
|
+
<tr>
|
71
|
+
<td align="left">
|
72
|
+
<a href="/dev/org/concord/maven-jnlp/loops-pas-otrunk-authoring/"><tt>loops-pas-otrunk-authoring/</tt></a></td>
|
73
|
+
<td align="right"><tt> </tt></td>
|
74
|
+
<td align="right"><tt>Fri, 15 May 2009 19:28:08 GMT</tt></td>
|
75
|
+
</tr>
|
76
|
+
<tr bgcolor="#eeeeee">
|
77
|
+
<td align="left">
|
78
|
+
<a href="/dev/org/concord/maven-jnlp/otrunk-authoring-standalone/"><tt>otrunk-authoring-standalone/</tt></a></td>
|
79
|
+
<td align="right"><tt> </tt></td>
|
80
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:04 GMT</tt></td>
|
81
|
+
</tr>
|
82
|
+
<tr>
|
83
|
+
<td align="left">
|
84
|
+
<a href="/dev/org/concord/maven-jnlp/otrunk-jackrabbit-test/"><tt>otrunk-jackrabbit-test/</tt></a></td>
|
85
|
+
<td align="right"><tt> </tt></td>
|
86
|
+
<td align="right"><tt>Fri, 15 May 2009 19:27:12 GMT</tt></td>
|
87
|
+
</tr>
|
88
|
+
<tr bgcolor="#eeeeee">
|
89
|
+
<td align="left">
|
90
|
+
<a href="/dev/org/concord/maven-jnlp/otrunk-learner-standalone/"><tt>otrunk-learner-standalone/</tt></a></td>
|
91
|
+
<td align="right"><tt> </tt></td>
|
92
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:05 GMT</tt></td>
|
93
|
+
</tr>
|
94
|
+
<tr>
|
95
|
+
<td align="left">
|
96
|
+
<a href="/dev/org/concord/maven-jnlp/otrunk-sensor/"><tt>otrunk-sensor/</tt></a></td>
|
97
|
+
<td align="right"><tt> </tt></td>
|
98
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:03 GMT</tt></td>
|
99
|
+
</tr>
|
100
|
+
<tr bgcolor="#eeeeee">
|
101
|
+
<td align="left">
|
102
|
+
<a href="/dev/org/concord/maven-jnlp/ri-itest-authoring/"><tt>ri-itest-authoring/</tt></a></td>
|
103
|
+
<td align="right"><tt> </tt></td>
|
104
|
+
<td align="right"><tt>Fri, 15 May 2009 19:27:13 GMT</tt></td>
|
105
|
+
</tr>
|
106
|
+
<tr>
|
107
|
+
<td align="left">
|
108
|
+
<a href="/dev/org/concord/maven-jnlp/ri-itest-report/"><tt>ri-itest-report/</tt></a></td>
|
109
|
+
<td align="right"><tt> </tt></td>
|
110
|
+
<td align="right"><tt>Fri, 15 May 2009 19:27:13 GMT</tt></td>
|
111
|
+
</tr>
|
112
|
+
<tr bgcolor="#eeeeee">
|
113
|
+
<td align="left">
|
114
|
+
<a href="/dev/org/concord/maven-jnlp/ri-itest-sds/"><tt>ri-itest-sds/</tt></a></td>
|
115
|
+
<td align="right"><tt> </tt></td>
|
116
|
+
<td align="right"><tt>Fri, 15 May 2009 19:27:13 GMT</tt></td>
|
117
|
+
</tr>
|
118
|
+
<tr>
|
119
|
+
<td align="left">
|
120
|
+
<a href="/dev/org/concord/maven-jnlp/sail-otrunk-diy-snapshot/"><tt>sail-otrunk-diy-snapshot/</tt></a></td>
|
121
|
+
<td align="right"><tt> </tt></td>
|
122
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:07 GMT</tt></td>
|
123
|
+
</tr>
|
124
|
+
<tr bgcolor="#eeeeee">
|
125
|
+
<td align="left">
|
126
|
+
<a href="/dev/org/concord/maven-jnlp/sail-otrunk-snapshot/"><tt>sail-otrunk-snapshot/</tt></a></td>
|
127
|
+
<td align="right"><tt> </tt></td>
|
128
|
+
<td align="right"><tt>Fri, 15 May 2009 19:24:34 GMT</tt></td>
|
129
|
+
</tr>
|
130
|
+
<tr>
|
131
|
+
<td align="left">
|
132
|
+
<a href="/dev/org/concord/maven-jnlp/sail-otrunk-teemss2-diy-snapshot/"><tt>sail-otrunk-teemss2-diy-snapshot/</tt></a></td>
|
133
|
+
<td align="right"><tt> </tt></td>
|
134
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:07 GMT</tt></td>
|
135
|
+
</tr>
|
136
|
+
<tr bgcolor="#eeeeee">
|
137
|
+
<td align="left">
|
138
|
+
<a href="/dev/org/concord/maven-jnlp/teemss2-dh-snapshot/"><tt>teemss2-dh-snapshot/</tt></a></td>
|
139
|
+
<td align="right"><tt> </tt></td>
|
140
|
+
<td align="right"><tt>Fri, 15 May 2009 19:24:24 GMT</tt></td>
|
141
|
+
</tr>
|
142
|
+
<tr>
|
143
|
+
<td align="left">
|
144
|
+
<a href="/dev/org/concord/maven-jnlp/teemss2-dh-student/"><tt>teemss2-dh-student/</tt></a></td>
|
145
|
+
<td align="right"><tt> </tt></td>
|
146
|
+
<td align="right"><tt>Fri, 15 May 2009 19:24:24 GMT</tt></td>
|
147
|
+
</tr>
|
148
|
+
<tr bgcolor="#eeeeee">
|
149
|
+
<td align="left">
|
150
|
+
<a href="/dev/org/concord/maven-jnlp/teemss2-snapshot/"><tt>teemss2-snapshot/</tt></a></td>
|
151
|
+
<td align="right"><tt> </tt></td>
|
152
|
+
<td align="right"><tt>Fri, 15 May 2009 19:24:21 GMT</tt></td>
|
153
|
+
</tr>
|
154
|
+
<tr>
|
155
|
+
<td align="left">
|
156
|
+
<a href="/dev/org/concord/maven-jnlp/udl-otrunk/"><tt>udl-otrunk/</tt></a></td>
|
157
|
+
<td align="right"><tt> </tt></td>
|
158
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:18 GMT</tt></td>
|
159
|
+
</tr>
|
160
|
+
<tr bgcolor="#eeeeee">
|
161
|
+
<td align="left">
|
162
|
+
<a href="/dev/org/concord/maven-jnlp/udl-otrunk-authoring/"><tt>udl-otrunk-authoring/</tt></a></td>
|
163
|
+
<td align="right"><tt> </tt></td>
|
164
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:19 GMT</tt></td>
|
165
|
+
</tr>
|
166
|
+
<tr>
|
167
|
+
<td align="left">
|
168
|
+
<a href="/dev/org/concord/maven-jnlp/udl-otrunk-report/"><tt>udl-otrunk-report/</tt></a></td>
|
169
|
+
<td align="right"><tt> </tt></td>
|
170
|
+
<td align="right"><tt>Fri, 15 May 2009 19:26:23 GMT</tt></td>
|
171
|
+
</tr>
|
172
|
+
<tr bgcolor="#eeeeee">
|
173
|
+
<td align="left">
|
174
|
+
<a href="/dev/org/concord/maven-jnlp/web-start-fix/"><tt>web-start-fix/</tt></a></td>
|
175
|
+
<td align="right"><tt> </tt></td>
|
176
|
+
<td align="right"><tt>Fri, 15 May 2009 19:28:09 GMT</tt></td>
|
177
|
+
</tr>
|
178
|
+
</table>
|
179
|
+
<HR size="1" noshade="noshade"><h3>Apache Tomcat/5.0.27</h3></body>
|
180
|
+
</html>
|
data/spec/jnlp_spec.rb
ADDED
@@ -0,0 +1,151 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
|
3
|
+
describe Jnlp do
|
4
|
+
before(:all) do
|
5
|
+
@first_jnlp_path = File.join(File.dirname(__FILE__), 'fixtures', 'all-otrunk-snapshot-0.1.0-20091221.214313.jnlp')
|
6
|
+
@gem_dir = File.expand_path(File.dirname(__FILE__))
|
7
|
+
@first_jnlp = Jnlp::Jnlp.new(@first_jnlp_path)
|
8
|
+
@first_jar = @first_jnlp.jars.first
|
9
|
+
@last_jar = @first_jnlp.jars[-1]
|
10
|
+
@rhino_javascript_jar = @first_jnlp.jars.find { |jar| jar.name == 'js' }
|
11
|
+
@first_nativelib = @first_jnlp.nativelibs.first
|
12
|
+
@last_nativelib = @first_jnlp.nativelibs[-1]
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should be named all-otrunk-snapshot-0.1.0-20091221.214313.jnlp" do
|
16
|
+
@first_jnlp.name.should == 'all-otrunk-snapshot-0.1.0-20091221.214313.jnlp'
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should have an offline_allowed attribute with the value true" do
|
20
|
+
@first_jnlp.offline_allowed.should == true
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should have a title of 'All OTrunk snapshot'" do
|
24
|
+
@first_jnlp.title.should == 'All OTrunk snapshot'
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should have an spec attribute with the value '1.0+'" do
|
28
|
+
@first_jnlp.spec.should == '1.0+'
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should have an argument attribute with the value 'dummy" do
|
32
|
+
@first_jnlp.argument.should == 'dummy'
|
33
|
+
end
|
34
|
+
|
35
|
+
it "should have an codebase attribute with the value 'http://jnlp.concord.org/dev'" do
|
36
|
+
@first_jnlp.codebase.should == 'http://jnlp.concord.org/dev'
|
37
|
+
end
|
38
|
+
|
39
|
+
it "should have an main_class attribute with the value 'net.sf.sail.emf.launch.EMFLauncher3'" do
|
40
|
+
@first_jnlp.main_class.should == 'net.sf.sail.emf.launch.EMFLauncher3'
|
41
|
+
end
|
42
|
+
|
43
|
+
it "should have an initial_heap_size attribute with the value '32m'" do
|
44
|
+
@first_jnlp.initial_heap_size.should == '32m'
|
45
|
+
end
|
46
|
+
|
47
|
+
it "should have an href attribute with the value 'http://jnlp.concord.org/dev/org/concord/maven-jnlp/all-otrunk-snapshot/all-otrunk-snapshot-0.1.0-20091221.214313.jnlp'" do
|
48
|
+
@first_jnlp.href.should == 'http://jnlp.concord.org/dev/org/concord/maven-jnlp/all-otrunk-snapshot/all-otrunk-snapshot-0.1.0-20091221.214313.jnlp'
|
49
|
+
end
|
50
|
+
|
51
|
+
it "should have an path attribute with the value #{@first_jnlp_path}" do
|
52
|
+
@first_jnlp.path.should == @first_jnlp_path
|
53
|
+
end
|
54
|
+
|
55
|
+
it "should have an max_heap_size attribute with the value '128m'" do
|
56
|
+
@first_jnlp.max_heap_size.should == '128m'
|
57
|
+
end
|
58
|
+
|
59
|
+
it "should have an j2se_version attribute with the value '1.5+'" do
|
60
|
+
@first_jnlp.j2se_version.should == '1.5+'
|
61
|
+
end
|
62
|
+
|
63
|
+
it "should have an j2se_version attribute with the value '1.5 if mac_os_x is specified'" do
|
64
|
+
@first_jnlp.j2se_version('mac_os_x').should == '1.5'
|
65
|
+
end
|
66
|
+
|
67
|
+
it "should have an vendor attribute with the value 'Concord Consortium'" do
|
68
|
+
@first_jnlp.vendor.should == 'Concord Consortium'
|
69
|
+
end
|
70
|
+
|
71
|
+
it "should have an description attribute with the value 'Preview Basic Pas'" do
|
72
|
+
@first_jnlp.description.should == 'Preview Basic Pas'
|
73
|
+
end
|
74
|
+
|
75
|
+
it "should have an local_jnlp_name attribute with the value 'local-all-otrunk-snapshot-0.1.0-20091221.214313.jnlp'" do
|
76
|
+
@first_jnlp.local_jnlp_name.should == 'local-all-otrunk-snapshot-0.1.0-20091221.214313.jnlp'
|
77
|
+
end
|
78
|
+
|
79
|
+
it "should have an local_jnlp_href attribute" do
|
80
|
+
@first_jnlp.local_jnlp_href == "#{@gem_dir}/spec/fixtures/#{@first_jnlp.local_jnlp_name}"
|
81
|
+
end
|
82
|
+
|
83
|
+
it "should have one property with the name: 'maven.jnlp.version' and the value 'all-otrunk-snapshot-0.1.0-20091221.214313.jnlp'" do
|
84
|
+
@first_jnlp.properties.length.should == 1
|
85
|
+
@first_jnlp.properties.first.name.should == 'maven.jnlp.version'
|
86
|
+
@first_jnlp.properties.first.value.should == 'all-otrunk-snapshot-0.1.0-20091221.214313'
|
87
|
+
end
|
88
|
+
|
89
|
+
it "should have 67 jars" do
|
90
|
+
@first_jnlp.jars.length == 67
|
91
|
+
end
|
92
|
+
|
93
|
+
# <jar href="org/concord/loader/loader.jar" version="0.1.0-20070419.035822-17"/>
|
94
|
+
|
95
|
+
it "first jar should have the correct attributes" do
|
96
|
+
@first_jar.filename_pack.should == 'sail-otrunk__V0.1.0-20091028.054139-1083.jar.pack'
|
97
|
+
@first_jar.href.should == 'org/telscenter/sail-otrunk/sail-otrunk.jar'
|
98
|
+
|
99
|
+
@first_jar.version.should == '0.1.0'
|
100
|
+
@first_jar.revision.should == 1083
|
101
|
+
@first_jar.certificate_version.should == ''
|
102
|
+
@first_jar.date_str.should == '20091028.054139'
|
103
|
+
@first_jar.date_time.should == DateTime.parse("2009-10-28T05:41:39Z")
|
104
|
+
|
105
|
+
@first_jar.href_path.should == 'org/telscenter/sail-otrunk/'
|
106
|
+
@first_jar.url.should == 'http://jnlp.concord.org/dev/org/telscenter/sail-otrunk/sail-otrunk.jar?version-id=0.1.0-20091028.054139-1083'
|
107
|
+
@first_jar.url_pack_gz.should == 'http://jnlp.concord.org/dev/org/telscenter/sail-otrunk/sail-otrunk__V0.1.0-20091028.054139-1083.jar.pack.gz'
|
108
|
+
|
109
|
+
@first_jar.kind.should == 'jar'
|
110
|
+
|
111
|
+
@first_jar.name.should == 'sail-otrunk'
|
112
|
+
@first_jar.os.should == nil
|
113
|
+
@first_jar.suffix.should == '__V0.1.0-20091028.054139-1083.jar'
|
114
|
+
@first_jar.filename.should == 'sail-otrunk__V0.1.0-20091028.054139-1083.jar'
|
115
|
+
@first_jar.filename_pack_gz.should == 'sail-otrunk__V0.1.0-20091028.054139-1083.jar.pack.gz'
|
116
|
+
end
|
117
|
+
|
118
|
+
|
119
|
+
it "rhino javascript jar should have the correct version and revision attributes" do
|
120
|
+
@rhino_javascript_jar.version.should == '1.5'
|
121
|
+
@rhino_javascript_jar.revision.should == 4
|
122
|
+
end
|
123
|
+
|
124
|
+
it "should have 2 native libraries" do
|
125
|
+
@first_jnlp.nativelibs.length == 2
|
126
|
+
end
|
127
|
+
|
128
|
+
it "first nativelib should have the correct attributes" do
|
129
|
+
@first_nativelib.filename_pack.should == 'rxtx-serial-linux-nar__V2.1.7-r2.jar.pack'
|
130
|
+
@first_nativelib.href.should == 'org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar.jar'
|
131
|
+
|
132
|
+
@first_nativelib.version.should == '2.1.7'
|
133
|
+
@first_nativelib.revision.should == 2
|
134
|
+
@first_nativelib.certificate_version.should == ''
|
135
|
+
@first_nativelib.date_str.should == ''
|
136
|
+
@first_nativelib.date_time.should == nil
|
137
|
+
|
138
|
+
@first_nativelib.href_path.should == 'org/concord/external/rxtx/rxtx-serial/'
|
139
|
+
@first_nativelib.url.should == 'http://jnlp.concord.org/dev/org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar.jar?version-id=2.1.7-r2'
|
140
|
+
@first_nativelib.url_pack_gz.should == 'http://jnlp.concord.org/dev/org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar__V2.1.7-r2.jar.pack.gz'
|
141
|
+
|
142
|
+
@first_nativelib.kind.should == 'nativelib'
|
143
|
+
|
144
|
+
@first_nativelib.name.should == 'rxtx-serial-linux-nar'
|
145
|
+
@first_nativelib.os.should == 'linux'
|
146
|
+
@first_nativelib.suffix.should == '__V2.1.7-r2.jar'
|
147
|
+
@first_nativelib.filename.should == 'rxtx-serial-linux-nar__V2.1.7-r2.jar'
|
148
|
+
@first_nativelib.filename_pack_gz.should == 'rxtx-serial-linux-nar__V2.1.7-r2.jar.pack.gz'
|
149
|
+
|
150
|
+
end
|
151
|
+
end
|
@@ -0,0 +1,141 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
|
3
|
+
describe Jnlp do
|
4
|
+
before(:all) do
|
5
|
+
@jnlp_with_certficate_versions_path = File.join(File.dirname(__FILE__), 'fixtures', 'all-otrunk-snapshot-0.1.0-20090624.030355.jnlp')
|
6
|
+
@jnlp_with_certficate_versions = Jnlp::Jnlp.new(@jnlp_with_certficate_versions_path)
|
7
|
+
@gem_dir = File.expand_path(File.dirname(__FILE__))
|
8
|
+
@first_jar = @jnlp_with_certficate_versions.jars.first
|
9
|
+
@last_jar = @jnlp_with_certficate_versions.jars[-1]
|
10
|
+
@first_nativelib = @jnlp_with_certficate_versions.nativelibs.first
|
11
|
+
@last_nativelib = @jnlp_with_certficate_versions.nativelibs[-1]
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should be named all-otrunk-snapshot-0.1.0-20090624.030355.jnlp" do
|
15
|
+
@jnlp_with_certficate_versions.name.should == 'all-otrunk-snapshot-0.1.0-20090624.030355.jnlp'
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should have an offline_allowed attribute with the value true" do
|
19
|
+
@jnlp_with_certficate_versions.offline_allowed.should == true
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should have a title of 'All OTrunk snapshot'" do
|
23
|
+
@jnlp_with_certficate_versions.title.should == 'All OTrunk snapshot'
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should have an spec attribute with the value '1.0+'" do
|
27
|
+
@jnlp_with_certficate_versions.spec.should == '1.0+'
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should have an argument attribute with the value 'dummy" do
|
31
|
+
@jnlp_with_certficate_versions.argument.should == 'dummy'
|
32
|
+
end
|
33
|
+
|
34
|
+
it "should have an codebase attribute with the value 'http://jnlp.concord.org/dev'" do
|
35
|
+
@jnlp_with_certficate_versions.codebase.should == 'http://jnlp.concord.org/dev'
|
36
|
+
end
|
37
|
+
|
38
|
+
it "should have an main_class attribute with the value 'net.sf.sail.emf.launch.EMFLauncher3'" do
|
39
|
+
@jnlp_with_certficate_versions.main_class.should == 'net.sf.sail.emf.launch.EMFLauncher3'
|
40
|
+
end
|
41
|
+
|
42
|
+
it "should have an initial_heap_size attribute with the value '32m'" do
|
43
|
+
@jnlp_with_certficate_versions.initial_heap_size.should == '32m'
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should have an href attribute with the value 'http://jnlp.concord.org/dev/org/concord/maven-jnlp/all-otrunk-snapshot/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp'" do
|
47
|
+
@jnlp_with_certficate_versions.href.should == 'http://jnlp.concord.org/dev/org/concord/maven-jnlp/all-otrunk-snapshot/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp'
|
48
|
+
end
|
49
|
+
|
50
|
+
it "should have a path attribute with the value #{@jnlp_with_certficate_versions_path}" do
|
51
|
+
@jnlp_with_certficate_versions.path.should == @jnlp_with_certficate_versions_path
|
52
|
+
end
|
53
|
+
|
54
|
+
it "should have an max_heap_size attribute with the value '128m'" do
|
55
|
+
@jnlp_with_certficate_versions.max_heap_size.should == '128m'
|
56
|
+
end
|
57
|
+
|
58
|
+
it "should have an j2se_version attribute with the value '1.5+'" do
|
59
|
+
@jnlp_with_certficate_versions.j2se_version.should == '1.5+'
|
60
|
+
end
|
61
|
+
|
62
|
+
it "should have an vendor attribute with the value 'Concord Consortium'" do
|
63
|
+
@jnlp_with_certficate_versions.vendor.should == 'Concord Consortium'
|
64
|
+
end
|
65
|
+
|
66
|
+
it "should have an description attribute with the value 'Preview Basic Pas'" do
|
67
|
+
@jnlp_with_certficate_versions.description.should == 'Preview Basic Pas'
|
68
|
+
end
|
69
|
+
|
70
|
+
it "should have an local_jnlp_name attribute with the value 'local-all-otrunk-snapshot-0.1.0-20090624.030355.jnlp'" do
|
71
|
+
@jnlp_with_certficate_versions.local_jnlp_name.should == 'local-all-otrunk-snapshot-0.1.0-20090624.030355.jnlp'
|
72
|
+
end
|
73
|
+
|
74
|
+
it "should have an local_jnlp_href attribute" do
|
75
|
+
@jnlp_with_certficate_versions.local_jnlp_href == "#{@gem_dir}/spec/fixtures/#{@jnlp_with_certficate_versions.local_jnlp_name}"
|
76
|
+
end
|
77
|
+
|
78
|
+
it "should have one property with the name: 'maven.jnlp.version' and the value 'all-otrunk-snapshot-0.1.0-20090624.030355'" do
|
79
|
+
@jnlp_with_certficate_versions.properties.length.should == 1
|
80
|
+
@jnlp_with_certficate_versions.properties.first.name.should == 'maven.jnlp.version'
|
81
|
+
@jnlp_with_certficate_versions.properties.first.value.should == 'all-otrunk-snapshot-0.1.0-20090624.030355'
|
82
|
+
end
|
83
|
+
|
84
|
+
it "should have 67 jars" do
|
85
|
+
@jnlp_with_certficate_versions.jars.length == 67
|
86
|
+
end
|
87
|
+
|
88
|
+
it "should have 2 native libraries" do
|
89
|
+
@jnlp_with_certficate_versions.nativelibs.length == 2
|
90
|
+
end
|
91
|
+
|
92
|
+
"2009-06-24T01:10:56Z"
|
93
|
+
|
94
|
+
# <jar href="org/telscenter/sail-otrunk/sail-otrunk.jar" version="0.1.0-20090624.011056-1033-s1"/>
|
95
|
+
|
96
|
+
it "first jar should have the correct attributes" do
|
97
|
+
@first_jar.filename_pack.should == 'sail-otrunk__V0.1.0-20090624.011056-1033-s1.jar.pack'
|
98
|
+
@first_jar.href.should == 'org/telscenter/sail-otrunk/sail-otrunk.jar'
|
99
|
+
|
100
|
+
@first_jar.version.should == '0.1.0'
|
101
|
+
@first_jar.revision.should == 1033
|
102
|
+
@first_jar.certificate_version.should == 's1'
|
103
|
+
@first_jar.date_str.should == '20090624.011056'
|
104
|
+
@first_jar.date_time.should == DateTime.parse("2009-06-24T01:10:56Z")
|
105
|
+
|
106
|
+
@first_jar.href_path.should == 'org/telscenter/sail-otrunk/'
|
107
|
+
@first_jar.url.should == 'http://jnlp.concord.org/dev/org/telscenter/sail-otrunk/sail-otrunk.jar?version-id=0.1.0-20090624.011056-1033-s1'
|
108
|
+
@first_jar.url_pack_gz.should == 'http://jnlp.concord.org/dev/org/telscenter/sail-otrunk/sail-otrunk__V0.1.0-20090624.011056-1033-s1.jar.pack.gz'
|
109
|
+
|
110
|
+
@first_jar.kind.should == 'jar'
|
111
|
+
|
112
|
+
@first_jar.name.should == 'sail-otrunk'
|
113
|
+
@first_jar.os.should == nil
|
114
|
+
@first_jar.suffix.should == '__V0.1.0-20090624.011056-1033-s1.jar'
|
115
|
+
@first_jar.filename.should == 'sail-otrunk__V0.1.0-20090624.011056-1033-s1.jar'
|
116
|
+
@first_jar.filename_pack_gz.should == 'sail-otrunk__V0.1.0-20090624.011056-1033-s1.jar.pack.gz'
|
117
|
+
|
118
|
+
end
|
119
|
+
|
120
|
+
it "first nativelib should have the correct attributes" do
|
121
|
+
@first_nativelib.filename_pack.should == 'rxtx-serial-linux-nar__V2.1.7-r2-s1.jar.pack'
|
122
|
+
@first_nativelib.href.should == 'org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar.jar'
|
123
|
+
@first_nativelib.version.should == '2.1.7'
|
124
|
+
@first_nativelib.revision.should == 2
|
125
|
+
@first_nativelib.certificate_version.should == 's1'
|
126
|
+
@first_nativelib.date_str.should == ''
|
127
|
+
@first_nativelib.date_time.should == nil
|
128
|
+
@first_nativelib.href_path.should == 'org/concord/external/rxtx/rxtx-serial/'
|
129
|
+
@first_nativelib.url.should == 'http://jnlp.concord.org/dev/org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar.jar?version-id=2.1.7-r2-s1'
|
130
|
+
@first_nativelib.url_pack_gz.should == 'http://jnlp.concord.org/dev/org/concord/external/rxtx/rxtx-serial/rxtx-serial-linux-nar__V2.1.7-r2-s1.jar.pack.gz'
|
131
|
+
|
132
|
+
@first_nativelib.kind.should == 'nativelib'
|
133
|
+
|
134
|
+
@first_nativelib.name.should == 'rxtx-serial-linux-nar'
|
135
|
+
@first_nativelib.os.should == 'linux'
|
136
|
+
@first_nativelib.suffix.should == '__V2.1.7-r2-s1.jar'
|
137
|
+
@first_nativelib.filename.should == 'rxtx-serial-linux-nar__V2.1.7-r2-s1.jar'
|
138
|
+
@first_nativelib.filename_pack_gz.should == 'rxtx-serial-linux-nar__V2.1.7-r2-s1.jar.pack.gz'
|
139
|
+
|
140
|
+
end
|
141
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
@@ -1,37 +1,37 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jnlp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.5.
|
4
|
+
version: 0.0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Stephen Bannasch
|
7
|
+
- Stephen Bannasch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-12-23 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
|
-
- !ruby/object:Gem::Dependency
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: hpricot
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - "="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.6.164
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: hoe
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.4.0
|
34
|
+
version:
|
35
35
|
description: For manipulation of Java Web Start Jnlps and the resources they reference.
|
36
36
|
email: stephen.bannasch@gmail.com
|
37
37
|
executables: []
|
@@ -39,69 +39,73 @@ executables: []
|
|
39
39
|
extensions: []
|
40
40
|
|
41
41
|
extra_rdoc_files:
|
42
|
-
- History.txt
|
43
|
-
- License.txt
|
44
|
-
- Manifest.txt
|
45
|
-
- README.txt
|
46
|
-
- website/index.txt
|
42
|
+
- History.txt
|
43
|
+
- License.txt
|
44
|
+
- Manifest.txt
|
45
|
+
- README.txt
|
46
|
+
- website/index.txt
|
47
47
|
files:
|
48
|
-
- History.txt
|
49
|
-
- License.txt
|
50
|
-
- Manifest.txt
|
51
|
-
- README.txt
|
52
|
-
- Rakefile
|
53
|
-
- config/hoe.rb
|
54
|
-
- config/requirements.rb
|
55
|
-
- lib/jnlp.rb
|
56
|
-
- lib/jnlp/version.rb
|
57
|
-
- lib/jnlp/jnlp.rb
|
58
|
-
- lib/jnlp/otrunk.rb
|
59
|
-
- lib/jnlp/maven_jnlp.rb
|
60
|
-
-
|
61
|
-
- script/
|
62
|
-
- script/
|
63
|
-
- script/
|
64
|
-
-
|
65
|
-
-
|
66
|
-
-
|
67
|
-
-
|
68
|
-
-
|
69
|
-
-
|
70
|
-
-
|
71
|
-
-
|
72
|
-
-
|
73
|
-
-
|
74
|
-
- website
|
75
|
-
- website/
|
48
|
+
- History.txt
|
49
|
+
- License.txt
|
50
|
+
- Manifest.txt
|
51
|
+
- README.txt
|
52
|
+
- Rakefile
|
53
|
+
- config/hoe.rb
|
54
|
+
- config/requirements.rb
|
55
|
+
- lib/jnlp.rb
|
56
|
+
- lib/jnlp/version.rb
|
57
|
+
- lib/jnlp/jnlp.rb
|
58
|
+
- lib/jnlp/otrunk.rb
|
59
|
+
- lib/jnlp/maven_jnlp.rb
|
60
|
+
- script/console
|
61
|
+
- script/destroy
|
62
|
+
- script/generate
|
63
|
+
- script/txt2html
|
64
|
+
- setup.rb
|
65
|
+
- spec/jnlp_spec.rb
|
66
|
+
- spec/jnlp_with_certficate_versions_spec.rb
|
67
|
+
- spec/spec_helper.rb
|
68
|
+
- spec/fixtures/all-otrunk-snapshot-0.1.0-20090624.030355.jnlp
|
69
|
+
- spec/fixtures/all-otrunk-snapshot-CURRENT_VERSION.txt
|
70
|
+
- spec/fixtures/all-otrunk-snapshot-0.1.0-20091221.214313.jnlp
|
71
|
+
- spec/fixtures/maven-jnlp.html
|
72
|
+
- tasks/deployment.rake
|
73
|
+
- tasks/environment.rake
|
74
|
+
- tasks/website.rake
|
75
|
+
- website/index.html
|
76
|
+
- website/index.txt
|
77
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
78
|
+
- website/stylesheets/screen.css
|
79
|
+
- website/template.html.erb
|
76
80
|
has_rdoc: true
|
77
81
|
homepage: http://rubywebstart.rubyforge.org/jnlp/rdoc/
|
78
82
|
licenses: []
|
79
83
|
|
80
84
|
post_install_message:
|
81
85
|
rdoc_options:
|
82
|
-
- --main
|
83
|
-
- README.txt
|
86
|
+
- --main
|
87
|
+
- README.txt
|
84
88
|
require_paths:
|
85
|
-
- lib
|
89
|
+
- lib
|
86
90
|
required_ruby_version: !ruby/object:Gem::Requirement
|
87
91
|
requirements:
|
88
|
-
|
89
|
-
|
90
|
-
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: "0"
|
91
95
|
version:
|
92
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
97
|
requirements:
|
94
|
-
|
95
|
-
|
96
|
-
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: "0"
|
97
101
|
version:
|
98
102
|
requirements: []
|
99
103
|
|
100
104
|
rubyforge_project: rubywebstart
|
101
|
-
rubygems_version: 1.3.
|
105
|
+
rubygems_version: 1.3.5
|
102
106
|
signing_key:
|
103
107
|
specification_version: 3
|
104
108
|
summary: Ruby tools for working with Java Web Start JNLPs.
|
105
109
|
test_files:
|
106
|
-
- test/test_helper.rb
|
107
|
-
- test/test_jnlp.rb
|
110
|
+
- test/test_helper.rb
|
111
|
+
- test/test_jnlp.rb
|
data/log/debug.log
DELETED
File without changes
|