cpee 1.3.166 → 1.3.167
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cockpit/css/ui.css +1 -1
- data/cockpit/index.html +2 -2
- data/cockpit/js/instance.js +28 -1
- data/cockpit/testsets/CPEE.xml +0 -8
- data/cockpit/testsets/Signavio.xml +0 -8
- data/cpee.gemspec +1 -1
- data/server/instances/16/notifications/d412275a0c76f202ecb65bfff859cf32/consumer-secret +1 -0
- data/server/instances/16/notifications/d412275a0c76f202ecb65bfff859cf32/producer-secret +1 -0
- data/server/instances/{15/notifications/a73954a6728b0f086d1ea50245027fbf → 16/notifications/d412275a0c76f202ecb65bfff859cf32}/subscription.xml +0 -0
- data/server/instances/16/properties.xml +265 -0
- data/server/resources/properties.schema.active +9 -3
- data/server/resources/properties.schema.finished +9 -3
- data/server/resources/properties.schema.inactive +9 -3
- data/server/server.pid +1 -0
- metadata +6 -4
- data/server/instances/15/notifications/a73954a6728b0f086d1ea50245027fbf/consumer-secret +0 -1
- data/server/instances/15/notifications/a73954a6728b0f086d1ea50245027fbf/producer-secret +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02e61062d563c87e26436f94789bf2afa142ec64
|
4
|
+
data.tar.gz: d184fba43665672dd02b1c3538e85fcc04b693b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cd3c1d205e31818b4762a241e804c9009a715bf0d957766270587a498401a2e5106bf574b3f1dc187e73ed6754bc247b100cd0109a02cb0abf2bac3ab58cd7c
|
7
|
+
data.tar.gz: 36b3658d3581d5ee4283525e388fa915704cbb800145337835c8e6fb84a0ef7c30e1e75090eb6fdc4ca5a2cdd9045496eca33baeefc62f8fc6a390f01914a958
|
data/cockpit/css/ui.css
CHANGED
@@ -44,7 +44,7 @@ button.highlight { background-color: #cc0000; }
|
|
44
44
|
#areainstance table.compact tbody.loadsave td:nth-child(4) { padding: 0 0.5em; border-left: 1px solid ButtonShadow; }
|
45
45
|
#areainstance table.compact tbody.loadsave td:nth-child(4) button { height: 5em; }
|
46
46
|
|
47
|
-
#areainstance table.compact button[name=
|
47
|
+
#areainstance table.compact button[name=loadmodeltype] { width: 10em; }
|
48
48
|
#areainstance table.compact button[name=loadtestset] { width: 10em; }
|
49
49
|
#areainstance table.compact button[name=loadmodelfile] { width: 10em; }
|
50
50
|
|
data/cockpit/index.html
CHANGED
@@ -199,10 +199,10 @@
|
|
199
199
|
</tr>
|
200
200
|
<tr>
|
201
201
|
<td><select title='the model type affects the transformation property of an instance' name="transformation-names"></select></td>
|
202
|
-
<td><button title='a testset includes various setting, subscriptions and a model' name="
|
202
|
+
<td><button title='a testset includes various setting, subscriptions and a model' name="loadmodeltype">set model type</button></td>
|
203
203
|
</tr>
|
204
204
|
<tr>
|
205
|
-
<td><input
|
205
|
+
<td><input type='file' name='modelfile' id='modelfile' style='display:none'/></td>
|
206
206
|
<td><button title='a standalone process model is only loadable if the currently loaded testset sucessfully prepared the current instance for the type of model' name="loadmodelfile">load model</button></td>
|
207
207
|
</tr>
|
208
208
|
</tbody>
|
data/cockpit/js/instance.js
CHANGED
@@ -50,11 +50,13 @@ $(document).ready(function() {// {{{
|
|
50
50
|
$("button[name=base]").click(function(){ create_instance(null); });
|
51
51
|
$("button[name=instance]").click(function(){ ui_tab_click("#tabinstance"); monitor_instance(false); });
|
52
52
|
$("button[name=loadtestset]").click(load_testset);
|
53
|
-
$("button[name=
|
53
|
+
$("button[name=loadmodeltype]").click(load_modeltype);
|
54
|
+
$("button[name=loadmodelfile]").click(load_model);
|
54
55
|
$("button[name=savetestset]").click(function(){ save_testset(); });
|
55
56
|
$("button[name=savesvg]").click(function(){ save_svg(); });
|
56
57
|
$("input[name=votecontinue]").click(check_subscription);
|
57
58
|
$("input[name=testsetfile]").change(load_testsetfile);
|
59
|
+
$("input[name=modelfile]").change(load_modelfile);
|
58
60
|
|
59
61
|
$.ajax({
|
60
62
|
url: "testsets/testsets.xml",
|
@@ -650,6 +652,7 @@ function load_testsetfile() { //{{{
|
|
650
652
|
} //}}}
|
651
653
|
function load_modelfile() { //{{{
|
652
654
|
if (running) return;
|
655
|
+
running = true;
|
653
656
|
if (typeof window.FileReader !== 'function') {
|
654
657
|
alert('FileReader not yet supportet');
|
655
658
|
return;
|
@@ -694,6 +697,30 @@ function load_testset() {// {{{
|
|
694
697
|
}
|
695
698
|
}// }}}
|
696
699
|
|
700
|
+
function load_model() {// {{{
|
701
|
+
if (running) return;
|
702
|
+
document.getElementById('modelfile').click();
|
703
|
+
}// }}}
|
704
|
+
|
705
|
+
function load_modeltype() {// {{{
|
706
|
+
if (running) return;
|
707
|
+
running = true;
|
708
|
+
|
709
|
+
var name = $("select[name=transformation-names]").val();
|
710
|
+
|
711
|
+
$.ajax({
|
712
|
+
cache: false,
|
713
|
+
dataType: 'xml',
|
714
|
+
url: "testsets/" + name + ".xml",
|
715
|
+
success: function(res){
|
716
|
+
set_testset(res);
|
717
|
+
},
|
718
|
+
complete: function() {
|
719
|
+
running = false;
|
720
|
+
}
|
721
|
+
});
|
722
|
+
}// }}}
|
723
|
+
|
697
724
|
function load_des(url,model) { //{{{
|
698
725
|
model = model.replace(/<\?[^\?]+\?>/,'');
|
699
726
|
var val = "<content>" + model + "</content>";
|
data/cockpit/testsets/CPEE.xml
CHANGED
@@ -1,13 +1,5 @@
|
|
1
1
|
<?xml version="1.0"?>
|
2
2
|
<testset>
|
3
|
-
<positions/>
|
4
|
-
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
5
|
-
<dataelements/>
|
6
|
-
<handlers/>
|
7
|
-
<endpoints><!--{{{-->
|
8
|
-
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout1.php</timeout>
|
9
|
-
</endpoints><!--}}}-->
|
10
|
-
<description/>
|
11
3
|
<transformation>
|
12
4
|
<description type='copy'/>
|
13
5
|
<dataelements type='none'/>
|
@@ -1,13 +1,5 @@
|
|
1
1
|
<?xml version="1.0"?>
|
2
2
|
<testset>
|
3
|
-
<positions/>
|
4
|
-
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
5
|
-
<dataelements/>
|
6
|
-
<handlers/>
|
7
|
-
<endpoints><!--{{{-->
|
8
|
-
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout1.php</timeout>
|
9
|
-
</endpoints><!--}}}-->
|
10
|
-
<description/>
|
11
3
|
<transformation>
|
12
4
|
<description type='rest'>http://localhost:9295/bpmn2/</description>
|
13
5
|
<dataelements type='rest'>http://localhost:9295/bpmn2/</dataelements>
|
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.167"
|
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"
|
@@ -0,0 +1 @@
|
|
1
|
+
02006655c81b8a0707d10d4743aea77f
|
@@ -0,0 +1 @@
|
|
1
|
+
454219a4ff24b980920f6784799099d4
|
File without changes
|
@@ -0,0 +1,265 @@
|
|
1
|
+
<properties xmlns="http://riddl.org/ns/common-patterns/properties/1.0">
|
2
|
+
<info>Enter info here</info>
|
3
|
+
<properties/>
|
4
|
+
<state>ready</state>
|
5
|
+
<handlerwrapper>DefaultHandlerWrapper</handlerwrapper>
|
6
|
+
<positions>
|
7
|
+
<a1>after</a1>
|
8
|
+
</positions>
|
9
|
+
<dataelements>
|
10
|
+
<a>0</a>
|
11
|
+
</dataelements>
|
12
|
+
<endpoints>
|
13
|
+
<timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
|
14
|
+
</endpoints>
|
15
|
+
<dsl>choose :exclusive do
|
16
|
+
alternative "data.a < 3" do
|
17
|
+
call :a4, :timeout, { :label => "B", :method => post, :type => :serviceTask, :mid => 'sid-C4915A51-F57C-44E7-8BA7-AC5247998430', :parameters => {:timeout => 1} }, <<-end
|
18
|
+
data.a = 'path 1'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
otherwise do
|
22
|
+
call :a6, :timeout, { :label => "C", :method => post, :type => :serviceTask, :mid => 'sid-4F7DC368-C233-43DF-862A-28FC41919D18', :parameters => {:timeout => 1} }, <<-end
|
23
|
+
data.a = 'path 2'
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
</dsl>
|
28
|
+
<dslx>
|
29
|
+
<description xmlns="http://cpee.org/ns/description/1.0">
|
30
|
+
<choose mode="exclusive">
|
31
|
+
<alternative condition="data.a < 3" language="text/javascript">
|
32
|
+
<call id="a4" endpoint="timeout">
|
33
|
+
<parameters>
|
34
|
+
<label>"B"</label>
|
35
|
+
<method>post</method>
|
36
|
+
<type>:serviceTask</type>
|
37
|
+
<mid>'sid-C4915A51-F57C-44E7-8BA7-AC5247998430'</mid>
|
38
|
+
<parameters>
|
39
|
+
<timeout>1</timeout>
|
40
|
+
</parameters>
|
41
|
+
</parameters>
|
42
|
+
<manipulate output="result" language="application/javascript">data.a = 'path 1'</manipulate>
|
43
|
+
</call>
|
44
|
+
</alternative>
|
45
|
+
<otherwise>
|
46
|
+
<call id="a6" endpoint="timeout">
|
47
|
+
<parameters>
|
48
|
+
<label>"C"</label>
|
49
|
+
<method>post</method>
|
50
|
+
<type>:serviceTask</type>
|
51
|
+
<mid>'sid-4F7DC368-C233-43DF-862A-28FC41919D18'</mid>
|
52
|
+
<parameters>
|
53
|
+
<timeout>1</timeout>
|
54
|
+
</parameters>
|
55
|
+
</parameters>
|
56
|
+
<manipulate output="result" language="application/javascript">data.a = 'path 2'</manipulate>
|
57
|
+
</call>
|
58
|
+
</otherwise>
|
59
|
+
</choose>
|
60
|
+
</description>
|
61
|
+
</dslx>
|
62
|
+
<status>
|
63
|
+
<id>0</id>
|
64
|
+
<message>undefined</message>
|
65
|
+
</status>
|
66
|
+
<description>
|
67
|
+
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" xmlns:signavio="http://www.signavio.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" exporter="Signavio Process Editor, http://www.signavio.com" exporterVersion="8.3.1" expressionLanguage="http://www.w3.org/1999/XPath" id="sid-93c4aee0-94da-49d2-8eb4-cd247d00448b" targetNamespace="http://www.signavio.com/bpmn20" typeLanguage="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd">
|
68
|
+
<itemDefinition id="timeout" structureRef="http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php"/>
|
69
|
+
<itemDefinition id="a_value" structureRef="0"/>
|
70
|
+
<process id="sid-6f72bcc7-725f-4ff8-bbe0-7a27e82a137a" isClosed="false" isExecutable="true" processType="None">
|
71
|
+
<extensionElements>
|
72
|
+
<signavio:signavioDiagramMetaData metaKey="revisionid" metaValue="af6701e05669424094b1aaec46d07628"/>
|
73
|
+
</extensionElements>
|
74
|
+
<property id="sid-1b3c249e-c478-4f21-af91-9e4762654891" itemSubjectRef="timeout">
|
75
|
+
<dataState id="sid-756d471a-71c4-47d4-85f5-0d0046627e3b" name="cpee:endpoint"/>
|
76
|
+
</property>
|
77
|
+
<property id="sid-9044be5c-5d8c-45a8-a283-d4c659333dd0" itemSubjectRef="a_value" name="a">
|
78
|
+
<dataState id="sid-ac75109d-3143-49d9-a1fe-0319b6714cee" name="cpee:dataelement"/>
|
79
|
+
</property>
|
80
|
+
<exclusiveGateway default="sid-7D00A496-E8C3-4DA7-B9B2-54669A78DB9C" gatewayDirection="Diverging" id="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720" name="">
|
81
|
+
<extensionElements>
|
82
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
|
83
|
+
</extensionElements>
|
84
|
+
<incoming>sid-3935C733-7474-479E-904A-3D56A17285E9</incoming>
|
85
|
+
<outgoing>sid-7D00A496-E8C3-4DA7-B9B2-54669A78DB9C</outgoing>
|
86
|
+
<outgoing>sid-97656D49-9706-4081-8A02-AEF541A7B537</outgoing>
|
87
|
+
</exclusiveGateway>
|
88
|
+
<endEvent id="sid-A9E292EC-7A6E-477C-9FB7-CBBF0FCEB65A" name="">
|
89
|
+
<extensionElements>
|
90
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
|
91
|
+
</extensionElements>
|
92
|
+
<incoming>sid-FBB9E8B7-6B35-431E-80BC-EE30B0DDEE69</incoming>
|
93
|
+
</endEvent>
|
94
|
+
<startEvent id="sid-2A054430-1FC6-495B-B993-C52D7E8F4C5A" name="">
|
95
|
+
<extensionElements>
|
96
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
|
97
|
+
</extensionElements>
|
98
|
+
<outgoing>sid-3935C733-7474-479E-904A-3D56A17285E9</outgoing>
|
99
|
+
</startEvent>
|
100
|
+
<exclusiveGateway gatewayDirection="Converging" id="sid-CFB2D00B-19A3-457E-9712-40CD1EE3FA27" name="">
|
101
|
+
<extensionElements>
|
102
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffff"/>
|
103
|
+
</extensionElements>
|
104
|
+
<incoming>sid-F2D752A0-82BD-4158-86A4-D4C5B7D5CDA2</incoming>
|
105
|
+
<incoming>sid-E954269F-0343-40A2-BD45-1AD55B1D9558</incoming>
|
106
|
+
<outgoing>sid-FBB9E8B7-6B35-431E-80BC-EE30B0DDEE69</outgoing>
|
107
|
+
</exclusiveGateway>
|
108
|
+
<serviceTask completionQuantity="1" id="sid-C4915A51-F57C-44E7-8BA7-AC5247998430" implementation="##unspecified" isForCompensation="false" name="B " startQuantity="1">
|
109
|
+
<extensionElements>
|
110
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
|
111
|
+
<signavio:signavioMetaData metaKey="risklevel" metaValue=""/>
|
112
|
+
<signavio:signavioMetaData metaKey="externaldocuments" metaValue="[]"/>
|
113
|
+
</extensionElements>
|
114
|
+
<incoming>sid-97656D49-9706-4081-8A02-AEF541A7B537</incoming>
|
115
|
+
<outgoing>sid-F7CAD394-5990-45AA-8304-8EE769B1CDF0</outgoing>
|
116
|
+
<ioSpecification id="sid-56ac52fc-5ca8-404a-b37a-409b3a521c4b">
|
117
|
+
<dataInput id="sid-0fc94973-473c-4948-9b90-987a983ae99a" itemSubjectRef="1" name="timeout"/>
|
118
|
+
<dataOutput id="result" isCollection="true" name="result"/>
|
119
|
+
</ioSpecification>
|
120
|
+
<property id="sid-f7b57b60-949d-4bfc-8dff-a29ab18a871a" itemSubjectRef="timeout" name="cpee:endpoint"/>
|
121
|
+
<property id="sid-69b01071-e715-48c6-97f0-db11f63fb484" itemSubjectRef="post" name="cpee:method"/>
|
122
|
+
<dataOutputAssociation id="sid-6f310831-3fd8-4e87-b0ae-18aa818f6989">
|
123
|
+
<sourceRef>result</sourceRef>
|
124
|
+
<targetRef>sid-981C5F80-0149-432D-AA04-7E1FA437F96E</targetRef>
|
125
|
+
</dataOutputAssociation>
|
126
|
+
</serviceTask>
|
127
|
+
<scriptTask completionQuantity="1" id="sid-981C5F80-0149-432D-AA04-7E1FA437F96E" isForCompensation="false" name="BS" scriptFormat="application/javascript" startQuantity="1">
|
128
|
+
<extensionElements>
|
129
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
|
130
|
+
<signavio:signavioMetaData metaKey="risklevel" metaValue=""/>
|
131
|
+
<signavio:signavioMetaData metaKey="externaldocuments" metaValue="[]"/>
|
132
|
+
</extensionElements>
|
133
|
+
<incoming>sid-F7CAD394-5990-45AA-8304-8EE769B1CDF0</incoming>
|
134
|
+
<outgoing>sid-F2D752A0-82BD-4158-86A4-D4C5B7D5CDA2</outgoing>
|
135
|
+
<script>data.a = 'path 1'
|
136
|
+
</script>
|
137
|
+
</scriptTask>
|
138
|
+
<serviceTask completionQuantity="1" id="sid-4F7DC368-C233-43DF-862A-28FC41919D18" implementation="##unspecified" isForCompensation="false" name="C " startQuantity="1">
|
139
|
+
<extensionElements>
|
140
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
|
141
|
+
<signavio:signavioMetaData metaKey="risklevel" metaValue=""/>
|
142
|
+
<signavio:signavioMetaData metaKey="externaldocuments" metaValue="[]"/>
|
143
|
+
</extensionElements>
|
144
|
+
<incoming>sid-7D00A496-E8C3-4DA7-B9B2-54669A78DB9C</incoming>
|
145
|
+
<outgoing>sid-E3B65666-82F8-4C13-9B6B-BD61518C1BEA</outgoing>
|
146
|
+
<ioSpecification id="sid-5859245f-033c-463d-be48-4f15f5af205b">
|
147
|
+
<dataInput id="sid-910091ca-7d51-4330-9f0f-00fa6a6d1bd9" itemSubjectRef="1" name="timeout"/>
|
148
|
+
<dataOutput id="result" isCollection="true" name="result"/>
|
149
|
+
</ioSpecification>
|
150
|
+
<property id="sid-b8959599-c53c-491c-b962-17db145dcafc" itemSubjectRef="timeout" name="cpee:endpoint"/>
|
151
|
+
<property id="sid-66ebffdd-a6b3-43c1-854c-701af04cff45" itemSubjectRef="post" name="cpee:method"/>
|
152
|
+
<dataOutputAssociation id="sid-e172e47a-f94d-4d4e-b94f-f4ff1e81f3ac">
|
153
|
+
<sourceRef>result</sourceRef>
|
154
|
+
<targetRef>sid-0DEA608C-DF12-496F-B609-E2B530C1748A</targetRef>
|
155
|
+
</dataOutputAssociation>
|
156
|
+
</serviceTask>
|
157
|
+
<scriptTask completionQuantity="1" id="sid-0DEA608C-DF12-496F-B609-E2B530C1748A" isForCompensation="false" name="CS" scriptFormat="application/javascript" startQuantity="1">
|
158
|
+
<extensionElements>
|
159
|
+
<signavio:signavioMetaData metaKey="bgcolor" metaValue="#ffffcc"/>
|
160
|
+
<signavio:signavioMetaData metaKey="risklevel" metaValue=""/>
|
161
|
+
<signavio:signavioMetaData metaKey="externaldocuments" metaValue="[]"/>
|
162
|
+
</extensionElements>
|
163
|
+
<incoming>sid-E3B65666-82F8-4C13-9B6B-BD61518C1BEA</incoming>
|
164
|
+
<outgoing>sid-E954269F-0343-40A2-BD45-1AD55B1D9558</outgoing>
|
165
|
+
<script>data.a = 'path 2'
|
166
|
+
</script>
|
167
|
+
</scriptTask>
|
168
|
+
<sequenceFlow id="sid-FBB9E8B7-6B35-431E-80BC-EE30B0DDEE69" name="" sourceRef="sid-CFB2D00B-19A3-457E-9712-40CD1EE3FA27" targetRef="sid-A9E292EC-7A6E-477C-9FB7-CBBF0FCEB65A"/>
|
169
|
+
<sequenceFlow id="sid-3935C733-7474-479E-904A-3D56A17285E9" name="" sourceRef="sid-2A054430-1FC6-495B-B993-C52D7E8F4C5A" targetRef="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720"/>
|
170
|
+
<sequenceFlow id="sid-F7CAD394-5990-45AA-8304-8EE769B1CDF0" name="" sourceRef="sid-C4915A51-F57C-44E7-8BA7-AC5247998430" targetRef="sid-981C5F80-0149-432D-AA04-7E1FA437F96E"/>
|
171
|
+
<sequenceFlow id="sid-E3B65666-82F8-4C13-9B6B-BD61518C1BEA" name="" sourceRef="sid-4F7DC368-C233-43DF-862A-28FC41919D18" targetRef="sid-0DEA608C-DF12-496F-B609-E2B530C1748A"/>
|
172
|
+
<sequenceFlow id="sid-F2D752A0-82BD-4158-86A4-D4C5B7D5CDA2" name="" sourceRef="sid-981C5F80-0149-432D-AA04-7E1FA437F96E" targetRef="sid-CFB2D00B-19A3-457E-9712-40CD1EE3FA27"/>
|
173
|
+
<sequenceFlow id="sid-E954269F-0343-40A2-BD45-1AD55B1D9558" name="" sourceRef="sid-0DEA608C-DF12-496F-B609-E2B530C1748A" targetRef="sid-CFB2D00B-19A3-457E-9712-40CD1EE3FA27"/>
|
174
|
+
<sequenceFlow id="sid-7D00A496-E8C3-4DA7-B9B2-54669A78DB9C" name="" sourceRef="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720" targetRef="sid-4F7DC368-C233-43DF-862A-28FC41919D18"/>
|
175
|
+
<sequenceFlow id="sid-97656D49-9706-4081-8A02-AEF541A7B537" name="" sourceRef="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720" targetRef="sid-C4915A51-F57C-44E7-8BA7-AC5247998430">
|
176
|
+
<conditionExpression id="sid-d568f4ab-b5cb-4a4d-b341-1aa9aefb172c" xsi:type="tFormalExpression">data.a < 3</conditionExpression>
|
177
|
+
</sequenceFlow>
|
178
|
+
</process>
|
179
|
+
<bpmndi:BPMNDiagram id="sid-8e59dc0a-e3cf-40b3-a754-482969fff982">
|
180
|
+
<bpmndi:BPMNPlane bpmnElement="sid-6f72bcc7-725f-4ff8-bbe0-7a27e82a137a" id="sid-235eb5cb-7448-41dd-854b-23a6ed106c99">
|
181
|
+
<bpmndi:BPMNShape bpmnElement="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720" id="sid-13A34C12-BE7A-4B17-A6C9-064F97F5C720_gui" isMarkerVisible="true">
|
182
|
+
<omgdc:Bounds height="40.0" width="40.0" x="165.0" y="95.0"/>
|
183
|
+
</bpmndi:BPMNShape>
|
184
|
+
<bpmndi:BPMNShape bpmnElement="sid-A9E292EC-7A6E-477C-9FB7-CBBF0FCEB65A" id="sid-A9E292EC-7A6E-477C-9FB7-CBBF0FCEB65A_gui">
|
185
|
+
<omgdc:Bounds height="28.0" width="28.0" x="595.0" y="101.0"/>
|
186
|
+
</bpmndi:BPMNShape>
|
187
|
+
<bpmndi:BPMNShape bpmnElement="sid-2A054430-1FC6-495B-B993-C52D7E8F4C5A" id="sid-2A054430-1FC6-495B-B993-C52D7E8F4C5A_gui">
|
188
|
+
<omgdc:Bounds height="30.0" width="30.0" x="90.0" y="100.0"/>
|
189
|
+
</bpmndi:BPMNShape>
|
190
|
+
<bpmndi:BPMNShape bpmnElement="sid-CFB2D00B-19A3-457E-9712-40CD1EE3FA27" id="sid-CFB2D00B-19A3-457E-9712-40CD1EE3FA27_gui" isMarkerVisible="true">
|
191
|
+
<omgdc:Bounds height="40.0" width="40.0" x="510.0" y="95.0"/>
|
192
|
+
</bpmndi:BPMNShape>
|
193
|
+
<bpmndi:BPMNShape bpmnElement="sid-C4915A51-F57C-44E7-8BA7-AC5247998430" id="sid-C4915A51-F57C-44E7-8BA7-AC5247998430_gui">
|
194
|
+
<omgdc:Bounds height="80.0" width="100.0" x="220.0" y="15.0"/>
|
195
|
+
<bpmndi:BPMNLabel labelStyle="sid-fdf462fc-7b02-4ced-8851-32ed1b3a6a44">
|
196
|
+
<omgdc:Bounds height="12.0" width="8.571426391601562" x="265.7142868041992" y="47.0"/>
|
197
|
+
</bpmndi:BPMNLabel>
|
198
|
+
</bpmndi:BPMNShape>
|
199
|
+
<bpmndi:BPMNShape bpmnElement="sid-981C5F80-0149-432D-AA04-7E1FA437F96E" id="sid-981C5F80-0149-432D-AA04-7E1FA437F96E_gui">
|
200
|
+
<omgdc:Bounds height="80.0" width="100.0" x="365.0" y="15.0"/>
|
201
|
+
<bpmndi:BPMNLabel labelStyle="sid-fdf462fc-7b02-4ced-8851-32ed1b3a6a44">
|
202
|
+
<omgdc:Bounds height="12.0" width="17.142852783203125" x="406.42857360839844" y="47.0"/>
|
203
|
+
</bpmndi:BPMNLabel>
|
204
|
+
</bpmndi:BPMNShape>
|
205
|
+
<bpmndi:BPMNShape bpmnElement="sid-4F7DC368-C233-43DF-862A-28FC41919D18" id="sid-4F7DC368-C233-43DF-862A-28FC41919D18_gui">
|
206
|
+
<omgdc:Bounds height="80.0" width="100.0" x="220.0" y="140.0"/>
|
207
|
+
<bpmndi:BPMNLabel labelStyle="sid-fdf462fc-7b02-4ced-8851-32ed1b3a6a44">
|
208
|
+
<omgdc:Bounds height="12.0" width="8.571426391601562" x="265.7142868041992" y="172.0"/>
|
209
|
+
</bpmndi:BPMNLabel>
|
210
|
+
</bpmndi:BPMNShape>
|
211
|
+
<bpmndi:BPMNShape bpmnElement="sid-0DEA608C-DF12-496F-B609-E2B530C1748A" id="sid-0DEA608C-DF12-496F-B609-E2B530C1748A_gui">
|
212
|
+
<omgdc:Bounds height="80.0" width="100.0" x="365.0" y="140.0"/>
|
213
|
+
<bpmndi:BPMNLabel labelStyle="sid-fdf462fc-7b02-4ced-8851-32ed1b3a6a44">
|
214
|
+
<omgdc:Bounds height="12.0" width="17.142852783203125" x="406.42857360839844" y="172.0"/>
|
215
|
+
</bpmndi:BPMNLabel>
|
216
|
+
</bpmndi:BPMNShape>
|
217
|
+
<bpmndi:BPMNEdge bpmnElement="sid-F7CAD394-5990-45AA-8304-8EE769B1CDF0" id="sid-F7CAD394-5990-45AA-8304-8EE769B1CDF0_gui">
|
218
|
+
<omgdi:waypoint x="320.0" y="55.0"/>
|
219
|
+
<omgdi:waypoint x="365.0" y="55.0"/>
|
220
|
+
</bpmndi:BPMNEdge>
|
221
|
+
<bpmndi:BPMNEdge bpmnElement="sid-E3B65666-82F8-4C13-9B6B-BD61518C1BEA" id="sid-E3B65666-82F8-4C13-9B6B-BD61518C1BEA_gui">
|
222
|
+
<omgdi:waypoint x="320.0" y="180.0"/>
|
223
|
+
<omgdi:waypoint x="365.0" y="180.0"/>
|
224
|
+
</bpmndi:BPMNEdge>
|
225
|
+
<bpmndi:BPMNEdge bpmnElement="sid-E954269F-0343-40A2-BD45-1AD55B1D9558" id="sid-E954269F-0343-40A2-BD45-1AD55B1D9558_gui">
|
226
|
+
<omgdi:waypoint x="465.0" y="180.0"/>
|
227
|
+
<omgdi:waypoint x="530.5" y="180.0"/>
|
228
|
+
<omgdi:waypoint x="530.5" y="135.0"/>
|
229
|
+
</bpmndi:BPMNEdge>
|
230
|
+
<bpmndi:BPMNEdge bpmnElement="sid-FBB9E8B7-6B35-431E-80BC-EE30B0DDEE69" id="sid-FBB9E8B7-6B35-431E-80BC-EE30B0DDEE69_gui">
|
231
|
+
<omgdi:waypoint x="550.0" y="115.37579617834395"/>
|
232
|
+
<omgdi:waypoint x="595.0" y="115.08917197452229"/>
|
233
|
+
</bpmndi:BPMNEdge>
|
234
|
+
<bpmndi:BPMNEdge bpmnElement="sid-3935C733-7474-479E-904A-3D56A17285E9" id="sid-3935C733-7474-479E-904A-3D56A17285E9_gui">
|
235
|
+
<omgdi:waypoint x="120.0" y="115.0"/>
|
236
|
+
<omgdi:waypoint x="165.0" y="115.0"/>
|
237
|
+
</bpmndi:BPMNEdge>
|
238
|
+
<bpmndi:BPMNEdge bpmnElement="sid-7D00A496-E8C3-4DA7-B9B2-54669A78DB9C" id="sid-7D00A496-E8C3-4DA7-B9B2-54669A78DB9C_gui">
|
239
|
+
<omgdi:waypoint x="185.5" y="135.0"/>
|
240
|
+
<omgdi:waypoint x="185.5" y="180.0"/>
|
241
|
+
<omgdi:waypoint x="220.0" y="180.0"/>
|
242
|
+
</bpmndi:BPMNEdge>
|
243
|
+
<bpmndi:BPMNEdge bpmnElement="sid-97656D49-9706-4081-8A02-AEF541A7B537" id="sid-97656D49-9706-4081-8A02-AEF541A7B537_gui">
|
244
|
+
<omgdi:waypoint x="185.5" y="95.0"/>
|
245
|
+
<omgdi:waypoint x="185.5" y="55.0"/>
|
246
|
+
<omgdi:waypoint x="220.0" y="55.0"/>
|
247
|
+
</bpmndi:BPMNEdge>
|
248
|
+
<bpmndi:BPMNEdge bpmnElement="sid-F2D752A0-82BD-4158-86A4-D4C5B7D5CDA2" id="sid-F2D752A0-82BD-4158-86A4-D4C5B7D5CDA2_gui">
|
249
|
+
<omgdi:waypoint x="465.0" y="55.0"/>
|
250
|
+
<omgdi:waypoint x="530.5" y="55.0"/>
|
251
|
+
<omgdi:waypoint x="530.5" y="95.0"/>
|
252
|
+
</bpmndi:BPMNEdge>
|
253
|
+
</bpmndi:BPMNPlane>
|
254
|
+
<bpmndi:BPMNLabelStyle id="sid-fdf462fc-7b02-4ced-8851-32ed1b3a6a44">
|
255
|
+
<omgdc:Font isBold="false" isItalic="false" isStrikeThrough="false" isUnderline="false" name="Arial" size="12.0"/>
|
256
|
+
</bpmndi:BPMNLabelStyle>
|
257
|
+
</bpmndi:BPMNDiagram>
|
258
|
+
</definitions>
|
259
|
+
</description>
|
260
|
+
<transformation>
|
261
|
+
<description type="rest">http://localhost:9295/bpmn2/</description>
|
262
|
+
<dataelements type="rest">http://localhost:9295/bpmn2/</dataelements>
|
263
|
+
<endpoints type="rest">http://localhost:9295/bpmn2/</endpoints>
|
264
|
+
</transformation>
|
265
|
+
</properties>
|
@@ -38,8 +38,10 @@
|
|
38
38
|
<attribute name='type'>
|
39
39
|
<choice>
|
40
40
|
<value>copy</value>
|
41
|
-
<value>xslt</value>
|
42
41
|
<value>rest</value>
|
42
|
+
<value>xslt</value>
|
43
|
+
<value>clean</value>
|
44
|
+
<value>none</value>
|
43
45
|
</choice>
|
44
46
|
</attribute>
|
45
47
|
<data type="anyURI"/>
|
@@ -47,8 +49,10 @@
|
|
47
49
|
<element name='dataelements'>
|
48
50
|
<attribute name='type'>
|
49
51
|
<choice>
|
50
|
-
<value>xslt</value>
|
51
52
|
<value>rest</value>
|
53
|
+
<value>xslt</value>
|
54
|
+
<value>clean</value>
|
55
|
+
<value>none</value>
|
52
56
|
</choice>
|
53
57
|
</attribute>
|
54
58
|
<data type="anyURI"/>
|
@@ -56,8 +60,10 @@
|
|
56
60
|
<element name='endpoints'>
|
57
61
|
<attribute name='type'>
|
58
62
|
<choice>
|
59
|
-
<value>xslt</value>
|
60
63
|
<value>rest</value>
|
64
|
+
<value>xslt</value>
|
65
|
+
<value>clean</value>
|
66
|
+
<value>none</value>
|
61
67
|
</choice>
|
62
68
|
</attribute>
|
63
69
|
<data type="anyURI"/>
|
@@ -38,8 +38,10 @@
|
|
38
38
|
<attribute name='type'>
|
39
39
|
<choice>
|
40
40
|
<value>copy</value>
|
41
|
-
<value>xslt</value>
|
42
41
|
<value>rest</value>
|
42
|
+
<value>xslt</value>
|
43
|
+
<value>clean</value>
|
44
|
+
<value>none</value>
|
43
45
|
</choice>
|
44
46
|
</attribute>
|
45
47
|
<data type="anyURI"/>
|
@@ -47,8 +49,10 @@
|
|
47
49
|
<element name='dataelements'>
|
48
50
|
<attribute name='type'>
|
49
51
|
<choice>
|
50
|
-
<value>xslt</value>
|
51
52
|
<value>rest</value>
|
53
|
+
<value>xslt</value>
|
54
|
+
<value>clean</value>
|
55
|
+
<value>none</value>
|
52
56
|
</choice>
|
53
57
|
</attribute>
|
54
58
|
<data type="anyURI"/>
|
@@ -56,8 +60,10 @@
|
|
56
60
|
<element name='endpoints'>
|
57
61
|
<attribute name='type'>
|
58
62
|
<choice>
|
59
|
-
<value>xslt</value>
|
60
63
|
<value>rest</value>
|
64
|
+
<value>xslt</value>
|
65
|
+
<value>clean</value>
|
66
|
+
<value>none</value>
|
61
67
|
</choice>
|
62
68
|
</attribute>
|
63
69
|
<data type="anyURI"/>
|
@@ -38,8 +38,10 @@
|
|
38
38
|
<attribute name='type'>
|
39
39
|
<choice>
|
40
40
|
<value>copy</value>
|
41
|
-
<value>xslt</value>
|
42
41
|
<value>rest</value>
|
42
|
+
<value>xslt</value>
|
43
|
+
<value>clean</value>
|
44
|
+
<value>none</value>
|
43
45
|
</choice>
|
44
46
|
</attribute>
|
45
47
|
<data type="anyURI"/>
|
@@ -47,8 +49,10 @@
|
|
47
49
|
<element name='dataelements'>
|
48
50
|
<attribute name='type'>
|
49
51
|
<choice>
|
50
|
-
<value>xslt</value>
|
51
52
|
<value>rest</value>
|
53
|
+
<value>xslt</value>
|
54
|
+
<value>clean</value>
|
55
|
+
<value>none</value>
|
52
56
|
</choice>
|
53
57
|
</attribute>
|
54
58
|
<data type="anyURI"/>
|
@@ -56,8 +60,10 @@
|
|
56
60
|
<element name='endpoints'>
|
57
61
|
<attribute name='type'>
|
58
62
|
<choice>
|
59
|
-
<value>xslt</value>
|
60
63
|
<value>rest</value>
|
64
|
+
<value>xslt</value>
|
65
|
+
<value>clean</value>
|
66
|
+
<value>none</value>
|
61
67
|
</choice>
|
62
68
|
</attribute>
|
63
69
|
<data type="anyURI"/>
|
data/server/server.pid
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
29318
|
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.
|
4
|
+
version: 1.3.167
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juergen eTM Mangler
|
@@ -179,10 +179,11 @@ files:
|
|
179
179
|
- server/instances/13/notifications/4ff0cde5161c44dae49b263cbc12eaf8/subscription.xml
|
180
180
|
- server/instances/13/properties.xml
|
181
181
|
- server/instances/14/properties.xml
|
182
|
-
- server/instances/15/notifications/a73954a6728b0f086d1ea50245027fbf/consumer-secret
|
183
|
-
- server/instances/15/notifications/a73954a6728b0f086d1ea50245027fbf/producer-secret
|
184
|
-
- server/instances/15/notifications/a73954a6728b0f086d1ea50245027fbf/subscription.xml
|
185
182
|
- server/instances/15/properties.xml
|
183
|
+
- server/instances/16/notifications/d412275a0c76f202ecb65bfff859cf32/consumer-secret
|
184
|
+
- server/instances/16/notifications/d412275a0c76f202ecb65bfff859cf32/producer-secret
|
185
|
+
- server/instances/16/notifications/d412275a0c76f202ecb65bfff859cf32/subscription.xml
|
186
|
+
- server/instances/16/properties.xml
|
186
187
|
- server/instances/2/properties.xml
|
187
188
|
- server/instances/3/properties.xml
|
188
189
|
- server/instances/4/properties.xml
|
@@ -199,6 +200,7 @@ files:
|
|
199
200
|
- server/resources/topics.xml
|
200
201
|
- server/resources/transformation.xml
|
201
202
|
- server/resources/transformation_dslx.xsl
|
203
|
+
- server/server.pid
|
202
204
|
- server/server.rb
|
203
205
|
- test/delete.rb
|
204
206
|
- test/load.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
ce027063c7a1426a67d52ce4664dd43a
|
@@ -1 +0,0 @@
|
|
1
|
-
59e477a52a56a656df5d2eafc7c07b22
|