cpee 1.3.156 → 1.3.157
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/wfadaptor.cpee.js +2 -2
- data/cpee.gemspec +1 -1
- data/lib/cpee/processtransformation/cpee.rb +1 -1
- data/server/resources/transformation_dslx.xsl +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e80836f7286ce1a53774afa036cc496cd0b5583a
|
|
4
|
+
data.tar.gz: c648baed787ca199f02ab2fe3f9d1e8657f99819
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53e1ad468c9f1203175a6a046d7c74d94f4a982ff0ce6a014a59bab87e736939dc471be0201de06b972ad282753aab36a50d8a312a9b50c2992edf827203841f
|
|
7
|
+
data.tar.gz: 2332be67b3d31380f30fe2a7ded2324854a41fd74b0abb4b541306170161d55c7dd335ac045c3d0b752eb94427dce967602046c47c020db7a58a04b1544ced58
|
|
@@ -447,7 +447,7 @@ function CPEE(adaptor) {
|
|
|
447
447
|
'click': events.click,
|
|
448
448
|
}//}}}
|
|
449
449
|
}; /*}}}*/
|
|
450
|
-
this.elements.
|
|
450
|
+
this.elements.escape = { /*{{{*/
|
|
451
451
|
'illustrator': {//{{{
|
|
452
452
|
'type' : 'primitive',
|
|
453
453
|
'endnodes' : 'this',
|
|
@@ -461,7 +461,7 @@ function CPEE(adaptor) {
|
|
|
461
461
|
},//}}}
|
|
462
462
|
'description' : {//{{{
|
|
463
463
|
'create': function(target) {
|
|
464
|
-
var node = $X('<
|
|
464
|
+
var node = $X('<escape xmlns="http://cpee.org/ns/description/1.0"/>');
|
|
465
465
|
return node;
|
|
466
466
|
},
|
|
467
467
|
'permissible_children': function(node) {
|
data/cpee.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee"
|
|
3
|
-
s.version = "1.3.
|
|
3
|
+
s.version = "1.3.157"
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.license = "LGPL-3"
|
|
6
6
|
s.summary = "Preliminary release of cloud process execution engine (cpee). If you just need workflow execution, without a rest/xmpp service exposing it, then use WEEL"
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
</xsl:call-template>
|
|
65
65
|
<xsl:call-template name="print-newline"/>
|
|
66
66
|
</xsl:if>
|
|
67
|
-
<xsl:if test="name()='
|
|
68
|
-
<xsl:text>
|
|
67
|
+
<xsl:if test="name()='escape'">
|
|
68
|
+
<xsl:text>escape</xsl:text>
|
|
69
69
|
<xsl:call-template name="print-newline"/>
|
|
70
70
|
</xsl:if>
|
|
71
71
|
<xsl:if test="name()='parallel'">
|