riddl 0.101.15 → 0.101.16
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75b27043581e0e50dc78a98091f62e4da7e2543dd9a4a7c48df7468b341247fc
|
|
4
|
+
data.tar.gz: 5287797068c18f3201971128ff00d73883870bd639137afe574ffe9ff47dce7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b9903c8acfcd47ca16a2506c9eae4435bd994a2694e3af6fd2cc2337913be1f411d9a315a86b2948fc9f482a458617af7c0765fd3fe3537557789f4f53761de
|
|
7
|
+
data.tar.gz: 992f143f5064d8d7ecfc87ffb32b04f8f74b0013f5033d8cc4e1246f216d753341de408f9fa72ab3a83a28e2c9b3fe7022092b0ce9a0a3ddc41d661b54e768b0
|
|
@@ -0,0 +1,177 @@
|
|
|
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
|
+
|
|
3
|
+
<message name="topics">
|
|
4
|
+
<parameter name="topics" mimetype="text/xml" handler="http://riddl.org/ns/handlers/relaxng">
|
|
5
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
6
|
+
<start>
|
|
7
|
+
<element name="topics">
|
|
8
|
+
<zeroOrMore>
|
|
9
|
+
<ref name="topic"/>
|
|
10
|
+
</zeroOrMore>
|
|
11
|
+
</element>
|
|
12
|
+
</start>
|
|
13
|
+
|
|
14
|
+
<define name="topic">
|
|
15
|
+
<element name="topic">
|
|
16
|
+
<attribute name="id">
|
|
17
|
+
<data type="string"/>
|
|
18
|
+
</attribute>
|
|
19
|
+
<zeroOrMore>
|
|
20
|
+
<element>
|
|
21
|
+
<choice>
|
|
22
|
+
<name>event</name>
|
|
23
|
+
<name>vote</name>
|
|
24
|
+
</choice>
|
|
25
|
+
<data type="string">
|
|
26
|
+
<param name="pattern">[\w-_]+</param>
|
|
27
|
+
</data>
|
|
28
|
+
</element>
|
|
29
|
+
</zeroOrMore>
|
|
30
|
+
</element>
|
|
31
|
+
</define>
|
|
32
|
+
|
|
33
|
+
</grammar>
|
|
34
|
+
</parameter>
|
|
35
|
+
</message>
|
|
36
|
+
|
|
37
|
+
<message name="subscriptions">
|
|
38
|
+
<parameter name="subscriptions" mimetype="text/xml" handler="http://riddl.org/ns/handlers/relaxng">
|
|
39
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
40
|
+
<start>
|
|
41
|
+
<element name="subscriptions">
|
|
42
|
+
<zeroOrMore>
|
|
43
|
+
<ref name="subscription"/>
|
|
44
|
+
</zeroOrMore>
|
|
45
|
+
</element>
|
|
46
|
+
</start>
|
|
47
|
+
|
|
48
|
+
<define name="subscription">
|
|
49
|
+
<element name="subscription">
|
|
50
|
+
<attribute name="id">
|
|
51
|
+
<data type="string"/>
|
|
52
|
+
</attribute>
|
|
53
|
+
<optional>
|
|
54
|
+
<attribute name="url">
|
|
55
|
+
<data type="string"/>
|
|
56
|
+
</attribute>
|
|
57
|
+
</optional>
|
|
58
|
+
</element>
|
|
59
|
+
</define>
|
|
60
|
+
|
|
61
|
+
</grammar>
|
|
62
|
+
</parameter>
|
|
63
|
+
</message>
|
|
64
|
+
|
|
65
|
+
<message name="subscription">
|
|
66
|
+
<parameter name="subscription" mimetype="text/xml" handler="http://riddl.org/ns/handlers/relaxng">
|
|
67
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
68
|
+
<start>
|
|
69
|
+
<element name="subscription">
|
|
70
|
+
<optional>
|
|
71
|
+
<attribute name="url">
|
|
72
|
+
<data type="string"/>
|
|
73
|
+
</attribute>
|
|
74
|
+
</optional>
|
|
75
|
+
<oneOrMore>
|
|
76
|
+
<element name="topic">
|
|
77
|
+
<attribute name="id">
|
|
78
|
+
<data type="string"/>
|
|
79
|
+
</attribute>
|
|
80
|
+
<oneOrMore>
|
|
81
|
+
<element>
|
|
82
|
+
<choice>
|
|
83
|
+
<name>event</name>
|
|
84
|
+
<name>vote</name>
|
|
85
|
+
</choice>
|
|
86
|
+
<data type="string">
|
|
87
|
+
<param name="pattern">[\w_]+</param>
|
|
88
|
+
</data>
|
|
89
|
+
</element>
|
|
90
|
+
</oneOrMore>
|
|
91
|
+
</element>
|
|
92
|
+
</oneOrMore>
|
|
93
|
+
</element>
|
|
94
|
+
</start>
|
|
95
|
+
</grammar>
|
|
96
|
+
</parameter>
|
|
97
|
+
</message>
|
|
98
|
+
|
|
99
|
+
<message name="subscribe">
|
|
100
|
+
<optional>
|
|
101
|
+
<parameter name="url" type="string"/>
|
|
102
|
+
<optional>
|
|
103
|
+
<parameter name="onbehalf" type="string"/>
|
|
104
|
+
</optional>
|
|
105
|
+
</optional>
|
|
106
|
+
<oneOrMore>
|
|
107
|
+
<parameter name="topic" type="string"/>
|
|
108
|
+
<choice>
|
|
109
|
+
<parameter name="votes" type="string">
|
|
110
|
+
<param name="pattern">([\w-_]+,)*([\w-_]+)</param>
|
|
111
|
+
</parameter>
|
|
112
|
+
<parameter name="events" type="string">
|
|
113
|
+
<param name="pattern">([\w-_]+,)*([\w-_]+)</param>
|
|
114
|
+
</parameter>
|
|
115
|
+
</choice>
|
|
116
|
+
</oneOrMore>
|
|
117
|
+
</message>
|
|
118
|
+
<message name="acknowledgment">
|
|
119
|
+
<parameter name="key" type="string"/>
|
|
120
|
+
</message>
|
|
121
|
+
|
|
122
|
+
<message name="details">
|
|
123
|
+
<optional>
|
|
124
|
+
<parameter name="url" type="string"/>
|
|
125
|
+
</optional>
|
|
126
|
+
<oneOrMore>
|
|
127
|
+
<parameter name="topic" type="string"/>
|
|
128
|
+
<choice>
|
|
129
|
+
<parameter name="votes" type="string">
|
|
130
|
+
<param name="pattern">([\w-_]+,)*([\w-_]+)</param>
|
|
131
|
+
</parameter>
|
|
132
|
+
<parameter name="events" type="string">
|
|
133
|
+
<param name="pattern">([\w-_]+,)*([\w-_]+)</param>
|
|
134
|
+
</parameter>
|
|
135
|
+
</choice>
|
|
136
|
+
</oneOrMore>
|
|
137
|
+
</message>
|
|
138
|
+
|
|
139
|
+
<message name="overview">
|
|
140
|
+
<parameter name="overview" mimetype="text/xml" handler="http://riddl.org/ns/handlers/relaxng">
|
|
141
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
142
|
+
<start>
|
|
143
|
+
<element name="overview">
|
|
144
|
+
<element name="topics">
|
|
145
|
+
<empty/>
|
|
146
|
+
</element>
|
|
147
|
+
<element name="subscriptions">
|
|
148
|
+
<empty/>
|
|
149
|
+
</element>
|
|
150
|
+
</element>
|
|
151
|
+
</start>
|
|
152
|
+
</grammar>
|
|
153
|
+
</parameter>
|
|
154
|
+
</message>
|
|
155
|
+
|
|
156
|
+
<resource pattern="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
157
|
+
<resource relative="notifications">
|
|
158
|
+
<get in="*" out="overview"/>
|
|
159
|
+
<resource relative="topics">
|
|
160
|
+
<get in="*" out="topics"/>
|
|
161
|
+
</resource>
|
|
162
|
+
<resource relative="subscriptions">
|
|
163
|
+
<get in="*" out="subscriptions"/>
|
|
164
|
+
<post in="subscribe" out="acknowledgment"/>
|
|
165
|
+
<resource>
|
|
166
|
+
<get out="subscription"/>
|
|
167
|
+
<put in="details"/>
|
|
168
|
+
<delete/>
|
|
169
|
+
<resource relative="sse">
|
|
170
|
+
<sse/>
|
|
171
|
+
</resource>
|
|
172
|
+
</resource>
|
|
173
|
+
</resource>
|
|
174
|
+
</resource>
|
|
175
|
+
</resource>
|
|
176
|
+
|
|
177
|
+
</description>
|
|
@@ -0,0 +1,177 @@
|
|
|
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
|
+
|
|
3
|
+
<message name="topics">
|
|
4
|
+
<parameter name="topics" mimetype="text/xml" handler="http://riddl.org/ns/handlers/relaxng">
|
|
5
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
6
|
+
<start>
|
|
7
|
+
<element name="topics">
|
|
8
|
+
<zeroOrMore>
|
|
9
|
+
<ref name="topic"/>
|
|
10
|
+
</zeroOrMore>
|
|
11
|
+
</element>
|
|
12
|
+
</start>
|
|
13
|
+
|
|
14
|
+
<define name="topic">
|
|
15
|
+
<element name="topic">
|
|
16
|
+
<attribute name="id">
|
|
17
|
+
<data type="string"/>
|
|
18
|
+
</attribute>
|
|
19
|
+
<zeroOrMore>
|
|
20
|
+
<element>
|
|
21
|
+
<choice>
|
|
22
|
+
<name>event</name>
|
|
23
|
+
<name>vote</name>
|
|
24
|
+
</choice>
|
|
25
|
+
<data type="string">
|
|
26
|
+
<param name="pattern">[\w-_]+</param>
|
|
27
|
+
</data>
|
|
28
|
+
</element>
|
|
29
|
+
</zeroOrMore>
|
|
30
|
+
</element>
|
|
31
|
+
</define>
|
|
32
|
+
|
|
33
|
+
</grammar>
|
|
34
|
+
</parameter>
|
|
35
|
+
</message>
|
|
36
|
+
|
|
37
|
+
<message name="subscriptions">
|
|
38
|
+
<parameter name="subscriptions" mimetype="text/xml" handler="http://riddl.org/ns/handlers/relaxng">
|
|
39
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
40
|
+
<start>
|
|
41
|
+
<element name="subscriptions">
|
|
42
|
+
<zeroOrMore>
|
|
43
|
+
<ref name="subscription"/>
|
|
44
|
+
</zeroOrMore>
|
|
45
|
+
</element>
|
|
46
|
+
</start>
|
|
47
|
+
|
|
48
|
+
<define name="subscription">
|
|
49
|
+
<element name="subscription">
|
|
50
|
+
<attribute name="id">
|
|
51
|
+
<data type="string"/>
|
|
52
|
+
</attribute>
|
|
53
|
+
<optional>
|
|
54
|
+
<attribute name="url">
|
|
55
|
+
<data type="string"/>
|
|
56
|
+
</attribute>
|
|
57
|
+
</optional>
|
|
58
|
+
</element>
|
|
59
|
+
</define>
|
|
60
|
+
|
|
61
|
+
</grammar>
|
|
62
|
+
</parameter>
|
|
63
|
+
</message>
|
|
64
|
+
|
|
65
|
+
<message name="subscription">
|
|
66
|
+
<parameter name="subscription" mimetype="text/xml" handler="http://riddl.org/ns/handlers/relaxng">
|
|
67
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
68
|
+
<start>
|
|
69
|
+
<element name="subscription">
|
|
70
|
+
<optional>
|
|
71
|
+
<attribute name="url">
|
|
72
|
+
<data type="string"/>
|
|
73
|
+
</attribute>
|
|
74
|
+
</optional>
|
|
75
|
+
<oneOrMore>
|
|
76
|
+
<element name="topic">
|
|
77
|
+
<attribute name="id">
|
|
78
|
+
<data type="string"/>
|
|
79
|
+
</attribute>
|
|
80
|
+
<oneOrMore>
|
|
81
|
+
<element>
|
|
82
|
+
<choice>
|
|
83
|
+
<name>event</name>
|
|
84
|
+
<name>vote</name>
|
|
85
|
+
</choice>
|
|
86
|
+
<data type="string">
|
|
87
|
+
<param name="pattern">[\w_]+</param>
|
|
88
|
+
</data>
|
|
89
|
+
</element>
|
|
90
|
+
</oneOrMore>
|
|
91
|
+
</element>
|
|
92
|
+
</oneOrMore>
|
|
93
|
+
</element>
|
|
94
|
+
</start>
|
|
95
|
+
</grammar>
|
|
96
|
+
</parameter>
|
|
97
|
+
</message>
|
|
98
|
+
|
|
99
|
+
<message name="subscribe">
|
|
100
|
+
<optional>
|
|
101
|
+
<parameter name="url" type="string"/>
|
|
102
|
+
<optional>
|
|
103
|
+
<parameter name="onbehalf" type="string"/>
|
|
104
|
+
</optional>
|
|
105
|
+
</optional>
|
|
106
|
+
<oneOrMore>
|
|
107
|
+
<parameter name="topic" type="string"/>
|
|
108
|
+
<choice>
|
|
109
|
+
<parameter name="votes" type="string">
|
|
110
|
+
<param name="pattern">([\w-_]+,)*([\w-_]+)</param>
|
|
111
|
+
</parameter>
|
|
112
|
+
<parameter name="events" type="string">
|
|
113
|
+
<param name="pattern">([\w-_]+,)*([\w-_]+)</param>
|
|
114
|
+
</parameter>
|
|
115
|
+
</choice>
|
|
116
|
+
</oneOrMore>
|
|
117
|
+
</message>
|
|
118
|
+
<message name="acknowledgment">
|
|
119
|
+
<parameter name="key" type="string"/>
|
|
120
|
+
</message>
|
|
121
|
+
|
|
122
|
+
<message name="details">
|
|
123
|
+
<optional>
|
|
124
|
+
<parameter name="url" type="string"/>
|
|
125
|
+
</optional>
|
|
126
|
+
<oneOrMore>
|
|
127
|
+
<parameter name="topic" type="string"/>
|
|
128
|
+
<choice>
|
|
129
|
+
<parameter name="votes" type="string">
|
|
130
|
+
<param name="pattern">([\w-_]+,)*([\w-_]+)</param>
|
|
131
|
+
</parameter>
|
|
132
|
+
<parameter name="events" type="string">
|
|
133
|
+
<param name="pattern">([\w-_]+,)*([\w-_]+)</param>
|
|
134
|
+
</parameter>
|
|
135
|
+
</choice>
|
|
136
|
+
</oneOrMore>
|
|
137
|
+
</message>
|
|
138
|
+
|
|
139
|
+
<message name="overview">
|
|
140
|
+
<parameter name="overview" mimetype="text/xml" handler="http://riddl.org/ns/handlers/relaxng">
|
|
141
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" ns="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
142
|
+
<start>
|
|
143
|
+
<element name="overview">
|
|
144
|
+
<element name="topics">
|
|
145
|
+
<empty/>
|
|
146
|
+
</element>
|
|
147
|
+
<element name="subscriptions">
|
|
148
|
+
<empty/>
|
|
149
|
+
</element>
|
|
150
|
+
</element>
|
|
151
|
+
</start>
|
|
152
|
+
</grammar>
|
|
153
|
+
</parameter>
|
|
154
|
+
</message>
|
|
155
|
+
|
|
156
|
+
<resource pattern="http://riddl.org/ns/common-patterns/notifications-producer/2.0">
|
|
157
|
+
<resource relative="notifications">
|
|
158
|
+
<get in="*" out="overview"/>
|
|
159
|
+
<resource relative="topics">
|
|
160
|
+
<get in="*" out="topics"/>
|
|
161
|
+
</resource>
|
|
162
|
+
<resource relative="subscriptions">
|
|
163
|
+
<get in="*" out="subscriptions"/>
|
|
164
|
+
<post in="subscribe" out="acknowledgment"/>
|
|
165
|
+
<resource>
|
|
166
|
+
<get out="subscription"/>
|
|
167
|
+
<put in="details"/>
|
|
168
|
+
<delete/>
|
|
169
|
+
<resource relative="sse">
|
|
170
|
+
<sse/>
|
|
171
|
+
</resource>
|
|
172
|
+
</resource>
|
|
173
|
+
</resource>
|
|
174
|
+
</resource>
|
|
175
|
+
</resource>
|
|
176
|
+
|
|
177
|
+
</description>
|
data/riddl.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riddl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.101.
|
|
4
|
+
version: 0.101.16
|
|
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: 2020-
|
|
13
|
+
date: 2020-07-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: daemonite
|
|
@@ -442,6 +442,7 @@ files:
|
|
|
442
442
|
- lib/ruby/riddl/ns/common-patterns/downloadify/1.0/downloadify.xml
|
|
443
443
|
- lib/ruby/riddl/ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
|
444
444
|
- lib/ruby/riddl/ns/common-patterns/notifications-producer/1.0/producer.xml
|
|
445
|
+
- lib/ruby/riddl/ns/common-patterns/notifications-producer/2.0/producer.xml
|
|
445
446
|
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/app.xml
|
|
446
447
|
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-delete.xml
|
|
447
448
|
- lib/ruby/riddl/ns/common-patterns/oauth2-univie-app/1.0/bearer-get.xml
|
|
@@ -501,6 +502,7 @@ files:
|
|
|
501
502
|
- ns/common-patterns/downloadify/1.0/downloadify.xml
|
|
502
503
|
- ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
|
503
504
|
- ns/common-patterns/notifications-producer/1.0/producer.xml
|
|
505
|
+
- ns/common-patterns/notifications-producer/2.0/producer.xml
|
|
504
506
|
- ns/common-patterns/oauth2-univie-app/1.0/app.xml
|
|
505
507
|
- ns/common-patterns/oauth2-univie-app/1.0/bearer-delete.xml
|
|
506
508
|
- ns/common-patterns/oauth2-univie-app/1.0/bearer-get.xml
|