cpee 2.1.84 → 2.1.86

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.
data/cockpit/llm.html ADDED
@@ -0,0 +1,292 @@
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
+ <!-- libs, do not modify. When local than load local libs. -->
25
+ <script type="text/javascript" src="/js_libs/jquery.min.js"></script>
26
+ <script type="text/javascript" src="/js_libs/jquery.browser.js"></script>
27
+ <script type="text/javascript" src="/js_libs/jquery.svg.min.js"></script>
28
+ <script type="text/javascript" src="/js_libs/jquery.svgdom.min.js"></script>
29
+ <script type="text/javascript" src="/js_libs/vkbeautify.js"></script>
30
+ <script type="text/javascript" src="/js_libs/util.js"></script>
31
+ <script type="text/javascript" src="/js_libs/printf.js"></script>
32
+ <script type="text/javascript" src="/js_libs/strftime.min.js"></script>
33
+ <script type="text/javascript" src="/js_libs/parsequery.js"></script>
34
+ <script type="text/javascript" src="/js_libs/underscore.min.js"></script>
35
+ <script type="text/javascript" src="/js_libs/jquery.caret.min.js"></script>
36
+ <script type="text/javascript" src="/js_libs/jquery.cookie.js"></script>
37
+
38
+ <script type="text/javascript" src="/js_libs/relaxngui.js"></script>
39
+
40
+ <script type="text/javascript" src="/js_libs/uidash.js"></script>
41
+ <script type="text/javascript" src="/js_libs/custommenu.js"></script>
42
+
43
+ <link rel="stylesheet" href="/js_libs/custommenu.css" type="text/css"/>
44
+ <link rel="stylesheet" href="/js_libs/uidash.css" type="text/css"/>
45
+
46
+ <link rel="stylesheet" href="/js_libs/relaxngui.css" type="text/css"/>
47
+
48
+ <!-- modelling ui -->
49
+ <script type="text/javascript" src="js/wfadaptor.js"></script>
50
+ <link rel="stylesheet" href="css/wfadaptor.css" type="text/css" data-include-export="true"/>
51
+
52
+ <!-- custom stuff, play arround -->
53
+ <script type="text/javascript" src="js/ui.js"></script>
54
+ <script type="text/javascript" src="js/instance.js"></script>
55
+ <script type="text/javascript" src="js/details.js"></script>
56
+ <script type="text/javascript" src="js/parameters.js"></script>
57
+ <script type="text/javascript" src="js/resources.js"></script>
58
+ <script type="text/javascript" src="js/modifiers.js"></script>
59
+ <script type="text/javascript" src="themes/base.js"></script>
60
+
61
+ <script type="text/javascript" src="js/llm.js"></script>
62
+ <link rel="stylesheet" href="css/llm.css" type="text/css"/>
63
+
64
+ <link rel="stylesheet" href="css/ui.css" type="text/css"/>
65
+ <link rel="stylesheet" href="css/resources-label.css" type="text/css"/>
66
+ <link rel="stylesheet" href="css/resources-svg.css" type="text/css" data-include-export="true"/>
67
+ <link rel="stylesheet" href="/global_ui/uicpee.css" type="text/css"/>
68
+ <style>
69
+ /* has to be fucking inline, because firefox and chrome disagree how to handle filter urls */
70
+ /* shit balls, no elegance is left in this world */
71
+ </style>
72
+ </head>
73
+ <body data-base-port="8298" data-res-port="9303" data-theme-base="themes" is="x-ui-">
74
+ <div id='disclaimer' class='hidden'> <!--{{{-->
75
+ <h1>Disclaimer</h1>
76
+
77
+ <p>
78
+ We use reasonable care in creating and presenting the functionality
79
+ found in this demonstrator. It is provided purely for demonstration purposes
80
+ and you should seek further guidance and make independent enquiries
81
+ before relying upon it.
82
+ </p>
83
+
84
+ <p>
85
+ All functionality included in this demonstrator is subject to change
86
+ without notice. We make no representation or warranty whatsoever
87
+ regarding the completeness, accuracy, adequacy, suitability or
88
+ operation of this demonstrator, or of the results it produces.
89
+ </p>
90
+
91
+ <p>
92
+ We assume no responsibility for process instances created with this
93
+ demonstrator and disclaim all liability arising from negligence or
94
+ otherwise in respect of such process instances. We will not be liable
95
+ for any damages (including, without limitation, damages for any
96
+ consequential loss or loss of business opportunities or projects, or
97
+ loss of profits) howsoever arising from use of or inability to use
98
+ this demonstrator, or from any action or omission taken as a result of
99
+ using this demonstrator.
100
+ </p>
101
+
102
+ <p>
103
+ This demonstrator is hosted in Austria. All liability is excluded to the extent
104
+ permitted by law including any implied terms. Any interpretation of its
105
+ content, claims or disputes (of whatever nature and not limited to contractual
106
+ issues) shall be subject to the exclusive jurisdiction of the Austrian Courts
107
+ under Austrian law.
108
+ </p>
109
+
110
+ <p>
111
+ All actions performed while using this demonstrator will be logged, including
112
+ the IP address of the user.
113
+ </p>
114
+
115
+ <p>
116
+ <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>
117
+ </p>
118
+ <p>
119
+ <button id='icontinue' disabled='disabled'>Continue</button>
120
+ </p>
121
+ </div> <!--}}}-->
122
+
123
+ <div class='hidden' id='relaxngworker'></div>
124
+
125
+ <div class='menu' id='templates'></div>
126
+ <div class='menu' id='modeltypes'></div>
127
+
128
+ <template id="label">
129
+ <svg width="20" height="20" xmlns="http://www.w3.org/2000/svg" style="position: absolute; top: 0; left: 0;" class="displaylabel">
130
+ <g transform="translate(1 %%1) rotate(-%%2)">
131
+ <rect class="displaylabel" width="200" height="14" x="8" y="0" rx="5" ry="5"/>
132
+ <path class="displaylabel" d="M10,13 0,13 8,8"/>
133
+ <path class="displaylabelinner" d="M10,11.5 8.5,11.5 8.5,9.5 10,9.5"/>
134
+ <text class="label" x="18" y="10">aaaa</text>
135
+ </g>
136
+ </svg>
137
+ </template>
138
+
139
+ <ui-tabbed id="instance">
140
+ <ui-tabbar>
141
+ <ui-tab class="switch" ></ui-tab>
142
+ <ui-tab class="" data-tab="new" id="tabnew" >New</ui-tab>
143
+ <ui-tab class="inactive hidden" data-tab="instance" id="tabinstance" >Instance</ui-tab>
144
+ <ui-tab class="inactive hidden" data-tab="execution" id="tabexecution">Execution</ui-tab>
145
+ <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>
146
+ <ui-last ><a class="logo" href=".."></a></ui-last>
147
+ </ui-tabbar>
148
+ <ui-content>
149
+ <ui-area data-belongs-to-tab="new" id="areanew"> <!--{{{-->
150
+ <table class='x-ui-layout'>
151
+ <tr>
152
+ <td>Resources:</td>
153
+ <td><input name="res-url" type="text" value=""/></td>
154
+ <td></td>
155
+ </tr>
156
+ <tr>
157
+ <td>Engine:</td>
158
+ <td><input name="base-url" type="text" value=""/></td>
159
+ <td><button name="base">create new instance</button></td>
160
+ </tr>
161
+ <tr>
162
+ <td>Instance:</td>
163
+ <td><input name="instance-url" type="text" value=""/></td>
164
+ <td><button name="instance">monitor instance</button></td>
165
+ </tr>
166
+ </table>
167
+ </ui-area> <!--}}}-->
168
+ <ui-area data-belongs-to-tab="instance" id="areainstance" class="inactive"> <!--{{{-->
169
+ <div>
170
+ <div class='section'>
171
+ <div>
172
+ <form id='fuckchrome'>
173
+ <input type='file' name='testsetfile' id='testsetfile'/>
174
+ </form>
175
+ <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>
176
+ </div>
177
+ <div>
178
+ <input type='file' name='modelfile' id='modelfile'/>
179
+ <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>
180
+ </div>
181
+ </div><div class='section'>
182
+ <a id="savetestsetfile" href="" download=""></a>
183
+ <a id="savesvgfile" href="" download=""></a>
184
+ <button title='a testset includes various settings, subscriptions and a model' name="savetestsetfile">save testset</button>
185
+ <button title='a testset includes various settings, subscriptions and a model' name="savesvgfile">save svg graph</button>
186
+ </div><div class='section' id='modifiers'>
187
+ <template id="item">
188
+ <div>
189
+ <div class='title'><strong></strong></div>
190
+ <div class='select'><select></select></div>
191
+ <div class='additional'></div>
192
+ </div>
193
+ </template>
194
+ </div>
195
+ </div>
196
+ </ui-area> <!--}}}-->
197
+ <ui-area data-belongs-to-tab="execution" id="areaexecution" class='inactive'> <!--{{{-->
198
+ <table class='x-ui-compact'>
199
+ <tbody class='debug'>
200
+ <tr>
201
+ <td>Debugging:</td>
202
+ <td><input type="checkbox" name="votecontinue"/></td>
203
+ </tr>
204
+ </tbody>
205
+ <tbody class='exe'>
206
+ <tr>
207
+ <td>State:</td>
208
+ <td id='state'>
209
+ <span id="state_text"></span>
210
+ <span id="state_any" style='display:none'>
211
+ <span> ⇒ </span>
212
+ <button name="state_start" title='start' style='display:none'>Start</button>
213
+ <button name="state_stop" title='stop' style='display:none'>Stop</button>
214
+ <span id="state_extended" style='display:none'>
215
+ <span> / </span>
216
+ <button name="state_abandon" title='abandon' style='display:none'>Abandon</button>
217
+ </span>
218
+ </span>
219
+ </td>
220
+ </tr>
221
+ <tr>
222
+ <td>Continue:</td>
223
+ <td id='votes'></td>
224
+ </tr>
225
+ </tbody>
226
+ </table>
227
+ </ui-area> <!--}}}-->
228
+ </ui-content>
229
+ </ui-tabbed>
230
+
231
+ <ui-tabbed class="hidden" id='parameters'>
232
+ <ui-tabbar>
233
+ <ui-tab class="switch" ></ui-tab>
234
+ <ui-tab class="" data-tab="dataelements" id="tabdataelements">Data Objects</ui-tab>
235
+ <ui-tab class="inactive" data-tab="endpoints" id="tabendpoints" >Endpoints</ui-tab>
236
+ <ui-tab class="inactive" data-tab="attributes" id="tabattributes" >Attributes</ui-tab>
237
+ <ui-behind ></ui-behind>
238
+ </ui-tabbar>
239
+ <ui-content>
240
+ <ui-area data-belongs-to-tab="dataelements" id="areadataelements"> <!--{{{-->
241
+ <button title='add entry'><span>New</span></button>
242
+ <div id="dat_dataelements"></div>
243
+ </ui-area> <!--}}}-->
244
+ <ui-area data-belongs-to-tab="endpoints" id="areaendpoints" class="inactive"> <!--{{{-->
245
+ <button title='add entry'><span>New</span></button>
246
+ <div id="dat_endpoints"></div>
247
+ </ui-area> <!--}}}-->
248
+ <ui-area data-belongs-to-tab="attributes" id="areaattributes" class="inactive"> <!--{{{-->
249
+ <button title='add entry'><span>New</span></button>
250
+ <div id="dat_attributes"></div>
251
+ </ui-area> <!--}}}-->
252
+ </ui-content>
253
+ </ui-tabbed>
254
+
255
+ <ui-resizehandle class="hidden">drag to resize</ui-resizehandle>
256
+
257
+ <ui-rest id="main" class="hidden">
258
+ <ui-tabbar>
259
+ <ui-before ></ui-before>
260
+ <ui-tab class="" data-tab="details" id="tabdetails">Graph</ui-tab>
261
+ <ui-tab class="inactive" data-tab="dsl" id="tabdsl" >Description</ui-tab>
262
+ <ui-tab class="inactive" data-tab="log" id="tablog" >Log</ui-tab>
263
+ <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>
264
+ </ui-tabbar>
265
+ <ui-content>
266
+ <ui-area data-belongs-to-tab="details" id='graphcolumn' oncontextmenu='return false'>
267
+ <div id="modelling">
268
+ <div id='graphgrid'>
269
+ <div class="resource-label" style="display: none"></div>
270
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:x="http://www.w3.org/1999/xlink" id='graphcanvas' width='1' height='1'></svg>
271
+ </div>
272
+ </div>
273
+ <div id='status'></div>
274
+ <div id='prompt_container' class="max">
275
+ <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>
276
+ <div id='prompt_submit_container' class="single"><button id='prompt_submit_button' class="llm_button">➤</button></div>
277
+ </div>
278
+ </ui-area>
279
+ <ui-resizehandle data-belongs-to-tab="details" data-label="drag to resize"></ui-resizehandle>
280
+ <ui-area data-belongs-to-tab="details" id="detailcolumn">
281
+ <div id="dat_details" class='x-ui-layout'></div>
282
+ </ui-area>
283
+ <ui-area data-belongs-to-tab="dsl" id="areadsl" class="inactive"></ui-area>
284
+ <ui-area data-belongs-to-tab="log" id="arealog" class="inactive"> <!--{{{-->
285
+ <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>
286
+ <table id="dat_log" class="x-ui-layout"></table>
287
+ </ui-area> <!--}}}-->
288
+ </ui-content>
289
+ </ui-rest>
290
+
291
+ </body>
292
+ </html>
@@ -0,0 +1,294 @@
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/resources.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/resources-label.css" type="text/css"/>
68
+ <link rel="stylesheet" href="css/resources-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 testset</button>
187
+ <button title='a testset includes various settings, subscriptions and a model' name="savesvgfile">save svg 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' 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>
data/cockpit/model.html CHANGED
@@ -173,8 +173,10 @@
173
173
  </ui-tabbar>
174
174
  <ui-content>
175
175
  <ui-area data-belongs-to-tab="details" id='graphcolumn'>
176
- <div id='graphgrid'>
177
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:x="http://www.w3.org/1999/xlink" id='graphcanvas' width='1' height='1'></svg>
176
+ <div id="modelling">
177
+ <div id='graphgrid'>
178
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:x="http://www.w3.org/1999/xlink" id='graphcanvas' width='1' height='1'></svg>
179
+ </div>
178
180
  </div>
179
181
  </ui-area>
180
182
  <ui-resizehandle data-belongs-to-tab="details" data-label="drag to resize"></ui-resizehandle>
@@ -1,22 +1,8 @@
1
1
  <?xml version="1.0"?>
2
2
  <testset xmlns="http://cpee.org/ns/properties/2.0">
3
3
  <executionhandler>ruby</executionhandler>
4
- <dataelements>
5
- <res>{"CPEE-INSTANCE":"51480","CPEE-INSTANCE-URL":"https://cpee.org/flow/engine/51480","CPEE-INSTANCE-UUID":"61291a99-86a7-4396-8e0c-456728c60d09","CPEE-STATE":"finished","b":4,"end":1741703309.6717181,"start":1741703308.456953,"teams":["Eugen Rigger","Celine Mader","Nataliia Klievtsova","Juergen Mangler","David Williamson","Alan Joannidi","Dariusz Opoka","David Ellis","Martin Hintzen","Mark Mattimoe","Ekaterina Zhuravleva","Joanne Mailen","Andreas Schmid","Iain Wilkie","Luke Chan","Eliot Horsman","MEHDI FARIK","Nic Winter","Salim Akram","ROMAIN VIRY","CORINNE DELOR","YANN LISSILLOUR","Julian Chatwin","Gregor Mayr","Andreas Fussenegger","Alexandru Zloteanu","Clemens Neuner","Birthe Bittner","Jan Schrottenholzer","Michael Schoech","J&#xF6;rg Linden","Peter John Keill","Tobias Jonk","Ralf Mueller","Peter Kovacs","Sara Mota","Ulrich Juergenschellert","Yi Ju","Sven Scharfe","Armando Hoedl","Fabienne Meier","Olaf Zalewski","Stefan Bildstein","Sebastian Schade","Tomi Walter","Pascal Wolf","Thibaut Escourrou","Peter Jezsoviczki","Felix Breuss","Thomas Kladensky","Hossam Haridy","Christoph Stadler","Jens Beecken","Bernhard Klocker"]}</res>
6
- <start>1741706229.7376199</start>
7
- <substart>0.8481366634368896</substart>
8
- <subend>2.062901735305786</subend>
9
- <duration>69.02397441864014</duration>
10
- <teams>{"CPEE-INSTANCE":"51480","CPEE-INSTANCE-URL":"https://cpee.org/flow/engine/51480","CPEE-INSTANCE-UUID":"61291a99-86a7-4396-8e0c-456728c60d09","CPEE-STATE":"finished","b":4,"end":1741703309.6717181,"start":1741703308.456953,"teams":["Eugen Rigger","Celine Mader","Nataliia Klievtsova","Juergen Mangler","David Williamson","Alan Joannidi","Dariusz Opoka","David Ellis","Martin Hintzen","Mark Mattimoe","Ekaterina Zhuravleva","Joanne Mailen","Andreas Schmid","Iain Wilkie","Luke Chan","Eliot Horsman","MEHDI FARIK","Nic Winter","Salim Akram","ROMAIN VIRY","CORINNE DELOR","YANN LISSILLOUR","Julian Chatwin","Gregor Mayr","Andreas Fussenegger","Alexandru Zloteanu","Clemens Neuner","Birthe Bittner","Jan Schrottenholzer","Michael Schoech","J&#xF6;rg Linden","Peter John Keill","Tobias Jonk","Ralf Mueller","Peter Kovacs","Sara Mota","Ulrich Juergenschellert","Yi Ju","Sven Scharfe","Armando Hoedl","Fabienne Meier","Olaf Zalewski","Stefan Bildstein","Sebastian Schade","Tomi Walter","Pascal Wolf","Thibaut Escourrou","Peter Jezsoviczki","Felix Breuss","Thomas Kladensky","Hossam Haridy","Christoph Stadler","Jens Beecken","Bernhard Klocker"]}</teams>
11
- </dataelements>
12
- <endpoints>
13
- <subprocess>https-post://cpee.org/flow/start/url/</subprocess>
14
- <user>https-post://cpee.org/services/timeout-user.php</user>
15
- <auto>https-post://cpee.org/services/timeout-auto.php</auto>
16
- <timeout>https://cpee.org/services/timeout.php</timeout>
17
- <send>https-post://cpee.org/ing/correlators/message/send/</send>
18
- <receive>https-get://cpee.org/ing/correlators/message/receive/</receive>
19
- </endpoints>
4
+ <dataelements/>
5
+ <endpoints/>
20
6
  <attributes>
21
7
  <guarded>none</guarded>
22
8
  <modeltype>CPEE</modeltype>