cpee 2.0.15 → 2.0.16
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 +3 -0
- data/cockpit/js/model.js +1 -1
- data/cockpit/templates/UR-VUE 2020.xml +2 -2
- data/cpee.gemspec +1 -1
- data/tools/cpee +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bcc2914034c068617935d34e6fbef9702d4707465e1b5643be0d94ed9a6ff81d
|
|
4
|
+
data.tar.gz: 569ac606a86cac5d9cc1026c79362f61125c3938a821ac2dab19263b21cb0291
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: deee6aa33e4038728143d3f120d418327220f741ef2c0bd1fc87b80a7b2e75d430a075605f386b3af7747e2af0852993d24027cd4702a0b679534c2809befd45
|
|
7
|
+
data.tar.gz: a5bb1384576ee78ac6074e192bc989fb1166185c95fc1bcaac506ae597db6576ebc68586c8b2614cf282049f7b2701a974079c56d2d5ff1c10d8b4c826a36b17
|
data/cockpit/js/instance.js
CHANGED
|
@@ -442,6 +442,9 @@ function monitor_instance_values(val) {// {{{
|
|
|
442
442
|
var text = $(" > attributes > info",res).text() + " (" + url.replace(/\/$/,'').split(/[\\/]/).pop() + ")";
|
|
443
443
|
$('#title').text(text);
|
|
444
444
|
document.title = text;
|
|
445
|
+
if ($('body').attr('current-save')) {
|
|
446
|
+
$('body').attr('current-save-dir',$(" > attributes > design_dir",res).text());
|
|
447
|
+
}
|
|
445
448
|
if ($('body').attr('current-logs')) {
|
|
446
449
|
var uuid = $(" > attributes > uuid",res).text();
|
|
447
450
|
$("#current-log").show();
|
data/cockpit/js/model.js
CHANGED
|
@@ -22,7 +22,7 @@ $(document).ready(function() {
|
|
|
22
22
|
var def = new $.Deferred();
|
|
23
23
|
def.done(function(name,testset) {
|
|
24
24
|
$.ajax({
|
|
25
|
-
url: $('body').attr('current-save') + name + '.xml',
|
|
25
|
+
url: $('body').attr('current-save') + ($('body').attr('current-save-dir') ? ($('body').attr('current-save-dir') + '/').replace(/\/+/,'/') : '') + name + '.xml',
|
|
26
26
|
type: 'PUT',
|
|
27
27
|
contentType: 'application/xml',
|
|
28
28
|
data: testset.serializePrettyXML(),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<testset>
|
|
1
|
+
<testset xmlns="http://cpee.org/ns/properties/2.0">
|
|
2
2
|
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
|
3
3
|
<handlers>
|
|
4
4
|
<handler url="http://tango.wst.univie.ac.at:9332">
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<grip_and_place>http-put://ryloth.wst.univie.ac.at:9329/move/grip_and_place</grip_and_place>
|
|
19
19
|
<subprocess>https://cpee.org/flow/start/url/</subprocess>
|
|
20
20
|
<wait>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</wait>
|
|
21
|
-
<adjust>
|
|
21
|
+
<adjust>https://cpee.org/flow/templates/UR-VUE%202020%20Manual%20Adjust.xml</adjust>
|
|
22
22
|
</endpoints>
|
|
23
23
|
<attributes>
|
|
24
24
|
<resource>ur51</resource>
|
data/cpee.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee"
|
|
3
|
-
s.version = "2.0.
|
|
3
|
+
s.version = "2.0.16"
|
|
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/tools/cpee
CHANGED
|
@@ -65,7 +65,7 @@ p2 = ARGV[2]
|
|
|
65
65
|
cockpit = "#{curpath}/../cockpit/"
|
|
66
66
|
|
|
67
67
|
def js_libs(cockpit)
|
|
68
|
-
res = Typhoeus.get('
|
|
68
|
+
res = Typhoeus.get('https://cpee.org/js_libs/js_libs.zip')
|
|
69
69
|
if res.success?
|
|
70
70
|
File.write(File.join(cockpit,'js_libs.zip'),res.response_body)
|
|
71
71
|
Zip::File.open(File.join(cockpit,'js_libs.zip')) do |zip_file|
|
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.16
|
|
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-11-
|
|
13
|
+
date: 2020-11-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: riddl
|