cpee 2.1.45 → 2.1.47
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/Rakefile +1 -1
- data/cockpit/js/instance.js +9 -4
- data/cockpit/themes/compact/theme.js +13 -0
- data/cockpit/themes/control/theme.js +13 -0
- data/cockpit/themes/default/theme.js +13 -0
- data/cockpit/themes/extended/theme.js +13 -0
- data/cockpit/themes/model/theme.js +13 -0
- data/cockpit/themes/packed/theme.js +13 -0
- data/cockpit/themes/preset/theme.js +13 -0
- data/cpee.gemspec +1 -1
- data/server/executionhandlers/ruby/backend/run +4 -4
- data/server/routing/end.pid +1 -0
- data/server/routing/forward-events-00.pid +1 -0
- data/server/routing/forward-events-01.pid +1 -0
- data/server/routing/forward-events-02.pid +1 -0
- data/server/routing/forward-events-03.pid +1 -0
- data/server/routing/forward-events-04.pid +1 -0
- data/server/routing/forward-votes.pid +1 -0
- data/server/routing/persist.pid +1 -0
- data/tools/cpee +2 -2
- metadata +11 -4
- data/server/routing/forward-events.lock +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 866400320b8fcaae94111a6102ed63848b81e73821a9c80c3486cd0f6c6c2cf1
|
|
4
|
+
data.tar.gz: 652db3c2fd8ccfc07674faf956a5fadba3160a15a14a942b1055dc8fb6934784
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 18a0cb7870437abfbb4b6d4265d742684fb2925e47ddfae61ae1795a07f5cda9c35d74ec7f468951fe820949ee25ba28be86a08d0bbd6aafb958965a76e11a73
|
|
7
|
+
data.tar.gz: 1e7697a8db9a8c57b14abc6cb466e4d6f7c52719284dcf048918341e942f590e0a27c5ab7caf5929b68cf9c91a72b2ea7cd172793c86394078f3220e041e277d
|
data/Rakefile
CHANGED
data/cockpit/js/instance.js
CHANGED
|
@@ -17,6 +17,7 @@ function global_init() {
|
|
|
17
17
|
loading = false;
|
|
18
18
|
subscription = undefined;
|
|
19
19
|
subscription_state = 'less';
|
|
20
|
+
save['states']= {};
|
|
20
21
|
save['state']= undefined;
|
|
21
22
|
save['dsl'] = undefined;
|
|
22
23
|
save['activity_red_states'] = {}
|
|
@@ -292,6 +293,7 @@ function sse() { //{{{
|
|
|
292
293
|
}
|
|
293
294
|
break;
|
|
294
295
|
case 'state':
|
|
296
|
+
save['states'][data['content']['state']] = Date.parse(data.timestamp);
|
|
295
297
|
monitor_instance_state_change(data['content']['state']);
|
|
296
298
|
break;
|
|
297
299
|
case 'position':
|
|
@@ -734,6 +736,13 @@ function monitor_instance_pos_change(content) {// {{{
|
|
|
734
736
|
|
|
735
737
|
|
|
736
738
|
function monitor_instance_state_change(notification) { //{{{
|
|
739
|
+
// sometimes, out of sheer network routingness, stopping comes after stopped, which fucks the UI hard
|
|
740
|
+
// thus, we are having none of it
|
|
741
|
+
if (notification == 'stopping' && save['states']['stopping'] - save['states']['stopped'] < 10)
|
|
742
|
+
notification = 'stopped';
|
|
743
|
+
if (notification == 'stopping' && save['state'] == 'stopped')
|
|
744
|
+
return;
|
|
745
|
+
|
|
737
746
|
if ($('#trackcolumn').length > 0) {
|
|
738
747
|
if (notification == "finished" || notification == "abandoned") {
|
|
739
748
|
parent.closeIFrame(window.location.search);
|
|
@@ -743,10 +752,6 @@ function monitor_instance_state_change(notification) { //{{{
|
|
|
743
752
|
$("#state button").removeAttr('disabled');
|
|
744
753
|
}
|
|
745
754
|
|
|
746
|
-
// sometimes, out of sheer network routingness, stopping comes after stopped, which fucks the UI hard
|
|
747
|
-
// thus, we are having none of it
|
|
748
|
-
if (notification == 'stopping' && save['state'] == 'stopped')
|
|
749
|
-
return;
|
|
750
755
|
if (notification != save['state']) {
|
|
751
756
|
save['state'] = notification;
|
|
752
757
|
|
|
@@ -183,6 +183,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
183
183
|
'function_call': function(selector,target,selected){
|
|
184
184
|
del_ui_pos(target)
|
|
185
185
|
self.adaptor.description.remove(selector,target);
|
|
186
|
+
localStorage.removeItem('marked');
|
|
187
|
+
localStorage.removeItem('marked_from');
|
|
186
188
|
},
|
|
187
189
|
'menu_icon': icon,
|
|
188
190
|
'type': undefined,
|
|
@@ -203,6 +205,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
203
205
|
var target = self.adaptor.description.get_node_by_svg_id($(node).attr('svg-id'));
|
|
204
206
|
del_ui_pos(target)
|
|
205
207
|
self.adaptor.description.remove(null,target);
|
|
208
|
+
localStorage.removeItem('marked');
|
|
209
|
+
localStorage.removeItem('marked_from');
|
|
206
210
|
});
|
|
207
211
|
},
|
|
208
212
|
'menu_icon': icond,
|
|
@@ -260,6 +264,15 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
260
264
|
this.events.mousedown = function(svgid, e, child, sibling) { // {{{
|
|
261
265
|
if(e.button == 0) { // left-click
|
|
262
266
|
} else if(e.button == 1) { // middle-click
|
|
267
|
+
var xml_node = self.adaptor.description.get_node_by_svg_id(svgid);
|
|
268
|
+
var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
|
|
269
|
+
if (vtarget.length > 0) {
|
|
270
|
+
if (vtarget.parents('g.activities.passive, g.activities.active').length > 0) {
|
|
271
|
+
del_ui_pos(xml_node);
|
|
272
|
+
} else {
|
|
273
|
+
add_ui_pos(xml_node);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
263
276
|
} else if(e.button == 2) { // right-click
|
|
264
277
|
contextMenuHandling(svgid,e,child,sibling);
|
|
265
278
|
}
|
|
@@ -183,6 +183,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
183
183
|
'function_call': function(selector,target,selected){
|
|
184
184
|
del_ui_pos(target)
|
|
185
185
|
self.adaptor.description.remove(selector,target);
|
|
186
|
+
localStorage.removeItem('marked');
|
|
187
|
+
localStorage.removeItem('marked_from');
|
|
186
188
|
},
|
|
187
189
|
'menu_icon': icon,
|
|
188
190
|
'type': undefined,
|
|
@@ -203,6 +205,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
203
205
|
var target = self.adaptor.description.get_node_by_svg_id($(node).attr('svg-id'));
|
|
204
206
|
del_ui_pos(target)
|
|
205
207
|
self.adaptor.description.remove(null,target);
|
|
208
|
+
localStorage.removeItem('marked');
|
|
209
|
+
localStorage.removeItem('marked_from');
|
|
206
210
|
});
|
|
207
211
|
},
|
|
208
212
|
'menu_icon': icond,
|
|
@@ -260,6 +264,15 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
260
264
|
this.events.mousedown = function(svgid, e, child, sibling) { // {{{
|
|
261
265
|
if(e.button == 0) { // left-click
|
|
262
266
|
} else if(e.button == 1) { // middle-click
|
|
267
|
+
var xml_node = self.adaptor.description.get_node_by_svg_id(svgid);
|
|
268
|
+
var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
|
|
269
|
+
if (vtarget.length > 0) {
|
|
270
|
+
if (vtarget.parents('g.activities.passive, g.activities.active').length > 0) {
|
|
271
|
+
del_ui_pos(xml_node);
|
|
272
|
+
} else {
|
|
273
|
+
add_ui_pos(xml_node);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
263
276
|
} else if(e.button == 2) { // right-click
|
|
264
277
|
contextMenuHandling(svgid,e,child,sibling);
|
|
265
278
|
}
|
|
@@ -183,6 +183,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
183
183
|
'function_call': function(selector,target,selected){
|
|
184
184
|
del_ui_pos(target)
|
|
185
185
|
self.adaptor.description.remove(selector,target);
|
|
186
|
+
localStorage.removeItem('marked');
|
|
187
|
+
localStorage.removeItem('marked_from');
|
|
186
188
|
},
|
|
187
189
|
'menu_icon': icon,
|
|
188
190
|
'type': undefined,
|
|
@@ -203,6 +205,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
203
205
|
var target = self.adaptor.description.get_node_by_svg_id($(node).attr('svg-id'));
|
|
204
206
|
del_ui_pos(target)
|
|
205
207
|
self.adaptor.description.remove(null,target);
|
|
208
|
+
localStorage.removeItem('marked');
|
|
209
|
+
localStorage.removeItem('marked_from');
|
|
206
210
|
});
|
|
207
211
|
},
|
|
208
212
|
'menu_icon': icond,
|
|
@@ -260,6 +264,15 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
260
264
|
this.events.mousedown = function(svgid, e, child, sibling) { // {{{
|
|
261
265
|
if(e.button == 0) { // left-click
|
|
262
266
|
} else if(e.button == 1) { // middle-click
|
|
267
|
+
var xml_node = self.adaptor.description.get_node_by_svg_id(svgid);
|
|
268
|
+
var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
|
|
269
|
+
if (vtarget.length > 0) {
|
|
270
|
+
if (vtarget.parents('g.activities.passive, g.activities.active').length > 0) {
|
|
271
|
+
del_ui_pos(xml_node);
|
|
272
|
+
} else {
|
|
273
|
+
add_ui_pos(xml_node);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
263
276
|
} else if(e.button == 2) { // right-click
|
|
264
277
|
contextMenuHandling(svgid,e,child,sibling);
|
|
265
278
|
}
|
|
@@ -183,6 +183,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
183
183
|
'function_call': function(selector,target,selected){
|
|
184
184
|
del_ui_pos(target)
|
|
185
185
|
self.adaptor.description.remove(selector,target);
|
|
186
|
+
localStorage.removeItem('marked');
|
|
187
|
+
localStorage.removeItem('marked_from');
|
|
186
188
|
},
|
|
187
189
|
'menu_icon': icon,
|
|
188
190
|
'type': undefined,
|
|
@@ -203,6 +205,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
203
205
|
var target = self.adaptor.description.get_node_by_svg_id($(node).attr('svg-id'));
|
|
204
206
|
del_ui_pos(target)
|
|
205
207
|
self.adaptor.description.remove(null,target);
|
|
208
|
+
localStorage.removeItem('marked');
|
|
209
|
+
localStorage.removeItem('marked_from');
|
|
206
210
|
});
|
|
207
211
|
},
|
|
208
212
|
'menu_icon': icond,
|
|
@@ -260,6 +264,15 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
260
264
|
this.events.mousedown = function(svgid, e, child, sibling) { // {{{
|
|
261
265
|
if(e.button == 0) { // left-click
|
|
262
266
|
} else if(e.button == 1) { // middle-click
|
|
267
|
+
var xml_node = self.adaptor.description.get_node_by_svg_id(svgid);
|
|
268
|
+
var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
|
|
269
|
+
if (vtarget.length > 0) {
|
|
270
|
+
if (vtarget.parents('g.activities.passive, g.activities.active').length > 0) {
|
|
271
|
+
del_ui_pos(xml_node);
|
|
272
|
+
} else {
|
|
273
|
+
add_ui_pos(xml_node);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
263
276
|
} else if(e.button == 2) { // right-click
|
|
264
277
|
contextMenuHandling(svgid,e,child,sibling);
|
|
265
278
|
}
|
|
@@ -183,6 +183,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
183
183
|
'function_call': function(selector,target,selected){
|
|
184
184
|
del_ui_pos(target)
|
|
185
185
|
self.adaptor.description.remove(selector,target);
|
|
186
|
+
localStorage.removeItem('marked');
|
|
187
|
+
localStorage.removeItem('marked_from');
|
|
186
188
|
},
|
|
187
189
|
'menu_icon': icon,
|
|
188
190
|
'type': undefined,
|
|
@@ -203,6 +205,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
203
205
|
var target = self.adaptor.description.get_node_by_svg_id($(node).attr('svg-id'));
|
|
204
206
|
del_ui_pos(target)
|
|
205
207
|
self.adaptor.description.remove(null,target);
|
|
208
|
+
localStorage.removeItem('marked');
|
|
209
|
+
localStorage.removeItem('marked_from');
|
|
206
210
|
});
|
|
207
211
|
},
|
|
208
212
|
'menu_icon': icond,
|
|
@@ -236,6 +240,15 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
236
240
|
this.events.mousedown = function(svgid, e, child, sibling) { // {{{
|
|
237
241
|
if(e.button == 0) { // left-click
|
|
238
242
|
} else if(e.button == 1) { // middle-click
|
|
243
|
+
var xml_node = self.adaptor.description.get_node_by_svg_id(svgid);
|
|
244
|
+
var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
|
|
245
|
+
if (vtarget.length > 0) {
|
|
246
|
+
if (vtarget.parents('g.activities.passive, g.activities.active').length > 0) {
|
|
247
|
+
del_ui_pos(xml_node);
|
|
248
|
+
} else {
|
|
249
|
+
add_ui_pos(xml_node);
|
|
250
|
+
}
|
|
251
|
+
}
|
|
239
252
|
} else if(e.button == 2) { // right-click
|
|
240
253
|
contextMenuHandling(svgid,e,child,sibling);
|
|
241
254
|
}
|
|
@@ -183,6 +183,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
183
183
|
'function_call': function(selector,target,selected){
|
|
184
184
|
del_ui_pos(target)
|
|
185
185
|
self.adaptor.description.remove(selector,target);
|
|
186
|
+
localStorage.removeItem('marked');
|
|
187
|
+
localStorage.removeItem('marked_from');
|
|
186
188
|
},
|
|
187
189
|
'menu_icon': icon,
|
|
188
190
|
'type': undefined,
|
|
@@ -203,6 +205,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
203
205
|
var target = self.adaptor.description.get_node_by_svg_id($(node).attr('svg-id'));
|
|
204
206
|
del_ui_pos(target)
|
|
205
207
|
self.adaptor.description.remove(null,target);
|
|
208
|
+
localStorage.removeItem('marked');
|
|
209
|
+
localStorage.removeItem('marked_from');
|
|
206
210
|
});
|
|
207
211
|
},
|
|
208
212
|
'menu_icon': icond,
|
|
@@ -260,6 +264,15 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
260
264
|
this.events.mousedown = function(svgid, e, child, sibling) { // {{{
|
|
261
265
|
if(e.button == 0) { // left-click
|
|
262
266
|
} else if(e.button == 1) { // middle-click
|
|
267
|
+
var xml_node = self.adaptor.description.get_node_by_svg_id(svgid);
|
|
268
|
+
var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
|
|
269
|
+
if (vtarget.length > 0) {
|
|
270
|
+
if (vtarget.parents('g.activities.passive, g.activities.active').length > 0) {
|
|
271
|
+
del_ui_pos(xml_node);
|
|
272
|
+
} else {
|
|
273
|
+
add_ui_pos(xml_node);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
263
276
|
} else if(e.button == 2) { // right-click
|
|
264
277
|
contextMenuHandling(svgid,e,child,sibling);
|
|
265
278
|
}
|
|
@@ -183,6 +183,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
183
183
|
'function_call': function(selector,target,selected){
|
|
184
184
|
del_ui_pos(target)
|
|
185
185
|
self.adaptor.description.remove(selector,target);
|
|
186
|
+
localStorage.removeItem('marked');
|
|
187
|
+
localStorage.removeItem('marked_from');
|
|
186
188
|
},
|
|
187
189
|
'menu_icon': icon,
|
|
188
190
|
'type': undefined,
|
|
@@ -203,6 +205,8 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
203
205
|
var target = self.adaptor.description.get_node_by_svg_id($(node).attr('svg-id'));
|
|
204
206
|
del_ui_pos(target)
|
|
205
207
|
self.adaptor.description.remove(null,target);
|
|
208
|
+
localStorage.removeItem('marked');
|
|
209
|
+
localStorage.removeItem('marked_from');
|
|
206
210
|
});
|
|
207
211
|
},
|
|
208
212
|
'menu_icon': icond,
|
|
@@ -260,6 +264,15 @@ function WFAdaptorManifestation(adaptor) {
|
|
|
260
264
|
this.events.mousedown = function(svgid, e, child, sibling) { // {{{
|
|
261
265
|
if(e.button == 0) { // left-click
|
|
262
266
|
} else if(e.button == 1) { // middle-click
|
|
267
|
+
var xml_node = self.adaptor.description.get_node_by_svg_id(svgid);
|
|
268
|
+
var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
|
|
269
|
+
if (vtarget.length > 0) {
|
|
270
|
+
if (vtarget.parents('g.activities.passive, g.activities.active').length > 0) {
|
|
271
|
+
del_ui_pos(xml_node);
|
|
272
|
+
} else {
|
|
273
|
+
add_ui_pos(xml_node);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
263
276
|
} else if(e.button == 2) { // right-click
|
|
264
277
|
contextMenuHandling(svgid,e,child,sibling);
|
|
265
278
|
}
|
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.47"
|
|
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."
|
|
@@ -6,17 +6,17 @@ opts[:pid] = Process.pid
|
|
|
6
6
|
|
|
7
7
|
global_controller = File.join(opts[:global_executionhandlers],opts[:executionhandler],'controller.rb')
|
|
8
8
|
controller = File.join(opts[:executionhandlers], opts[:executionhandler],'controller.rb')
|
|
9
|
-
if File.
|
|
9
|
+
if File.exist? global_controller
|
|
10
10
|
require global_controller
|
|
11
|
-
elsif File.
|
|
11
|
+
elsif File.exist? controller
|
|
12
12
|
require controller
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
global_connectionhandler = File.join(opts[:global_executionhandlers],opts[:executionhandler],'connection.rb')
|
|
16
16
|
connectionhandler = File.join(opts[:executionhandlers], opts[:executionhandler],'connection.rb')
|
|
17
|
-
if File.
|
|
17
|
+
if File.exist? global_connectionhandler
|
|
18
18
|
require global_connectionhandler
|
|
19
|
-
elsif File.
|
|
19
|
+
elsif File.exist? connectionhandler
|
|
20
20
|
require connectionhandler
|
|
21
21
|
end
|
|
22
22
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10497
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10510
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10513
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10516
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10519
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10522
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10503
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10500
|
data/tools/cpee
CHANGED
|
@@ -96,7 +96,7 @@ if command == 'ui'
|
|
|
96
96
|
s.start
|
|
97
97
|
end
|
|
98
98
|
elsif command == 'cpui'
|
|
99
|
-
if !File.
|
|
99
|
+
if !File.exist?(p1)
|
|
100
100
|
FileUtils.cp_r(cockpit,p1)
|
|
101
101
|
else
|
|
102
102
|
FileUtils.cp_r(Dir.glob(File.join(cockpit,'*')).delete_if{|e| e =~ /\.json/ || e=~ /legacy/ },p1,remove_destination: true)
|
|
@@ -345,7 +345,7 @@ elsif command == 'delete!'
|
|
|
345
345
|
end
|
|
346
346
|
puts
|
|
347
347
|
elsif command == 'new'
|
|
348
|
-
if !File.
|
|
348
|
+
if !File.exist?(p1)
|
|
349
349
|
FileUtils.cp_r("#{curpath}/server/",p1)
|
|
350
350
|
FileUtils.mkdir("#{p1}/archive") rescue nil
|
|
351
351
|
FileUtils.mkdir("#{p1}/instances") rescue nil
|
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: 2.1.
|
|
4
|
+
version: 2.1.47
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen eTM Mangler
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: tools
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-03-
|
|
13
|
+
date: 2023-03-16 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: riddl
|
|
@@ -714,10 +714,17 @@ files:
|
|
|
714
714
|
- server/resources/states.xml
|
|
715
715
|
- server/resources/topics.xml
|
|
716
716
|
- server/resources/transformation.xml
|
|
717
|
+
- server/routing/end.pid
|
|
717
718
|
- server/routing/end.rb
|
|
718
|
-
- server/routing/forward-events.
|
|
719
|
+
- server/routing/forward-events-00.pid
|
|
720
|
+
- server/routing/forward-events-01.pid
|
|
721
|
+
- server/routing/forward-events-02.pid
|
|
722
|
+
- server/routing/forward-events-03.pid
|
|
723
|
+
- server/routing/forward-events-04.pid
|
|
719
724
|
- server/routing/forward-events.rb
|
|
725
|
+
- server/routing/forward-votes.pid
|
|
720
726
|
- server/routing/forward-votes.rb
|
|
727
|
+
- server/routing/persist.pid
|
|
721
728
|
- server/routing/persist.rb
|
|
722
729
|
- server/server.conf
|
|
723
730
|
- server/server.pid
|
|
@@ -745,7 +752,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
745
752
|
- !ruby/object:Gem::Version
|
|
746
753
|
version: '0'
|
|
747
754
|
requirements: []
|
|
748
|
-
rubygems_version: 3.
|
|
755
|
+
rubygems_version: 3.4.6
|
|
749
756
|
signing_key:
|
|
750
757
|
specification_version: 4
|
|
751
758
|
summary: Preliminary release of cloud process execution engine (cpee.org). If you
|
|
File without changes
|