cpee 1.3.145 → 1.3.146
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/cpee.gemspec +1 -1
- data/server/resources/transformation_dslx.xsl +27 -4
- 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: 2adaf4a052feb8d3ddc9ca98b6faeca460a5deb1
|
|
4
|
+
data.tar.gz: bfb7e18a6454aad0a16a693b84e67b34e9c96df1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 807102541f2c056ad8e0af69ea4a4bcc39f966b03686f33cb7402bc1412f3ef0d4633db404c6442c89aaaac46267d2bb4f9606cf282ef173f6a808f6d85e03a3
|
|
7
|
+
data.tar.gz: 62237b01edc66567ee3afce4c28e89e0f06bb5b1c4c66e181c373bb07192a629e5b4b4f31b25f6d1a45c51e16bd53d073432a246c86c56c5c637586c8eb10e70
|
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.146"
|
|
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"
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
<xsl:otherwise>
|
|
103
103
|
<xsl:text>pre_test("</xsl:text>
|
|
104
104
|
<xsl:value-of select="@pre_test"/>
|
|
105
|
-
<xsl:text>")
|
|
105
|
+
<xsl:text>")</xsl:text>
|
|
106
106
|
</xsl:otherwise>
|
|
107
107
|
</xsl:choose>
|
|
108
108
|
</xsl:if>
|
|
@@ -116,11 +116,18 @@
|
|
|
116
116
|
<xsl:otherwise>
|
|
117
117
|
<xsl:text>post_test("</xsl:text>
|
|
118
118
|
<xsl:value-of select="@post_test"/>
|
|
119
|
-
<xsl:text>")
|
|
119
|
+
<xsl:text>")</xsl:text>
|
|
120
120
|
</xsl:otherwise>
|
|
121
121
|
</xsl:choose>
|
|
122
122
|
</xsl:if>
|
|
123
|
-
<xsl:
|
|
123
|
+
<xsl:for-each select="@*[not(name()='language' or name()='pre_test' or name()='post_test')]">
|
|
124
|
+
<xsl:text>, :</xsl:text>
|
|
125
|
+
<xsl:value-of select="name(.)"/>
|
|
126
|
+
<xsl:text> => "</xsl:text>
|
|
127
|
+
<xsl:value-of select="."/>
|
|
128
|
+
<xsl:text>"</xsl:text>
|
|
129
|
+
</xsl:for-each>
|
|
130
|
+
<xsl:text> do</xsl:text>
|
|
124
131
|
<xsl:call-template name="print-newline"/>
|
|
125
132
|
<xsl:apply-templates>
|
|
126
133
|
<xsl:with-param name="myspace">
|
|
@@ -211,6 +218,13 @@
|
|
|
211
218
|
<xsl:text>"</xsl:text>
|
|
212
219
|
</xsl:otherwise>
|
|
213
220
|
</xsl:choose>
|
|
221
|
+
<xsl:for-each select="@*[not(name()='language' or name()='condition')]">
|
|
222
|
+
<xsl:text>, :</xsl:text>
|
|
223
|
+
<xsl:value-of select="name(.)"/>
|
|
224
|
+
<xsl:text> => "</xsl:text>
|
|
225
|
+
<xsl:value-of select="."/>
|
|
226
|
+
<xsl:text>"</xsl:text>
|
|
227
|
+
</xsl:for-each>
|
|
214
228
|
<xsl:text> do</xsl:text>
|
|
215
229
|
<xsl:call-template name="print-newline"/>
|
|
216
230
|
<xsl:apply-templates>
|
|
@@ -235,7 +249,16 @@
|
|
|
235
249
|
<xsl:value-of select="$myspace+$myspacemultiplier"/>
|
|
236
250
|
</xsl:with-param>
|
|
237
251
|
</xsl:call-template>
|
|
238
|
-
<xsl:text>otherwise
|
|
252
|
+
<xsl:text>otherwise </xsl:text>
|
|
253
|
+
<xsl:for-each select="@*[not(name()='language' or name()='condition')]">
|
|
254
|
+
<xsl:if test="position() >1">, </xsl:if>
|
|
255
|
+
<xsl:text>:</xsl:text>
|
|
256
|
+
<xsl:value-of select="name(.)"/>
|
|
257
|
+
<xsl:text> => "</xsl:text>
|
|
258
|
+
<xsl:value-of select="."/>
|
|
259
|
+
<xsl:text>"</xsl:text>
|
|
260
|
+
</xsl:for-each>
|
|
261
|
+
<xsl:text> do</xsl:text>
|
|
239
262
|
<xsl:call-template name="print-newline"/>
|
|
240
263
|
<xsl:apply-templates>
|
|
241
264
|
<xsl:with-param name="myspace">
|