cpee 2.0.22 → 2.0.23
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/js/instance.js +9 -7
- data/cockpit/templates/.CPEE.xml +8 -0
- data/cockpit/templates/.Signavio.xml +8 -0
- data/cockpit/templates/.templates.xml +13 -0
- data/cockpit/templates/.transformations.xml +4 -0
- data/cpee.gemspec +2 -2
- data/server/resources/notifications/logging/subscription.xml +6 -0
- metadata +6 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 245c1fa5ecd451992f6fb7ba0386858bc8595f640e08c353ad153ec69e57eb14
|
|
4
|
+
data.tar.gz: 71f69beee300e44b98c70b97c06818fea60fe18685e9080f6e796d95109ee20c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2aac6ff87441d239b3d0c359c3a42fe489e3f6e6bf7f8363d66032a53095c818d6162db6e9d448bcf20a8cc379815bf7b126f6a2cab122381709d9cc2f387d30
|
|
7
|
+
data.tar.gz: 0acb4ca004b780c45eb46736b98b4c30c0709e22dc97e674c62a2ff5a0971447e12940b7c1fb14fdc5b5044cdb8614c6a7447e19307bb8baca6f78f9baa76ec1
|
data/cockpit/js/instance.js
CHANGED
|
@@ -629,9 +629,11 @@ function monitor_instance_state() {// {{{
|
|
|
629
629
|
}// }}}
|
|
630
630
|
function monitor_instance_transformation() {// {{{
|
|
631
631
|
var url = $('body').attr('current-instance');
|
|
632
|
+
console.log('hallo');
|
|
633
|
+
console.log(url);
|
|
632
634
|
$.ajax({
|
|
633
635
|
type: "GET",
|
|
634
|
-
url: url + "/properties/attributes/modeltype",
|
|
636
|
+
url: url + "/properties/attributes/modeltype/",
|
|
635
637
|
success: function(res){
|
|
636
638
|
$("#currentmodel").text(res);
|
|
637
639
|
},
|
|
@@ -774,7 +776,7 @@ function start_instance() {// {{{
|
|
|
774
776
|
var url = $('body').attr('current-instance');
|
|
775
777
|
$.ajax({
|
|
776
778
|
type: "PUT",
|
|
777
|
-
url: url + "/properties/state",
|
|
779
|
+
url: url + "/properties/state/",
|
|
778
780
|
data: ({value: "running"}),
|
|
779
781
|
error: report_failure
|
|
780
782
|
});
|
|
@@ -783,7 +785,7 @@ function replay_instance() {// {{{
|
|
|
783
785
|
var url = $('body').attr('current-instance');
|
|
784
786
|
$.ajax({
|
|
785
787
|
type: "PUT",
|
|
786
|
-
url: url + "/properties/state",
|
|
788
|
+
url: url + "/properties/state/",
|
|
787
789
|
data: ({value: "replaying"}),
|
|
788
790
|
error: report_failure
|
|
789
791
|
});
|
|
@@ -793,7 +795,7 @@ function aba_instance() {// {{{
|
|
|
793
795
|
var url = $('body').attr('current-instance');
|
|
794
796
|
$.ajax({
|
|
795
797
|
type: "PUT",
|
|
796
|
-
url: url + "/properties/state",
|
|
798
|
+
url: url + "/properties/state/",
|
|
797
799
|
data: ({value: "abandoned"}),
|
|
798
800
|
error: report_failure
|
|
799
801
|
});
|
|
@@ -802,7 +804,7 @@ function stop_instance() {// {{{
|
|
|
802
804
|
var url = $('body').attr('current-instance');
|
|
803
805
|
$.ajax({
|
|
804
806
|
type: "PUT",
|
|
805
|
-
url: url + "/properties/state",
|
|
807
|
+
url: url + "/properties/state/",
|
|
806
808
|
data: ({value: "stopping"}),
|
|
807
809
|
error: report_failure
|
|
808
810
|
});
|
|
@@ -951,7 +953,7 @@ async function set_testset(testset,exec) {// {{{
|
|
|
951
953
|
success: function(res){
|
|
952
954
|
$.ajax({
|
|
953
955
|
type: "PUT",
|
|
954
|
-
url: url + "/properties/state",
|
|
956
|
+
url: url + "/properties/state/",
|
|
955
957
|
data: ({value: res}),
|
|
956
958
|
error: report_failure,
|
|
957
959
|
success: function(res){
|
|
@@ -1053,7 +1055,7 @@ function load_modeltype() {// {{{
|
|
|
1053
1055
|
success: function(res){
|
|
1054
1056
|
$.ajax({
|
|
1055
1057
|
type: "PUT",
|
|
1056
|
-
url: url + "/properties/attributes/modeltype",
|
|
1058
|
+
url: url + "/properties/attributes/modeltype/",
|
|
1057
1059
|
data: ({value: name}),
|
|
1058
1060
|
success: function(){
|
|
1059
1061
|
set_testset(res,false);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<testset>
|
|
3
|
+
<transformation>
|
|
4
|
+
<description type='rest'>http://localhost:9295/bpmn2/</description>
|
|
5
|
+
<dataelements type='rest'>http://localhost:9295/bpmn2/</dataelements>
|
|
6
|
+
<endpoints type='rest'>http://localhost:9295/bpmn2/</endpoints>
|
|
7
|
+
</transformation>
|
|
8
|
+
</testset>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<testsets>
|
|
2
|
+
<testset>UR-VUE 2020</testset>
|
|
3
|
+
<testset>UR-VUE 2020 Solution View</testset>
|
|
4
|
+
<testset>UR-VUE 2020 Solution Baseline</testset>
|
|
5
|
+
<testset>UR-VUE 2020 Solution NN</testset>
|
|
6
|
+
<testset>Coopis 2010</testset>
|
|
7
|
+
<testset>IUPC arXiv:1104.3609 P34 1</testset>
|
|
8
|
+
<testset>IUPC arXiv:1104.3609 P34 2</testset>
|
|
9
|
+
<testset>IUPC arXiv:1104.3609 P34 3</testset>
|
|
10
|
+
<testset>Worklist</testset>
|
|
11
|
+
<testset>Track Test</testset>
|
|
12
|
+
<testset>Track Test Local</testset>
|
|
13
|
+
</testsets>
|
data/cpee.gemspec
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee"
|
|
3
|
-
s.version = "2.0.
|
|
3
|
+
s.version = "2.0.23"
|
|
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."
|
|
7
7
|
|
|
8
8
|
s.description = "see http://cpee.org"
|
|
9
9
|
|
|
10
|
-
s.files = Dir['{example/**/*,server/**/*,tools/**/*,tools/archive,lib/**/*,cockpit/**/*,cockpit/themes/*/*/*,contrib/logo*,contrib/Screen*}'] - Dir['{server/instances/**/*,cockpit/js_libs/**/*,server/redis*}'] + %w(COPYING FEATURES.md INSTALL.md Rakefile cpee.gemspec README.md AUTHORS)
|
|
10
|
+
s.files = Dir['{example/**/*,server/**/*,tools/**/*,tools/archive,lib/**/*,cockpit/**/*,cockpit/templates/.templates.xml,cockpit/templates/.transformations.xml,cockpit/templates/.Signavio.xml,cockpit/templates/.CPEE.xml,cockpit/themes/*/*/*,contrib/logo*,contrib/Screen*}'] - Dir['{server/instances/**/*,cockpit/js_libs/**/*,server/redis*}'] + %w(COPYING FEATURES.md INSTALL.md Rakefile cpee.gemspec README.md AUTHORS)
|
|
11
11
|
s.require_path = 'lib'
|
|
12
12
|
s.extra_rdoc_files = ['README.md']
|
|
13
13
|
s.bindir = 'tools'
|
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.0.
|
|
4
|
+
version: 2.0.23
|
|
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: 2020-12-
|
|
13
|
+
date: 2020-12-17 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: riddl
|
|
@@ -185,6 +185,10 @@ files:
|
|
|
185
185
|
- cockpit/templates.legacy/convert_preset.rb
|
|
186
186
|
- cockpit/templates.legacy/testsets.xml
|
|
187
187
|
- cockpit/templates.legacy/transformations.xml
|
|
188
|
+
- cockpit/templates/.CPEE.xml
|
|
189
|
+
- cockpit/templates/.Signavio.xml
|
|
190
|
+
- cockpit/templates/.templates.xml
|
|
191
|
+
- cockpit/templates/.transformations.xml
|
|
188
192
|
- cockpit/templates/Coopis 2010.xml
|
|
189
193
|
- cockpit/templates/IUPC arXiv:1104.3609 P34 1.xml
|
|
190
194
|
- cockpit/templates/IUPC arXiv:1104.3609 P34 2.xml
|