cpee 1.3.145 → 1.3.146

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c0dc2529d07f9ef3df654dfae91aef2117c31ae8
4
- data.tar.gz: bc9b63fe537ecdffc405bef7110a03abbe594f79
3
+ metadata.gz: 2adaf4a052feb8d3ddc9ca98b6faeca460a5deb1
4
+ data.tar.gz: bfb7e18a6454aad0a16a693b84e67b34e9c96df1
5
5
  SHA512:
6
- metadata.gz: 687d6010942222aa7379df176ba8cbc7c38b3e3cd96f9b5b278508d72a04d0ed2dcab526dd096b1e89788f07b2577fec15d392cb89141f1dbaf0c2baf0e2144d
7
- data.tar.gz: cd4a7c0a21011d36afe6d4b1b45904453cc24e04a4d69272ba5acb9e339366f5bd30f763ed44bc808c9d8af3c5f51ed045f72ff388b03c4d08f9d7367fc4b213
6
+ metadata.gz: 807102541f2c056ad8e0af69ea4a4bcc39f966b03686f33cb7402bc1412f3ef0d4633db404c6442c89aaaac46267d2bb4f9606cf282ef173f6a808f6d85e03a3
7
+ data.tar.gz: 62237b01edc66567ee3afce4c28e89e0f06bb5b1c4c66e181c373bb07192a629e5b4b4f31b25f6d1a45c51e16bd53d073432a246c86c56c5c637586c8eb10e70
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "cpee"
3
- s.version = "1.3.145"
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>") </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>") </xsl:text>
119
+ <xsl:text>")</xsl:text>
120
120
  </xsl:otherwise>
121
121
  </xsl:choose>
122
122
  </xsl:if>
123
- <xsl:text>do</xsl:text>
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 do</xsl:text>
252
+ <xsl:text>otherwise </xsl:text>
253
+ <xsl:for-each select="@*[not(name()='language' or name()='condition')]">
254
+ <xsl:if test="position() &gt;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">
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cpee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.145
4
+ version: 1.3.146
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler