cpee 2.1.16 → 2.1.17
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 +5 -1
- data/cpee.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ea62a69f615adda56866c02d31f1ea478bd49f7eb8e96f8855ed4b81397257b
|
4
|
+
data.tar.gz: 2f357f76cf73517f41d17c18dbbc594c05e16f99548599f1dd596119c01f2a91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe3a326563ddab5daaf80aa114751fa17251579e3f6e33d3aa52031696f48b0fd5271e46f2a44f905366f7a82de57b2946d1815799ef175860b58c8d68f4dc27
|
7
|
+
data.tar.gz: 72ae028ddd526053ef10e40552ac84813502c3728e3c68bae9fc9d152f372796d4f57f313c9d025aec335d2784b1f124dc5f64cefab4fe54c079380dff150c71
|
data/cockpit/js/instance.js
CHANGED
@@ -1371,7 +1371,11 @@ function append_to_log(what,type,message) {//{{{
|
|
1371
1371
|
message = message.replace(/>/g, '>');
|
1372
1372
|
message = message.replace(/"/g, '"');
|
1373
1373
|
message = message.replace(/'/g, ''');
|
1374
|
-
|
1374
|
+
if (type == 'description/change') {
|
1375
|
+
$("#dat_log").prepend("<tr><td class='fixed'><a title=\"" + d.strftime("[%d/%b/%Y %H:%M:%S]") + "\">D</a></td><td class='fixed'> - </td><td class='fixed'><a title=\"" + what + "\">T</a></td><td class='fixed'> - </td><td class='fixed'>" + type + "</td><td class='fixed'> - </td><td class='long'>... check in persistent log ...</td></tr>");
|
1376
|
+
} else {
|
1377
|
+
$("#dat_log").prepend("<tr><td class='fixed'><a title=\"" + d.strftime("[%d/%b/%Y %H:%M:%S]") + "\">D</a></td><td class='fixed'> - </td><td class='fixed'><a title=\"" + what + "\">T</a></td><td class='fixed'> - </td><td class='fixed'>" + type + "</td><td class='fixed'> - </td><td class='long'>" + message + "</td></tr>");
|
1378
|
+
}
|
1375
1379
|
var dle = $("#dat_log").children();
|
1376
1380
|
if (dle.length > 100) {
|
1377
1381
|
dle.slice(100).each((k,ele) => {
|
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.17"
|
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."
|