cpee 1.3.204 → 1.3.205

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/cockpit/css/ui.css +9 -5
  3. data/cockpit/css/wfadaptor.css +13 -1
  4. data/cockpit/js/instance.js +26 -17
  5. data/cockpit/testsets/Concurrent.xml +19 -17
  6. data/cockpit/testsets/Lego Crane.xml +2 -2
  7. data/cockpit/testsets/Worklist Parallel.xml +17 -17
  8. data/cockpit/testsets/Worklist Test CPEE.xml +4 -4
  9. data/cockpit/testsets/Worklist Test.xml +5 -5
  10. data/cockpit/testsets/Worklist Test2.xml +4 -4
  11. data/cockpit/themes/default/symbols/callcorrelationreceive.svg +6 -0
  12. data/cockpit/themes/default/symbols/callcorrelationsend.svg +6 -0
  13. data/cockpit/themes/default/symbols/callinstantiation.svg +3 -0
  14. data/cockpit/themes/default/symbols/callmanipulateworklist.svg +6 -0
  15. data/cockpit/themes/default/symbols/callworklist.svg +4 -0
  16. data/cockpit/themes/default/theme.js +45 -3
  17. data/cpee.gemspec +1 -1
  18. data/lib/cpee/implementation.rb +7 -2
  19. data/log/server.rb +71 -65
  20. data/server/instances/20/properties.xml +68 -0
  21. data/server/instances/21/properties.xml +118 -0
  22. data/server/instances/22/properties.xml +525 -0
  23. data/server/instances/23/properties.xml +65 -0
  24. data/server/instances/24/properties.xml +65 -0
  25. data/server/instances/25/properties.xml +65 -0
  26. data/server/instances/26/properties.xml +65 -0
  27. data/server/instances/27/properties.xml +65 -0
  28. data/server/instances/28/properties.xml +65 -0
  29. data/server/instances/29/properties.xml +67 -0
  30. data/server/instances/30/notifications/f7afc30fd195bc06ac100a9b848c5da3/consumer-secret +1 -0
  31. data/server/instances/30/notifications/f7afc30fd195bc06ac100a9b848c5da3/producer-secret +1 -0
  32. data/server/instances/30/notifications/f7afc30fd195bc06ac100a9b848c5da3/subscription.xml +42 -0
  33. data/server/instances/30/properties.xml +65 -0
  34. metadata +21 -3
  35. data/server/weel.rb +0 -1
@@ -0,0 +1,42 @@
1
+ <subscription xmlns="http://riddl.org/ns/common-patterns/notifications-producer/1.0">
2
+ <topic id="activity">
3
+ <event>calling</event>
4
+ <event>status</event>
5
+ <event>manipulating</event>
6
+ <event>failed</event>
7
+ <event>done</event>
8
+ <vote>syncing_after</vote>
9
+ </topic>
10
+ <topic id="description">
11
+ <event>change</event>
12
+ <event>error</event>
13
+ </topic>
14
+ <topic id="position">
15
+ <event>change</event>
16
+ </topic>
17
+ <topic id="state">
18
+ <event>change</event>
19
+ </topic>
20
+ <topic id="dataelements">
21
+ <event>change</event>
22
+ </topic>
23
+ <topic id="endpoints">
24
+ <event>change</event>
25
+ </topic>
26
+ <topic id="attributes">
27
+ <event>change</event>
28
+ </topic>
29
+ <topic id="transformation">
30
+ <event>change</event>
31
+ </topic>
32
+ <topic id="handlerwrapper">
33
+ <event>error</event>
34
+ <event>change</event>
35
+ </topic>
36
+ <topic id="handlers">
37
+ <event>change</event>
38
+ </topic>
39
+ <topic id="xxx">
40
+ <fingerprint-with-producer-secre>xxx</fingerprint-with-producer-secre>
41
+ </topic>
42
+ </subscription>
@@ -0,0 +1,65 @@
1
+ <properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
2
+ <attributes>
3
+ <uuid>7f38b022-dc0a-482d-bdf0-e983593c69a7</uuid>
4
+ <info>decisiontest</info>
5
+ <modeltype>CPEE</modeltype>
6
+ <theme>default</theme>
7
+ </attributes>
8
+ <state>finished</state>
9
+ <handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
10
+ <positions/>
11
+ <dataelements>
12
+ <amount>24</amount>
13
+ </dataelements>
14
+ <endpoints>
15
+ <timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
16
+ </endpoints>
17
+ <dsl>choose :exclusive do
18
+ alternative "data.amount &lt; 20" do
19
+ manipulate :a1, &lt;&lt;-END
20
+ data.amount += 12
21
+ END
22
+ end
23
+ alternative "data.amount &gt;= 20" do
24
+ manipulate :a2, &lt;&lt;-END
25
+ data.amount = 2
26
+ END
27
+ end
28
+ end
29
+ </dsl>
30
+ <dslx>
31
+ <description xmlns="http://cpee.org/ns/description/1.0">
32
+ <choose mode="exclusive">
33
+ <alternative condition="data.amount &lt; 20">
34
+ <manipulate id="a1">data.amount += 12</manipulate>
35
+ </alternative>
36
+ <alternative condition="data.amount &gt;= 20">
37
+ <manipulate id="a2">data.amount = 2</manipulate>
38
+ </alternative>
39
+ <otherwise/>
40
+ </choose>
41
+ </description>
42
+ </dslx>
43
+ <status>
44
+ <id>0</id>
45
+ <message>undefined</message>
46
+ </status>
47
+ <description>
48
+ <description xmlns="http://cpee.org/ns/description/1.0">
49
+ <choose mode="exclusive">
50
+ <alternative condition="data.amount &lt; 20">
51
+ <manipulate id="a1">data.amount += 12</manipulate>
52
+ </alternative>
53
+ <alternative condition="data.amount &gt;= 20">
54
+ <manipulate id="a2">data.amount = 2</manipulate>
55
+ </alternative>
56
+ <otherwise/>
57
+ </choose>
58
+ </description>
59
+ </description>
60
+ <transformation>
61
+ <description type="copy"/>
62
+ <dataelements type="none"/>
63
+ <endpoints type="none"/>
64
+ </transformation>
65
+ </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.204
4
+ version: 1.3.205
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-12-09 00:00:00.000000000 Z
14
+ date: 2017-02-06 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: riddl
@@ -178,7 +178,12 @@ files:
178
178
  - cockpit/themes/default/rngs/update.rng
179
179
  - cockpit/themes/default/symbols/alternative.svg
180
180
  - cockpit/themes/default/symbols/call.svg
181
+ - cockpit/themes/default/symbols/callcorrelationreceive.svg
182
+ - cockpit/themes/default/symbols/callcorrelationsend.svg
183
+ - cockpit/themes/default/symbols/callinstantiation.svg
181
184
  - cockpit/themes/default/symbols/callmanipulate.svg
185
+ - cockpit/themes/default/symbols/callmanipulateworklist.svg
186
+ - cockpit/themes/default/symbols/callworklist.svg
182
187
  - cockpit/themes/default/symbols/choose.svg
183
188
  - cockpit/themes/default/symbols/choose_exclusive.svg
184
189
  - cockpit/themes/default/symbols/choose_inclusive.svg
@@ -294,7 +299,21 @@ files:
294
299
  - server/instances/18/properties.xml
295
300
  - server/instances/19/properties.xml
296
301
  - server/instances/2/properties.xml
302
+ - server/instances/20/properties.xml
303
+ - server/instances/21/properties.xml
304
+ - server/instances/22/properties.xml
305
+ - server/instances/23/properties.xml
306
+ - server/instances/24/properties.xml
307
+ - server/instances/25/properties.xml
308
+ - server/instances/26/properties.xml
309
+ - server/instances/27/properties.xml
310
+ - server/instances/28/properties.xml
311
+ - server/instances/29/properties.xml
297
312
  - server/instances/3/properties.xml
313
+ - server/instances/30/notifications/f7afc30fd195bc06ac100a9b848c5da3/consumer-secret
314
+ - server/instances/30/notifications/f7afc30fd195bc06ac100a9b848c5da3/producer-secret
315
+ - server/instances/30/notifications/f7afc30fd195bc06ac100a9b848c5da3/subscription.xml
316
+ - server/instances/30/properties.xml
298
317
  - server/instances/4/properties.xml
299
318
  - server/instances/5/properties.xml
300
319
  - server/instances/6/properties.xml
@@ -311,7 +330,6 @@ files:
311
330
  - server/resources/transformation.xml
312
331
  - server/resources/transformation_dslx.xsl
313
332
  - server/server.rb
314
- - server/weel.rb
315
333
  - test/callback.rb
316
334
  homepage: http://cpee.org/
317
335
  licenses:
@@ -1 +0,0 @@
1
- server/usr/local/share/gems/gems/weel-1.99.45/lib/weel.rb