cpee-frames 1.0.5 → 1.0.6
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/cpee-frames.gemspec +1 -1
- data/lib/cpee-frames/implementation.rb +9 -17
- data/lib/cpee-frames/ui/template.html +10 -13
- data/lib/cpee-frames/ui/tutorial.html +13 -13
- data/ui/{js → examples}/frame_data.js +2 -2
- data/{lib/cpee-frames/ui → ui/examples}/framedata.html +10 -10
- data/{lib/cpee-frames/ui → ui/examples}/menu.html +10 -10
- data/{lib/cpee-frames/ui → ui/examples}/test.html +10 -10
- metadata +6 -6
- /data/ui/{js → examples}/test.js +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '08d58fb0e3ead41a726a13e9c2882566ce9517b33db09d2a598f3d4c309efce3'
|
4
|
+
data.tar.gz: 5a11e363e355246150f36896193d5ca42524af006438470e11770f17336a7647
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae2f0971be48e1ec132cd40822962d8b0c1845112790fcf02e0378f6d61624869e44890402b9c0072b22c5771e2405761d0cbf268f9520184c500030d6c7ebbc
|
7
|
+
data.tar.gz: 69dc3c99cd8bf566d329354d44663e80b8d4bcc17950d2ef2507945549f223fc962bf2ba17ba53aaa7785740a01747eb346549855a84063edb7b4136533c4b23
|
data/cpee-frames.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "cpee-frames"
|
3
|
-
s.version = "1.0.
|
3
|
+
s.version = "1.0.6"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.license = "GPL-3.0"
|
6
6
|
s.summary = "Dashboard management service with UI and backend for the cpee.org family of workflow management tools"
|
@@ -2,15 +2,15 @@
|
|
2
2
|
#
|
3
3
|
# This file is part of CPEE-FRAMES.
|
4
4
|
#
|
5
|
-
# CPEE-FRAMES is free software: you can redistribute it and/or
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
5
|
+
# CPEE-FRAMES is free software: you can redistribute it and/or modify it under
|
6
|
+
# the terms of the GNU General Public License as published by the Free Software
|
7
|
+
# Foundation, either version 3 of the License, or (at your option) any later
|
8
|
+
# version.
|
9
9
|
#
|
10
|
-
# CPEE-FRAMES is distributed in the hope that it will be useful,
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
10
|
+
# CPEE-FRAMES is distributed in the hope that it will be useful, but WITHOUT
|
11
|
+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
12
|
+
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
13
|
+
# details.
|
14
14
|
#
|
15
15
|
# You should have received a copy of the GNU General Public License along with
|
16
16
|
# CPEE-FRAMES (file LICENSE in the main directory). If not, see
|
@@ -66,15 +66,7 @@ module CPEE
|
|
66
66
|
|
67
67
|
class Get < Riddl::Implementation #{{{
|
68
68
|
def response
|
69
|
-
|
70
|
-
Riddl::Parameter::Complex.new('ui','text/html',File.open(File.join(__dir__,'ui','test.html')))
|
71
|
-
elsif @r[0] == 'menu'
|
72
|
-
Riddl::Parameter::Complex.new('ui','text/html',File.open(File.join(__dir__,'ui','menu.html')))
|
73
|
-
elsif @r[0] == 'framedata'
|
74
|
-
Riddl::Parameter::Complex.new('ui','text/html',File.open(File.join(__dir__,'ui','framedata.html')))
|
75
|
-
else
|
76
|
-
Riddl::Parameter::Complex.new('ui','text/html',File.open(File.join(__dir__,'ui','template.html')))
|
77
|
-
end
|
69
|
+
Riddl::Parameter::Complex.new('ui','text/html',File.open(File.join(__dir__,'ui','template.html')))
|
78
70
|
end
|
79
71
|
end #}}}
|
80
72
|
|
@@ -1,18 +1,18 @@
|
|
1
1
|
<!--
|
2
|
-
This file is part of
|
2
|
+
This file is part of CPEE-FRAMES.
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
CPEE-FRAMES is free software: you can redistribute it and/or modify it under
|
5
|
+
the terms of the GNU General Public License as published by the Free Software
|
6
|
+
Foundation, either version 3 of the License, or (at your option) any later
|
7
|
+
version.
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
CPEE-FRAMES is distributed in the hope that it will be useful, but WITHOUT
|
10
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
11
|
+
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
12
|
+
details.
|
13
13
|
|
14
14
|
You should have received a copy of the GNU General Public License along with
|
15
|
-
|
15
|
+
CPEE-FRAMES (file LICENSE in the main directory). If not, see
|
16
16
|
<http://www.gnu.org/licenses/>.
|
17
17
|
-->
|
18
18
|
|
@@ -46,9 +46,6 @@
|
|
46
46
|
<link rel="icon" type="image/png" sizes="96x96" href="../css/favicon-96x96.png">
|
47
47
|
<link rel="icon" type="image/png" sizes="16x16" href="../css/favicon-16x16.png">
|
48
48
|
|
49
|
-
<!-- Forms
|
50
|
-
<script src='https://centurio.work/out/forms/js/formio.full.min.js'></script>
|
51
|
-
-->
|
52
49
|
<script>
|
53
50
|
if (location.href.match(/\/$/) == null) {
|
54
51
|
location.href = location.href + '/';
|
@@ -1,18 +1,18 @@
|
|
1
1
|
<!--
|
2
|
-
This file is part of
|
2
|
+
This file is part of CPEE-FRAMES.
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
CPEE-FRAMES is free software: you can redistribute it and/or modify it under
|
5
|
+
the terms of the GNU General Public License as published by the Free Software
|
6
|
+
Foundation, either version 3 of the License, or (at your option) any later
|
7
|
+
version.
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
CPEE-FRAMES is distributed in the hope that it will be useful, but WITHOUT
|
10
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
11
|
+
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
12
|
+
details.
|
13
13
|
|
14
14
|
You should have received a copy of the GNU General Public License along with
|
15
|
-
|
15
|
+
CPEE-FRAMES (file LICENSE in the main directory). If not, see
|
16
16
|
<http://www.gnu.org/licenses/>.
|
17
17
|
-->
|
18
18
|
|
@@ -52,8 +52,8 @@
|
|
52
52
|
|
53
53
|
<li>define Endpoint: *adapt to your needs*</li>
|
54
54
|
<ul>
|
55
|
-
<li>init: https-post://
|
56
|
-
<li>frames: https-put://
|
55
|
+
<li>init: https-post://your.server/frames/</li>
|
56
|
+
<li>frames: https-put://your.server/frames/</li>
|
57
57
|
</ul>
|
58
58
|
<li>define Data Element: (url where your frame will be reached)</li>
|
59
59
|
<ul>
|
@@ -102,7 +102,7 @@
|
|
102
102
|
<li>In the case your site is empty</li>
|
103
103
|
<ul>
|
104
104
|
<li>HAHA</li>
|
105
|
-
<li>Nah its not that bad, look in your process engine
|
105
|
+
<li>Nah its not that bad, look in your process engine; the best thing to do is to use the design service next time</li>
|
106
106
|
</ul>
|
107
107
|
</ul>
|
108
108
|
</ul>
|
@@ -2,9 +2,9 @@ function showDocument(fr = "") {
|
|
2
2
|
if(fr != ""){
|
3
3
|
$.ajax({
|
4
4
|
type: "GET",
|
5
|
-
url: '
|
5
|
+
url: 'dataelements.json',
|
6
6
|
success: function(ret) {
|
7
|
-
$("#alldata").text(JSON.stringify(ret
|
7
|
+
$("#alldata").text(JSON.stringify(ret));
|
8
8
|
},
|
9
9
|
error: function() {
|
10
10
|
reason = '';
|
@@ -1,18 +1,18 @@
|
|
1
1
|
<!--
|
2
|
-
This file is part of
|
2
|
+
This file is part of CPEE-FRAMES.
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
CPEE-FRAMES is free software: you can redistribute it and/or modify it under
|
5
|
+
the terms of the GNU General Public License as published by the Free Software
|
6
|
+
Foundation, either version 3 of the License, or (at your option) any later
|
7
|
+
version.
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
CPEE-FRAMES is distributed in the hope that it will be useful, but WITHOUT
|
10
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
11
|
+
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
12
|
+
details.
|
13
13
|
|
14
14
|
You should have received a copy of the GNU General Public License along with
|
15
|
-
|
15
|
+
CPEE-FRAMES (file LICENSE in the main directory). If not, see
|
16
16
|
<http://www.gnu.org/licenses/>.
|
17
17
|
-->
|
18
18
|
|
@@ -1,18 +1,18 @@
|
|
1
1
|
<!--
|
2
|
-
This file is part of
|
2
|
+
This file is part of CPEE-FRAMES.
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
CPEE-FRAMES is free software: you can redistribute it and/or modify it under
|
5
|
+
the terms of the GNU General Public License as published by the Free Software
|
6
|
+
Foundation, either version 3 of the License, or (at your option) any later
|
7
|
+
version.
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
CPEE-FRAMES is distributed in the hope that it will be useful, but WITHOUT
|
10
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
11
|
+
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
12
|
+
details.
|
13
13
|
|
14
14
|
You should have received a copy of the GNU General Public License along with
|
15
|
-
|
15
|
+
CPEE-FRAMES (file LICENSE in the main directory). If not, see
|
16
16
|
<http://www.gnu.org/licenses/>.
|
17
17
|
-->
|
18
18
|
|
@@ -1,18 +1,18 @@
|
|
1
1
|
<!--
|
2
|
-
This file is part of
|
2
|
+
This file is part of CPEE-FRAMES.
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
CPEE-FRAMES is free software: you can redistribute it and/or modify it under
|
5
|
+
the terms of the GNU General Public License as published by the Free Software
|
6
|
+
Foundation, either version 3 of the License, or (at your option) any later
|
7
|
+
version.
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
CPEE-FRAMES is distributed in the hope that it will be useful, but WITHOUT
|
10
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
11
|
+
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
12
|
+
details.
|
13
13
|
|
14
14
|
You should have received a copy of the GNU General Public License along with
|
15
|
-
|
15
|
+
CPEE-FRAMES (file LICENSE in the main directory). If not, see
|
16
16
|
<http://www.gnu.org/licenses/>.
|
17
17
|
-->
|
18
18
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cpee-frames
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Manuell Gall
|
@@ -55,10 +55,7 @@ files:
|
|
55
55
|
- cpee-frames.gemspec
|
56
56
|
- lib/cpee-frames/frames.xml
|
57
57
|
- lib/cpee-frames/implementation.rb
|
58
|
-
- lib/cpee-frames/ui/framedata.html
|
59
|
-
- lib/cpee-frames/ui/menu.html
|
60
58
|
- lib/cpee-frames/ui/template.html
|
61
|
-
- lib/cpee-frames/ui/test.html
|
62
59
|
- lib/cpee-frames/ui/tutorial.html
|
63
60
|
- server/frames
|
64
61
|
- server/frames.conf
|
@@ -67,9 +64,12 @@ files:
|
|
67
64
|
- ui/css/favicon-32x32.png
|
68
65
|
- ui/css/favicon-96x96.png
|
69
66
|
- ui/css/frames.css
|
70
|
-
- ui/
|
67
|
+
- ui/examples/frame_data.js
|
68
|
+
- ui/examples/framedata.html
|
69
|
+
- ui/examples/menu.html
|
70
|
+
- ui/examples/test.html
|
71
|
+
- ui/examples/test.js
|
71
72
|
- ui/js/language.js
|
72
|
-
- ui/js/test.js
|
73
73
|
- ui/js/ui.js
|
74
74
|
homepage: https://github.com/ManuelGall/cpee-frames
|
75
75
|
licenses:
|
/data/ui/{js → examples}/test.js
RENAMED
File without changes
|