cpee 1.3.171 → 1.3.172

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/cpee.gemspec +1 -1
  3. data/lib/cpee/processtransformation/cpee.rb +1 -1
  4. data/server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/consumer-secret +1 -0
  5. data/server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/producer-secret +1 -0
  6. data/server/instances/1/notifications/d12eff1ac812661c05d7090ce7394cf9/subscription.xml +27 -0
  7. data/server/instances/1/properties.xml +69 -101
  8. data/server/instances/10/properties.xml +106 -70
  9. data/server/instances/11/properties.xml +133 -73
  10. data/server/instances/12/properties.xml +1 -0
  11. data/server/instances/14/notifications/5bcce90b170116a77fb25aea4e133acc/consumer-secret +1 -0
  12. data/server/instances/14/notifications/5bcce90b170116a77fb25aea4e133acc/producer-secret +1 -0
  13. data/server/instances/{13/notifications/4ff0cde5161c44dae49b263cbc12eaf8 → 14/notifications/5bcce90b170116a77fb25aea4e133acc}/subscription.xml +0 -0
  14. data/server/instances/14/properties.xml +160 -160
  15. data/server/instances/2/properties.xml +191 -44
  16. data/server/instances/3/properties.xml +70 -44
  17. data/server/instances/4/properties.xml +28 -68
  18. data/server/instances/5/properties.xml +10 -70
  19. data/server/instances/6/properties.xml +175 -55
  20. data/server/instances/7/properties.xml +118 -52
  21. data/server/instances/8/properties.xml +112 -50
  22. data/server/instances/9/properties.xml +115 -47
  23. metadata +111 -115
  24. data/server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/consumer-secret +0 -1
  25. data/server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/producer-secret +0 -1
  26. data/server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/subscription.xml +0 -6
  27. data/server/instances/13/notifications/4ff0cde5161c44dae49b263cbc12eaf8/consumer-secret +0 -1
  28. data/server/instances/13/notifications/4ff0cde5161c44dae49b263cbc12eaf8/producer-secret +0 -1
  29. data/server/instances/15/properties.xml +0 -330
  30. data/server/instances/16/properties.xml +0 -265
  31. data/server/instances/17/properties.xml +0 -146
  32. data/server/server.pid +0 -1
@@ -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.171
4
+ version: 1.3.172
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler
@@ -75,136 +75,132 @@ 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/14/notifications/5bcce90b170116a77fb25aea4e133acc/consumer-secret
93
+ - server/instances/14/notifications/5bcce90b170116a77fb25aea4e133acc/producer-secret
94
+ - server/instances/14/notifications/5bcce90b170116a77fb25aea4e133acc/subscription.xml
95
+ - server/instances/14/properties.xml
96
+ - server/instances/9/properties.xml
97
+ - server/instances/12/properties.xml
98
+ - server/instances/10/properties.xml
99
+ - server/instances/4/properties.xml
100
+ - server/instances/13/properties.xml
101
+ - server/instances/7/properties.xml
102
+ - server/instances/11/properties.xml
103
+ - server/instances/6/properties.xml
104
+ - server/instances/5/properties.xml
105
+ - server/instances/8/properties.xml
106
+ - server/instances/2/properties.xml
107
+ - server/handlerwrappers/soap.rb
108
+ - server/handlerwrappers/default.rb
109
+ - lib/engine.xml
110
+ - lib/cpee/callback.rb
111
+ - lib/cpee/handler_notifications.rb
112
+ - lib/cpee/controller.rb
113
+ - lib/cpee/processtransformation/target.rb
114
+ - lib/cpee/processtransformation/bpmn2.rb
115
+ - lib/cpee/processtransformation/cpee.rb
116
+ - lib/cpee/processtransformation/structures.rb
117
+ - lib/cpee/processtransformation/bpel/bpel2wee.rb
118
+ - lib/cpee/processtransformation/bpel/bpelserver.xml
119
+ - lib/cpee/processtransformation/bpel/bpelserver.ru
120
+ - lib/cpee/processtransformation/bpel/Repository/booking/report.wsdl
121
+ - lib/cpee/processtransformation/bpel/Repository/booking/hotel.wsdl
122
+ - lib/cpee/processtransformation/bpel/Repository/booking/airline.wsdl
123
+ - lib/cpee/processtransformation/bpel/Repository/booking.wsdl
124
+ - lib/cpee/processtransformation/bpel/Repository/booking.bpel
125
+ - lib/cpee/processtransformation/bpel/lib/BPEL_Transform.rb
126
+ - lib/cpee/handler_properties.rb
127
+ - lib/cpee/implementation.rb
128
+ - lib/cpee/empty_workflow.rb
129
+ - lib/engine/instance-info.rng
130
+ - lib/engine/instances.rng
131
+ - lib/engine/callbacks.rng
132
+ - lib/cpee.xml
133
+ - cockpit/testsets/Endpoints and Data Manipulation.xml
134
+ - cockpit/testsets/TEST - Bad Loop.xml
135
+ - cockpit/testsets/Syncing P34 3.xml
136
+ - cockpit/testsets/CPEE.xml
137
+ - cockpit/testsets/Signavio.xml
138
+ - cockpit/testsets/Coopis Testset.xml
139
+ - cockpit/testsets/TEST - Wrong Positions.xml
140
+ - cockpit/testsets/transformations.xml
141
+ - cockpit/testsets/ICSOC Testset.xml
142
+ - cockpit/testsets/Syncing P34.xml
143
+ - cockpit/testsets/Linear.xml
144
+ - cockpit/testsets/Syncing P34 1.xml
145
+ - cockpit/testsets/Syncing P34 2.xml
146
+ - cockpit/testsets/Mangler 2.xml
147
+ - cockpit/testsets/Mangler 1.xml
148
+ - cockpit/testsets/testsets.xml
149
+ - cockpit/testsets/Concurrent.xml
150
+ - cockpit/testsets/SOPROMO Test Sonification.xml
84
151
  - 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
152
  - cockpit/css/ui.css
92
- - cockpit/index.html
93
153
  - cockpit/js/details.js
154
+ - cockpit/js/wfadaptor.cpee.js
94
155
  - cockpit/js/instance.js
95
- - cockpit/js/parameters.js
96
156
  - cockpit/js/ui.js
97
- - cockpit/js/wfadaptor.cpee.js
98
- - cockpit/lib/contextmenu.css
99
- - cockpit/lib/contextmenu.js
157
+ - cockpit/js/parameters.js
158
+ - cockpit/index.html
159
+ - cockpit/contrib/graph_example.svg
160
+ - cockpit/contrib/tree_example.svg
161
+ - cockpit/contrib/transformation1.xsl
162
+ - cockpit/contrib/transformation2.xsl
163
+ - cockpit/contrib/legend.svg
164
+ - cockpit/contrib/symbols.svg
100
165
  - cockpit/lib/jquery-ui.custom.min.js
101
- - cockpit/lib/jquery-ui.custom.min.txt
166
+ - cockpit/lib/contextmenu.js
167
+ - cockpit/lib/jquery.svg.min.js
168
+ - cockpit/lib/ui.css
102
169
  - cockpit/lib/jquery.browser.js
103
- - cockpit/lib/jquery.caret.min.js
104
- - cockpit/lib/jquery.cookie.js
105
- - cockpit/lib/jquery.min.js
170
+ - cockpit/lib/contextmenu.css
171
+ - cockpit/lib/util.js
172
+ - cockpit/lib/underscore.min.js
106
173
  - cockpit/lib/jquery.redraw.js
107
- - cockpit/lib/jquery.svg.min.js
108
- - cockpit/lib/jquery.svgdom.min.js
109
- - cockpit/lib/parsequery.js
110
- - cockpit/lib/printf.js
111
174
  - cockpit/lib/strftime.min.js
112
- - cockpit/lib/ui.css
175
+ - cockpit/lib/printf.js
176
+ - cockpit/lib/jquery.min.js
177
+ - cockpit/lib/jquery.svgdom.min.js
178
+ - cockpit/lib/jquery.cookie.js
179
+ - cockpit/lib/jquery-ui.custom.min.txt
113
180
  - cockpit/lib/ui.js
114
- - cockpit/lib/underscore.min.js
115
- - cockpit/lib/util.js
116
- - cockpit/lib/wfadaptor-doc/demo1.html
117
- - cockpit/lib/wfadaptor-doc/demo2.html
118
- - cockpit/lib/wfadaptor-doc/index.html
181
+ - cockpit/lib/parsequery.js
119
182
  - cockpit/lib/wfadaptor.css
183
+ - cockpit/lib/jquery.caret.min.js
120
184
  - cockpit/lib/wfadaptor.js
121
- - cockpit/testsets/CPEE.xml
122
- - cockpit/testsets/Concurrent.xml
123
- - cockpit/testsets/Coopis Testset.xml
124
- - cockpit/testsets/Endpoints and Data Manipulation.xml
125
- - cockpit/testsets/ICSOC Testset.xml
126
- - cockpit/testsets/Linear.xml
127
- - cockpit/testsets/Mangler 1.xml
128
- - cockpit/testsets/Mangler 2.xml
129
- - cockpit/testsets/SOPROMO Test Sonification.xml
130
- - cockpit/testsets/Signavio.xml
131
- - cockpit/testsets/Syncing P34 1.xml
132
- - cockpit/testsets/Syncing P34 2.xml
133
- - cockpit/testsets/Syncing P34 3.xml
134
- - cockpit/testsets/Syncing P34.xml
135
- - cockpit/testsets/TEST - Bad Loop.xml
136
- - cockpit/testsets/TEST - Wrong Positions.xml
137
- - cockpit/testsets/testsets.xml
138
- - cockpit/testsets/transformations.xml
139
- - contrib/Screenshot at 2011-09-28 02:38:11.png
140
- - contrib/logo2-small.png
185
+ - cockpit/lib/wfadaptor-doc/demo1.html
186
+ - cockpit/lib/wfadaptor-doc/index.html
187
+ - cockpit/lib/wfadaptor-doc/demo2.html
141
188
  - contrib/logo2.png
189
+ - contrib/logo2a.svg
190
+ - contrib/logo2-small.png
142
191
  - contrib/logo2.svg
143
192
  - contrib/logo2a.png
144
- - contrib/logo2a.svg
193
+ - contrib/Screenshot at 2011-09-28 02:38:11.png
194
+ - COPYING
195
+ - FEATURES
196
+ - INSTALL
197
+ - Rakefile
145
198
  - cpee.gemspec
146
- - lib/cpee.xml
147
- - lib/cpee/callback.rb
148
- - lib/cpee/controller.rb
149
- - lib/cpee/empty_workflow.rb
150
- - lib/cpee/handler_notifications.rb
151
- - lib/cpee/handler_properties.rb
152
- - lib/cpee/implementation.rb
153
- - lib/cpee/processtransformation/bpel/Repository/booking.bpel
154
- - lib/cpee/processtransformation/bpel/Repository/booking.wsdl
155
- - lib/cpee/processtransformation/bpel/Repository/booking/airline.wsdl
156
- - lib/cpee/processtransformation/bpel/Repository/booking/hotel.wsdl
157
- - lib/cpee/processtransformation/bpel/Repository/booking/report.wsdl
158
- - lib/cpee/processtransformation/bpel/bpel2wee.rb
159
- - lib/cpee/processtransformation/bpel/bpelserver.ru
160
- - lib/cpee/processtransformation/bpel/bpelserver.xml
161
- - lib/cpee/processtransformation/bpel/lib/BPEL_Transform.rb
162
- - lib/cpee/processtransformation/bpmn2.rb
163
- - lib/cpee/processtransformation/cpee.rb
164
- - lib/cpee/processtransformation/structures.rb
165
- - lib/cpee/processtransformation/target.rb
166
- - lib/engine.xml
167
- - lib/engine/callbacks.rng
168
- - lib/engine/instance-info.rng
169
- - lib/engine/instances.rng
170
- - server/handlerwrappers/default.rb
171
- - server/handlerwrappers/soap.rb
172
- - server/instances/1/properties.xml
173
- - server/instances/10/properties.xml
174
- - server/instances/11/properties.xml
175
- - server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/consumer-secret
176
- - server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/producer-secret
177
- - server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/subscription.xml
178
- - server/instances/12/properties.xml
179
- - server/instances/13/notifications/4ff0cde5161c44dae49b263cbc12eaf8/consumer-secret
180
- - server/instances/13/notifications/4ff0cde5161c44dae49b263cbc12eaf8/producer-secret
181
- - server/instances/13/notifications/4ff0cde5161c44dae49b263cbc12eaf8/subscription.xml
182
- - server/instances/13/properties.xml
183
- - server/instances/14/properties.xml
184
- - server/instances/15/properties.xml
185
- - server/instances/16/properties.xml
186
- - server/instances/17/properties.xml
187
- - server/instances/2/properties.xml
188
- - server/instances/3/properties.xml
189
- - server/instances/4/properties.xml
190
- - server/instances/5/properties.xml
191
- - server/instances/6/properties.xml
192
- - server/instances/7/properties.xml
193
- - server/instances/8/properties.xml
194
- - server/instances/9/properties.xml
195
- - server/resources/empty_dslx.xml
196
- - server/resources/properties.init
197
- - server/resources/properties.schema.active
198
- - server/resources/properties.schema.finished
199
- - server/resources/properties.schema.inactive
200
- - server/resources/topics.xml
201
- - server/resources/transformation.xml
202
- - server/resources/transformation_dslx.xsl
203
- - server/server.pid
204
- - server/server.rb
199
+ - README
200
+ - AUTHORS
201
+ - test/testset.xml
205
202
  - test/delete.rb
206
203
  - test/load.rb
207
- - test/testset.xml
208
204
  homepage: http://cpee.org/
209
205
  licenses:
210
206
  - LGPL-3
@@ -225,12 +221,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
221
  version: '0'
226
222
  requirements: []
227
223
  rubyforge_project:
228
- rubygems_version: 2.2.2
224
+ rubygems_version: 2.0.14
229
225
  signing_key:
230
226
  specification_version: 4
231
227
  summary: Preliminary release of cloud process execution engine (cpee). If you just
232
228
  need workflow execution, without a rest/xmpp service exposing it, then use WEEL
233
229
  test_files:
234
- - test/load.rb
235
230
  - test/testset.xml
236
231
  - test/delete.rb
232
+ - test/load.rb