cpee 2.1.26 → 2.1.27
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cpee.gemspec +1 -1
- data/server/executionhandlers/ruby/dsl_to_dslx.xsl +31 -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: 2e72947d6797d6a34cc0908b21b9d30d9186833a377cd38ff10ebcefe30b8618
|
4
|
+
data.tar.gz: 315abe74acc3d2e86555d8292d643df6f03ee4f5e7ef325f1ee05e87c08ccdee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd25a0b08d05b4b0d257364e55883f9257fbd29ba24dd9d08bdb2cad53c12dc3388914e711a5999d6e737d7e20eb8225d01f2efd758bb85b1afeb9d477b4ecb6
|
7
|
+
data.tar.gz: 8bd408a48e2868d761e27b0ebec57813b877711c41de16624102faedd4ffb3d2158cc54a0eedca2ff583069b9996547cde3ed2eb1d4b02055396ee6d70e553e2
|
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.27"
|
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."
|
@@ -417,7 +417,9 @@
|
|
417
417
|
<xsl:text>:</xsl:text>
|
418
418
|
<xsl:value-of select="name()"/>
|
419
419
|
<xsl:text> => </xsl:text>
|
420
|
-
<xsl:
|
420
|
+
<xsl:text>{ </xsl:text>
|
421
|
+
<xsl:apply-templates select="d:*" mode="simplemulti"/>
|
422
|
+
<xsl:text> }</xsl:text>
|
421
423
|
</xsl:template>
|
422
424
|
<xsl:template match="d:*[not(name()='label')]" mode="parameter">
|
423
425
|
<xsl:if test="count(preceding-sibling::*) > 0">, </xsl:if>
|
@@ -507,6 +509,34 @@
|
|
507
509
|
</xsl:choose>
|
508
510
|
<xsl:text> }</xsl:text>
|
509
511
|
</xsl:template>
|
512
|
+
<xsl:template match="d:*" mode="simplemulti">
|
513
|
+
<xsl:if test="count(preceding-sibling::*) > 0">, </xsl:if>
|
514
|
+
<xsl:text>:</xsl:text>
|
515
|
+
<xsl:value-of select="name()"/>
|
516
|
+
<xsl:text> => </xsl:text>
|
517
|
+
<xsl:choose>
|
518
|
+
<xsl:when test="count(*) > 0">
|
519
|
+
<xsl:text>{</xsl:text>
|
520
|
+
<xsl:apply-templates select="d:*" mode="plain"/>
|
521
|
+
<xsl:text>}</xsl:text>
|
522
|
+
</xsl:when>
|
523
|
+
<xsl:when test="not(node())">
|
524
|
+
<xsl:text>nil</xsl:text>
|
525
|
+
</xsl:when>
|
526
|
+
<xsl:otherwise>
|
527
|
+
<xsl:choose>
|
528
|
+
<xsl:when test="substring(text(),1,1) = '!'">
|
529
|
+
<xsl:value-of select="substring(text(),2)"/>
|
530
|
+
</xsl:when>
|
531
|
+
<xsl:otherwise>
|
532
|
+
<xsl:text>"</xsl:text>
|
533
|
+
<xsl:value-of select="str:replace(str:replace(text(),'\','\\'),'"','\"')"/>
|
534
|
+
<xsl:text>"</xsl:text>
|
535
|
+
</xsl:otherwise>
|
536
|
+
</xsl:choose>
|
537
|
+
</xsl:otherwise>
|
538
|
+
</xsl:choose>
|
539
|
+
</xsl:template>
|
510
540
|
<xsl:template name="format-name">
|
511
541
|
<xsl:param name="tname"/>
|
512
542
|
<xsl:choose>
|