riddl 0.99.150 → 0.99.151
Sign up to get free protection for your applications and to get access to all the features.
- data/examples/declaration-test/main.log +57 -0
- data/examples/flickr/Exif/riddl.new.jpg +0 -0
- data/examples/flickr/Flickr/flickr.frob +1 -0
- data/examples/flickr/Flickr/flickr.token +1 -0
- data/examples/twitter/twitter.consumer_key +1 -0
- data/examples/twitter/twitter.consumer_secret +1 -0
- data/examples/twitter/twitter.token +1 -0
- data/examples/twitter/twitter.token_secret +1 -0
- data/examples/twitter/twitter.user_id +1 -0
- data/examples/xmpp/blather/description.xml +981 -0
- data/examples/xmpp/blather/direct.rb +44 -0
- data/examples/xmpp/blather/load.rb +18 -0
- data/examples/xmpp/blather/pp.rb +40 -0
- data/examples/xmpp/blather/test.rb +32 -0
- data/examples/zotero/litlist.html +540 -0
- data/examples/zotero/zotero.consumer_key +1 -0
- data/examples/zotero/zotero.consumer_secret +1 -0
- data/examples/zotero/zotero.token +1 -0
- data/examples/zotero/zotero.token_secret +1 -0
- data/examples/zotero/zotero.user_id +1 -0
- data/lib/ruby/riddl/server.rb +4 -4
- data/riddl.gemspec +1 -1
- metadata +281 -239
- checksums.yaml +0 -7
@@ -0,0 +1 @@
|
|
1
|
+
689f0248cc74473141b6
|
@@ -0,0 +1 @@
|
|
1
|
+
5b542fd013944adf2b1a
|
@@ -0,0 +1 @@
|
|
1
|
+
xbkypbe6eVfLozz51pkqvXzJ
|
@@ -0,0 +1 @@
|
|
1
|
+
xbkypbe6eVfLozz51pkqvXzJ
|
@@ -0,0 +1 @@
|
|
1
|
+
2491
|
data/lib/ruby/riddl/server.rb
CHANGED
@@ -295,7 +295,7 @@ module Riddl
|
|
295
295
|
else
|
296
296
|
run Riddl::Utils::Description::Call, @riddl_exe, @riddl_pinfo, m.interface.top, m.interface.base, m.interface.des.to_doc, m.interface.real_path(@riddl_pinfo)
|
297
297
|
end
|
298
|
-
break
|
298
|
+
break if @riddl_status < 200 || @riddl_status >= 300
|
299
299
|
@riddl_info.merge!(:h => @riddl_exe.headers, :p => @riddl_exe.response)
|
300
300
|
end
|
301
301
|
@riddl_message = mess
|
@@ -352,7 +352,7 @@ module Riddl
|
|
352
352
|
@riddl_status = 404 # client requests wrong path
|
353
353
|
end
|
354
354
|
|
355
|
-
stanza = if @riddl_exe && @riddl_status
|
355
|
+
stanza = if @riddl_exe && @riddl_status >= 200 && @riddl_status < 300
|
356
356
|
return if @riddl_message.out.nil?
|
357
357
|
Protocols::XMPP::Generator.new(@riddl_status,@riddl_exe.response,@riddl_exe.headers).generate
|
358
358
|
else
|
@@ -436,7 +436,7 @@ module Riddl
|
|
436
436
|
@riddl_status = 404 # client requests wrong path
|
437
437
|
end
|
438
438
|
if @riddl_exe
|
439
|
-
if @riddl_status
|
439
|
+
if @riddl_status >= 200 && @riddl_status < 300
|
440
440
|
@riddl_res.write Protocols::HTTP::Generator.new(@riddl_exe.response,@riddl_res).generate.read
|
441
441
|
end
|
442
442
|
@riddl_exe.headers.each do |n,h|
|
@@ -507,7 +507,7 @@ module Riddl
|
|
507
507
|
w = what.new(@riddl_info.merge!(:a => args, :match => matching_path))
|
508
508
|
@riddl_exe = Riddl::Server::Execution.new(w.response,w.headers)
|
509
509
|
@riddl_status = w.status
|
510
|
-
if @riddl_process_out && @riddl_status
|
510
|
+
if @riddl_process_out && @riddl_status >= 200 && @riddl_status < 300
|
511
511
|
unless @riddl.check_message(@riddl_exe.response,@riddl_exe.headers,@riddl_message.out)
|
512
512
|
@riddl_log.write "500: the return for the #{@riddl_method} is not matching anything in the description.\n"
|
513
513
|
@riddl_status = 500
|
data/riddl.gemspec
CHANGED
metadata
CHANGED
@@ -1,153 +1,174 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: riddl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.99.
|
4
|
+
version: 0.99.151
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Juergen eTM Mangler
|
8
9
|
autorequire:
|
9
10
|
bindir: tools
|
10
11
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
12
|
+
date: 2014-07-21 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: xml-smart
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
|
-
- -
|
19
|
+
- - ! '>='
|
18
20
|
- !ruby/object:Gem::Version
|
19
21
|
version: 0.3.6
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
|
-
- -
|
27
|
+
- - ! '>='
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: 0.3.6
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: rdf-smart
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
|
-
- -
|
35
|
+
- - ! '>='
|
32
36
|
- !ruby/object:Gem::Version
|
33
37
|
version: 0.0.160
|
34
38
|
type: :runtime
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
|
-
- -
|
43
|
+
- - ! '>='
|
39
44
|
- !ruby/object:Gem::Version
|
40
45
|
version: 0.0.160
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: rack
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
44
50
|
requirements:
|
45
|
-
- -
|
51
|
+
- - ! '>='
|
46
52
|
- !ruby/object:Gem::Version
|
47
53
|
version: '0'
|
48
54
|
type: :runtime
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
51
58
|
requirements:
|
52
|
-
- -
|
59
|
+
- - ! '>='
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: '0'
|
55
62
|
- !ruby/object:Gem::Dependency
|
56
63
|
name: thin
|
57
64
|
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
58
66
|
requirements:
|
59
|
-
- -
|
67
|
+
- - ! '>='
|
60
68
|
- !ruby/object:Gem::Version
|
61
69
|
version: 1.6.1
|
62
70
|
type: :runtime
|
63
71
|
prerelease: false
|
64
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
65
74
|
requirements:
|
66
|
-
- -
|
75
|
+
- - ! '>='
|
67
76
|
- !ruby/object:Gem::Version
|
68
77
|
version: 1.6.1
|
69
78
|
- !ruby/object:Gem::Dependency
|
70
79
|
name: eventmachine
|
71
80
|
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
72
82
|
requirements:
|
73
|
-
- -
|
83
|
+
- - ! '>='
|
74
84
|
- !ruby/object:Gem::Version
|
75
85
|
version: 1.0.0
|
76
86
|
type: :runtime
|
77
87
|
prerelease: false
|
78
88
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
79
90
|
requirements:
|
80
|
-
- -
|
91
|
+
- - ! '>='
|
81
92
|
- !ruby/object:Gem::Version
|
82
93
|
version: 1.0.0
|
83
94
|
- !ruby/object:Gem::Dependency
|
84
95
|
name: em-websocket
|
85
96
|
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
86
98
|
requirements:
|
87
|
-
- -
|
99
|
+
- - ! '>='
|
88
100
|
- !ruby/object:Gem::Version
|
89
101
|
version: 0.4.0
|
90
102
|
type: :runtime
|
91
103
|
prerelease: false
|
92
104
|
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
93
106
|
requirements:
|
94
|
-
- -
|
107
|
+
- - ! '>='
|
95
108
|
- !ruby/object:Gem::Version
|
96
109
|
version: 0.4.0
|
97
110
|
- !ruby/object:Gem::Dependency
|
98
111
|
name: em-websocket-client
|
99
112
|
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
100
114
|
requirements:
|
101
|
-
- -
|
115
|
+
- - ! '>='
|
102
116
|
- !ruby/object:Gem::Version
|
103
117
|
version: '0'
|
104
118
|
type: :runtime
|
105
119
|
prerelease: false
|
106
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
107
122
|
requirements:
|
108
|
-
- -
|
123
|
+
- - ! '>='
|
109
124
|
- !ruby/object:Gem::Version
|
110
125
|
version: '0'
|
111
126
|
- !ruby/object:Gem::Dependency
|
112
127
|
name: mime-types
|
113
128
|
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
114
130
|
requirements:
|
115
|
-
- -
|
131
|
+
- - ! '>='
|
116
132
|
- !ruby/object:Gem::Version
|
117
133
|
version: '0'
|
118
134
|
type: :runtime
|
119
135
|
prerelease: false
|
120
136
|
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
121
138
|
requirements:
|
122
|
-
- -
|
139
|
+
- - ! '>='
|
123
140
|
- !ruby/object:Gem::Version
|
124
141
|
version: '0'
|
125
142
|
- !ruby/object:Gem::Dependency
|
126
143
|
name: minitest
|
127
144
|
requirement: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
128
146
|
requirements:
|
129
|
-
- -
|
147
|
+
- - ! '>='
|
130
148
|
- !ruby/object:Gem::Version
|
131
149
|
version: 5.0.0
|
132
150
|
type: :runtime
|
133
151
|
prerelease: false
|
134
152
|
version_requirements: !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
135
154
|
requirements:
|
136
|
-
- -
|
155
|
+
- - ! '>='
|
137
156
|
- !ruby/object:Gem::Version
|
138
157
|
version: 5.0.0
|
139
158
|
- !ruby/object:Gem::Dependency
|
140
159
|
name: blather
|
141
160
|
requirement: !ruby/object:Gem::Requirement
|
161
|
+
none: false
|
142
162
|
requirements:
|
143
|
-
- -
|
163
|
+
- - ! '>='
|
144
164
|
- !ruby/object:Gem::Version
|
145
165
|
version: '0'
|
146
166
|
type: :runtime
|
147
167
|
prerelease: false
|
148
168
|
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
none: false
|
149
170
|
requirements:
|
150
|
-
- -
|
171
|
+
- - ! '>='
|
151
172
|
- !ruby/object:Gem::Version
|
152
173
|
version: '0'
|
153
174
|
description: rest service interface definition, mixing, and evolution. supports mixed
|
@@ -160,277 +181,298 @@ extensions: []
|
|
160
181
|
extra_rdoc_files:
|
161
182
|
- README.rdoc
|
162
183
|
files:
|
163
|
-
-
|
164
|
-
-
|
165
|
-
-
|
166
|
-
-
|
167
|
-
-
|
168
|
-
-
|
169
|
-
-
|
184
|
+
- lib/ruby/riddl/ns/common-patterns/downloadify/1.0/downloadify.xml
|
185
|
+
- lib/ruby/riddl/ns/common-patterns/addon-security/request.xml
|
186
|
+
- lib/ruby/riddl/ns/common-patterns/addon-security/response.xml
|
187
|
+
- lib/ruby/riddl/ns/common-patterns/riddl-description/show.xml
|
188
|
+
- lib/ruby/riddl/ns/common-patterns/riddl-description/resource-show.xml
|
189
|
+
- lib/ruby/riddl/ns/common-patterns/turtle/1.0/turtle.xml
|
190
|
+
- lib/ruby/riddl/ns/common-patterns/notifications-producer/1.0/producer.xml
|
191
|
+
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.schema
|
192
|
+
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.xml
|
193
|
+
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.xsl
|
194
|
+
- lib/ruby/riddl/ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
195
|
+
- lib/ruby/riddl/ns/common/relaxng.rng
|
196
|
+
- lib/ruby/riddl/ns/common/datatypes-1_0.rng
|
197
|
+
- lib/ruby/riddl/ns/common/relaxng-modular.rng
|
198
|
+
- lib/ruby/riddl/ns/declaration/1.0/declaration.rng
|
199
|
+
- lib/ruby/riddl/ns/description/1.0/description.rng
|
200
|
+
- tools/riddlprocess
|
201
|
+
- tools/riddlprocess-1_0
|
202
|
+
- tools/flash-policy-server.rb
|
203
|
+
- tools/riddlcheck
|
204
|
+
- tools/riddlcheck-1_0
|
205
|
+
- ns/common-patterns/downloadify/1.0/downloadify.xml
|
206
|
+
- ns/common-patterns/addon-security/request.xml
|
207
|
+
- ns/common-patterns/addon-security/response.xml
|
208
|
+
- ns/common-patterns/riddl-description/show.xml
|
209
|
+
- ns/common-patterns/riddl-description/resource-show.xml
|
210
|
+
- ns/common-patterns/turtle/1.0/turtle.xml
|
211
|
+
- ns/common-patterns/notifications-producer/1.0/producer.xml
|
212
|
+
- ns/common-patterns/properties/1.0/properties.schema.schema
|
213
|
+
- ns/common-patterns/properties/1.0/properties.xml
|
214
|
+
- ns/common-patterns/properties/1.0/properties.schema.xsl
|
215
|
+
- ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
216
|
+
- ns/common/relaxng.rng
|
217
|
+
- ns/common/datatypes-1_0.rng
|
218
|
+
- ns/common/relaxng-modular.rng
|
219
|
+
- ns/declaration/1.0/declaration.rng
|
220
|
+
- ns/description/1.0/description.rng
|
170
221
|
- contrib/riddl.png
|
222
|
+
- contrib/riddl.jpg
|
171
223
|
- contrib/riddl.svg
|
224
|
+
- lib/ruby/riddl/handlers.rb
|
225
|
+
- lib/ruby/riddl/server.rb
|
226
|
+
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Faccess_token.rb
|
227
|
+
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Fon_behalf.rb
|
228
|
+
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Frequest_token.rb
|
229
|
+
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0/base.rb
|
230
|
+
- lib/ruby/riddl/wrapper.rb
|
231
|
+
- lib/ruby/riddl/commonlogger.rb
|
232
|
+
- lib/ruby/riddl/error.rb
|
233
|
+
- lib/ruby/riddl/client.rb
|
234
|
+
- lib/ruby/riddl/handlers/plain-type.rb
|
235
|
+
- lib/ruby/riddl/handlers/xmlschema.rb
|
236
|
+
- lib/ruby/riddl/handlers/oauth.rb
|
237
|
+
- lib/ruby/riddl/handlers/relaxng.rb
|
238
|
+
- lib/ruby/riddl/implementation.rb
|
239
|
+
- lib/ruby/riddl/wrapper/messageparser.rb
|
240
|
+
- lib/ruby/riddl/wrapper/resourcechecker.rb
|
241
|
+
- lib/ruby/riddl/wrapper/declaration.rb
|
242
|
+
- lib/ruby/riddl/wrapper/layerchecker.rb
|
243
|
+
- lib/ruby/riddl/wrapper/description.rb
|
244
|
+
- lib/ruby/riddl/wrapper/declaration/interface.rb
|
245
|
+
- lib/ruby/riddl/wrapper/declaration/facade.rb
|
246
|
+
- lib/ruby/riddl/wrapper/declaration/tile.rb
|
247
|
+
- lib/ruby/riddl/wrapper/description/message_and_transformation.rb
|
248
|
+
- lib/ruby/riddl/wrapper/description/resource.rb
|
249
|
+
- lib/ruby/riddl/wrapper/description/access.rb
|
250
|
+
- lib/ruby/riddl/option.rb
|
251
|
+
- lib/ruby/riddl/utils/properties.rb
|
252
|
+
- lib/ruby/riddl/utils/notifications_producer.rb
|
253
|
+
- lib/ruby/riddl/utils/downloadify.rb
|
254
|
+
- lib/ruby/riddl/utils/erbserve.rb
|
255
|
+
- lib/ruby/riddl/utils/xsloverlay.rb
|
256
|
+
- lib/ruby/riddl/utils/fileserve.rb
|
257
|
+
- lib/ruby/riddl/utils/description.rb
|
258
|
+
- lib/ruby/riddl/utils/turtle.rb
|
259
|
+
- lib/ruby/riddl/roles.rb
|
260
|
+
- lib/ruby/riddl/parameter.rb
|
261
|
+
- lib/ruby/riddl/constants.rb
|
262
|
+
- lib/ruby/riddl/protocols/http/generator.rb
|
263
|
+
- lib/ruby/riddl/protocols/http/parser.rb
|
264
|
+
- lib/ruby/riddl/protocols/websocket.rb
|
265
|
+
- lib/ruby/riddl/protocols/xmpp/generator.rb
|
266
|
+
- lib/ruby/riddl/protocols/xmpp/parser.rb
|
267
|
+
- lib/ruby/riddl/header.rb
|
172
268
|
- examples/client/client.rb
|
173
|
-
- examples/
|
174
|
-
- examples/
|
269
|
+
- examples/downloadify/server.rb
|
270
|
+
- examples/downloadify/downloadify.xml
|
271
|
+
- examples/downloadify/server.description.xml
|
272
|
+
- examples/downloadify/server.declaration.xml
|
273
|
+
- examples/downloadify/client.rb
|
274
|
+
- examples/twitter/twitter.token_secret
|
275
|
+
- examples/twitter/twitter.xml
|
276
|
+
- examples/twitter/declaration.xml
|
277
|
+
- examples/twitter/client.rb
|
278
|
+
- examples/twitter/twitter.consumer_key
|
279
|
+
- examples/twitter/README
|
280
|
+
- examples/twitter/twitpic.xml
|
281
|
+
- examples/twitter/twitter.user_id
|
282
|
+
- examples/twitter/twitter.consumer_secret
|
283
|
+
- examples/twitter/twitter.token
|
284
|
+
- examples/helloworld/declaration.xml
|
285
|
+
- examples/helloworld/description.xml
|
286
|
+
- examples/helloworld/declaration-definition_goal.xml
|
287
|
+
- examples/helloworld/rngs/hello-list.rng
|
288
|
+
- examples/helloworld/rngs/filter-hello-list.rng
|
289
|
+
- examples/helloworld/filter-description.xml
|
290
|
+
- examples/websocket/server.rb
|
291
|
+
- examples/websocket/description.xml
|
292
|
+
- examples/websocket/client.rb
|
293
|
+
- examples/websocket/sample.html
|
294
|
+
- examples/declaration-server-distributed/xsls/test/properties.xsl
|
295
|
+
- examples/declaration-server-distributed/xsls/instances.xsl
|
296
|
+
- examples/declaration-server-distributed/xsls/properties.xsl
|
297
|
+
- examples/declaration-server-distributed/xsls/info.xsl
|
298
|
+
- examples/declaration-server-distributed/xsls/values.xsl
|
299
|
+
- examples/declaration-server-distributed/properties.rb
|
300
|
+
- examples/declaration-server-distributed/xsloverlay.xml
|
175
301
|
- examples/declaration-server-distributed/declaration.xml
|
176
302
|
- examples/declaration-server-distributed/instances/1/properties.xml
|
177
|
-
- examples/declaration-server-distributed/instances/2/properties.xml
|
178
303
|
- examples/declaration-server-distributed/instances/instances.xml
|
179
304
|
- examples/declaration-server-distributed/instances/properties.schema
|
305
|
+
- examples/declaration-server-distributed/instances/2/properties.xml
|
306
|
+
- examples/declaration-server-distributed/README
|
180
307
|
- examples/declaration-server-distributed/main.rb
|
181
|
-
- examples/declaration-server-distributed/
|
182
|
-
- examples/declaration-server-distributed/
|
183
|
-
- examples/declaration-server-distributed/properties.xml
|
308
|
+
- examples/declaration-server-distributed/declaration.rb
|
309
|
+
- examples/declaration-server-distributed/xsloverlay.rb
|
184
310
|
- examples/declaration-server-distributed/rngs/instance-info.rng
|
185
311
|
- examples/declaration-server-distributed/rngs/instances.rng
|
186
|
-
- examples/declaration-server-distributed/
|
187
|
-
- examples/declaration-server-distributed/
|
188
|
-
- examples/
|
189
|
-
- examples/
|
190
|
-
- examples/
|
191
|
-
- examples/
|
192
|
-
- examples/
|
193
|
-
- examples/
|
194
|
-
- examples/
|
312
|
+
- examples/declaration-server-distributed/properties.xml
|
313
|
+
- examples/declaration-server-distributed/main.xml
|
314
|
+
- examples/flickr/Flickr/riddl.png
|
315
|
+
- examples/flickr/Flickr/flickr.xml
|
316
|
+
- examples/flickr/Flickr/flickr.token
|
317
|
+
- examples/flickr/Flickr/find.rb
|
318
|
+
- examples/flickr/Flickr/flickr.secret
|
319
|
+
- examples/flickr/Flickr/flickr.rb
|
320
|
+
- examples/flickr/Flickr/flickr.key
|
321
|
+
- examples/flickr/Flickr/flickr.frob
|
322
|
+
- examples/flickr/Flickr/authenticate.rb
|
323
|
+
- examples/flickr/Flickr/public.rb
|
324
|
+
- examples/flickr/riddl.jpg
|
325
|
+
- examples/flickr/declaration.xml
|
326
|
+
- examples/flickr/client.rb
|
327
|
+
- examples/flickr/README
|
328
|
+
- examples/flickr/rngs/rsp.rng
|
329
|
+
- examples/flickr/Exif/exif.ru
|
330
|
+
- examples/flickr/Exif/exif.xml
|
331
|
+
- examples/flickr/Exif/riddl.jpg
|
332
|
+
- examples/flickr/Exif/exif.test
|
333
|
+
- examples/flickr/Exif/riddl.new.jpg
|
334
|
+
- examples/flickr/Helpers/gps.rb
|
335
|
+
- examples/flickr/Helpers/flickr.rb
|
336
|
+
- examples/notifications/topics.xml
|
337
|
+
- examples/notifications/producer.main.xml
|
338
|
+
- examples/notifications/producer.declaration.xml
|
339
|
+
- examples/notifications/implementation/juergen.html
|
340
|
+
- examples/notifications/implementation/oliver.html
|
341
|
+
- examples/notifications/implementation/index.html
|
342
|
+
- examples/notifications/producer.rb
|
343
|
+
- examples/notifications/producer.fluff.xml
|
344
|
+
- examples/library/server.rb
|
345
|
+
- examples/library/static/info.txt
|
346
|
+
- examples/library/declaration.xml
|
347
|
+
- examples/library/description.xml
|
348
|
+
- examples/library/description-image-addon.xml
|
349
|
+
- examples/library/rngs/customer-description.rng
|
350
|
+
- examples/library/rngs/list-of-loans.rng
|
351
|
+
- examples/library/rngs/book-description.rng
|
352
|
+
- examples/library/rngs/list-of-books.rng
|
353
|
+
- examples/library/rngs/list-of-customers.rng
|
354
|
+
- examples/declaration-server-hybrid/xsls/instances.xsl
|
355
|
+
- examples/declaration-server-hybrid/xsls/properties.xsl
|
356
|
+
- examples/declaration-server-hybrid/xsls/info.xsl
|
357
|
+
- examples/declaration-server-hybrid/xsls/values.xsl
|
358
|
+
- examples/declaration-server-hybrid/xsloverlay.xml
|
195
359
|
- examples/declaration-server-hybrid/declaration.xml
|
196
360
|
- examples/declaration-server-hybrid/instances/1/properties.xml
|
197
|
-
- examples/declaration-server-hybrid/instances/2/properties.xml
|
198
361
|
- examples/declaration-server-hybrid/instances/instances.xml
|
199
362
|
- examples/declaration-server-hybrid/instances/properties.schema
|
200
|
-
- examples/declaration-server-hybrid/
|
201
|
-
- examples/declaration-server-hybrid/
|
363
|
+
- examples/declaration-server-hybrid/instances/2/properties.xml
|
364
|
+
- examples/declaration-server-hybrid/README
|
365
|
+
- examples/declaration-server-hybrid/declaration.rb
|
366
|
+
- examples/declaration-server-hybrid/xsloverlay.rb
|
202
367
|
- examples/declaration-server-hybrid/rngs/instance-info.rng
|
203
368
|
- examples/declaration-server-hybrid/rngs/instances.rng
|
204
|
-
- examples/declaration-server-hybrid/
|
205
|
-
- examples/declaration-server-hybrid/
|
206
|
-
- examples/
|
207
|
-
- examples/
|
208
|
-
- examples/
|
209
|
-
- examples/
|
210
|
-
- examples/
|
211
|
-
- examples/
|
212
|
-
- examples/
|
213
|
-
- examples/declaration-server-local/server.properties.schema
|
214
|
-
- examples/declaration-server-local/server.properties.xml
|
215
|
-
- examples/declaration-server-local/xsloverlay.xml
|
216
|
-
- examples/declaration-server-local/xsls.xml
|
217
|
-
- examples/declaration-server-local/xsls/properties.xsl
|
218
|
-
- examples/declaration-server-local/xsls/values.xsl
|
219
|
-
- examples/declaration-test/client.test
|
369
|
+
- examples/declaration-server-hybrid/properties.xml
|
370
|
+
- examples/declaration-server-hybrid/main.xml
|
371
|
+
- examples/description-test/server.rb
|
372
|
+
- examples/description-test/description0.xml
|
373
|
+
- examples/description-test/description1.xml
|
374
|
+
- examples/description-test/description3.xml
|
375
|
+
- examples/description-test/description2.xml
|
376
|
+
- examples/description-test/description4.xml
|
377
|
+
- examples/description-test/rngs/list-of-books.rng
|
220
378
|
- examples/declaration-test/declaration0.xml
|
221
|
-
- examples/declaration-test/
|
379
|
+
- examples/declaration-test/pre.ru
|
222
380
|
- examples/declaration-test/declaration2.xml
|
223
|
-
- examples/declaration-test/goal/goal.txt
|
224
381
|
- examples/declaration-test/goal/goal.xml
|
382
|
+
- examples/declaration-test/goal/goal.txt
|
383
|
+
- examples/declaration-test/declaration1.xml
|
384
|
+
- examples/declaration-test/post.ru
|
385
|
+
- examples/declaration-test/main.log
|
225
386
|
- examples/declaration-test/main.rb
|
226
|
-
- examples/declaration-test/main.xml
|
227
387
|
- examples/declaration-test/over.xml
|
228
|
-
- examples/declaration-test/post.ru
|
229
388
|
- examples/declaration-test/post.xml
|
230
|
-
- examples/declaration-test/
|
389
|
+
- examples/declaration-test/client.test
|
231
390
|
- examples/declaration-test/pre.xml
|
232
|
-
- examples/
|
233
|
-
- examples/
|
234
|
-
- examples/
|
235
|
-
- examples/description-test/description3.xml
|
236
|
-
- examples/description-test/description4.xml
|
237
|
-
- examples/description-test/rngs/list-of-books.rng
|
238
|
-
- examples/description-test/server.rb
|
239
|
-
- examples/downloadify/client.rb
|
240
|
-
- examples/downloadify/downloadify.xml
|
241
|
-
- examples/downloadify/server.declaration.xml
|
242
|
-
- examples/downloadify/server.description.xml
|
243
|
-
- examples/downloadify/server.rb
|
244
|
-
- examples/flickr/Exif/exif.ru
|
245
|
-
- examples/flickr/Exif/exif.test
|
246
|
-
- examples/flickr/Exif/exif.xml
|
247
|
-
- examples/flickr/Exif/riddl.jpg
|
248
|
-
- examples/flickr/Flickr/authenticate.rb
|
249
|
-
- examples/flickr/Flickr/find.rb
|
250
|
-
- examples/flickr/Flickr/flickr.key
|
251
|
-
- examples/flickr/Flickr/flickr.rb
|
252
|
-
- examples/flickr/Flickr/flickr.secret
|
253
|
-
- examples/flickr/Flickr/flickr.xml
|
254
|
-
- examples/flickr/Flickr/public.rb
|
255
|
-
- examples/flickr/Flickr/riddl.png
|
256
|
-
- examples/flickr/Helpers/flickr.rb
|
257
|
-
- examples/flickr/Helpers/gps.rb
|
258
|
-
- examples/flickr/README
|
259
|
-
- examples/flickr/client.rb
|
260
|
-
- examples/flickr/declaration.xml
|
261
|
-
- examples/flickr/riddl.jpg
|
262
|
-
- examples/flickr/rngs/rsp.rng
|
263
|
-
- examples/helloworld/declaration-definition_goal.xml
|
264
|
-
- examples/helloworld/declaration.xml
|
265
|
-
- examples/helloworld/description.xml
|
266
|
-
- examples/helloworld/filter-description.xml
|
267
|
-
- examples/helloworld/rngs/filter-hello-list.rng
|
268
|
-
- examples/helloworld/rngs/hello-list.rng
|
269
|
-
- examples/library/declaration.xml
|
270
|
-
- examples/library/description-image-addon.xml
|
271
|
-
- examples/library/description.xml
|
272
|
-
- examples/library/rngs/book-description.rng
|
273
|
-
- examples/library/rngs/customer-description.rng
|
274
|
-
- examples/library/rngs/list-of-books.rng
|
275
|
-
- examples/library/rngs/list-of-customers.rng
|
276
|
-
- examples/library/rngs/list-of-loans.rng
|
277
|
-
- examples/library/server.rb
|
278
|
-
- examples/library/static/info.txt
|
279
|
-
- examples/notifications/implementation/index.html
|
280
|
-
- examples/notifications/implementation/juergen.html
|
281
|
-
- examples/notifications/implementation/oliver.html
|
282
|
-
- examples/notifications/producer.declaration.xml
|
283
|
-
- examples/notifications/producer.fluff.xml
|
284
|
-
- examples/notifications/producer.main.xml
|
285
|
-
- examples/notifications/producer.rb
|
286
|
-
- examples/notifications/topics.xml
|
287
|
-
- examples/oauth/oauth.rb
|
288
|
-
- examples/oauth/oauth.xml
|
289
|
-
- examples/properties/description.conf
|
290
|
-
- examples/properties/description.rb
|
291
|
-
- examples/properties/properties.xml
|
292
|
-
- examples/properties/server.properties.schema
|
293
|
-
- examples/properties/server.properties.xml
|
294
|
-
- examples/twitter/README
|
295
|
-
- examples/twitter/client.rb
|
296
|
-
- examples/twitter/declaration.xml
|
297
|
-
- examples/twitter/twitpic.xml
|
298
|
-
- examples/twitter/twitter.xml
|
299
|
-
- examples/websocket/client.rb
|
300
|
-
- examples/websocket/description.xml
|
301
|
-
- examples/websocket/sample.html
|
302
|
-
- examples/websocket/server.rb
|
391
|
+
- examples/declaration-test/main.xml
|
392
|
+
- examples/xmpp/server.properties.xml
|
393
|
+
- examples/xmpp/server.properties.schema
|
303
394
|
- examples/xmpp/client.rb
|
304
|
-
- examples/xmpp/
|
395
|
+
- examples/xmpp/blather/pp.rb
|
396
|
+
- examples/xmpp/blather/test.rb
|
397
|
+
- examples/xmpp/blather/description.xml
|
398
|
+
- examples/xmpp/blather/direct.rb
|
399
|
+
- examples/xmpp/blather/load.rb
|
305
400
|
- examples/xmpp/properties.xml
|
306
|
-
- examples/xmpp/
|
307
|
-
- examples/
|
308
|
-
- examples/
|
401
|
+
- examples/xmpp/description.rb
|
402
|
+
- examples/properties/server.properties.xml
|
403
|
+
- examples/properties/server.properties.schema
|
404
|
+
- examples/properties/properties.xml
|
405
|
+
- examples/properties/description.conf
|
406
|
+
- examples/properties/description.rb
|
407
|
+
- examples/declaration-server-local/server.properties.xml
|
408
|
+
- examples/declaration-server-local/xsls/properties.xsl
|
409
|
+
- examples/declaration-server-local/xsls/values.xsl
|
410
|
+
- examples/declaration-server-local/xsls.xml
|
411
|
+
- examples/declaration-server-local/xsloverlay.xml
|
412
|
+
- examples/declaration-server-local/server.properties.schema
|
413
|
+
- examples/declaration-server-local/declaration.xml
|
414
|
+
- examples/declaration-server-local/declaration.rb
|
415
|
+
- examples/declaration-server-local/properties.xml
|
416
|
+
- examples/oauth/oauth.rb
|
417
|
+
- examples/oauth/oauth.xml
|
418
|
+
- examples/zotero/zotero.token_secret
|
419
|
+
- examples/zotero/zotero.consumer_secret
|
420
|
+
- examples/zotero/zotero.token
|
421
|
+
- examples/zotero/zotero.consumer_key
|
309
422
|
- examples/zotero/client.rb
|
423
|
+
- examples/zotero/README
|
310
424
|
- examples/zotero/zotero.xml
|
311
|
-
-
|
312
|
-
-
|
313
|
-
-
|
314
|
-
-
|
315
|
-
- lib/ruby/riddl/handlers.rb
|
316
|
-
- lib/ruby/riddl/handlers/oauth.rb
|
317
|
-
- lib/ruby/riddl/handlers/plain-type.rb
|
318
|
-
- lib/ruby/riddl/handlers/relaxng.rb
|
319
|
-
- lib/ruby/riddl/handlers/xmlschema.rb
|
320
|
-
- lib/ruby/riddl/header.rb
|
321
|
-
- lib/ruby/riddl/implementation.rb
|
322
|
-
- lib/ruby/riddl/ns/common-patterns/addon-security/request.xml
|
323
|
-
- lib/ruby/riddl/ns/common-patterns/addon-security/response.xml
|
324
|
-
- lib/ruby/riddl/ns/common-patterns/downloadify/1.0/downloadify.xml
|
325
|
-
- lib/ruby/riddl/ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
326
|
-
- lib/ruby/riddl/ns/common-patterns/notifications-producer/1.0/producer.xml
|
327
|
-
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.schema
|
328
|
-
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.xsl
|
329
|
-
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.xml
|
330
|
-
- lib/ruby/riddl/ns/common-patterns/riddl-description/resource-show.xml
|
331
|
-
- lib/ruby/riddl/ns/common-patterns/riddl-description/show.xml
|
332
|
-
- lib/ruby/riddl/ns/common-patterns/turtle/1.0/turtle.xml
|
333
|
-
- lib/ruby/riddl/ns/common/datatypes-1_0.rng
|
334
|
-
- lib/ruby/riddl/ns/common/relaxng-modular.rng
|
335
|
-
- lib/ruby/riddl/ns/common/relaxng.rng
|
336
|
-
- lib/ruby/riddl/ns/declaration/1.0/declaration.rng
|
337
|
-
- lib/ruby/riddl/ns/description/1.0/description.rng
|
338
|
-
- lib/ruby/riddl/option.rb
|
339
|
-
- lib/ruby/riddl/parameter.rb
|
340
|
-
- lib/ruby/riddl/protocols/http/generator.rb
|
341
|
-
- lib/ruby/riddl/protocols/http/parser.rb
|
342
|
-
- lib/ruby/riddl/protocols/websocket.rb
|
343
|
-
- lib/ruby/riddl/protocols/xmpp/generator.rb
|
344
|
-
- lib/ruby/riddl/protocols/xmpp/parser.rb
|
345
|
-
- lib/ruby/riddl/roles.rb
|
346
|
-
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Faccess_token.rb
|
347
|
-
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Fon_behalf.rb
|
348
|
-
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Frequest_token.rb
|
349
|
-
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0/base.rb
|
350
|
-
- lib/ruby/riddl/server.rb
|
351
|
-
- lib/ruby/riddl/utils/description.rb
|
352
|
-
- lib/ruby/riddl/utils/downloadify.rb
|
353
|
-
- lib/ruby/riddl/utils/erbserve.rb
|
354
|
-
- lib/ruby/riddl/utils/fileserve.rb
|
355
|
-
- lib/ruby/riddl/utils/notifications_producer.rb
|
356
|
-
- lib/ruby/riddl/utils/properties.rb
|
357
|
-
- lib/ruby/riddl/utils/turtle.rb
|
358
|
-
- lib/ruby/riddl/utils/xsloverlay.rb
|
359
|
-
- lib/ruby/riddl/wrapper.rb
|
360
|
-
- lib/ruby/riddl/wrapper/declaration.rb
|
361
|
-
- lib/ruby/riddl/wrapper/declaration/facade.rb
|
362
|
-
- lib/ruby/riddl/wrapper/declaration/interface.rb
|
363
|
-
- lib/ruby/riddl/wrapper/declaration/tile.rb
|
364
|
-
- lib/ruby/riddl/wrapper/description.rb
|
365
|
-
- lib/ruby/riddl/wrapper/description/access.rb
|
366
|
-
- lib/ruby/riddl/wrapper/description/message_and_transformation.rb
|
367
|
-
- lib/ruby/riddl/wrapper/description/resource.rb
|
368
|
-
- lib/ruby/riddl/wrapper/layerchecker.rb
|
369
|
-
- lib/ruby/riddl/wrapper/messageparser.rb
|
370
|
-
- lib/ruby/riddl/wrapper/resourcechecker.rb
|
371
|
-
- ns/common-patterns/addon-security/request.xml
|
372
|
-
- ns/common-patterns/addon-security/response.xml
|
373
|
-
- ns/common-patterns/downloadify/1.0/downloadify.xml
|
374
|
-
- ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
375
|
-
- ns/common-patterns/notifications-producer/1.0/producer.xml
|
376
|
-
- ns/common-patterns/properties/1.0/properties.schema.schema
|
377
|
-
- ns/common-patterns/properties/1.0/properties.schema.xsl
|
378
|
-
- ns/common-patterns/properties/1.0/properties.xml
|
379
|
-
- ns/common-patterns/riddl-description/resource-show.xml
|
380
|
-
- ns/common-patterns/riddl-description/show.xml
|
381
|
-
- ns/common-patterns/turtle/1.0/turtle.xml
|
382
|
-
- ns/common/datatypes-1_0.rng
|
383
|
-
- ns/common/relaxng-modular.rng
|
384
|
-
- ns/common/relaxng.rng
|
385
|
-
- ns/declaration/1.0/declaration.rng
|
386
|
-
- ns/description/1.0/description.rng
|
425
|
+
- examples/zotero/zotero.user_id
|
426
|
+
- examples/zotero/litlist.html
|
427
|
+
- COPYING
|
428
|
+
- Rakefile
|
387
429
|
- riddl.gemspec
|
388
|
-
-
|
389
|
-
-
|
430
|
+
- README.rdoc
|
431
|
+
- TODO
|
432
|
+
- AUTHORS
|
433
|
+
- INSTALL
|
434
|
+
- test/tc_websocket.rb
|
390
435
|
- test/tc_declaration-hybrid.rb
|
391
436
|
- test/tc_declaration-local.rb
|
392
|
-
- test/
|
437
|
+
- test/tc_properties.rb
|
393
438
|
- test/tc_library.rb
|
439
|
+
- test/tc_declaration-distributed.rb
|
394
440
|
- test/tc_producer.rb
|
395
|
-
- test/
|
396
|
-
- test/
|
397
|
-
- tools/flash-policy-server.rb
|
398
|
-
- tools/riddlcheck
|
399
|
-
- tools/riddlcheck-1_0
|
400
|
-
- tools/riddlprocess
|
401
|
-
- tools/riddlprocess-1_0
|
441
|
+
- test/tc_helloworld.rb
|
442
|
+
- test/smartrunner.rb
|
402
443
|
homepage: http://www.wst.univie.ac.at/communities/riddl/
|
403
444
|
licenses:
|
404
445
|
- LGPL-3
|
405
|
-
metadata: {}
|
406
446
|
post_install_message:
|
407
447
|
rdoc_options: []
|
408
448
|
require_paths:
|
409
449
|
- lib/ruby
|
410
450
|
required_ruby_version: !ruby/object:Gem::Requirement
|
451
|
+
none: false
|
411
452
|
requirements:
|
412
|
-
- -
|
453
|
+
- - ! '>='
|
413
454
|
- !ruby/object:Gem::Version
|
414
455
|
version: 1.9.3
|
415
456
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
457
|
+
none: false
|
416
458
|
requirements:
|
417
|
-
- -
|
459
|
+
- - ! '>='
|
418
460
|
- !ruby/object:Gem::Version
|
419
461
|
version: '0'
|
420
462
|
requirements: []
|
421
463
|
rubyforge_project:
|
422
|
-
rubygems_version:
|
464
|
+
rubygems_version: 1.8.23
|
423
465
|
signing_key:
|
424
|
-
specification_version:
|
425
|
-
summary: 'restful interface description and declaration language: tools and client/server
|
466
|
+
specification_version: 3
|
467
|
+
summary: ! 'restful interface description and declaration language: tools and client/server
|
426
468
|
libs'
|
427
469
|
test_files:
|
428
470
|
- test/tc_websocket.rb
|
429
|
-
- test/tc_library.rb
|
430
|
-
- test/tc_producer.rb
|
431
|
-
- test/tc_declaration-distributed.rb
|
432
|
-
- test/tc_helloworld.rb
|
433
471
|
- test/tc_declaration-hybrid.rb
|
434
472
|
- test/tc_declaration-local.rb
|
435
473
|
- test/tc_properties.rb
|
474
|
+
- test/tc_library.rb
|
475
|
+
- test/tc_declaration-distributed.rb
|
476
|
+
- test/tc_producer.rb
|
477
|
+
- test/tc_helloworld.rb
|
436
478
|
- test/smartrunner.rb
|