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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bdca65cce57c3f745051b004fba4e46bc353dafa402fa04e4165a5fad8646010
4
- data.tar.gz: 99881a242c05659c8e73fb3c2c8fb1b71275650f71482f41e327cd5fb620eee0
3
+ metadata.gz: '08d58fb0e3ead41a726a13e9c2882566ce9517b33db09d2a598f3d4c309efce3'
4
+ data.tar.gz: 5a11e363e355246150f36896193d5ca42524af006438470e11770f17336a7647
5
5
  SHA512:
6
- metadata.gz: 2cfd3358722637897a9d2487fc3705038fca7b6b31b64a2038a26279c72f210a943da04387fba17badaf85251f5848f3c91680cff7266b9a663d748ee6cee818
7
- data.tar.gz: f8197d917103bfc9c5eb23dfe88733eb39a47ef52e333707b308271bf2f5c3c9a483c7a52f07aa334e4c59ec4bb47daa9de2cd370eff8bf73afcb111e58a7c21
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.5"
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
- # modify it under the terms of the GNU General Public License as published by
7
- # the Free Software Foundation, either version 3 of the License, or (at your
8
- # option) any later version.
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
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
13
- # Public License for more details.
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
- if @r[0] == 'test'
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 centurio.work/out/frame.
2
+ This file is part of CPEE-FRAMES.
3
3
 
4
- centurio.work/out/frame is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU General Public License as published by the Free
6
- Software Foundation, either version 3 of the License, or (at your option) any
7
- later version.
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
- centurio.work/out/frame is distributed in the hope that it will be useful, but
10
- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12
- more details.
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
- centurio.work/out/frame (file LICENSE in the main directory). If not, see
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 centurio.work/out/frame.
2
+ This file is part of CPEE-FRAMES.
3
3
 
4
- centurio.work/out/frame is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU General Public License as published by the Free
6
- Software Foundation, either version 3 of the License, or (at your option) any
7
- later version.
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
- centurio.work/out/frame is distributed in the hope that it will be useful, but
10
- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12
- more details.
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
- centurio.work/out/frame (file LICENSE in the main directory). If not, see
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://centurio.work/out/frames/</li>
56
- <li>frames: https-put://centurio.work/out/frames/</li>
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 and best thing to do is to use the design service next time</li>
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: '/out/frames/' + fr + '/dataelements.json',
5
+ url: 'dataelements.json',
6
6
  success: function(ret) {
7
- $("#alldata").text(JSON.stringify(ret["ausfuehrungen"]));
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 centurio.work/out/frame.
2
+ This file is part of CPEE-FRAMES.
3
3
 
4
- centurio.work/out/frame is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU General Public License as published by the Free
6
- Software Foundation, either version 3 of the License, or (at your option) any
7
- later version.
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
- centurio.work/out/frame is distributed in the hope that it will be useful, but
10
- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12
- more details.
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
- centurio.work/out/frame (file LICENSE in the main directory). If not, see
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 centurio.work/out/frame.
2
+ This file is part of CPEE-FRAMES.
3
3
 
4
- centurio.work/out/frame is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU General Public License as published by the Free
6
- Software Foundation, either version 3 of the License, or (at your option) any
7
- later version.
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
- centurio.work/out/frame is distributed in the hope that it will be useful, but
10
- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12
- more details.
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
- centurio.work/out/frame (file LICENSE in the main directory). If not, see
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 centurio.work/out/frame.
2
+ This file is part of CPEE-FRAMES.
3
3
 
4
- centurio.work/out/frame is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU General Public License as published by the Free
6
- Software Foundation, either version 3 of the License, or (at your option) any
7
- later version.
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
- centurio.work/out/frame is distributed in the hope that it will be useful, but
10
- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12
- more details.
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
- centurio.work/out/frame (file LICENSE in the main directory). If not, see
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.5
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/js/frame_data.js
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:
File without changes