cpee 2.1.54 → 2.1.55
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 +2 -2
- 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: acbdde24b745eb2500d3d97ebc420bf339e2d91b27112b218e89937ebd14f867
|
|
4
|
+
data.tar.gz: 6803d51bab8de86ad7ee04f020322b449c15194ac8706b0e242ad70451278b24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c17020b1920c7121a12b8118e325ae0828a4c39b9b3d72eb16db3a2c4b274b5a91523a5b4ace73c1395f89980403598381c7dc52068e4daecda933698efc9b6a
|
|
7
|
+
data.tar.gz: 4dad3811a454bbe4ef660fbbd2e73e87e97b8dd058a36d3234a17dc27fb484f154a0486f4495b0de9c09055355e6044808335f38ebe6190131ada75b7626b7d5
|
data/cockpit/js/instance.js
CHANGED
|
@@ -679,8 +679,8 @@ function adaptor_init(url,theme,dslx) { //{{{
|
|
|
679
679
|
xwidth = xwidth + 2 * space;
|
|
680
680
|
if (striped == true) {
|
|
681
681
|
for (var i = 0; i < max.row; i++) {
|
|
682
|
-
svgback.append($X('<rect xmlns="http://www.w3.org/2000/svg" class="stripe ' + (i % 2 == 0 ? 'even' : 'odd') + '" x="0" y="' + (dimensions.height * i + dimensions.height_shift/2) + '" width="' + (xwidth + 1) + '" height="' + dimensions.height + '"></rect>'));
|
|
683
|
-
svgback.append($X('<rect xmlns="http://www.w3.org/2000/svg" class="border" x="0" y="' + (dimensions.height * i + dimensions.height_shift/2) + '" height="' + dimensions.height + '" width="1"></rect>'));
|
|
682
|
+
svgback.append($X('<rect xmlns="http://www.w3.org/2000/svg" element-row="' + i + '" class="stripe ' + (i % 2 == 0 ? 'even' : 'odd') + '" x="0" y="' + (dimensions.height * i + dimensions.height_shift/2) + '" width="' + (xwidth + 1) + '" height="' + dimensions.height + '"></rect>'));
|
|
683
|
+
svgback.append($X('<rect xmlns="http://www.w3.org/2000/svg" element-row="' + i + '" class="border" x="0" y="' + (dimensions.height * i + dimensions.height_shift/2) + '" height="' + dimensions.height + '" width="1"></rect>'));
|
|
684
684
|
}
|
|
685
685
|
}
|
|
686
686
|
if (tcolumntype[h] == "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.1.
|
|
3
|
+
s.version = "2.1.55"
|
|
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."
|