cpee 2.1.116 → 2.1.118
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/cockpit/config.json.example +2 -1
- data/cockpit/js/llm.js +2 -2
- data/cockpit/js/ui.js +3 -0
- data/cpee.gemspec +1 -2
- metadata +1 -23
- data/cockpit/js/llm_alternative.js +0 -90
- data/cockpit/llm_alternative.html +0 -294
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: efddf22a558661bc01c0dbb55c372e497165cbbe73a0e04e3e2ff9902139c5c6
|
|
4
|
+
data.tar.gz: dbb7ad60c6a29cb017e07124525f97f77d86ac4f58f8e99014c26b3dd0e4e50c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d0a617afcc7628c3e71b14843e9ab710c37f761adbe365828ba094de56d1b402f07397ee926a764abc05a83baba5e7e7da197d4d3cf08c237c8a028502665cc
|
|
7
|
+
data.tar.gz: af828a05d29fa674031b52b01f824964308c555d5fe50575a642687c1fe6f1a9b954577286ef69092e626af8aa773b8e6b455a4e7e4ebe5bf9af1ae784781a18
|
data/cockpit/config.json.example
CHANGED
|
@@ -3,5 +3,6 @@
|
|
|
3
3
|
"templates-url": "https://cpee.org/design/server/Templates.dir/?stage=developm
|
|
4
4
|
"res-url": "https://cpee.org/flow/resources/",
|
|
5
5
|
"base-url": "https://cpee.org/flow/engine/",
|
|
6
|
-
"save-url": "https://cpee.org/design/server/"
|
|
6
|
+
"save-url": "https://cpee.org/design/server/",
|
|
7
|
+
"llm-url": "https://cpee.org/llm/"
|
|
7
8
|
}
|
data/cockpit/js/llm.js
CHANGED
|
@@ -42,7 +42,7 @@ function call_llm_service(status_id,prompt_id,llm_id) {
|
|
|
42
42
|
formData.append("llm", blob3);
|
|
43
43
|
|
|
44
44
|
jQuery.ajax({
|
|
45
|
-
url: '
|
|
45
|
+
url: $('body').attr('current-llm-service'),
|
|
46
46
|
data: formData,
|
|
47
47
|
cache: false,
|
|
48
48
|
contentType: false,
|
|
@@ -80,7 +80,7 @@ function call_llm_text_service(status_id,prompt_id,llm_id,action) {
|
|
|
80
80
|
formData.append("llm", second);
|
|
81
81
|
|
|
82
82
|
jQuery.ajax({
|
|
83
|
-
url: '
|
|
83
|
+
url: $('body').attr('current-llm-service') + '/text/llm/',
|
|
84
84
|
data: formData,
|
|
85
85
|
cache: false,
|
|
86
86
|
contentType: false,
|
data/cockpit/js/ui.js
CHANGED
|
@@ -38,6 +38,9 @@ $(document).ready(function() {
|
|
|
38
38
|
if (res['log-url']) { // just leave it out when it is not configured
|
|
39
39
|
$("body").attr('current-logs',res['log-url'].replace("%host",window.location.host));
|
|
40
40
|
}
|
|
41
|
+
if (res['llm-url']) { // just leave it out when it is not configured
|
|
42
|
+
$("body").attr('current-llm-service',res['llm-url'].replace("%host",window.location.host));
|
|
43
|
+
}
|
|
41
44
|
if (res['res-url']) {
|
|
42
45
|
$("body").attr('current-resources',res['res-url'].replace("%host",window.location.host));
|
|
43
46
|
} else {
|
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.118"
|
|
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."
|
|
@@ -32,6 +32,5 @@ Gem::Specification.new do |s|
|
|
|
32
32
|
s.add_runtime_dependency 'mimemagic', '~>0'
|
|
33
33
|
s.add_runtime_dependency 'get_process_mem', '~>0.2'
|
|
34
34
|
s.add_runtime_dependency 'webrick', '~>1.7'
|
|
35
|
-
s.add_runtime_dependency 'cpee-eval-ruby', '~> 1.0', '>= 1.0.4'
|
|
36
35
|
s.add_runtime_dependency 'by', '~> 1.1', '>= 1.1.0'
|
|
37
36
|
end
|
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.118
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen eTM Mangler
|
|
@@ -171,26 +171,6 @@ dependencies:
|
|
|
171
171
|
- - "~>"
|
|
172
172
|
- !ruby/object:Gem::Version
|
|
173
173
|
version: '1.7'
|
|
174
|
-
- !ruby/object:Gem::Dependency
|
|
175
|
-
name: cpee-eval-ruby
|
|
176
|
-
requirement: !ruby/object:Gem::Requirement
|
|
177
|
-
requirements:
|
|
178
|
-
- - "~>"
|
|
179
|
-
- !ruby/object:Gem::Version
|
|
180
|
-
version: '1.0'
|
|
181
|
-
- - ">="
|
|
182
|
-
- !ruby/object:Gem::Version
|
|
183
|
-
version: 1.0.4
|
|
184
|
-
type: :runtime
|
|
185
|
-
prerelease: false
|
|
186
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
187
|
-
requirements:
|
|
188
|
-
- - "~>"
|
|
189
|
-
- !ruby/object:Gem::Version
|
|
190
|
-
version: '1.0'
|
|
191
|
-
- - ">="
|
|
192
|
-
- !ruby/object:Gem::Version
|
|
193
|
-
version: 1.0.4
|
|
194
174
|
- !ruby/object:Gem::Dependency
|
|
195
175
|
name: by
|
|
196
176
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -253,7 +233,6 @@ files:
|
|
|
253
233
|
- cockpit/js/extended_columns.js
|
|
254
234
|
- cockpit/js/instance.js
|
|
255
235
|
- cockpit/js/llm.js
|
|
256
|
-
- cockpit/js/llm_alternative.js
|
|
257
236
|
- cockpit/js/model.js
|
|
258
237
|
- cockpit/js/modifiers.js
|
|
259
238
|
- cockpit/js/parameters.js
|
|
@@ -261,7 +240,6 @@ files:
|
|
|
261
240
|
- cockpit/js/ui.js
|
|
262
241
|
- cockpit/js/wfadaptor.js
|
|
263
242
|
- cockpit/llm.html
|
|
264
|
-
- cockpit/llm_alternative.html
|
|
265
243
|
- cockpit/model.html
|
|
266
244
|
- cockpit/only_llm.html
|
|
267
245
|
- cockpit/rngs/attributes.rng
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
function clean_llm_ui(status_id) {
|
|
2
|
-
status_div = $(`#${status_id}`);
|
|
3
|
-
status_div.empty();
|
|
4
|
-
status_div.removeClass('error').removeClass('success');
|
|
5
|
-
return
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
function add_prompt(prompt_id,content) {
|
|
9
|
-
let input = $(`#${prompt_id}`);
|
|
10
|
-
const range = document.createRange();
|
|
11
|
-
const selection = window.getSelection();
|
|
12
|
-
range.selectNodeContents(input[0]);
|
|
13
|
-
selection.removeAllRanges();
|
|
14
|
-
selection.addRange(range);
|
|
15
|
-
document.execCommand('insertText', false, content);
|
|
16
|
-
return ;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
function call_llm_service(status_id,prompt_id) {
|
|
20
|
-
let input = $(`#${prompt_id}`);
|
|
21
|
-
let text = input[0].innerText;
|
|
22
|
-
|
|
23
|
-
const formData = new FormData();
|
|
24
|
-
const blob1 = new Blob([save['dslx']], { type: "text/xml" });
|
|
25
|
-
formData.append("rpst_xml", blob1);
|
|
26
|
-
const blob2 = new Blob([text], { type: "text/plain" });
|
|
27
|
-
formData.append("user_input", blob2);
|
|
28
|
-
const blob3 = new Blob(['gemini-2.5-flash'], { type: "text/plain" });
|
|
29
|
-
formData.append("llm", blob3);
|
|
30
|
-
|
|
31
|
-
jQuery.ajax({
|
|
32
|
-
url: '/llm/',
|
|
33
|
-
data: formData,
|
|
34
|
-
cache: false,
|
|
35
|
-
contentType: false,
|
|
36
|
-
processData: false,
|
|
37
|
-
method: 'POST',
|
|
38
|
-
success: function(data){
|
|
39
|
-
$.ajax({
|
|
40
|
-
type: "PUT",
|
|
41
|
-
url: url + "/properties/description/",
|
|
42
|
-
contentType: 'text/xml',
|
|
43
|
-
headers: { 'Content-ID': 'description' },
|
|
44
|
-
data: data.output_cpee
|
|
45
|
-
});
|
|
46
|
-
$(`#${status_id}`).text(data.status);
|
|
47
|
-
$(`#${status_id}`).addClass('success');
|
|
48
|
-
},
|
|
49
|
-
error: function(xhr, status, data) {
|
|
50
|
-
$(`#${status_id}`).text(xhr.responseJSON.error);
|
|
51
|
-
$(`#${status_id}`).addClass('error');
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
input.empty();
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
function load_file_content(files) {
|
|
59
|
-
if (typeof window.FileReader !== 'function') {
|
|
60
|
-
console.log('FileReader not yet supported');
|
|
61
|
-
return;
|
|
62
|
-
}
|
|
63
|
-
var reader = new FileReader();
|
|
64
|
-
reader.onload = function(){
|
|
65
|
-
clean_llm_ui('status');
|
|
66
|
-
add_prompt('prompt',reader.result);
|
|
67
|
-
}
|
|
68
|
-
reader.onerror = function(){ console.log("reader error"); }
|
|
69
|
-
reader.onabort = function(){ console.log("reader abort"); }
|
|
70
|
-
reader.readAsText(files[0]);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
$(document).ready(function() {
|
|
75
|
-
$(document).on('keydown','#prompt',function(e){
|
|
76
|
-
clean_llm_ui('status');
|
|
77
|
-
if (e.key === "Enter" && (e.metaKey || e.ctrlKey)) {
|
|
78
|
-
call_llm_service('status',this.id);
|
|
79
|
-
}
|
|
80
|
-
});
|
|
81
|
-
$(document).on('click','#prompt_submit_button',function(e) {
|
|
82
|
-
clean_llm_ui('status');
|
|
83
|
-
call_llm_service('status','prompt');
|
|
84
|
-
});
|
|
85
|
-
$('#prompt').on('drop',function(e) {
|
|
86
|
-
e.preventDefault();
|
|
87
|
-
e.stopPropagation();
|
|
88
|
-
load_file_content(e.originalEvent.dataTransfer.files);
|
|
89
|
-
});
|
|
90
|
-
});
|
|
@@ -1,294 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
This file is part of CPEE.
|
|
3
|
-
|
|
4
|
-
CPEE is free software: you can redistribute it and/or modify it under the terms
|
|
5
|
-
of the GNU General Public License as published by the Free Software Foundation,
|
|
6
|
-
either version 3 of the License, or (at your option) any later version.
|
|
7
|
-
|
|
8
|
-
CPEE is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
9
|
-
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
10
|
-
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
11
|
-
|
|
12
|
-
You should have received a copy of the GNU General Public License along with
|
|
13
|
-
CPEE (file COPYING in the main directory). If not, see
|
|
14
|
-
<http://www.gnu.org/licenses/>.
|
|
15
|
-
-->
|
|
16
|
-
|
|
17
|
-
<!DOCTYPE html>
|
|
18
|
-
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
|
19
|
-
<head>
|
|
20
|
-
<meta charset="utf-8"/>
|
|
21
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
22
|
-
<title>CPEE Cockpit</title>
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<!-- libs, do not modify. When local than load local libs. -->
|
|
26
|
-
<script type="text/javascript" src="/js_libs/jquery.min.js"></script>
|
|
27
|
-
<script type="text/javascript" src="/js_libs/jquery.browser.js"></script>
|
|
28
|
-
<script type="text/javascript" src="/js_libs/jquery.svg.min.js"></script>
|
|
29
|
-
<script type="text/javascript" src="/js_libs/jquery.svgdom.min.js"></script>
|
|
30
|
-
<script type="text/javascript" src="/js_libs/vkbeautify.js"></script>
|
|
31
|
-
<script type="text/javascript" src="/js_libs/util.js"></script>
|
|
32
|
-
<script type="text/javascript" src="/js_libs/printf.js"></script>
|
|
33
|
-
<script type="text/javascript" src="/js_libs/strftime.min.js"></script>
|
|
34
|
-
<script type="text/javascript" src="/js_libs/parsequery.js"></script>
|
|
35
|
-
<script type="text/javascript" src="/js_libs/underscore.min.js"></script>
|
|
36
|
-
<script type="text/javascript" src="/js_libs/jquery.caret.min.js"></script>
|
|
37
|
-
<script type="text/javascript" src="/js_libs/jquery.cookie.js"></script>
|
|
38
|
-
|
|
39
|
-
<script type="text/javascript" src="/js_libs/relaxngui.js"></script>
|
|
40
|
-
|
|
41
|
-
<script type="text/javascript" src="/js_libs/uidash.js"></script>
|
|
42
|
-
<script type="text/javascript" src="/js_libs/custommenu.js"></script>
|
|
43
|
-
|
|
44
|
-
<link rel="stylesheet" href="/js_libs/custommenu.css" type="text/css"/>
|
|
45
|
-
<link rel="stylesheet" href="/js_libs/uidash.css" type="text/css"/>
|
|
46
|
-
|
|
47
|
-
<link rel="stylesheet" href="/js_libs/relaxngui.css" type="text/css"/>
|
|
48
|
-
|
|
49
|
-
<!-- modelling ui -->
|
|
50
|
-
<script type="text/javascript" src="js/wfadaptor.js"></script>
|
|
51
|
-
<link rel="stylesheet" href="css/wfadaptor.css" type="text/css" data-include-export="true"/>
|
|
52
|
-
|
|
53
|
-
<script type="text/javascript" src="js/llm_alternative.js"></script>
|
|
54
|
-
<link rel="stylesheet" href="css/llm.css" type="text/css"/>
|
|
55
|
-
|
|
56
|
-
<!-- custom stuff, play arround -->
|
|
57
|
-
<script type="text/javascript" src="js/ui.js"></script>
|
|
58
|
-
<script type="text/javascript" src="js/instance.js"></script>
|
|
59
|
-
<script type="text/javascript" src="js/details.js"></script>
|
|
60
|
-
<script type="text/javascript" src="js/parameters.js"></script>
|
|
61
|
-
<script type="text/javascript" src="js/extended_columns.js"></script>
|
|
62
|
-
<script type="text/javascript" src="js/modifiers.js"></script>
|
|
63
|
-
<script type="text/javascript" src="themes/base.js"></script>
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
<link rel="stylesheet" href="css/ui.css" type="text/css"/>
|
|
67
|
-
<link rel="stylesheet" href="css/extended_columns-label.css" type="text/css"/>
|
|
68
|
-
<link rel="stylesheet" href="css/extended_columns-svg.css" type="text/css" data-include-export="true"/>
|
|
69
|
-
<link rel="stylesheet" href="/global_ui/uicpee.css" type="text/css"/>
|
|
70
|
-
<style>
|
|
71
|
-
/* has to be fucking inline, because firefox and chrome disagree how to handle filter urls */
|
|
72
|
-
/* shit balls, no elegance is left in this world */
|
|
73
|
-
</style>
|
|
74
|
-
</head>
|
|
75
|
-
<body data-base-port="8298" data-res-port="9303" data-theme-base="themes" is="x-ui-">
|
|
76
|
-
<div id='disclaimer' class='hidden'> <!--{{{-->
|
|
77
|
-
<h1>Disclaimer</h1>
|
|
78
|
-
|
|
79
|
-
<p>
|
|
80
|
-
We use reasonable care in creating and presenting the functionality
|
|
81
|
-
found in this demonstrator. It is provided purely for demonstration purposes
|
|
82
|
-
and you should seek further guidance and make independent enquiries
|
|
83
|
-
before relying upon it.
|
|
84
|
-
</p>
|
|
85
|
-
|
|
86
|
-
<p>
|
|
87
|
-
All functionality included in this demonstrator is subject to change
|
|
88
|
-
without notice. We make no representation or warranty whatsoever
|
|
89
|
-
regarding the completeness, accuracy, adequacy, suitability or
|
|
90
|
-
operation of this demonstrator, or of the results it produces.
|
|
91
|
-
</p>
|
|
92
|
-
|
|
93
|
-
<p>
|
|
94
|
-
We assume no responsibility for process instances created with this
|
|
95
|
-
demonstrator and disclaim all liability arising from negligence or
|
|
96
|
-
otherwise in respect of such process instances. We will not be liable
|
|
97
|
-
for any damages (including, without limitation, damages for any
|
|
98
|
-
consequential loss or loss of business opportunities or projects, or
|
|
99
|
-
loss of profits) howsoever arising from use of or inability to use
|
|
100
|
-
this demonstrator, or from any action or omission taken as a result of
|
|
101
|
-
using this demonstrator.
|
|
102
|
-
</p>
|
|
103
|
-
|
|
104
|
-
<p>
|
|
105
|
-
This demonstrator is hosted in Austria. All liability is excluded to the extent
|
|
106
|
-
permitted by law including any implied terms. Any interpretation of its
|
|
107
|
-
content, claims or disputes (of whatever nature and not limited to contractual
|
|
108
|
-
issues) shall be subject to the exclusive jurisdiction of the Austrian Courts
|
|
109
|
-
under Austrian law.
|
|
110
|
-
</p>
|
|
111
|
-
|
|
112
|
-
<p>
|
|
113
|
-
All actions performed while using this demonstrator will be logged, including
|
|
114
|
-
the IP address of the user.
|
|
115
|
-
</p>
|
|
116
|
-
|
|
117
|
-
<p>
|
|
118
|
-
<input id='iagree' type='checkbox'/><label for='iagree'><strong>OK, I Agree with this terms. I will be a happy person, and do no evil.</strong></label>
|
|
119
|
-
</p>
|
|
120
|
-
<p>
|
|
121
|
-
<button id='icontinue' disabled='disabled'>Continue</button>
|
|
122
|
-
</p>
|
|
123
|
-
</div> <!--}}}-->
|
|
124
|
-
|
|
125
|
-
<div class='hidden' id='relaxngworker'></div>
|
|
126
|
-
|
|
127
|
-
<div class='menu' id='templates'></div>
|
|
128
|
-
<div class='menu' id='modeltypes'></div>
|
|
129
|
-
|
|
130
|
-
<template id="label">
|
|
131
|
-
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg" style="position: absolute; top: 0; left: 0;" class="displaylabel">
|
|
132
|
-
<g transform="translate(1 %%1) rotate(-%%2)">
|
|
133
|
-
<rect class="displaylabel" width="200" height="14" x="8" y="0" rx="5" ry="5"/>
|
|
134
|
-
<path class="displaylabel" d="M10,13 0,13 8,8"/>
|
|
135
|
-
<path class="displaylabelinner" d="M10,11.5 8.5,11.5 8.5,9.5 10,9.5"/>
|
|
136
|
-
<text class="label" x="18" y="10">aaaa</text>
|
|
137
|
-
</g>
|
|
138
|
-
</svg>
|
|
139
|
-
</template>
|
|
140
|
-
|
|
141
|
-
<ui-tabbed id="instance">
|
|
142
|
-
<ui-tabbar>
|
|
143
|
-
<ui-tab class="switch" ></ui-tab>
|
|
144
|
-
<ui-tab class="" data-tab="new" id="tabnew" >New</ui-tab>
|
|
145
|
-
<ui-tab class="inactive hidden" data-tab="instance" id="tabinstance" >Instance</ui-tab>
|
|
146
|
-
<ui-tab class="inactive hidden" data-tab="execution" id="tabexecution">Execution</ui-tab>
|
|
147
|
-
<ui-behind ><a style='display:none' target='_blank' id='current-instance'></a><a style='display:none' target='_blank' id='current-instance-properties'>P</a><a style='display:none' target='_blank' id='current-instance-subscriptions'>S</a><a style='display:none' target='_blank' id='current-instance-callbacks'>C</a></ui-behind>
|
|
148
|
-
<ui-last ><a class="logo" href=".."></a></ui-last>
|
|
149
|
-
</ui-tabbar>
|
|
150
|
-
<ui-content>
|
|
151
|
-
<ui-area data-belongs-to-tab="new" id="areanew"> <!--{{{-->
|
|
152
|
-
<table class='x-ui-layout'>
|
|
153
|
-
<tr>
|
|
154
|
-
<td>Resources:</td>
|
|
155
|
-
<td><input name="res-url" type="text" value=""/></td>
|
|
156
|
-
<td></td>
|
|
157
|
-
</tr>
|
|
158
|
-
<tr>
|
|
159
|
-
<td>Engine:</td>
|
|
160
|
-
<td><input name="base-url" type="text" value=""/></td>
|
|
161
|
-
<td><button name="base">create new instance</button></td>
|
|
162
|
-
</tr>
|
|
163
|
-
<tr>
|
|
164
|
-
<td>Instance:</td>
|
|
165
|
-
<td><input name="instance-url" type="text" value=""/></td>
|
|
166
|
-
<td><button name="instance">monitor instance</button></td>
|
|
167
|
-
</tr>
|
|
168
|
-
</table>
|
|
169
|
-
</ui-area> <!--}}}-->
|
|
170
|
-
<ui-area data-belongs-to-tab="instance" id="areainstance" class="inactive"> <!--{{{-->
|
|
171
|
-
<div>
|
|
172
|
-
<div class='section'>
|
|
173
|
-
<div>
|
|
174
|
-
<form id='fuckchrome'>
|
|
175
|
-
<input type='file' name='testsetfile' id='testsetfile'/>
|
|
176
|
-
</form>
|
|
177
|
-
<button title='a template includes various settings, subscriptions or a (partial) model' name="loadtestset">load template</button><button title='a testset includes various settings, subscriptions or a model' name="loadtestsetfile">load testset</button>
|
|
178
|
-
</div>
|
|
179
|
-
<div>
|
|
180
|
-
<input type='file' name='modelfile' id='modelfile'/>
|
|
181
|
-
<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>
|
|
182
|
-
</div>
|
|
183
|
-
</div><div class='section'>
|
|
184
|
-
<a id="savetestsetfile" href="" download=""></a>
|
|
185
|
-
<a id="savesvgfile" href="" download=""></a>
|
|
186
|
-
<button title='a testset includes various settings, subscriptions and a model' name="savetestsetfile">save<br>testset</button>
|
|
187
|
-
<button title='a testset includes various settings, subscriptions and a model' name="savesvgfile">save svg<br>graph</button>
|
|
188
|
-
</div><div class='section' id='modifiers'>
|
|
189
|
-
<template id="item">
|
|
190
|
-
<div>
|
|
191
|
-
<div class='title'><strong></strong></div>
|
|
192
|
-
<div class='select'><select></select></div>
|
|
193
|
-
<div class='additional'></div>
|
|
194
|
-
</div>
|
|
195
|
-
</template>
|
|
196
|
-
</div>
|
|
197
|
-
</div>
|
|
198
|
-
</ui-area> <!--}}}-->
|
|
199
|
-
<ui-area data-belongs-to-tab="execution" id="areaexecution" class='inactive'> <!--{{{-->
|
|
200
|
-
<table class='x-ui-compact'>
|
|
201
|
-
<tbody class='debug'>
|
|
202
|
-
<tr>
|
|
203
|
-
<td>Debugging:</td>
|
|
204
|
-
<td><input type="checkbox" name="votecontinue"/></td>
|
|
205
|
-
</tr>
|
|
206
|
-
</tbody>
|
|
207
|
-
<tbody class='exe'>
|
|
208
|
-
<tr>
|
|
209
|
-
<td>State:</td>
|
|
210
|
-
<td id='state'>
|
|
211
|
-
<span id="state_text"></span>
|
|
212
|
-
<span id="state_any" style='display:none'>
|
|
213
|
-
<span> ⇒ </span>
|
|
214
|
-
<button name="state_start" title='start' style='display:none'>Start</button>
|
|
215
|
-
<button name="state_stop" title='stop' style='display:none'>Stop</button>
|
|
216
|
-
<span id="state_extended" style='display:none'>
|
|
217
|
-
<span> / </span>
|
|
218
|
-
<button name="state_abandon" title='abandon' style='display:none'>Abandon</button>
|
|
219
|
-
</span>
|
|
220
|
-
</span>
|
|
221
|
-
</td>
|
|
222
|
-
</tr>
|
|
223
|
-
<tr>
|
|
224
|
-
<td>Continue:</td>
|
|
225
|
-
<td id='votes'></td>
|
|
226
|
-
</tr>
|
|
227
|
-
</tbody>
|
|
228
|
-
</table>
|
|
229
|
-
</ui-area> <!--}}}-->
|
|
230
|
-
</ui-content>
|
|
231
|
-
</ui-tabbed>
|
|
232
|
-
|
|
233
|
-
<ui-tabbed class="hidden" id='parameters'>
|
|
234
|
-
<ui-tabbar>
|
|
235
|
-
<ui-tab class="switch" ></ui-tab>
|
|
236
|
-
<ui-tab class="" data-tab="dataelements" id="tabdataelements">Data Objects</ui-tab>
|
|
237
|
-
<ui-tab class="inactive" data-tab="endpoints" id="tabendpoints" >Endpoints</ui-tab>
|
|
238
|
-
<ui-tab class="inactive" data-tab="attributes" id="tabattributes" >Attributes</ui-tab>
|
|
239
|
-
<ui-behind ></ui-behind>
|
|
240
|
-
</ui-tabbar>
|
|
241
|
-
<ui-content>
|
|
242
|
-
<ui-area data-belongs-to-tab="dataelements" id="areadataelements"> <!--{{{-->
|
|
243
|
-
<button title='add entry'><span>New</span></button>
|
|
244
|
-
<div id="dat_dataelements"></div>
|
|
245
|
-
</ui-area> <!--}}}-->
|
|
246
|
-
<ui-area data-belongs-to-tab="endpoints" id="areaendpoints" class="inactive"> <!--{{{-->
|
|
247
|
-
<button title='add entry'><span>New</span></button>
|
|
248
|
-
<div id="dat_endpoints"></div>
|
|
249
|
-
</ui-area> <!--}}}-->
|
|
250
|
-
<ui-area data-belongs-to-tab="attributes" id="areaattributes" class="inactive"> <!--{{{-->
|
|
251
|
-
<button title='add entry'><span>New</span></button>
|
|
252
|
-
<div id="dat_attributes"></div>
|
|
253
|
-
</ui-area> <!--}}}-->
|
|
254
|
-
</ui-content>
|
|
255
|
-
</ui-tabbed>
|
|
256
|
-
|
|
257
|
-
<ui-resizehandle class="hidden">drag to resize</ui-resizehandle>
|
|
258
|
-
|
|
259
|
-
<ui-rest id="main" class="hidden">
|
|
260
|
-
<ui-tabbar>
|
|
261
|
-
<ui-before ></ui-before>
|
|
262
|
-
<ui-tab class="" data-tab="details" id="tabdetails">Graph</ui-tab>
|
|
263
|
-
<ui-tab class="inactive" data-tab="dsl" id="tabdsl" >Description</ui-tab>
|
|
264
|
-
<ui-tab class="inactive" data-tab="log" id="tablog" >Log</ui-tab>
|
|
265
|
-
<ui-behind ><a style='display:none' target='_blank' id='current-track'>T</a><a style='display:none' target='_blank' id='current-graph'>G</a></ui-behind>
|
|
266
|
-
</ui-tabbar>
|
|
267
|
-
<ui-content>
|
|
268
|
-
<ui-area data-belongs-to-tab="details" id='graphcolumn' oncontextmenu='return false'>
|
|
269
|
-
<div id="modelling">
|
|
270
|
-
<div id='graphgrid'>
|
|
271
|
-
<div class="resource-label" style="display: none"></div>
|
|
272
|
-
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:x="http://www.w3.org/1999/xlink" id='graphcanvas' class='graphcolumn' width='1' height='1'></svg>
|
|
273
|
-
</div>
|
|
274
|
-
</div>
|
|
275
|
-
<div id='status'></div>
|
|
276
|
-
<div id='prompt_container'>
|
|
277
|
-
<div id='prompt' contenteditable="true" title="Please enter your modelling instructions here... CTRL-ENTER or press '➤' to submit ..." placeholder="Please enter your modelling instructions here... CTRL-ENTER or press '➤' to submit ..."></div>
|
|
278
|
-
<div id='prompt_submit_container'><button id='prompt_submit_button'>➤</button></div>
|
|
279
|
-
</div>
|
|
280
|
-
</ui-area>
|
|
281
|
-
<ui-resizehandle data-belongs-to-tab="details" data-label="drag to resize"></ui-resizehandle>
|
|
282
|
-
<ui-area data-belongs-to-tab="details" id="detailcolumn">
|
|
283
|
-
<div id="dat_details" class='x-ui-layout'></div>
|
|
284
|
-
</ui-area>
|
|
285
|
-
<ui-area data-belongs-to-tab="dsl" id="areadsl" class="inactive"></ui-area>
|
|
286
|
-
<ui-area data-belongs-to-tab="log" id="arealog" class="inactive"> <!--{{{-->
|
|
287
|
-
<div>Persistent Log: <a style='display:none' target='_blank' id='current-log'></a> [<a style='display:none' target='_blank' id='shifted-log'>S</a>]</div>
|
|
288
|
-
<table id="dat_log" class="x-ui-layout"></table>
|
|
289
|
-
</ui-area> <!--}}}-->
|
|
290
|
-
</ui-content>
|
|
291
|
-
</ui-rest>
|
|
292
|
-
|
|
293
|
-
</body>
|
|
294
|
-
</html>
|