cpee 2.1.133 → 2.1.135

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
  SHA256:
3
- metadata.gz: e9ebe68e88fb5f65a00b003e0b14d1357181ee0540943aca72d585378e8d2874
4
- data.tar.gz: 4d029dc2b9db3f6e4022d682f0b1ea114f10cb931ec2e06a3e324d9c3c683ac4
3
+ metadata.gz: 6cdcf979b2beb1075ce03790205a9f52e44dd208132047113fd1fb19610689b7
4
+ data.tar.gz: f4e8fe08755d4f22d0bba7aad143cbaa4f471a8f701cbf673e7833d2ab47dc60
5
5
  SHA512:
6
- metadata.gz: 1b49f1ec4aef48a6e327ef64af228195f03fb49ea85a6d2b4de4df86d270734883a5a07a48e0ebf9f9728fcf0424475d7fe06ca52f2656c269b37dfe8e2acee0
7
- data.tar.gz: 12d5bfb6b02b400df657efd9c29322b6c3ddc5f4d6f75c577e1b76ebb6ea379991c29b50d39e0cd49a0c9ecc3e4a250941a946f13ae1b69c45060ab9bb37f0ff
6
+ metadata.gz: 6bb0664cc8c840758ed1b7630a836abe03dd5eba01fc2aa5a2e391c338fa9c2ccbede8c2a9bad01d596d3251d5f44220e3f8f2e074b0ee50bf33cbbe8d8e36de
7
+ data.tar.gz: 87d5395ba65339fb9bf9e1bdfa0ba19f9026620cf59dee49f5b9fdfa71713050d9c96914e1a5642906a20fd40dc5ef084c07bbefe38cea3eae1fdff94eb46a12
data/cockpit/edit.html CHANGED
@@ -67,7 +67,7 @@
67
67
  <link rel="stylesheet" href="/global_ui/uicpee.css" type="text/css"/>
68
68
  <style></style>
69
69
  </head>
70
- <body data-base-port="8298" data-base-engine="engine/" data-base-themes="themes" is="x-ui-">
70
+ <body data-base-port="8298" data-base-engine="engine/" data-base-themes="themes/" is="x-ui-">
71
71
  <div id='disclaimer' class='hidden'> <!--{{{-->
72
72
  <h1>Disclaimer</h1>
73
73
 
@@ -233,6 +233,7 @@
233
233
  <ui-tabbar>
234
234
  <ui-tab class="switch" ></ui-tab>
235
235
  <ui-tab class="" data-tab="dataelements" id="tabdataelements">Data Objects</ui-tab>
236
+ <ui-tab class="inactive" data-tab="documents" id="tabdocuments" >Documents</ui-tab>
236
237
  <ui-tab class="inactive" data-tab="endpoints" id="tabendpoints" >Endpoints</ui-tab>
237
238
  <ui-tab class="inactive" data-tab="attributes" id="tabattributes" >Attributes</ui-tab>
238
239
  <ui-behind ></ui-behind>
@@ -242,6 +243,10 @@
242
243
  <button title='add entry'><span>New</span></button>
243
244
  <div id="dat_dataelements"></div>
244
245
  </ui-area> <!--}}}-->
246
+ <ui-area data-belongs-to-tab="documents" id="areadocuments" class="inactive"> <!--{{{-->
247
+ <button title='add entry'><span>New</span></button>
248
+ <div id="dat_documents"></div>
249
+ </ui-area> <!--}}}-->
245
250
  <ui-area data-belongs-to-tab="endpoints" id="areaendpoints" class="inactive"> <!--{{{-->
246
251
  <button title='add entry'><span>New</span></button>
247
252
  <div id="dat_endpoints"></div>
data/cockpit/js/ui.js CHANGED
@@ -34,11 +34,15 @@ $(document).ready(function() {
34
34
  success: function(res){
35
35
  var res_def = config_defaults();
36
36
  $("body").attr('current-base',(res['base-url'] || res_def['base-url']).replace("%host",window.location.host));
37
+ $("input[name=base-url]").val($("body").attr('current-base').replace("%host",window.location.host));
37
38
  $("body").attr('current-templates',(res['templates-url'] || res_def['templates-url']).replace("%host",window.location.host));
38
39
  $.each(res, function(key, value){ // just leave it out when it is not configured
39
40
  if (key != 'base-url' && key != 'templates-url') {
40
41
  $("body").attr('current-' + key.replace(/-url$/,''), value.replace("%host",window.location.host));
41
42
  }
43
+ if (key == 'resources-url') {
44
+ $("input[name=res-url]").val($("body").attr('current-resources'));
45
+ }
42
46
  });
43
47
  cockpit();
44
48
  },
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.133"
3
+ s.version = "2.1.135"
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."
@@ -4,6 +4,7 @@
4
4
  <include href="executionhandler.rng"/>
5
5
  <include href="positions.rng"/>
6
6
  <include href="dataelements.rng"/>
7
+ <include href="documents.rng"/>
7
8
  <include href="endpoints.rng"/>
8
9
  <include href="attributes.rng"/>
9
10
  <include href="description.rng"/>
@@ -1 +1 @@
1
- 1227262
1
+ 2061359
@@ -1 +1 @@
1
- 1227280
1
+ 2061378
@@ -1 +1 @@
1
- 1227274
1
+ 2061371
@@ -1 +1 @@
1
- 1227268
1
+ 2061365
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.133
4
+ version: 2.1.135
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler