cpee 2.1.110 → 2.1.112
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.
- checksums.yaml +4 -4
- data/cockpit/css/extended_columns-label.css +1 -1
- data/cockpit/css/extended_columns-svg.css +18 -6
- data/cockpit/css/llm.css +1 -1
- data/cockpit/css/ui.css +1 -1
- data/cockpit/css/wfadaptor.css +3 -3
- data/cockpit/david.html +1 -1
- data/cockpit/edit.html +1 -1
- data/cockpit/graph.html +1 -1
- data/cockpit/index.html +1 -1
- data/cockpit/js/extended_columns.js +113 -26
- data/cockpit/js/instance.js +34 -8
- data/cockpit/js/wfadaptor.js +3 -2
- data/cockpit/llm.html +1 -1
- data/cockpit/llm_alternative.html +1 -1
- data/cockpit/model.html +1 -1
- data/cockpit/only_llm.html +1 -1
- data/cockpit/templates/Coopis 2010 Replay.xml +214 -0
- data/cockpit/templates/Coopis 2010.xml +16 -9
- data/cockpit/templates/Frames.xml +47 -23
- data/cockpit/templates/ML-pipe-multi.xml +0 -1
- data/cockpit/templates/Worklist Vote.xml +1 -1
- data/cockpit/templates/Worklist.xml +1 -1
- data/cockpit/themes/base.js +51 -34
- data/cockpit/themes/control/symbols/mark.svg +8 -0
- data/cockpit/themes/dataflow/symbols/mark.svg +8 -0
- data/cockpit/themes/default/symbols/mark.svg +8 -0
- data/cockpit/themes/extended/symbols/mark.svg +8 -0
- data/cockpit/themes/felix/symbols/mark.svg +8 -0
- data/cockpit/themes/model/symbols/mark.svg +8 -0
- data/cockpit/themes/packed/symbols/mark.svg +8 -0
- data/cockpit/themes/preset/symbols/mark.svg +8 -0
- data/cockpit/themes/presetaltid/symbols/mark.svg +8 -0
- data/cockpit/themes/presetid/symbols/mark.svg +8 -0
- data/cockpit/themes/reduced/symbols/mark.svg +8 -0
- data/cockpit/track.html +1 -1
- data/cpee.gemspec +1 -1
- data/server/executionhandlers/eval/connection.rb +2 -1
- data/server/executionhandlers/ruby/connection.rb +2 -1
- data/server/executionhandlers/ruby/dsl_to_dslx.xsl +1 -1
- data/server/resources/topics.xml +2 -0
- data/tools/server/resources/properties.init +6 -1
- metadata +13 -1
data/cockpit/track.html
CHANGED
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
<div id="modelling">
|
|
143
143
|
<div id='graphgrid'>
|
|
144
144
|
<div class="resource-label" style="display: none"></div>
|
|
145
|
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:x="http://www.w3.org/1999/xlink" id='graphcanvas' width='1' height='1'></svg>
|
|
145
|
+
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:x="http://www.w3.org/1999/xlink" id='graphcanvas' class='graphcolumn' width='1' height='1'></svg>
|
|
146
146
|
</div>
|
|
147
147
|
</div>
|
|
148
148
|
</div>
|
data/cpee.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee"
|
|
3
|
-
s.version = "2.1.
|
|
3
|
+
s.version = "2.1.112"
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.license = "LGPL-3.0-or-later"
|
|
6
6
|
s.summary = "The cloud process execution engine (cpee.org). If you just need workflow execution, without a rest service exposing it, then use WEEL."
|
|
@@ -127,8 +127,9 @@ class ConnectionWrapper < WEEL::ConnectionWrapperBase
|
|
|
127
127
|
|
|
128
128
|
status = result = headers = nil
|
|
129
129
|
begin
|
|
130
|
-
tendpoint = @handler_endpoint.sub(/^http(s)?-(get|put|post|delete):/,'http\\1:')
|
|
130
|
+
tendpoint = @handler_endpoint.sub(/^http(s)?-(get|put|post|delete|patch):/,'http\\1:')
|
|
131
131
|
type = $2 || parameters[:method] || 'post'
|
|
132
|
+
tendpoint.gsub!(/{([^\/\}]+)}/,'\\1')
|
|
132
133
|
|
|
133
134
|
client = Riddl::Client.new(tendpoint)
|
|
134
135
|
|
|
@@ -127,8 +127,9 @@ class ConnectionWrapper < WEEL::ConnectionWrapperBase
|
|
|
127
127
|
|
|
128
128
|
status = result = headers = nil
|
|
129
129
|
begin
|
|
130
|
-
tendpoint = @handler_endpoint.sub(/^http(s)?-(get|put|post|delete):/,'http\\1:')
|
|
130
|
+
tendpoint = @handler_endpoint.sub(/^http(s)?-(get|put|post|delete|patch):/,'http\\1:')
|
|
131
131
|
type = $2 || parameters[:method] || 'post'
|
|
132
|
+
tendpoint.gsub!(/{([^\/\}]+)}/,'\\1')
|
|
132
133
|
|
|
133
134
|
client = Riddl::Client.new(tendpoint)
|
|
134
135
|
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
<xsl:text>, parameters: { </xsl:text>
|
|
53
53
|
<xsl:apply-templates select="d:parameters"/>
|
|
54
54
|
<xsl:text> }</xsl:text>
|
|
55
|
-
<xsl:if test="d:code/d:signal[text()='
|
|
55
|
+
<xsl:if test="d:code/d:signal[text()='true']">
|
|
56
56
|
<xsl:text>, signal: true</xsl:text>
|
|
57
57
|
</xsl:if>
|
|
58
58
|
<xsl:if test="(d:finalize or d:code/d:finalize) and (d:finalize/text() or d:code/d:finalize/text())">
|
data/server/resources/topics.xml
CHANGED
|
@@ -22,11 +22,13 @@
|
|
|
22
22
|
<event>manipulating</event>
|
|
23
23
|
<event>status</event>
|
|
24
24
|
<event>done</event>
|
|
25
|
+
<event>annotation</event>
|
|
25
26
|
<vote>syncing_before</vote>
|
|
26
27
|
<vote>syncing_after</vote>
|
|
27
28
|
</topic>
|
|
28
29
|
<topic id='gateway'>
|
|
29
30
|
<event>decide</event>
|
|
31
|
+
<event>annotation</event>
|
|
30
32
|
<event>split</event>
|
|
31
33
|
<event>join</event>
|
|
32
34
|
</topic>
|
|
@@ -26,7 +26,12 @@
|
|
|
26
26
|
<positions/>
|
|
27
27
|
<dataelements/>
|
|
28
28
|
<endpoints>
|
|
29
|
-
<
|
|
29
|
+
<user>https-post://cpee.org/services/timeout-user.php</user>
|
|
30
|
+
<auto>https-post://cpee.org/services/timeout-auto.php</auto>
|
|
31
|
+
<subprocess>https-post://{cpee.org}/flow/start/url/</subprocess>
|
|
32
|
+
<timeout>https-post://cpee.org/services/timeout.php</timeout>
|
|
33
|
+
<send>https-post://cpee.org/ing/correlators/message/send/</send>
|
|
34
|
+
<receive>https-get://cpee.org/ing/correlators/message/receive/</receive>
|
|
30
35
|
</endpoints>
|
|
31
36
|
<attributes>
|
|
32
37
|
<info/>
|
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: 2.1.
|
|
4
|
+
version: 2.1.112
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen eTM Mangler
|
|
@@ -309,6 +309,7 @@ files:
|
|
|
309
309
|
- cockpit/templates.legacy/convert_preset.rb
|
|
310
310
|
- cockpit/templates.legacy/testsets.xml
|
|
311
311
|
- cockpit/templates.legacy/transformations.xml
|
|
312
|
+
- cockpit/templates/Coopis 2010 Replay.xml
|
|
312
313
|
- cockpit/templates/Coopis 2010.xml
|
|
313
314
|
- cockpit/templates/Frames.xml
|
|
314
315
|
- cockpit/templates/IUPC arXiv:1104.3609 P34 1.xml
|
|
@@ -380,6 +381,7 @@ files:
|
|
|
380
381
|
- cockpit/themes/control/symbols/loop.svg
|
|
381
382
|
- cockpit/themes/control/symbols/loop_end.svg
|
|
382
383
|
- cockpit/themes/control/symbols/manipulate.svg
|
|
384
|
+
- cockpit/themes/control/symbols/mark.svg
|
|
383
385
|
- cockpit/themes/control/symbols/otherwise.svg
|
|
384
386
|
- cockpit/themes/control/symbols/parallel.svg
|
|
385
387
|
- cockpit/themes/control/symbols/parallel_branch.svg
|
|
@@ -441,6 +443,7 @@ files:
|
|
|
441
443
|
- cockpit/themes/dataflow/symbols/loop.svg
|
|
442
444
|
- cockpit/themes/dataflow/symbols/loop_end.svg
|
|
443
445
|
- cockpit/themes/dataflow/symbols/manipulate.svg
|
|
446
|
+
- cockpit/themes/dataflow/symbols/mark.svg
|
|
444
447
|
- cockpit/themes/dataflow/symbols/otherwise.svg
|
|
445
448
|
- cockpit/themes/dataflow/symbols/parallel.svg
|
|
446
449
|
- cockpit/themes/dataflow/symbols/parallel_branch.svg
|
|
@@ -502,6 +505,7 @@ files:
|
|
|
502
505
|
- cockpit/themes/default/symbols/loop.svg
|
|
503
506
|
- cockpit/themes/default/symbols/loop_end.svg
|
|
504
507
|
- cockpit/themes/default/symbols/manipulate.svg
|
|
508
|
+
- cockpit/themes/default/symbols/mark.svg
|
|
505
509
|
- cockpit/themes/default/symbols/otherwise.svg
|
|
506
510
|
- cockpit/themes/default/symbols/parallel.svg
|
|
507
511
|
- cockpit/themes/default/symbols/parallel_branch.svg
|
|
@@ -563,6 +567,7 @@ files:
|
|
|
563
567
|
- cockpit/themes/extended/symbols/loop.svg
|
|
564
568
|
- cockpit/themes/extended/symbols/loop_end.svg
|
|
565
569
|
- cockpit/themes/extended/symbols/manipulate.svg
|
|
570
|
+
- cockpit/themes/extended/symbols/mark.svg
|
|
566
571
|
- cockpit/themes/extended/symbols/otherwise.svg
|
|
567
572
|
- cockpit/themes/extended/symbols/parallel.svg
|
|
568
573
|
- cockpit/themes/extended/symbols/parallel_branch.svg
|
|
@@ -623,6 +628,7 @@ files:
|
|
|
623
628
|
- cockpit/themes/felix/symbols/loop.svg
|
|
624
629
|
- cockpit/themes/felix/symbols/loop_end.svg
|
|
625
630
|
- cockpit/themes/felix/symbols/manipulate.svg
|
|
631
|
+
- cockpit/themes/felix/symbols/mark.svg
|
|
626
632
|
- cockpit/themes/felix/symbols/otherwise.svg
|
|
627
633
|
- cockpit/themes/felix/symbols/parallel.svg
|
|
628
634
|
- cockpit/themes/felix/symbols/parallel_branch.svg
|
|
@@ -679,6 +685,7 @@ files:
|
|
|
679
685
|
- cockpit/themes/model/symbols/loop.svg
|
|
680
686
|
- cockpit/themes/model/symbols/loop_end.svg
|
|
681
687
|
- cockpit/themes/model/symbols/manipulate.svg
|
|
688
|
+
- cockpit/themes/model/symbols/mark.svg
|
|
682
689
|
- cockpit/themes/model/symbols/otherwise.svg
|
|
683
690
|
- cockpit/themes/model/symbols/parallel.svg
|
|
684
691
|
- cockpit/themes/model/symbols/parallel_branch.svg
|
|
@@ -740,6 +747,7 @@ files:
|
|
|
740
747
|
- cockpit/themes/packed/symbols/loop.svg
|
|
741
748
|
- cockpit/themes/packed/symbols/loop_end.svg
|
|
742
749
|
- cockpit/themes/packed/symbols/manipulate.svg
|
|
750
|
+
- cockpit/themes/packed/symbols/mark.svg
|
|
743
751
|
- cockpit/themes/packed/symbols/otherwise.svg
|
|
744
752
|
- cockpit/themes/packed/symbols/parallel.svg
|
|
745
753
|
- cockpit/themes/packed/symbols/parallel_branch.svg
|
|
@@ -801,6 +809,7 @@ files:
|
|
|
801
809
|
- cockpit/themes/preset/symbols/loop.svg
|
|
802
810
|
- cockpit/themes/preset/symbols/loop_end.svg
|
|
803
811
|
- cockpit/themes/preset/symbols/manipulate.svg
|
|
812
|
+
- cockpit/themes/preset/symbols/mark.svg
|
|
804
813
|
- cockpit/themes/preset/symbols/otherwise.svg
|
|
805
814
|
- cockpit/themes/preset/symbols/parallel.svg
|
|
806
815
|
- cockpit/themes/preset/symbols/parallel_branch.svg
|
|
@@ -862,6 +871,7 @@ files:
|
|
|
862
871
|
- cockpit/themes/presetaltid/symbols/loop.svg
|
|
863
872
|
- cockpit/themes/presetaltid/symbols/loop_end.svg
|
|
864
873
|
- cockpit/themes/presetaltid/symbols/manipulate.svg
|
|
874
|
+
- cockpit/themes/presetaltid/symbols/mark.svg
|
|
865
875
|
- cockpit/themes/presetaltid/symbols/otherwise.svg
|
|
866
876
|
- cockpit/themes/presetaltid/symbols/parallel.svg
|
|
867
877
|
- cockpit/themes/presetaltid/symbols/parallel_branch.svg
|
|
@@ -923,6 +933,7 @@ files:
|
|
|
923
933
|
- cockpit/themes/presetid/symbols/loop.svg
|
|
924
934
|
- cockpit/themes/presetid/symbols/loop_end.svg
|
|
925
935
|
- cockpit/themes/presetid/symbols/manipulate.svg
|
|
936
|
+
- cockpit/themes/presetid/symbols/mark.svg
|
|
926
937
|
- cockpit/themes/presetid/symbols/otherwise.svg
|
|
927
938
|
- cockpit/themes/presetid/symbols/parallel.svg
|
|
928
939
|
- cockpit/themes/presetid/symbols/parallel_branch.svg
|
|
@@ -984,6 +995,7 @@ files:
|
|
|
984
995
|
- cockpit/themes/reduced/symbols/loop.svg
|
|
985
996
|
- cockpit/themes/reduced/symbols/loop_end.svg
|
|
986
997
|
- cockpit/themes/reduced/symbols/manipulate.svg
|
|
998
|
+
- cockpit/themes/reduced/symbols/mark.svg
|
|
987
999
|
- cockpit/themes/reduced/symbols/otherwise.svg
|
|
988
1000
|
- cockpit/themes/reduced/symbols/parallel.svg
|
|
989
1001
|
- cockpit/themes/reduced/symbols/parallel_branch.svg
|