cpee 1.3.142 → 1.3.143

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,51 +1,90 @@
1
1
  <properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
2
2
  <info>Enter info here</info>
3
- <state>finished</state>
3
+ <state>stopped</state>
4
4
  <handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
5
5
  <positions/>
6
6
  <dataelements>
7
- <json>{"lv":"Workflow Technologies","id":{"lvnr":"050311","gruppe":1}}</json>
8
- <json_lv>Workflow Technologies</json_lv>
9
- <json_lvnr/>
10
- <xml_lv>Workflow Technologies</xml_lv>
11
- <xml_lvnr>050311</xml_lvnr>
7
+ <persons>0</persons>
8
+ <card>Visa_12345</card>
9
+ <airline>FlyNiki</airline>
10
+ <hotels>["Mariott","Rathaus","Mariott"]</hotels>
11
+ <from>Vienna</from>
12
+ <to>Prague</to>
13
+ <costs>1021.0</costs>
12
14
  </dataelements>
13
15
  <endpoints>
14
- <timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
15
- <json>http://cpee.org/services/json.php</json>
16
- <xml>http://cpee.org/services/xml.php</xml>
16
+ <bookAir>http://gruppe.wst.univie.ac.at/~mangler/services/airline.php</bookAir>
17
+ <bookHotel>http://gruppe.wst.univie.ac.at/~mangler/services/hotel.php</bookHotel>
18
+ <approve>http://gruppe.wst.univie.ac.at/~mangler/services/approval.php</approve>
17
19
  </endpoints>
18
- <dsl>call :a1, :json, { :label =&gt; "Get JSON", :method =&gt; "get", :parameters =&gt; nil }, &lt;&lt;-end
19
- data.json = result
20
- data.json_lv = result['lv']
21
- data.json_lvnr = result['lv']['lvnr']
20
+ <dsl>call :a1, :bookAir, { :method =&gt; :post, :parameters =&gt; {:from =&gt; data.from, :to =&gt; data.to, :persons =&gt; data.persons} }, &lt;&lt;-end
21
+ data.airline = result.value('id')
22
+ data.costs += result.value('costs').to_f
23
+ status.update 1, 'Hotel'
22
24
  end
23
- call :a2, :xml, { :label =&gt; "Get XML", :method =&gt; "get", :parameters =&gt; nil }, &lt;&lt;-end
24
- data.xml_lv = result.find('string(/data/lv)')
25
- data.xml_lvnr = result.find('string(/data/lv/@id)')
25
+ parallel do
26
+ loop pre_test{data.persons &gt; 0} do
27
+ parallel_branch data.persons do |p|
28
+ call :a2, :bookHotel, { :method =&gt; :post, :parameters =&gt; {:to =&gt; data.to} }, &lt;&lt;-end
29
+ data.hotels &lt;&lt; result.value('id')
30
+ data.costs += result.value('costs').to_f
31
+ end
32
+ end
33
+ manipulate :a3, &lt;&lt;-end
34
+ data.persons -= 1
35
+ end
36
+ end
37
+ end
38
+ choose :inclusive do
39
+ alternative "data.costs &gt; 700" do
40
+ call :a4, :approve, { :method =&gt; :post, :parameters =&gt; {:costs =&gt; data.costs} }
41
+ end
26
42
  end
27
43
  </dsl>
28
44
  <dslx>
29
45
  <description xmlns="http://cpee.org/ns/description/1.0">
30
- <call id="a1" endpoint="json" svg-label="Get JSON">
31
- <parameters>
32
- <label>Get JSON</label>
33
- <method>get</method>
34
- <parameters/>
35
- </parameters>
36
- <manipulate>data.json = result
37
- data.json_lv = result['lv']
38
- data.json_lvnr = result['lv']['lvnr']</manipulate>
39
- </call>
40
- <call id="a2" endpoint="xml">
46
+ <call id="a1" endpoint="bookAir">
41
47
  <parameters>
42
- <label>Get XML</label>
43
- <method>get</method>
44
- <parameters/>
48
+ <method>:post</method>
49
+ <parameters>
50
+ <from>data.from</from>
51
+ <to>data.to</to>
52
+ <persons>data.persons</persons>
53
+ </parameters>
45
54
  </parameters>
46
- <manipulate>data.xml_lv = result.find('string(/data/lv)')
47
- data.xml_lvnr = result.find('string(/data/lv/@id)')</manipulate>
55
+ <manipulate output="result"> data.airline = result.value('id')
56
+ data.costs += result.value('costs').to_f
57
+ status.update 1, 'Hotel'</manipulate>
48
58
  </call>
59
+ <parallel>
60
+ <loop pre_test="data.persons &gt; 0">
61
+ <parallel_branch pass="data.persons" local="p">
62
+ <call id="a2" endpoint="bookHotel">
63
+ <parameters>
64
+ <method>:post</method>
65
+ <parameters>
66
+ <to>data.to</to>
67
+ </parameters>
68
+ </parameters>
69
+ <manipulate output="result"> data.hotels &lt;&lt; result.value('id')
70
+ data.costs += result.value('costs').to_f</manipulate>
71
+ </call>
72
+ </parallel_branch>
73
+ <manipulate id="a3"> data.persons -= 1</manipulate>
74
+ </loop>
75
+ </parallel>
76
+ <choose>
77
+ <alternative condition="data.costs &gt; 700">
78
+ <call id="a4" endpoint="approve">
79
+ <parameters>
80
+ <method>:post</method>
81
+ <parameters>
82
+ <costs>data.costs</costs>
83
+ </parameters>
84
+ </parameters>
85
+ </call>
86
+ </alternative>
87
+ </choose>
49
88
  </description>
50
89
  </dslx>
51
90
  <status>
@@ -54,30 +93,53 @@ data.xml_lvnr = result.find('string(/data/lv/@id)')</manipulate>
54
93
  </status>
55
94
  <description>
56
95
  <description xmlns="http://cpee.org/ns/description/1.0">
57
- <call id="a1" endpoint="json" svg-label="Get JSON">
58
- <parameters>
59
- <label>Get JSON</label>
60
- <method>get</method>
61
- <parameters/>
62
- </parameters>
63
- <manipulate>data.json = result
64
- data.json_lv = result['lv']
65
- data.json_lvnr = result['lv']['lvnr']</manipulate>
66
- </call>
67
- <call id="a2" endpoint="xml">
96
+ <call id="a1" endpoint="bookAir">
68
97
  <parameters>
69
- <label>Get XML</label>
70
- <method>get</method>
71
- <parameters/>
98
+ <method>:post</method>
99
+ <parameters>
100
+ <from>data.from</from>
101
+ <to>data.to</to>
102
+ <persons>data.persons</persons>
103
+ </parameters>
72
104
  </parameters>
73
- <manipulate>data.xml_lv = result.find('string(/data/lv)')
74
- data.xml_lvnr = result.find('string(/data/lv/@id)')</manipulate>
105
+ <manipulate output="result"> data.airline = result.value('id')
106
+ data.costs += result.value('costs').to_f
107
+ status.update 1, 'Hotel'</manipulate>
75
108
  </call>
109
+ <parallel>
110
+ <loop pre_test="data.persons &gt; 0">
111
+ <parallel_branch pass="data.persons" local="p">
112
+ <call id="a2" endpoint="bookHotel">
113
+ <parameters>
114
+ <method>:post</method>
115
+ <parameters>
116
+ <to>data.to</to>
117
+ </parameters>
118
+ </parameters>
119
+ <manipulate output="result"> data.hotels &lt;&lt; result.value('id')
120
+ data.costs += result.value('costs').to_f</manipulate>
121
+ </call>
122
+ </parallel_branch>
123
+ <manipulate id="a3"> data.persons -= 1</manipulate>
124
+ </loop>
125
+ </parallel>
126
+ <choose>
127
+ <alternative condition="data.costs &gt; 700">
128
+ <call id="a4" endpoint="approve">
129
+ <parameters>
130
+ <method>:post</method>
131
+ <parameters>
132
+ <costs>data.costs</costs>
133
+ </parameters>
134
+ </parameters>
135
+ </call>
136
+ </alternative>
137
+ </choose>
76
138
  </description>
77
139
  </description>
78
140
  <transformation>
79
141
  <description type="copy"/>
80
- <dataelements type="xslt"/>
81
- <endpoints type="xslt"/>
142
+ <dataelements type="rest"/>
143
+ <endpoints type="rest"/>
82
144
  </transformation>
83
145
  </properties>
@@ -1,45 +1,90 @@
1
1
  <properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
2
- <info>Enter info here</info>
3
- <state>ready</state>
2
+ <info>asd</info>
3
+ <state>stopped</state>
4
4
  <handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
5
5
  <positions/>
6
- <dataelements/>
6
+ <dataelements>
7
+ <persons>0</persons>
8
+ <card>Visa_12345</card>
9
+ <airline>FlyNiki</airline>
10
+ <hotels>["Ibis","Mariott","Rathaus"]</hotels>
11
+ <from>Vienna</from>
12
+ <to>Prague</to>
13
+ <costs>724.0</costs>
14
+ </dataelements>
7
15
  <endpoints>
8
- <timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
9
- <json>http://cpee.org/services/json.php</json>
10
- <xml>http://cpee.org/services/xml.php</xml>
16
+ <bookAir>http://gruppe.wst.univie.ac.at/~mangler/services/airline.php</bookAir>
17
+ <bookHotel>http://gruppe.wst.univie.ac.at/~mangler/services/hotel.php</bookHotel>
18
+ <approve>http://gruppe.wst.univie.ac.at/~mangler/services/approval.php</approve>
11
19
  </endpoints>
12
- <dsl>call :a1, :json, { :label =&gt; "Get JSON", :method =&gt; "get", :parameters =&gt; nil }, &lt;&lt;-end
13
- data.json = result
14
- data.json_lv = result['lv']
15
- data.json_lvnr = result['lv']['lvnr']
20
+ <dsl>call :a1, :bookAir, { :method =&gt; :post, :parameters =&gt; {:from =&gt; data.from, :to =&gt; data.to, :persons =&gt; data.persons} }, &lt;&lt;-end
21
+ data.airline = result.value('id')
22
+ data.costs += result.value('costs').to_f
23
+ status.update 1, 'Hotel'
16
24
  end
17
- call :a2, :xml, { :label =&gt; "Get XML", :method =&gt; "get", :parameters =&gt; nil }, &lt;&lt;-end
18
- data.xml_lv = result.find('string(/data/lv)')
19
- data.xml_lvnr = result.find('string(/data/lv/@id)')
25
+ parallel do
26
+ loop pre_test{data.persons &gt; 0} do
27
+ parallel_branch data.persons do |p|
28
+ call :a2, :bookHotel, { :method =&gt; :post, :parameters =&gt; {:to =&gt; data.to} }, &lt;&lt;-end
29
+ data.hotels &lt;&lt; result.value('id')
30
+ data.costs += result.value('costs').to_f
31
+ end
32
+ end
33
+ manipulate :a3, &lt;&lt;-end
34
+ data.persons -= 1
35
+ end
36
+ end
37
+ end
38
+ choose :inclusive do
39
+ alternative "data.costs &gt; 700" do
40
+ call :a4, :approve, { :method =&gt; :post, :parameters =&gt; {:costs =&gt; data.costs} }
41
+ end
20
42
  end
21
43
  </dsl>
22
44
  <dslx>
23
45
  <description xmlns="http://cpee.org/ns/description/1.0">
24
- <call id="a1" endpoint="json" svg-label="Get JSON">
25
- <parameters>
26
- <label>Get JSON</label>
27
- <method>get</method>
28
- <parameters/>
29
- </parameters>
30
- <manipulate>data.json = result
31
- data.json_lv = result['lv']
32
- data.json_lvnr = result['lv']['lvnr']</manipulate>
33
- </call>
34
- <call id="a2" endpoint="xml">
46
+ <call id="a1" endpoint="bookAir">
35
47
  <parameters>
36
- <label>Get XML</label>
37
- <method>get</method>
38
- <parameters/>
48
+ <method>:post</method>
49
+ <parameters>
50
+ <from>data.from</from>
51
+ <to>data.to</to>
52
+ <persons>data.persons</persons>
53
+ </parameters>
39
54
  </parameters>
40
- <manipulate>data.xml_lv = result.find('string(/data/lv)')
41
- data.xml_lvnr = result.find('string(/data/lv/@id)')</manipulate>
55
+ <manipulate output="result"> data.airline = result.value('id')
56
+ data.costs += result.value('costs').to_f
57
+ status.update 1, 'Hotel'</manipulate>
42
58
  </call>
59
+ <parallel>
60
+ <loop pre_test="data.persons &gt; 0">
61
+ <parallel_branch pass="data.persons" local="p">
62
+ <call id="a2" endpoint="bookHotel">
63
+ <parameters>
64
+ <method>:post</method>
65
+ <parameters>
66
+ <to>data.to</to>
67
+ </parameters>
68
+ </parameters>
69
+ <manipulate output="result"> data.hotels &lt;&lt; result.value('id')
70
+ data.costs += result.value('costs').to_f</manipulate>
71
+ </call>
72
+ </parallel_branch>
73
+ <manipulate id="a3"> data.persons -= 1</manipulate>
74
+ </loop>
75
+ </parallel>
76
+ <choose>
77
+ <alternative condition="data.costs &gt; 700">
78
+ <call id="a4" endpoint="approve">
79
+ <parameters>
80
+ <method>:post</method>
81
+ <parameters>
82
+ <costs>data.costs</costs>
83
+ </parameters>
84
+ </parameters>
85
+ </call>
86
+ </alternative>
87
+ </choose>
43
88
  </description>
44
89
  </dslx>
45
90
  <status>
@@ -48,30 +93,53 @@ data.xml_lvnr = result.find('string(/data/lv/@id)')</manipulate>
48
93
  </status>
49
94
  <description>
50
95
  <description xmlns="http://cpee.org/ns/description/1.0">
51
- <call id="a1" endpoint="json" svg-label="Get JSON">
52
- <parameters>
53
- <label>Get JSON</label>
54
- <method>get</method>
55
- <parameters/>
56
- </parameters>
57
- <manipulate>data.json = result
58
- data.json_lv = result['lv']
59
- data.json_lvnr = result['lv']['lvnr']</manipulate>
60
- </call>
61
- <call id="a2" endpoint="xml">
96
+ <call id="a1" endpoint="bookAir">
62
97
  <parameters>
63
- <label>Get XML</label>
64
- <method>get</method>
65
- <parameters/>
98
+ <method>:post</method>
99
+ <parameters>
100
+ <from>data.from</from>
101
+ <to>data.to</to>
102
+ <persons>data.persons</persons>
103
+ </parameters>
66
104
  </parameters>
67
- <manipulate>data.xml_lv = result.find('string(/data/lv)')
68
- data.xml_lvnr = result.find('string(/data/lv/@id)')</manipulate>
105
+ <manipulate output="result"> data.airline = result.value('id')
106
+ data.costs += result.value('costs').to_f
107
+ status.update 1, 'Hotel'</manipulate>
69
108
  </call>
109
+ <parallel>
110
+ <loop pre_test="data.persons &gt; 0">
111
+ <parallel_branch pass="data.persons" local="p">
112
+ <call id="a2" endpoint="bookHotel">
113
+ <parameters>
114
+ <method>:post</method>
115
+ <parameters>
116
+ <to>data.to</to>
117
+ </parameters>
118
+ </parameters>
119
+ <manipulate output="result"> data.hotels &lt;&lt; result.value('id')
120
+ data.costs += result.value('costs').to_f</manipulate>
121
+ </call>
122
+ </parallel_branch>
123
+ <manipulate id="a3"> data.persons -= 1</manipulate>
124
+ </loop>
125
+ </parallel>
126
+ <choose>
127
+ <alternative condition="data.costs &gt; 700">
128
+ <call id="a4" endpoint="approve">
129
+ <parameters>
130
+ <method>:post</method>
131
+ <parameters>
132
+ <costs>data.costs</costs>
133
+ </parameters>
134
+ </parameters>
135
+ </call>
136
+ </alternative>
137
+ </choose>
70
138
  </description>
71
139
  </description>
72
140
  <transformation>
73
141
  <description type="copy"/>
74
- <dataelements type="xslt"/>
75
- <endpoints type="xslt"/>
142
+ <dataelements type="rest"/>
143
+ <endpoints type="rest"/>
76
144
  </transformation>
77
145
  </properties>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cpee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.142
4
+ version: 1.3.143
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-08-08 00:00:00.000000000 Z
13
+ date: 2014-08-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: riddl
@@ -75,118 +75,120 @@ extensions: []
75
75
  extra_rdoc_files:
76
76
  - README
77
77
  files:
78
- - AUTHORS
79
- - COPYING
80
- - FEATURES
81
- - INSTALL
82
- - README
83
- - Rakefile
78
+ - server/server.rb
79
+ - server/resources/topics.xml
80
+ - server/resources/properties.schema.finished
81
+ - server/resources/properties.schema.active
82
+ - server/resources/properties.init
83
+ - server/resources/transformation_dslx.xsl
84
+ - server/resources/empty_dslx.xml
85
+ - server/resources/properties.schema.inactive
86
+ - server/resources/transformation.xml
87
+ - server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/consumer-secret
88
+ - server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/producer-secret
89
+ - server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/subscription.xml
90
+ - server/instances/1/properties.xml
91
+ - server/instances/3/properties.xml
92
+ - server/instances/9/properties.xml
93
+ - server/instances/10/properties.xml
94
+ - server/instances/4/properties.xml
95
+ - server/instances/7/properties.xml
96
+ - server/instances/6/properties.xml
97
+ - server/instances/5/properties.xml
98
+ - server/instances/8/properties.xml
99
+ - server/instances/2/properties.xml
100
+ - server/handlerwrappers/soap.rb
101
+ - server/handlerwrappers/default.rb
102
+ - lib/engine.xml
103
+ - lib/cpee/callback.rb
104
+ - lib/cpee/handler_notifications.rb
105
+ - lib/cpee/controller.rb
106
+ - lib/cpee/processtransformation/bpmn2.rb
107
+ - lib/cpee/processtransformation/cpee.rb
108
+ - lib/cpee/processtransformation/structures.rb
109
+ - lib/cpee/processtransformation/bpel/bpel2wee.rb
110
+ - lib/cpee/processtransformation/bpel/bpelserver.xml
111
+ - lib/cpee/processtransformation/bpel/bpelserver.ru
112
+ - lib/cpee/processtransformation/bpel/Repository/booking/report.wsdl
113
+ - lib/cpee/processtransformation/bpel/Repository/booking/hotel.wsdl
114
+ - lib/cpee/processtransformation/bpel/Repository/booking/airline.wsdl
115
+ - lib/cpee/processtransformation/bpel/Repository/booking.wsdl
116
+ - lib/cpee/processtransformation/bpel/Repository/booking.bpel
117
+ - lib/cpee/processtransformation/bpel/lib/BPEL_Transform.rb
118
+ - lib/cpee/handler_properties.rb
119
+ - lib/cpee/implementation.rb
120
+ - lib/cpee/empty_workflow.rb
121
+ - lib/engine/instance-info.rng
122
+ - lib/engine/instances.rng
123
+ - lib/engine/callbacks.rng
124
+ - lib/cpee.xml
125
+ - cockpit/testsets/Endpoints and Data Manipulation.xml
126
+ - cockpit/testsets/TEST - Bad Loop.xml
127
+ - cockpit/testsets/Syncing P34 3.xml
128
+ - cockpit/testsets/Coopis Testset.xml
129
+ - cockpit/testsets/TEST - Wrong Positions.xml
130
+ - cockpit/testsets/ICSOC Testset.xml
131
+ - cockpit/testsets/Syncing P34.xml
132
+ - cockpit/testsets/Linear.xml
133
+ - cockpit/testsets/Syncing P34 1.xml
134
+ - cockpit/testsets/Syncing P34 2.xml
135
+ - cockpit/testsets/Mangler 2.xml
136
+ - cockpit/testsets/Mangler 1.xml
137
+ - cockpit/testsets/index.xml
138
+ - cockpit/testsets/Signavio Model Base.xml
139
+ - cockpit/testsets/Concurrent.xml
140
+ - cockpit/testsets/SOPROMO Test Sonification.xml
84
141
  - cockpit/README
85
- - cockpit/contrib/graph_example.svg
86
- - cockpit/contrib/legend.svg
87
- - cockpit/contrib/symbols.svg
88
- - cockpit/contrib/transformation1.xsl
89
- - cockpit/contrib/transformation2.xsl
90
- - cockpit/contrib/tree_example.svg
91
142
  - cockpit/css/ui.css
92
- - cockpit/index.html
93
143
  - cockpit/js/details.js
144
+ - cockpit/js/wfadaptor.cpee.js
94
145
  - cockpit/js/instance.js
95
- - cockpit/js/parameters.js
96
146
  - cockpit/js/ui.js
97
- - cockpit/js/wfadaptor.cpee.js
98
- - cockpit/lib/contextmenu.css
99
- - cockpit/lib/contextmenu.js
147
+ - cockpit/js/parameters.js
148
+ - cockpit/index.html
149
+ - cockpit/contrib/graph_example.svg
150
+ - cockpit/contrib/tree_example.svg
151
+ - cockpit/contrib/transformation1.xsl
152
+ - cockpit/contrib/transformation2.xsl
153
+ - cockpit/contrib/legend.svg
154
+ - cockpit/contrib/symbols.svg
100
155
  - cockpit/lib/jquery-ui.custom.min.js
101
- - cockpit/lib/jquery-ui.custom.min.txt
102
- - cockpit/lib/jquery.caret.min.js
103
- - cockpit/lib/jquery.cookie.js
104
- - cockpit/lib/jquery.min.js
156
+ - cockpit/lib/contextmenu.js
157
+ - cockpit/lib/ui.css
158
+ - cockpit/lib/contextmenu.css
159
+ - cockpit/lib/util.js
160
+ - cockpit/lib/underscore.min.js
105
161
  - cockpit/lib/jquery.redraw.js
106
- - cockpit/lib/jquery.svgdom.js
107
- - cockpit/lib/parsequery.js
108
- - cockpit/lib/printf.js
109
162
  - cockpit/lib/strftime.min.js
110
- - cockpit/lib/ui.css
163
+ - cockpit/lib/printf.js
164
+ - cockpit/lib/jquery.min.js
165
+ - cockpit/lib/jquery.cookie.js
166
+ - cockpit/lib/jquery-ui.custom.min.txt
167
+ - cockpit/lib/jquery.svgdom.js
111
168
  - cockpit/lib/ui.js
112
- - cockpit/lib/underscore.min.js
113
- - cockpit/lib/util.js
114
- - cockpit/lib/wfadaptor-doc/demo1.html
115
- - cockpit/lib/wfadaptor-doc/demo2.html
116
- - cockpit/lib/wfadaptor-doc/index.html
169
+ - cockpit/lib/parsequery.js
117
170
  - cockpit/lib/wfadaptor.css
171
+ - cockpit/lib/jquery.caret.min.js
118
172
  - cockpit/lib/wfadaptor.js
119
- - cockpit/testsets/Concurrent.xml
120
- - cockpit/testsets/Coopis Testset.xml
121
- - cockpit/testsets/Endpoints and Data Manipulation.xml
122
- - cockpit/testsets/ICSOC Testset.xml
123
- - cockpit/testsets/Linear.xml
124
- - cockpit/testsets/Mangler 1.xml
125
- - cockpit/testsets/Mangler 2.xml
126
- - cockpit/testsets/SOPROMO Test Sonification.xml
127
- - cockpit/testsets/Signavio Model Base.xml
128
- - cockpit/testsets/Syncing P34 1.xml
129
- - cockpit/testsets/Syncing P34 2.xml
130
- - cockpit/testsets/Syncing P34 3.xml
131
- - cockpit/testsets/Syncing P34.xml
132
- - cockpit/testsets/TEST - Bad Loop.xml
133
- - cockpit/testsets/TEST - Wrong Positions.xml
134
- - cockpit/testsets/index.xml
135
- - contrib/Screenshot at 2011-09-28 02:38:11.png
136
- - contrib/logo2-small.png
173
+ - cockpit/lib/wfadaptor-doc/demo1.html
174
+ - cockpit/lib/wfadaptor-doc/index.html
175
+ - cockpit/lib/wfadaptor-doc/demo2.html
137
176
  - contrib/logo2.png
177
+ - contrib/logo2a.svg
178
+ - contrib/logo2-small.png
138
179
  - contrib/logo2.svg
139
180
  - contrib/logo2a.png
140
- - contrib/logo2a.svg
181
+ - contrib/Screenshot at 2011-09-28 02:38:11.png
182
+ - COPYING
183
+ - FEATURES
184
+ - INSTALL
185
+ - Rakefile
141
186
  - cpee.gemspec
142
- - lib/cpee.xml
143
- - lib/cpee/callback.rb
144
- - lib/cpee/controller.rb
145
- - lib/cpee/empty_workflow.rb
146
- - lib/cpee/handler_notifications.rb
147
- - lib/cpee/handler_properties.rb
148
- - lib/cpee/implementation.rb
149
- - lib/cpee/processtransformation/bpel/Repository/booking.bpel
150
- - lib/cpee/processtransformation/bpel/Repository/booking.wsdl
151
- - lib/cpee/processtransformation/bpel/Repository/booking/airline.wsdl
152
- - lib/cpee/processtransformation/bpel/Repository/booking/hotel.wsdl
153
- - lib/cpee/processtransformation/bpel/Repository/booking/report.wsdl
154
- - lib/cpee/processtransformation/bpel/bpel2wee.rb
155
- - lib/cpee/processtransformation/bpel/bpelserver.ru
156
- - lib/cpee/processtransformation/bpel/bpelserver.xml
157
- - lib/cpee/processtransformation/bpel/lib/BPEL_Transform.rb
158
- - lib/cpee/processtransformation/bpmn2.rb
159
- - lib/cpee/processtransformation/cpee.rb
160
- - lib/cpee/processtransformation/structures.rb
161
- - lib/engine.xml
162
- - lib/engine/callbacks.rng
163
- - lib/engine/instance-info.rng
164
- - lib/engine/instances.rng
165
- - server/handlerwrappers/default.rb
166
- - server/handlerwrappers/soap.rb
167
- - server/instances/1/properties.xml
168
- - server/instances/10/properties.xml
169
- - server/instances/11/properties.xml
170
- - server/instances/2/properties.xml
171
- - server/instances/3/properties.xml
172
- - server/instances/4/properties.xml
173
- - server/instances/5/properties.xml
174
- - server/instances/6/properties.xml
175
- - server/instances/7/properties.xml
176
- - server/instances/8/properties.xml
177
- - server/instances/9/properties.xml
178
- - server/resources/empty_dslx.xml
179
- - server/resources/properties.init
180
- - server/resources/properties.schema.active
181
- - server/resources/properties.schema.finished
182
- - server/resources/properties.schema.inactive
183
- - server/resources/topics.xml
184
- - server/resources/transformation.xml
185
- - server/resources/transformation_dslx.xsl
186
- - server/server.rb
187
+ - README
188
+ - AUTHORS
189
+ - test/testset.xml
187
190
  - test/delete.rb
188
191
  - test/load.rb
189
- - test/testset.xml
190
192
  homepage: http://cpee.org/
191
193
  licenses:
192
194
  - LGPL-3
@@ -207,12 +209,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
207
209
  version: '0'
208
210
  requirements: []
209
211
  rubyforge_project:
210
- rubygems_version: 2.2.2
212
+ rubygems_version: 2.0.14
211
213
  signing_key:
212
214
  specification_version: 4
213
215
  summary: Preliminary release of cloud process execution engine (cpee). If you just
214
216
  need workflow execution, without a rest/xmpp service exposing it, then use WEEL
215
217
  test_files:
216
- - test/load.rb
217
218
  - test/testset.xml
218
219
  - test/delete.rb
220
+ - test/load.rb