cpee 1.3.154 → 1.3.155

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b82462869a2853a428365a5d22819a6bc9012e7
4
- data.tar.gz: dadf5ce874de2edc08552e8646e3ce1e15d65339
3
+ metadata.gz: 356d1c75922b4ea3e258d585c67380bbe814c4b6
4
+ data.tar.gz: cb59a8ca1c613133ff1c6c4125130cf1ba4c0efe
5
5
  SHA512:
6
- metadata.gz: 270cf087d7420d7a9a68623accbd86f4ae983b8434af89127eac41140cc046590320331f064d20afe1971a04fc8121395c85b66b36b63b728e30d8f8938e719f
7
- data.tar.gz: 28f94599b36695d4acd61db487bc526e1aea42df4c879beaade34cc059626eed138c6467fd80db6a144a0cb9af69b4521971381fdefad2aa4980454dbfd851df
6
+ metadata.gz: 46df90eac8d9fc70653d21b9670ebb29fa6cfe44bf6260ca61eb7c922433feb3af9f951d9e0735d1e2e56414159d01b55800bfbc86dc1ba6feaf606a6a8cd45b
7
+ data.tar.gz: 970779a758709cdeb277972c43e6eca0849efbd8e7292681fbf7e7ebb87253f1774ca2ec0fd827ccedb74853a76983a370fbe6d77875a2403949b4acdcdfecea
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "cpee"
3
- s.version = "1.3.154"
3
+ s.version = "1.3.155"
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"
@@ -77,9 +77,9 @@ module CPEE
77
77
  n = res.add('d:call', 'id' => "a#{node.niceid}", 'endpoint' => node.endpoints.join(','))
78
78
  p = n.add('d:parameters')
79
79
  p.add('d:label',node.label)
80
- p.add('d:method',node.methods.join(','))
81
- p.add('d:type',node.type)
82
- p.add('d:mid',node.id)
80
+ p.add('d:method',node.methods.join(',') || 'post')
81
+ p.add('d:type',":#{node.type}")
82
+ p.add('d:mid',"'#{node.id}'")
83
83
  par = p.add('d:parameters')
84
84
  node.parameters.each do |k,v|
85
85
  par.add(k,v)
@@ -0,0 +1,6 @@
1
+ <subscription xmlns="http://riddl.org/ns/common-patterns/notifications-producer/1.0" url="http://localhost:9299/1/events">
2
+ <topic id="running">
3
+ <vote>syncing_before</vote>
4
+ <vote>syncing_after</vote>
5
+ </topic>
6
+ </subscription>
@@ -0,0 +1,27 @@
1
+ <subscription xmlns="http://riddl.org/ns/common-patterns/notifications-producer/1.0">
2
+ <topic id="running">
3
+ <event>activity_calling</event>
4
+ <event>activity_manipulating</event>
5
+ <event>activity_failed</event>
6
+ <event>activity_done</event>
7
+ </topic>
8
+ <topic id="properties/position">
9
+ <event>change</event>
10
+ </topic>
11
+ <topic id="properties/description">
12
+ <event>change</event>
13
+ <event>error</event>
14
+ </topic>
15
+ <topic id="properties/state">
16
+ <event>change</event>
17
+ </topic>
18
+ <topic id="properties/dataelements">
19
+ <event>change</event>
20
+ </topic>
21
+ <topic id="properties/endpoints">
22
+ <event>change</event>
23
+ </topic>
24
+ <topic id="properties/handlers">
25
+ <event>change</event>
26
+ </topic>
27
+ </subscription>
@@ -0,0 +1,43 @@
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ This file is part of CPEE.
4
+
5
+ CPEE is free software: you can redistribute it and/or modify it under the terms
6
+ of the GNU General Public License as published by the Free Software Foundation,
7
+ either version 3 of the License, or (at your option) any later version.
8
+
9
+ CPEE is distributed in the hope that it will be useful, but WITHOUT ANY
10
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
+ PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
+
13
+ You should have received a copy of the GNU General Public License along with
14
+ CPEE (file COPYING in the main directory). If not, see
15
+ <http://www.gnu.org/licenses/>.
16
+ -->
17
+
18
+ <properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
19
+ <info/>
20
+ <state>ready</state>
21
+ <handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
22
+ <positions/>
23
+ <dataelements/>
24
+ <endpoints>
25
+ <timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
26
+ </endpoints>
27
+ <dsl/>
28
+ <dslx>
29
+ <description xmlns="http://cpee.org/ns/description/1.0"/>
30
+ </dslx>
31
+ <status>
32
+ <id>0</id>
33
+ <message>undefined</message>
34
+ </status>
35
+ <description>
36
+ <description xmlns="http://cpee.org/ns/description/1.0"/>
37
+ </description>
38
+ <transformation>
39
+ <description type='copy'/>
40
+ <dataelements type='xslt'/>
41
+ <endpoints type='xslt'/>
42
+ </transformation>
43
+ </properties>
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.154
4
+ version: 1.3.155
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-09-09 00:00:00.000000000 Z
13
+ date: 2014-09-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: riddl
@@ -167,6 +167,13 @@ files:
167
167
  - server/instances/1/properties.xml
168
168
  - server/instances/10/properties.xml
169
169
  - server/instances/11/properties.xml
170
+ - server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/consumer-secret
171
+ - server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/producer-secret
172
+ - server/instances/12/notifications/8d7f2ae546a742fce3a0a488266ea51d/subscription.xml
173
+ - server/instances/12/notifications/b0a0abbb8ad6fb81c579c4e97829d681/consumer-secret
174
+ - server/instances/12/notifications/b0a0abbb8ad6fb81c579c4e97829d681/producer-secret
175
+ - server/instances/12/notifications/b0a0abbb8ad6fb81c579c4e97829d681/subscription.xml
176
+ - server/instances/12/properties.xml
170
177
  - server/instances/2/properties.xml
171
178
  - server/instances/3/properties.xml
172
179
  - server/instances/4/properties.xml