cpee 2.1.8 → 2.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cockpit/css/ui.css +1 -1
- data/cockpit/edit.html +1 -2
- data/cockpit/index.html +1 -2
- data/cockpit/js/modifiers.js +7 -7
- data/cockpit/model.html +1 -2
- data/cockpit/templates/UR-VUE 2020 Solution Baseline.xml.active +1 -0
- data/cockpit/templates/UR-VUE 2020 Solution Baseline.xml.active-uuid +1 -0
- data/cpee.gemspec +1 -1
- data/server/routing/end.pid +1 -1
- data/server/routing/forward-events.pid +1 -1
- data/server/routing/forward-votes.pid +1 -1
- data/server/routing/persist.pid +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d53dc72e24a3fb020406bdc895b053ea57e66e0c8fd2c31494ac45d821186bb8
|
4
|
+
data.tar.gz: fe2f6c47d2cec87e99d233867e86de7c4d86d02c2ceff30e31abcd418f5ce506
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d63332228480551be2515cc616524dbdc1d3f02605ad7774341ee2bc6f5138f2cb15d9ef0c44708ec78c4f697c16b3be4c1359919726089f3fce3d4181578692
|
7
|
+
data.tar.gz: 5633233f63f21712876b602c5997bce33ea5f80eb6733803f7228fe3f927a53156c6b4950a79c5062957c8fe4df759aba94d6ba6954d38c0832cfe0e8b7feff2
|
data/cockpit/css/ui.css
CHANGED
@@ -243,4 +243,4 @@ span.vote {
|
|
243
243
|
overflow: auto;
|
244
244
|
}
|
245
245
|
#disclaimer p { max-width: 80ex; text-align: justify; }
|
246
|
-
#disclaimer input { margin:0; padding:0; vertical-align:
|
246
|
+
#disclaimer input { margin:0; padding:0; vertical-align:baseline; margin-right: 0.5em; }
|
data/cockpit/edit.html
CHANGED
@@ -92,14 +92,13 @@
|
|
92
92
|
</p>
|
93
93
|
|
94
94
|
<p>
|
95
|
-
This demonstrator
|
95
|
+
This demonstrator is hosted in Austria. All liability is excluded to the extent
|
96
96
|
permitted by law including any implied terms. Any interpretation of its
|
97
97
|
content, claims or disputes (of whatever nature and not limited to contractual
|
98
98
|
issues) shall be subject to the exclusive jurisdiction of the Austrian Courts
|
99
99
|
under Austrian law.
|
100
100
|
</p>
|
101
101
|
|
102
|
-
|
103
102
|
<p>
|
104
103
|
All actions performed while using this demonstrator will be logged, including
|
105
104
|
the IP address of the user.
|
data/cockpit/index.html
CHANGED
@@ -91,14 +91,13 @@
|
|
91
91
|
</p>
|
92
92
|
|
93
93
|
<p>
|
94
|
-
This demonstrator
|
94
|
+
This demonstrator is hosted in Austria. All liability is excluded to the extent
|
95
95
|
permitted by law including any implied terms. Any interpretation of its
|
96
96
|
content, claims or disputes (of whatever nature and not limited to contractual
|
97
97
|
issues) shall be subject to the exclusive jurisdiction of the Austrian Courts
|
98
98
|
under Austrian law.
|
99
99
|
</p>
|
100
100
|
|
101
|
-
|
102
101
|
<p>
|
103
102
|
All actions performed while using this demonstrator will be logged, including
|
104
103
|
the IP address of the user.
|
data/cockpit/js/modifiers.js
CHANGED
@@ -5,20 +5,20 @@ $(document).ready(function() {
|
|
5
5
|
|
6
6
|
$(document).on('input','#modifiers div.additional input, #modifiers div.additional textarea, #modifiers div.additional [contenteditable]',function(e){
|
7
7
|
clearTimeout(timer);
|
8
|
-
timer = setTimeout(function(){
|
8
|
+
timer = setTimeout(function(){ do_mod_save(e.target) }, 5000);
|
9
9
|
});
|
10
10
|
$(document).on('change','#modifiers div.additional select',function(e){
|
11
11
|
clearTimeout(timer);
|
12
|
-
|
12
|
+
do_mod_save(e.target);
|
13
13
|
});
|
14
14
|
$(document).on('blur','#modifiers div.additional input, #modifiers div.additional textarea, #modifiers div.additional [contenteditable]',function(e){
|
15
15
|
clearTimeout(timer);
|
16
|
-
|
16
|
+
do_mod_save(e.target);
|
17
17
|
});
|
18
18
|
$(document).on('keypress','#modifiers div.additional input',function(e){
|
19
19
|
if (e.keyCode == 13) {
|
20
20
|
clearTimeout(timer);
|
21
|
-
|
21
|
+
do_mod_save(e.target);
|
22
22
|
}
|
23
23
|
});
|
24
24
|
$(document).on('keypress','#modifiers div.additional [contenteditable]',function(e){
|
@@ -29,15 +29,15 @@ $(document).ready(function() {
|
|
29
29
|
});
|
30
30
|
$(document).on('relaxngui_remove', '#modifiers div.additional', function(e){
|
31
31
|
clearTimeout(timer);
|
32
|
-
|
32
|
+
do_mod_save(e.target);
|
33
33
|
});
|
34
34
|
$(document).on('relaxngui_move', '#modifiers div.additional', function(e){
|
35
35
|
clearTimeout(timer);
|
36
|
-
|
36
|
+
do_mod_save(e.target);
|
37
37
|
});
|
38
38
|
});
|
39
39
|
|
40
|
-
function
|
40
|
+
function do_mod_save(target) {
|
41
41
|
let div = $(target).parents('div[data-resource]');
|
42
42
|
let top = div.attr('data-resource');
|
43
43
|
let doc = save['modifiers_additional'][top].save();
|
data/cockpit/model.html
CHANGED
@@ -94,14 +94,13 @@
|
|
94
94
|
</p>
|
95
95
|
|
96
96
|
<p>
|
97
|
-
This demonstrator
|
97
|
+
This demonstrator is hosted in Austria. All liability is excluded to the extent
|
98
98
|
permitted by law including any implied terms. Any interpretation of its
|
99
99
|
content, claims or disputes (of whatever nature and not limited to contractual
|
100
100
|
issues) shall be subject to the exclusive jurisdiction of the Austrian Courts
|
101
101
|
under Austrian law.
|
102
102
|
</p>
|
103
103
|
|
104
|
-
|
105
104
|
<p>
|
106
105
|
All actions performed while using this demonstrator will be logged, including
|
107
106
|
the IP address of the user.
|
@@ -0,0 +1 @@
|
|
1
|
+
https://cpee.org/flow/engine/613
|
@@ -0,0 +1 @@
|
|
1
|
+
ffbc55c8-0759-42f8-955e-30ebf9c086a6
|
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.9"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.license = "LGPL-3.0"
|
6
6
|
s.summary = "Preliminary release of cloud process execution engine (cpee.org). If you just need workflow execution, without a rest service exposing it, then use WEEL."
|
data/server/routing/end.pid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
42643
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
42631
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
42635
|
data/server/routing/persist.pid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
42639
|
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.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juergen eTM Mangler
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: tools
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-06-
|
13
|
+
date: 2021-06-29 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: riddl
|
@@ -202,6 +202,8 @@ files:
|
|
202
202
|
- cockpit/templates/Track Test.xml
|
203
203
|
- cockpit/templates/UR-VUE 2020 Manual Adjust.xml
|
204
204
|
- cockpit/templates/UR-VUE 2020 Solution Baseline.xml
|
205
|
+
- cockpit/templates/UR-VUE 2020 Solution Baseline.xml.active
|
206
|
+
- cockpit/templates/UR-VUE 2020 Solution Baseline.xml.active-uuid
|
205
207
|
- cockpit/templates/UR-VUE 2020 Solution NN.xml
|
206
208
|
- cockpit/templates/UR-VUE 2020 Solution View.xml
|
207
209
|
- cockpit/templates/UR-VUE 2020.xml
|