cpee 2.1.2 → 2.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cockpit/config.json +1 -1
- data/cockpit/css/ui.css +14 -7
- data/cockpit/edit.html +27 -23
- data/cockpit/graph.html +1 -0
- data/cockpit/index.html +26 -22
- data/cockpit/js/edit.js +8 -1
- data/cockpit/js/instance.js +103 -39
- data/cockpit/js/modifiers.js +188 -0
- data/cockpit/model.html +1 -8
- data/cockpit/themes/compact/rngs/call.rng +17 -8
- data/cockpit/themes/compact/rngs/callmanipulate.rng +18 -9
- data/cockpit/themes/compact/rngs/start.rng +9 -9
- data/cockpit/themes/compact/theme.js +1 -1
- data/cockpit/themes/control/rngs/call.rng +17 -8
- data/cockpit/themes/control/rngs/callmanipulate.rng +18 -9
- data/cockpit/themes/control/rngs/start.rng +9 -9
- data/cockpit/themes/default/rngs/call.rng +17 -8
- data/cockpit/themes/default/rngs/callmanipulate.rng +18 -9
- data/cockpit/themes/default/rngs/start.rng +9 -9
- data/cockpit/themes/extended/rngs/call.rng +17 -8
- data/cockpit/themes/extended/rngs/callmanipulate.rng +18 -9
- data/cockpit/themes/extended/rngs/start.rng +9 -9
- data/cockpit/themes/extended/theme.js +1 -1
- data/cockpit/themes/packed/rngs/call.rng +17 -8
- data/cockpit/themes/packed/rngs/callmanipulate.rng +18 -9
- data/cockpit/themes/packed/rngs/start.rng +9 -9
- data/cockpit/themes/packed/theme.js +1 -1
- data/cockpit/themes/preset/rngs/call.rng +17 -8
- data/cockpit/themes/preset/rngs/callmanipulate.rng +18 -9
- data/cockpit/themes/preset/rngs/start.rng +9 -9
- data/cockpit/track.html +1 -0
- data/cpee.gemspec +2 -2
- data/lib/cpee/implementation_notifications.rb +5 -5
- data/lib/cpee/redis.rb +13 -6
- data/server/routing/end.pid +1 -0
- data/server/routing/forward-events.pid +1 -0
- data/server/routing/forward-votes.pid +1 -0
- data/server/routing/persist.pid +1 -0
- data/tools/cpee +36 -8
- data/tools/cpee.sic +306 -0
- metadata +10 -5
- data/lib/instantiation.xml +0 -125
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.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juergen eTM Mangler
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: tools
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-06-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: riddl
|
@@ -18,14 +18,14 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - "~>"
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: '0.
|
21
|
+
version: '0.114'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - "~>"
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: '0.
|
28
|
+
version: '0.114'
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: weel
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
@@ -139,6 +139,7 @@ files:
|
|
139
139
|
- cockpit/js/edit.js
|
140
140
|
- cockpit/js/instance.js
|
141
141
|
- cockpit/js/model.js
|
142
|
+
- cockpit/js/modifiers.js
|
142
143
|
- cockpit/js/parameters.js
|
143
144
|
- cockpit/js/replay.js
|
144
145
|
- cockpit/js/track.js
|
@@ -586,7 +587,6 @@ files:
|
|
586
587
|
- lib/engine.xml
|
587
588
|
- lib/engine/instance-info.rng
|
588
589
|
- lib/engine/instances.rng
|
589
|
-
- lib/instantiation.xml
|
590
590
|
- lib/properties.xml
|
591
591
|
- lib/properties/arbitrary.rng
|
592
592
|
- lib/properties/attributes.rng
|
@@ -630,13 +630,18 @@ files:
|
|
630
630
|
- server/resources/states.xml
|
631
631
|
- server/resources/topics.xml
|
632
632
|
- server/resources/transformation.xml
|
633
|
+
- server/routing/end.pid
|
633
634
|
- server/routing/end.rb
|
635
|
+
- server/routing/forward-events.pid
|
634
636
|
- server/routing/forward-events.rb
|
637
|
+
- server/routing/forward-votes.pid
|
635
638
|
- server/routing/forward-votes.rb
|
639
|
+
- server/routing/persist.pid
|
636
640
|
- server/routing/persist.rb
|
637
641
|
- server/server.conf
|
638
642
|
- server/server.rb
|
639
643
|
- tools/cpee
|
644
|
+
- tools/cpee.sic
|
640
645
|
- tools/server/cpee
|
641
646
|
- tools/server/resources/notifications/logging/subscription.xml
|
642
647
|
- tools/server/resources/properties.init
|
data/lib/instantiation.xml
DELETED
@@ -1,125 +0,0 @@
|
|
1
|
-
<description datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns="http://riddl.org/ns/description/1.0" xmlns:xi="http://www.w3.org/2001/XInclude">
|
2
|
-
<message name="xmlsimple">
|
3
|
-
<parameter name="xml" mimetype="*/xml"/>
|
4
|
-
</message>
|
5
|
-
<message name="xml">
|
6
|
-
<parameter name="behavior" type="string">
|
7
|
-
<choice>
|
8
|
-
<value>fork_ready</value>
|
9
|
-
<value>fork_running</value>
|
10
|
-
<value>wait_ready</value>
|
11
|
-
<value>wait_running</value>
|
12
|
-
</choice>
|
13
|
-
</parameter>
|
14
|
-
<parameter name="xml" mimetype="*/xml"/>
|
15
|
-
<optional>
|
16
|
-
<parameter name="init" type="string"/>
|
17
|
-
</optional>
|
18
|
-
</message>
|
19
|
-
<message name="url_info">
|
20
|
-
<parameter name="info" type="string"/>
|
21
|
-
<parameter name="behavior" type="string">
|
22
|
-
<choice>
|
23
|
-
<value>fork_ready</value>
|
24
|
-
<value>fork_running</value>
|
25
|
-
<value>wait_ready</value>
|
26
|
-
<value>wait_running</value>
|
27
|
-
</choice>
|
28
|
-
</parameter>
|
29
|
-
<parameter name="url" type="string"/>
|
30
|
-
<optional>
|
31
|
-
<parameter name="init" type="string"/>
|
32
|
-
</optional>
|
33
|
-
<optional>
|
34
|
-
<parameter name="endpoints" type="string"/>
|
35
|
-
</optional>
|
36
|
-
<optional>
|
37
|
-
<parameter name="stream" type="string"/>
|
38
|
-
</optional>
|
39
|
-
</message>
|
40
|
-
<message name="url">
|
41
|
-
<parameter name="behavior" type="string">
|
42
|
-
<choice>
|
43
|
-
<value>fork_ready</value>
|
44
|
-
<value>fork_running</value>
|
45
|
-
<value>wait_ready</value>
|
46
|
-
<value>wait_running</value>
|
47
|
-
</choice>
|
48
|
-
</parameter>
|
49
|
-
<parameter name="url" type="string"/>
|
50
|
-
<optional>
|
51
|
-
<parameter name="init" type="string"/>
|
52
|
-
</optional>
|
53
|
-
<optional>
|
54
|
-
<parameter name="endpoints" type="string"/>
|
55
|
-
</optional>
|
56
|
-
<optional>
|
57
|
-
<parameter name="stream" type="string"/>
|
58
|
-
</optional>
|
59
|
-
</message>
|
60
|
-
<message name="git">
|
61
|
-
<parameter name="behavior" type="string">
|
62
|
-
<choice>
|
63
|
-
<value>fork_ready</value>
|
64
|
-
<value>fork_running</value>
|
65
|
-
<value>wait_ready</value>
|
66
|
-
<value>wait_running</value>
|
67
|
-
</choice>
|
68
|
-
</parameter>
|
69
|
-
<parameter name="repo" type="string"/>
|
70
|
-
<parameter name="branch" type="string"/>
|
71
|
-
<parameter name="path" type="string"/>
|
72
|
-
<optional>
|
73
|
-
<parameter name="init" type="string"/>
|
74
|
-
</optional>
|
75
|
-
<optional>
|
76
|
-
<parameter name="endpoints" type="string"/>
|
77
|
-
</optional>
|
78
|
-
<optional>
|
79
|
-
<parameter name="stream" type="string"/>
|
80
|
-
</optional>
|
81
|
-
</message>
|
82
|
-
<message name="instance">
|
83
|
-
<parameter name="behavior" type="string">
|
84
|
-
<choice>
|
85
|
-
<value>fork_ready</value>
|
86
|
-
<value>fork_running</value>
|
87
|
-
<value>wait_ready</value>
|
88
|
-
<value>wait_running</value>
|
89
|
-
<value>wait_stopped_running</value>
|
90
|
-
<value>wait_finished_running</value>
|
91
|
-
</choice>
|
92
|
-
</parameter>
|
93
|
-
<parameter name="instance" type="integer"/>
|
94
|
-
<optional>
|
95
|
-
<parameter name="init" type="string"/>
|
96
|
-
</optional>
|
97
|
-
</message>
|
98
|
-
|
99
|
-
<message name="result">
|
100
|
-
<parameter name="instance" mimetype="application/json"/>
|
101
|
-
</message>
|
102
|
-
|
103
|
-
<resource>
|
104
|
-
<post in="xmlsimple" out="result"/>
|
105
|
-
<resource relative="xml">
|
106
|
-
<post in="xml" out="result"/>
|
107
|
-
</resource>
|
108
|
-
<resource relative="instance">
|
109
|
-
<post in="instance" out="result"/>
|
110
|
-
</resource>
|
111
|
-
<resource relative="url">
|
112
|
-
<post in="url" out="result"/>
|
113
|
-
<post in="url_info" out="result"/>
|
114
|
-
</resource>
|
115
|
-
<resource relative="git">
|
116
|
-
<post in="git" out="result"/>
|
117
|
-
</resource>
|
118
|
-
<resource relative="callback">
|
119
|
-
<resource>
|
120
|
-
<post/>
|
121
|
-
</resource>
|
122
|
-
</resource>
|
123
|
-
</resource>
|
124
|
-
|
125
|
-
</description>
|