cpee 2.1.111 → 2.1.113

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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/cockpit/js/wfadaptor.js +13 -3
  3. data/cockpit/only_llm.html +2 -2
  4. data/cockpit/themes/base.js +41 -19
  5. data/cockpit/themes/control/rngs/loop.rng +8 -0
  6. data/cockpit/themes/control/rngs/terminate.rng +3 -0
  7. data/cockpit/themes/control/symbols/mark.svg +8 -0
  8. data/cockpit/themes/dataflow/rngs/loop.rng +8 -0
  9. data/cockpit/themes/dataflow/rngs/terminate.rng +3 -0
  10. data/cockpit/themes/dataflow/symbols/mark.svg +8 -0
  11. data/cockpit/themes/default/rngs/loop.rng +8 -0
  12. data/cockpit/themes/default/rngs/terminate.rng +3 -0
  13. data/cockpit/themes/default/symbols/mark.svg +8 -0
  14. data/cockpit/themes/extended/rngs/loop.rng +8 -0
  15. data/cockpit/themes/extended/rngs/terminate.rng +3 -0
  16. data/cockpit/themes/extended/symbols/mark.svg +8 -0
  17. data/cockpit/themes/felix/rngs/call.rng +5 -19
  18. data/cockpit/themes/felix/symbols/mark.svg +8 -0
  19. data/cockpit/themes/model/symbols/mark.svg +8 -0
  20. data/cockpit/themes/packed/rngs/loop.rng +8 -0
  21. data/cockpit/themes/packed/rngs/terminate.rng +3 -0
  22. data/cockpit/themes/packed/symbols/mark.svg +8 -0
  23. data/cockpit/themes/preset/rngs/loop.rng +8 -0
  24. data/cockpit/themes/preset/rngs/terminate.rng +3 -0
  25. data/cockpit/themes/preset/symbols/mark.svg +8 -0
  26. data/cockpit/themes/presetaltid/rngs/loop.rng +8 -0
  27. data/cockpit/themes/presetaltid/rngs/terminate.rng +3 -0
  28. data/cockpit/themes/presetaltid/symbols/mark.svg +8 -0
  29. data/cockpit/themes/presetid/rngs/loop.rng +8 -0
  30. data/cockpit/themes/presetid/rngs/terminate.rng +3 -0
  31. data/cockpit/themes/presetid/symbols/mark.svg +8 -0
  32. data/cockpit/themes/reduced/rngs/loop.rng +8 -0
  33. data/cockpit/themes/reduced/rngs/terminate.rng +3 -0
  34. data/cockpit/themes/reduced/symbols/mark.svg +8 -0
  35. data/cpee.gemspec +2 -2
  36. data/server/executionhandlers/ruby/dsl_to_dslx.xsl +2 -0
  37. data/tools/server/resources/properties.init +6 -1
  38. metadata +14 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2328b64e63f8cb6aa07f437e6eb74db8b887f9a19213dedca0b85a87d7ab78a9
4
- data.tar.gz: e8b3d0b931d7c189c000bba2078b35f4a387e7ef256bcab8fd71d6d0253e7d60
3
+ metadata.gz: 3859cfffb2b5b418a0c0fdd564f305cbc7d1784292186a836e7df668f6725c49
4
+ data.tar.gz: e280aad1800114b180814cd041ece98c25874d3212643bd32dff908e02851113
5
5
  SHA512:
6
- metadata.gz: 5cc21448cdaa794df412a1102a34a59f1d8c27cf75378596331821c0780984fe613a5214a5e854d9ae06037a8ba3260f4629fd9f66d122acdd58248fdde828cd
7
- data.tar.gz: e1962692f65c3b65a3abcc195255705a630cecc53b00c33a852f5afb0bb0e9bf45add649cc63c9e1ebcba59d0bbf2391e4afbb9b9a39a9922962d5a9fb193290
6
+ metadata.gz: e13bcfff5e5f761ef221a3b65696d349a64eb4d350367b852b180c11521006fd17b4e111c912cea377da6a2ba6f334405394bdbd5c623d222a9642770e38a07a
7
+ data.tar.gz: 31ca360fae18519aa006cca38f81213a69e50ecb31b0aee2c2a11f3793ce006704b8fc0301f0c8df8ef6514aaf2a62d0a8b15efe520ee76cf05a5a87b436e316
@@ -14,8 +14,6 @@
14
14
  <http://www.gnu.org/licenses/>.
15
15
  */
16
16
 
17
- var high;
18
-
19
17
  // TODO: changes in svg-script:
20
18
  // 1) drawing functions
21
19
  // 2) creation of svg-container (Bug: arrows on lines)
@@ -195,6 +193,13 @@ function WfAdaptor(theme_base,doit) { // Controller {{{
195
193
 
196
194
  this.update = function(doit){ doit(self); };
197
195
 
196
+ this.draw_element = function(type,id,label) {
197
+ let pos = {'row': 1,'col': 0};
198
+ let block = { 'max': {'row': pos.row, 'col': pos.col}, 'endnodes': [], 'svg': $X('<g class="group" xmlns="http://www.w3.org/2000/svg"/>') };
199
+ illustrator.draw.draw_symbol(type, id, label, pos.row, pos.row, pos.row, pos.col, block.svg, false, {}, {})
200
+ self.illustrator.set_svg(block);
201
+ }
202
+
198
203
  this.redraw = function(){
199
204
  description.redraw();
200
205
  }
@@ -282,8 +287,13 @@ function WfIllustrator(wf_adaptor) { // View {{{
282
287
  this.set_svg = function(graph) { // {{{
283
288
  self.svg.container.append(graph.svg);
284
289
  let bb = graph.svg[0].getBBox();
290
+
291
+ let w = self.dim.get_x_plus(0,graph.max.row,graph.max.col);
292
+ if (w == 0) { w = bb.x + bb.width + self.width_shift; }
293
+ // the alternative is bb.x + bb.width + self.width_shift, but this is bad when clipped elements
294
+
285
295
  self.svg.container.attr('height', bb.y + bb.height + self.height_shift); // small border on the bottom
286
- self.svg.container.attr('width', bb.x + bb.width + self.width_shift); // small border on the right
296
+ self.svg.container.attr('width', w); // small border on the right
287
297
  self.svg.container.attr('data-pos-matrix', JSON.stringify(self.dim.symbols));
288
298
  self.svg.container.attr('data-con-list', JSON.stringify(self.dim.connections));
289
299
  } // }}}
@@ -221,8 +221,8 @@
221
221
  <div id='llm_params' class="multi">
222
222
  <label id="llmlabel" for="llms">Choose LLM:</label>
223
223
  <select name="llms" id="llms">
224
- <option value="gemini-2.0-flash" selected>gemini 2 Flash</option>
225
- <option value="gemini-2.5-flash-lite">gemini 2.5 Flash Lite</option>
224
+ <!--<option value="gemini-2.0-flash" selected>gemini 2 Flash</option>-->
225
+ <option value="gemini-2.5-flash-lite" selected>gemini 2.5 Flash Lite</option>
226
226
  <option value="gemini-2.5-flash">gemini 2.5 Flash</option>
227
227
  <option value="gemini-2.5-pro">gemini 2.5 Pro</option>
228
228
  <option value="gpt-4">gpt 4</option>
@@ -152,6 +152,21 @@ function WFAdaptorManifestationBase(adaptor) {
152
152
  }
153
153
  }
154
154
  } //}}}
155
+ var markHandling = this.markHandling = function(svgid) { //{{{
156
+ if (save['state'] != "ready" && save['state'] != "stopped") { return false; }
157
+ var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
158
+ if (vtarget.length > 0) {
159
+ var vt = vtarget.parents('g.element[element-id]');
160
+ vt.toggleClass('marked');
161
+ if (vt.hasClass('marked')) {
162
+ localStorage.setItem('marked',self.marked_text());
163
+ localStorage.setItem('marked_from',myid);
164
+ } else {
165
+ localStorage.removeItem('marked');
166
+ localStorage.removeItem('marked_from');
167
+ }
168
+ }
169
+ } //}}}
155
170
 
156
171
  var contextMenuHandling_clean_icon = this.contextMenuHandling_clean_icon = function(icon) { //{{{
157
172
  icon = icon.clone();
@@ -257,27 +272,45 @@ function WFAdaptorManifestationBase(adaptor) {
257
272
  });
258
273
  }
259
274
  if (xml_node.get(0).tagName == "call" || xml_node.get(0).tagName == "manipulate" || xml_node.get(0).tagName == "stop") {
260
- var icon = contextMenuHandling_clean_icon(self.elements.call.illustrator.svg);
261
- icon.find('.part-normal').addClass('passive');
275
+ let exec_icon = contextMenuHandling_clean_icon(self.elements.call.illustrator.svg);
276
+ let mark_icon = self.resources.mark;
277
+ exec_icon.find('.part-normal').addClass('passive');
262
278
  var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
263
279
  if (vtarget.length > 0) {
264
280
  if (vtarget.parents('g.activities.passive, g.activities.active').length > 0) {
265
281
  menu['Position'] = [{
266
- 'label': 'No Execution from here',
282
+ 'label': 'No Execution from here (SHIFT-Click)',
267
283
  'function_call': del_ui_pos,
268
- 'menu_icon': icon,
284
+ 'menu_icon': exec_icon,
269
285
  'type': undefined,
270
286
  'params': xml_node
271
287
  }];
272
288
  } else {
273
289
  menu['Position'] = [{
274
- 'label': 'Execute from here',
290
+ 'label': 'Execute from here (SHIFT-Click)',
275
291
  'function_call': add_ui_pos,
276
- 'menu_icon': icon,
292
+ 'menu_icon': exec_icon,
277
293
  'type': undefined,
278
294
  'params': xml_node
279
295
  }];
280
296
  }
297
+ if (vtarget.parents('g.element.marked').length > 0) {
298
+ menu['Position'].push({
299
+ 'label': 'Unmark for copy/move (' + ($.pressCmd() ? '⌘-Click' : 'CTRL-Click') + ')',
300
+ 'function_call': markHandling,
301
+ 'menu_icon': mark_icon,
302
+ 'type': undefined,
303
+ 'params': [svgid]
304
+ });
305
+ } else {
306
+ menu['Position'].push({
307
+ 'label': 'Mark for copy/move (' + ($.pressCmd() ? '⌘-Click' : 'CTRL-Click') + ')',
308
+ 'function_call': markHandling,
309
+ 'menu_icon': mark_icon,
310
+ 'type': undefined,
311
+ 'params': [svgid]
312
+ });
313
+ }
281
314
  }
282
315
  }
283
316
  new CustomMenu(e).contextmenu(menu);
@@ -314,19 +347,7 @@ function WFAdaptorManifestationBase(adaptor) {
314
347
  }
315
348
 
316
349
  if (e && (e.ctrlKey || e.metaKey)) {
317
- if (save['state'] != "ready" && save['state'] != "stopped") { return false; }
318
- var vtarget = self.adaptor.illustrator.get_node_by_svg_id(svgid);
319
- if (vtarget.length > 0) {
320
- var vt = vtarget.parents('g.element[element-id]');
321
- vt.toggleClass('marked');
322
- if (vt.hasClass('marked')) {
323
- localStorage.setItem('marked',self.marked_text());
324
- localStorage.setItem('marked_from',myid);
325
- } else {
326
- localStorage.removeItem('marked');
327
- localStorage.removeItem('marked_from');
328
- }
329
- }
350
+ markHandling(svgid);
330
351
  } else if (e && (e.shiftKey)) {
331
352
  positionHandling(svgid);
332
353
  } else {
@@ -367,6 +388,7 @@ function WFAdaptorManifestationBase(adaptor) {
367
388
  // Other resources
368
389
  this.resources.arrow = self.adaptor.theme_dir + 'symbols/arrow.svg';
369
390
  this.resources.delete = self.adaptor.theme_dir + 'symbols/delete.svg';
391
+ this.resources.mark = self.adaptor.theme_dir + 'symbols/mark.svg';
370
392
 
371
393
  // Primitive Elements
372
394
  this.elements.call = { /*{{{*/
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -186,6 +186,11 @@
186
186
  <text rngui:wrap="true" rngui:label="Notes"/>
187
187
  </element>
188
188
  </element>
189
+ <element name="_resources" rngui:header="Resources" rngui:fold="closed">
190
+ <element name="_notes_general" rngui:label="General">
191
+ <text rngui:wrap="true" rngui:label="Notes"/>
192
+ </element>
193
+ </element>
189
194
  </element>
190
195
 
191
196
  <element name="documentation" rngui:header="Documentation">
@@ -215,23 +220,4 @@
215
220
  </element>
216
221
  </element>
217
222
  </element>
218
- <element name="resources" rngui:header="Resources">
219
- <zeroOrMore rngui:label="Create Resources">
220
- <element name='resource' rngui:label="Resource" rngui:labeltype="xml">
221
- <data type="string" rngui:label="Name"/>
222
- </element>
223
- </zeroOrMore>
224
- <attribute name="allocated_to" rngui:label="allocated_to" rngui:default="not_allocated">
225
- <data type="string" rngui:readonly="true"/>
226
- </attribute>
227
- </element>
228
- <element name="expectedready" rngui:label="Expected Ready">
229
- <data name="expectedready" type="decimal" rngui:readonly="true"/>
230
- </element>
231
- <element name="plannedstart" rngui:label="Planned Start Time">
232
- <data name="plannedstart" type="decimal" rngui:readonly="true"/>
233
- </element>
234
- <element name="plannedend" rngui:label="Planned End Time">
235
- <data name="plannedend" type="decimal" rngui:readonly="true"/>
236
- </element>
237
223
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -23,6 +23,14 @@
23
23
  </element>
24
24
  </element>
25
25
  <element name="_annotations" rngui:header="Annotations">
26
+ <element name="_generic" rngui:header="Generic" rngui:fold="closed">
27
+ <zeroOrMore rngui:label="Create Annotation Pair">
28
+ <element rngui:label="Name" rngui:labeltype="xml">
29
+ <anyName/>
30
+ <data type="string" rngui:label="Value"/>
31
+ </element>
32
+ </zeroOrMore>
33
+ </element>
26
34
  <element name="_logging_behavior" rngui:header="Logging Behavior" rngui:fold="closed">
27
35
  <element name="_iteration" rngui:label="Log per iteration">
28
36
  <data type="boolean" rngui:label="Log per iteration"/>
@@ -2,4 +2,7 @@
2
2
  <attribute name="eid" rngui:label="ID" rngui:default="javascript:get_free_id('e','eid')">
3
3
  <data type="string" rngui:readonly="true"/>
4
4
  </attribute>
5
+ <attribute name="abandon" rngui:label="Abandon instance">
6
+ <data type="boolean" rngui:label="Abandon instance instead of finishing it"/>
7
+ </attribute>
5
8
  </element>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg">
2
+ <g class="marked">
3
+ <g class="markstyle" transform="translate(12,15) scale(2,2)">
4
+ <circle cx="2" cy="0" r="7"/>
5
+ <path d="m -1 0 l 2 2 l 4 -4" class="standline"/>
6
+ </g>
7
+ </g>
8
+ </svg>
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.111"
3
+ s.version = "2.1.113"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.license = "LGPL-3.0-or-later"
6
6
  s.summary = "The cloud process execution engine (cpee.org). If you just need workflow execution, without a rest service exposing it, then use WEEL."
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
  s.homepage = 'http://cpee.org/'
23
23
 
24
24
  s.add_runtime_dependency 'riddl', '~> 1.0'
25
- s.add_runtime_dependency 'weel', '~> 1.99', '>= 1.99.148'
25
+ s.add_runtime_dependency 'weel', '~> 1.99', '>= 1.99.149'
26
26
  s.add_runtime_dependency 'highline', '~> 2.0'
27
27
  s.add_runtime_dependency 'redis', '~> 5.4'
28
28
  s.add_runtime_dependency 'net-ssh', '~> 7.3'
@@ -123,6 +123,8 @@
123
123
  </xsl:for-each>
124
124
  </xsl:otherwise>
125
125
  </xsl:choose>
126
+ <xsl:text>, </xsl:text>
127
+ <xsl:value-of select="@abandon"/>
126
128
  <xsl:call-template name="print-newline"/>
127
129
  </xsl:if>
128
130
  <xsl:if test="name()='stop'">
@@ -26,7 +26,12 @@
26
26
  <positions/>
27
27
  <dataelements/>
28
28
  <endpoints>
29
- <timeout>http://gruppe.wst.univie.ac.at/~mangler/services/timeout.php</timeout>
29
+ <user>https-post://cpee.org/services/timeout-user.php</user>
30
+ <auto>https-post://cpee.org/services/timeout-auto.php</auto>
31
+ <subprocess>https-post://{cpee.org}/flow/start/url/</subprocess>
32
+ <timeout>https-post://cpee.org/services/timeout.php</timeout>
33
+ <send>https-post://cpee.org/ing/correlators/message/send/</send>
34
+ <receive>https-get://cpee.org/ing/correlators/message/receive/</receive>
30
35
  </endpoints>
31
36
  <attributes>
32
37
  <info/>
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.111
4
+ version: 2.1.113
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler
@@ -34,7 +34,7 @@ dependencies:
34
34
  version: '1.99'
35
35
  - - ">="
36
36
  - !ruby/object:Gem::Version
37
- version: 1.99.148
37
+ version: 1.99.149
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
@@ -44,7 +44,7 @@ dependencies:
44
44
  version: '1.99'
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 1.99.148
47
+ version: 1.99.149
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: highline
50
50
  requirement: !ruby/object:Gem::Requirement
@@ -381,6 +381,7 @@ files:
381
381
  - cockpit/themes/control/symbols/loop.svg
382
382
  - cockpit/themes/control/symbols/loop_end.svg
383
383
  - cockpit/themes/control/symbols/manipulate.svg
384
+ - cockpit/themes/control/symbols/mark.svg
384
385
  - cockpit/themes/control/symbols/otherwise.svg
385
386
  - cockpit/themes/control/symbols/parallel.svg
386
387
  - cockpit/themes/control/symbols/parallel_branch.svg
@@ -442,6 +443,7 @@ files:
442
443
  - cockpit/themes/dataflow/symbols/loop.svg
443
444
  - cockpit/themes/dataflow/symbols/loop_end.svg
444
445
  - cockpit/themes/dataflow/symbols/manipulate.svg
446
+ - cockpit/themes/dataflow/symbols/mark.svg
445
447
  - cockpit/themes/dataflow/symbols/otherwise.svg
446
448
  - cockpit/themes/dataflow/symbols/parallel.svg
447
449
  - cockpit/themes/dataflow/symbols/parallel_branch.svg
@@ -503,6 +505,7 @@ files:
503
505
  - cockpit/themes/default/symbols/loop.svg
504
506
  - cockpit/themes/default/symbols/loop_end.svg
505
507
  - cockpit/themes/default/symbols/manipulate.svg
508
+ - cockpit/themes/default/symbols/mark.svg
506
509
  - cockpit/themes/default/symbols/otherwise.svg
507
510
  - cockpit/themes/default/symbols/parallel.svg
508
511
  - cockpit/themes/default/symbols/parallel_branch.svg
@@ -564,6 +567,7 @@ files:
564
567
  - cockpit/themes/extended/symbols/loop.svg
565
568
  - cockpit/themes/extended/symbols/loop_end.svg
566
569
  - cockpit/themes/extended/symbols/manipulate.svg
570
+ - cockpit/themes/extended/symbols/mark.svg
567
571
  - cockpit/themes/extended/symbols/otherwise.svg
568
572
  - cockpit/themes/extended/symbols/parallel.svg
569
573
  - cockpit/themes/extended/symbols/parallel_branch.svg
@@ -624,6 +628,7 @@ files:
624
628
  - cockpit/themes/felix/symbols/loop.svg
625
629
  - cockpit/themes/felix/symbols/loop_end.svg
626
630
  - cockpit/themes/felix/symbols/manipulate.svg
631
+ - cockpit/themes/felix/symbols/mark.svg
627
632
  - cockpit/themes/felix/symbols/otherwise.svg
628
633
  - cockpit/themes/felix/symbols/parallel.svg
629
634
  - cockpit/themes/felix/symbols/parallel_branch.svg
@@ -680,6 +685,7 @@ files:
680
685
  - cockpit/themes/model/symbols/loop.svg
681
686
  - cockpit/themes/model/symbols/loop_end.svg
682
687
  - cockpit/themes/model/symbols/manipulate.svg
688
+ - cockpit/themes/model/symbols/mark.svg
683
689
  - cockpit/themes/model/symbols/otherwise.svg
684
690
  - cockpit/themes/model/symbols/parallel.svg
685
691
  - cockpit/themes/model/symbols/parallel_branch.svg
@@ -741,6 +747,7 @@ files:
741
747
  - cockpit/themes/packed/symbols/loop.svg
742
748
  - cockpit/themes/packed/symbols/loop_end.svg
743
749
  - cockpit/themes/packed/symbols/manipulate.svg
750
+ - cockpit/themes/packed/symbols/mark.svg
744
751
  - cockpit/themes/packed/symbols/otherwise.svg
745
752
  - cockpit/themes/packed/symbols/parallel.svg
746
753
  - cockpit/themes/packed/symbols/parallel_branch.svg
@@ -802,6 +809,7 @@ files:
802
809
  - cockpit/themes/preset/symbols/loop.svg
803
810
  - cockpit/themes/preset/symbols/loop_end.svg
804
811
  - cockpit/themes/preset/symbols/manipulate.svg
812
+ - cockpit/themes/preset/symbols/mark.svg
805
813
  - cockpit/themes/preset/symbols/otherwise.svg
806
814
  - cockpit/themes/preset/symbols/parallel.svg
807
815
  - cockpit/themes/preset/symbols/parallel_branch.svg
@@ -863,6 +871,7 @@ files:
863
871
  - cockpit/themes/presetaltid/symbols/loop.svg
864
872
  - cockpit/themes/presetaltid/symbols/loop_end.svg
865
873
  - cockpit/themes/presetaltid/symbols/manipulate.svg
874
+ - cockpit/themes/presetaltid/symbols/mark.svg
866
875
  - cockpit/themes/presetaltid/symbols/otherwise.svg
867
876
  - cockpit/themes/presetaltid/symbols/parallel.svg
868
877
  - cockpit/themes/presetaltid/symbols/parallel_branch.svg
@@ -924,6 +933,7 @@ files:
924
933
  - cockpit/themes/presetid/symbols/loop.svg
925
934
  - cockpit/themes/presetid/symbols/loop_end.svg
926
935
  - cockpit/themes/presetid/symbols/manipulate.svg
936
+ - cockpit/themes/presetid/symbols/mark.svg
927
937
  - cockpit/themes/presetid/symbols/otherwise.svg
928
938
  - cockpit/themes/presetid/symbols/parallel.svg
929
939
  - cockpit/themes/presetid/symbols/parallel_branch.svg
@@ -985,6 +995,7 @@ files:
985
995
  - cockpit/themes/reduced/symbols/loop.svg
986
996
  - cockpit/themes/reduced/symbols/loop_end.svg
987
997
  - cockpit/themes/reduced/symbols/manipulate.svg
998
+ - cockpit/themes/reduced/symbols/mark.svg
988
999
  - cockpit/themes/reduced/symbols/otherwise.svg
989
1000
  - cockpit/themes/reduced/symbols/parallel.svg
990
1001
  - cockpit/themes/reduced/symbols/parallel_branch.svg