riddl 0.99.135 → 0.99.136

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.
Files changed (40) hide show
  1. data/TODO +0 -1
  2. data/examples/declaration-test/main.log +57 -0
  3. data/examples/flickr/Exif/riddl.new.jpg +0 -0
  4. data/examples/flickr/Flickr/flickr.frob +1 -0
  5. data/examples/flickr/Flickr/flickr.token +1 -0
  6. data/examples/properties/server.properties.xml +1 -1
  7. data/examples/twitter/twitter.consumer_key +1 -0
  8. data/examples/twitter/twitter.consumer_secret +1 -0
  9. data/examples/twitter/twitter.token +1 -0
  10. data/examples/twitter/twitter.token_secret +1 -0
  11. data/examples/twitter/twitter.user_id +1 -0
  12. data/examples/xmpp/blather/description.xml +981 -0
  13. data/examples/xmpp/blather/direct.rb +44 -0
  14. data/examples/xmpp/blather/load.rb +18 -0
  15. data/examples/xmpp/blather/pp.rb +40 -0
  16. data/examples/xmpp/blather/test.rb +32 -0
  17. data/examples/zotero/litlist.html +540 -0
  18. data/examples/zotero/zotero.consumer_key +1 -0
  19. data/examples/zotero/zotero.consumer_secret +1 -0
  20. data/examples/zotero/zotero.token +1 -0
  21. data/examples/zotero/zotero.token_secret +1 -0
  22. data/examples/zotero/zotero.user_id +1 -0
  23. data/lib/ruby/riddl/client.rb +6 -3
  24. data/riddl.gemspec +1 -1
  25. metadata +207 -202
  26. data/examples/notifications/notifications/39c3b39ec3e48a514948e4981f4459d2/consumer-secret +0 -1
  27. data/examples/notifications/notifications/39c3b39ec3e48a514948e4981f4459d2/producer-secret +0 -1
  28. data/examples/notifications/notifications/39c3b39ec3e48a514948e4981f4459d2/subscription.xml +0 -9
  29. data/examples/notifications/notifications/5d68b08a13e622aada13e3c182ea9390/consumer-secret +0 -1
  30. data/examples/notifications/notifications/5d68b08a13e622aada13e3c182ea9390/producer-secret +0 -1
  31. data/examples/notifications/notifications/5d68b08a13e622aada13e3c182ea9390/subscription.xml +0 -9
  32. data/examples/notifications/notifications/893edd178c053a011c09f253fa85092f/consumer-secret +0 -1
  33. data/examples/notifications/notifications/893edd178c053a011c09f253fa85092f/producer-secret +0 -1
  34. data/examples/notifications/notifications/893edd178c053a011c09f253fa85092f/subscription.xml +0 -9
  35. data/examples/notifications/notifications/9f5921176e6876aca3af4428b1ccafd1/consumer-secret +0 -1
  36. data/examples/notifications/notifications/9f5921176e6876aca3af4428b1ccafd1/producer-secret +0 -1
  37. data/examples/notifications/notifications/9f5921176e6876aca3af4428b1ccafd1/subscription.xml +0 -9
  38. data/examples/notifications/notifications/c457779f6e2c086d8cf1cd9b44d8950e/consumer-secret +0 -1
  39. data/examples/notifications/notifications/c457779f6e2c086d8cf1cd9b44d8950e/producer-secret +0 -1
  40. data/examples/notifications/notifications/c457779f6e2c086d8cf1cd9b44d8950e/subscription.xml +0 -9
@@ -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
@@ -44,18 +44,17 @@ unless Module.constants.include?('CLIENT_INCLUDED')
44
44
  @base = base.nil? ? '' : base.gsub(/\/+$/,'')
45
45
  @options = options
46
46
  @wrapper = nil
47
- @thread = nil
48
47
  if URI.parse(@base).scheme == 'xmpp' && !((@options[:jid] && @options[:pass]) || @options[:xmpp].is_a?(Blather::Client))
49
48
  raise ConnectionError, 'XMPP connections need jid/pass or Blather::client object passed as options to be successful.'
50
49
  end
51
50
  if URI.parse(@base).scheme == 'xmpp' && @options[:jid] && @options[:pass]
52
51
  sig = SignalWait.new
53
52
  Thread::abort_on_exception = true
54
- @thread = Thread.new do
53
+ Thread.new do
55
54
  begin
56
55
  EM.run do
57
56
  client = Blather::Client.setup @options[:jid], @options[:pass]
58
- client.register_handler(:ready) { sig.continue; }
57
+ client.register_handler(:ready) { sig.continue }
59
58
  client.connect
60
59
  @options[:xmpp] = client
61
60
  sig.continue
@@ -79,6 +78,10 @@ unless Module.constants.include?('CLIENT_INCLUDED')
79
78
  end
80
79
  attr_reader :base
81
80
 
81
+ def close_xmpp
82
+ @options[:xmpp].close if @options[:xmpp]
83
+ end
84
+
82
85
  def self::location(base,options={})
83
86
  new(base,nil,options)
84
87
  end
data/riddl.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "riddl"
3
- s.version = "0.99.135"
3
+ s.version = "0.99.136"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.license = "LGPL-3"
6
6
  s.summary = "restful interface description and declaration language: tools and client/server libs"
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.99.135
4
+ version: 0.99.136
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: tools
11
11
  cert_chain: []
12
- date: 2014-01-01 00:00:00.000000000 Z
12
+ date: 2014-03-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: xml-smart
@@ -164,241 +164,246 @@ extensions: []
164
164
  extra_rdoc_files:
165
165
  - README.rdoc
166
166
  files:
167
- - lib/ruby/riddl/ns/declaration/1.0/declaration.rng
168
- - lib/ruby/riddl/ns/common/relaxng-modular.rng
169
- - lib/ruby/riddl/ns/common/relaxng.rng
170
- - lib/ruby/riddl/ns/common/datatypes-1_0.rng
171
- - lib/ruby/riddl/ns/description/1.0/description.rng
172
- - lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.xml
173
- - lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.xsl
174
- - lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.schema
175
- - lib/ruby/riddl/ns/common-patterns/notifications-producer/1.0/producer.xml
167
+ - lib/ruby/riddl/ns/common-patterns/downloadify/1.0/downloadify.xml
176
168
  - lib/ruby/riddl/ns/common-patterns/addon-security/request.xml
177
169
  - lib/ruby/riddl/ns/common-patterns/addon-security/response.xml
178
- - lib/ruby/riddl/ns/common-patterns/downloadify/1.0/downloadify.xml
179
- - lib/ruby/riddl/ns/common-patterns/notifications-consumer/1.0/consumer.xml
180
- - lib/ruby/riddl/ns/common-patterns/riddl-description/resource-show.xml
181
170
  - lib/ruby/riddl/ns/common-patterns/riddl-description/show.xml
171
+ - lib/ruby/riddl/ns/common-patterns/riddl-description/resource-show.xml
172
+ - lib/ruby/riddl/ns/common-patterns/notifications-producer/1.0/producer.xml
173
+ - lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.schema
174
+ - lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.xml
175
+ - lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.xsl
176
+ - lib/ruby/riddl/ns/common-patterns/notifications-consumer/1.0/consumer.xml
177
+ - lib/ruby/riddl/ns/common/relaxng.rng
178
+ - lib/ruby/riddl/ns/common/datatypes-1_0.rng
179
+ - lib/ruby/riddl/ns/common/relaxng-modular.rng
180
+ - lib/ruby/riddl/ns/declaration/1.0/declaration.rng
181
+ - lib/ruby/riddl/ns/description/1.0/description.rng
182
+ - tools/riddlprocess
182
183
  - tools/riddlprocess-1_0
183
184
  - tools/flash-policy-server.rb
184
- - tools/riddlprocess
185
185
  - tools/riddlcheck
186
186
  - tools/riddlcheck-1_0
187
- - ns/declaration/1.0/declaration.rng
188
- - ns/common/relaxng-modular.rng
189
- - ns/common/relaxng.rng
190
- - ns/common/datatypes-1_0.rng
191
- - ns/description/1.0/description.rng
192
- - ns/common-patterns/properties/1.0/properties.xml
193
- - ns/common-patterns/properties/1.0/properties.schema.xsl
194
- - ns/common-patterns/properties/1.0/properties.schema.schema
195
- - ns/common-patterns/notifications-producer/1.0/producer.xml
187
+ - ns/common-patterns/downloadify/1.0/downloadify.xml
196
188
  - ns/common-patterns/addon-security/request.xml
197
189
  - ns/common-patterns/addon-security/response.xml
198
- - ns/common-patterns/downloadify/1.0/downloadify.xml
199
- - ns/common-patterns/notifications-consumer/1.0/consumer.xml
200
- - ns/common-patterns/riddl-description/resource-show.xml
201
190
  - ns/common-patterns/riddl-description/show.xml
202
- - contrib/riddl.svg
203
- - contrib/riddl.jpg
191
+ - ns/common-patterns/riddl-description/resource-show.xml
192
+ - ns/common-patterns/notifications-producer/1.0/producer.xml
193
+ - ns/common-patterns/properties/1.0/properties.schema.schema
194
+ - ns/common-patterns/properties/1.0/properties.xml
195
+ - ns/common-patterns/properties/1.0/properties.schema.xsl
196
+ - ns/common-patterns/notifications-consumer/1.0/consumer.xml
197
+ - ns/common/relaxng.rng
198
+ - ns/common/datatypes-1_0.rng
199
+ - ns/common/relaxng-modular.rng
200
+ - ns/declaration/1.0/declaration.rng
201
+ - ns/description/1.0/description.rng
204
202
  - contrib/riddl.png
205
- - lib/ruby/riddl/parameter.rb
206
- - lib/ruby/riddl/handlers/plain-type.rb
207
- - lib/ruby/riddl/handlers/oauth.rb
208
- - lib/ruby/riddl/handlers/relaxng.rb
209
- - lib/ruby/riddl/handlers/xmlschema.rb
210
- - lib/ruby/riddl/client.rb
211
- - lib/ruby/riddl/option.rb
212
- - lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0/base.rb
213
- - lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Fon_behalf.rb
214
- - lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Faccess_token.rb
215
- - lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Frequest_token.rb
216
- - lib/ruby/riddl/roles.rb
203
+ - contrib/riddl.jpg
204
+ - contrib/riddl.svg
217
205
  - lib/ruby/riddl/handlers.rb
218
206
  - lib/ruby/riddl/server.rb
219
- - lib/ruby/riddl/constants.rb
207
+ - lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Faccess_token.rb
208
+ - lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Fon_behalf.rb
209
+ - lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Frequest_token.rb
210
+ - lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0/base.rb
220
211
  - lib/ruby/riddl/wrapper.rb
221
- - lib/ruby/riddl/implementation.rb
222
- - lib/ruby/riddl/header.rb
212
+ - lib/ruby/riddl/commonlogger.rb
223
213
  - lib/ruby/riddl/error.rb
224
- - lib/ruby/riddl/wrapper/declaration/tile.rb
225
- - lib/ruby/riddl/wrapper/declaration/facade.rb
226
- - lib/ruby/riddl/wrapper/declaration/interface.rb
227
- - lib/ruby/riddl/wrapper/layerchecker.rb
214
+ - lib/ruby/riddl/client.rb
215
+ - lib/ruby/riddl/handlers/plain-type.rb
216
+ - lib/ruby/riddl/handlers/xmlschema.rb
217
+ - lib/ruby/riddl/handlers/oauth.rb
218
+ - lib/ruby/riddl/handlers/relaxng.rb
219
+ - lib/ruby/riddl/implementation.rb
220
+ - lib/ruby/riddl/wrapper/messageparser.rb
221
+ - lib/ruby/riddl/wrapper/resourcechecker.rb
228
222
  - lib/ruby/riddl/wrapper/declaration.rb
223
+ - lib/ruby/riddl/wrapper/layerchecker.rb
229
224
  - lib/ruby/riddl/wrapper/description.rb
230
- - lib/ruby/riddl/wrapper/resourcechecker.rb
231
- - lib/ruby/riddl/wrapper/messageparser.rb
225
+ - lib/ruby/riddl/wrapper/declaration/interface.rb
226
+ - lib/ruby/riddl/wrapper/declaration/facade.rb
227
+ - lib/ruby/riddl/wrapper/declaration/tile.rb
232
228
  - lib/ruby/riddl/wrapper/description/message_and_transformation.rb
233
- - lib/ruby/riddl/wrapper/description/access.rb
234
229
  - lib/ruby/riddl/wrapper/description/resource.rb
230
+ - lib/ruby/riddl/wrapper/description/access.rb
231
+ - lib/ruby/riddl/option.rb
235
232
  - lib/ruby/riddl/utils/properties.rb
236
- - lib/ruby/riddl/utils/xsloverlay.rb
237
- - lib/ruby/riddl/utils/downloadify.rb
238
233
  - lib/ruby/riddl/utils/notifications_producer.rb
234
+ - lib/ruby/riddl/utils/downloadify.rb
239
235
  - lib/ruby/riddl/utils/erbserve.rb
240
- - lib/ruby/riddl/utils/description.rb
236
+ - lib/ruby/riddl/utils/xsloverlay.rb
241
237
  - lib/ruby/riddl/utils/fileserve.rb
242
- - lib/ruby/riddl/commonlogger.rb
238
+ - lib/ruby/riddl/utils/description.rb
239
+ - lib/ruby/riddl/roles.rb
240
+ - lib/ruby/riddl/parameter.rb
241
+ - lib/ruby/riddl/constants.rb
243
242
  - lib/ruby/riddl/protocols/http/generator.rb
244
243
  - lib/ruby/riddl/protocols/http/parser.rb
244
+ - lib/ruby/riddl/protocols/websocket.rb
245
245
  - lib/ruby/riddl/protocols/xmpp/generator.rb
246
246
  - lib/ruby/riddl/protocols/xmpp/parser.rb
247
- - lib/ruby/riddl/protocols/websocket.rb
248
- - examples/properties/properties.xml
249
- - examples/properties/description.conf
250
- - examples/properties/description.rb
251
- - examples/properties/server.properties.schema
252
- - examples/properties/server.properties.xml
247
+ - lib/ruby/riddl/header.rb
248
+ - examples/client/client.rb
249
+ - examples/downloadify/server.rb
250
+ - examples/downloadify/downloadify.xml
251
+ - examples/downloadify/server.description.xml
252
+ - examples/downloadify/server.declaration.xml
253
+ - examples/downloadify/client.rb
254
+ - examples/twitter/twitter.token_secret
255
+ - examples/twitter/twitter.xml
256
+ - examples/twitter/declaration.xml
257
+ - examples/twitter/client.rb
258
+ - examples/twitter/twitter.consumer_key
259
+ - examples/twitter/README
260
+ - examples/twitter/twitpic.xml
261
+ - examples/twitter/twitter.user_id
262
+ - examples/twitter/twitter.consumer_secret
263
+ - examples/twitter/twitter.token
264
+ - examples/helloworld/declaration.xml
265
+ - examples/helloworld/description.xml
266
+ - examples/helloworld/declaration-definition_goal.xml
267
+ - examples/helloworld/rngs/hello-list.rng
268
+ - examples/helloworld/rngs/filter-hello-list.rng
269
+ - examples/helloworld/filter-description.xml
270
+ - examples/websocket/server.rb
271
+ - examples/websocket/description.xml
272
+ - examples/websocket/client.rb
273
+ - examples/websocket/sample.html
274
+ - examples/declaration-server-distributed/xsls/test/properties.xsl
275
+ - examples/declaration-server-distributed/xsls/instances.xsl
276
+ - examples/declaration-server-distributed/xsls/properties.xsl
277
+ - examples/declaration-server-distributed/xsls/info.xsl
278
+ - examples/declaration-server-distributed/xsls/values.xsl
279
+ - examples/declaration-server-distributed/properties.rb
280
+ - examples/declaration-server-distributed/xsloverlay.xml
281
+ - examples/declaration-server-distributed/declaration.xml
282
+ - examples/declaration-server-distributed/instances/1/properties.xml
283
+ - examples/declaration-server-distributed/instances/instances.xml
284
+ - examples/declaration-server-distributed/instances/properties.schema
285
+ - examples/declaration-server-distributed/instances/2/properties.xml
286
+ - examples/declaration-server-distributed/README
287
+ - examples/declaration-server-distributed/main.rb
288
+ - examples/declaration-server-distributed/declaration.rb
289
+ - examples/declaration-server-distributed/xsloverlay.rb
290
+ - examples/declaration-server-distributed/rngs/instance-info.rng
291
+ - examples/declaration-server-distributed/rngs/instances.rng
292
+ - examples/declaration-server-distributed/properties.xml
293
+ - examples/declaration-server-distributed/main.xml
294
+ - examples/flickr/Flickr/riddl.png
295
+ - examples/flickr/Flickr/flickr.xml
296
+ - examples/flickr/Flickr/flickr.token
297
+ - examples/flickr/Flickr/find.rb
298
+ - examples/flickr/Flickr/flickr.secret
299
+ - examples/flickr/Flickr/flickr.rb
300
+ - examples/flickr/Flickr/flickr.key
301
+ - examples/flickr/Flickr/flickr.frob
302
+ - examples/flickr/Flickr/authenticate.rb
303
+ - examples/flickr/Flickr/public.rb
304
+ - examples/flickr/riddl.jpg
305
+ - examples/flickr/declaration.xml
306
+ - examples/flickr/client.rb
307
+ - examples/flickr/README
308
+ - examples/flickr/rngs/rsp.rng
309
+ - examples/flickr/Exif/exif.ru
310
+ - examples/flickr/Exif/exif.xml
311
+ - examples/flickr/Exif/riddl.jpg
312
+ - examples/flickr/Exif/exif.test
313
+ - examples/flickr/Exif/riddl.new.jpg
314
+ - examples/flickr/Helpers/gps.rb
315
+ - examples/flickr/Helpers/flickr.rb
316
+ - examples/notifications/topics.xml
317
+ - examples/notifications/producer.main.xml
318
+ - examples/notifications/producer.declaration.xml
319
+ - examples/notifications/implementation/juergen.html
320
+ - examples/notifications/implementation/oliver.html
321
+ - examples/notifications/implementation/index.html
322
+ - examples/notifications/producer.rb
323
+ - examples/notifications/producer.fluff.xml
324
+ - examples/library/server.rb
253
325
  - examples/library/static/info.txt
326
+ - examples/library/declaration.xml
254
327
  - examples/library/description.xml
255
328
  - examples/library/description-image-addon.xml
256
- - examples/library/server.rb
257
- - examples/library/declaration.xml
258
- - examples/library/rngs/list-of-loans.rng
259
329
  - examples/library/rngs/customer-description.rng
260
- - examples/library/rngs/list-of-customers.rng
330
+ - examples/library/rngs/list-of-loans.rng
261
331
  - examples/library/rngs/book-description.rng
262
332
  - examples/library/rngs/list-of-books.rng
263
- - examples/declaration-test/client.test
264
- - examples/declaration-test/goal/goal.txt
265
- - examples/declaration-test/goal/goal.xml
266
- - examples/declaration-test/over.xml
267
- - examples/declaration-test/declaration2.xml
268
- - examples/declaration-test/declaration0.xml
269
- - examples/declaration-test/post.xml
270
- - examples/declaration-test/main.xml
271
- - examples/declaration-test/pre.ru
272
- - examples/declaration-test/post.ru
273
- - examples/declaration-test/declaration1.xml
274
- - examples/declaration-test/main.rb
275
- - examples/declaration-test/pre.xml
276
- - examples/declaration-server-hybrid/xsloverlay.rb
277
- - examples/declaration-server-hybrid/properties.xml
278
- - examples/declaration-server-hybrid/declaration.rb
333
+ - examples/library/rngs/list-of-customers.rng
334
+ - examples/declaration-server-hybrid/xsls/instances.xsl
335
+ - examples/declaration-server-hybrid/xsls/properties.xsl
336
+ - examples/declaration-server-hybrid/xsls/info.xsl
337
+ - examples/declaration-server-hybrid/xsls/values.xsl
338
+ - examples/declaration-server-hybrid/xsloverlay.xml
279
339
  - examples/declaration-server-hybrid/declaration.xml
280
340
  - examples/declaration-server-hybrid/instances/1/properties.xml
341
+ - examples/declaration-server-hybrid/instances/instances.xml
281
342
  - examples/declaration-server-hybrid/instances/properties.schema
282
343
  - examples/declaration-server-hybrid/instances/2/properties.xml
283
- - examples/declaration-server-hybrid/instances/instances.xml
284
- - examples/declaration-server-hybrid/main.xml
285
- - examples/declaration-server-hybrid/xsloverlay.xml
286
- - examples/declaration-server-hybrid/xsls/values.xsl
287
- - examples/declaration-server-hybrid/xsls/info.xsl
288
- - examples/declaration-server-hybrid/xsls/properties.xsl
289
- - examples/declaration-server-hybrid/xsls/instances.xsl
344
+ - examples/declaration-server-hybrid/README
345
+ - examples/declaration-server-hybrid/declaration.rb
346
+ - examples/declaration-server-hybrid/xsloverlay.rb
290
347
  - examples/declaration-server-hybrid/rngs/instance-info.rng
291
348
  - examples/declaration-server-hybrid/rngs/instances.rng
292
- - examples/declaration-server-hybrid/README
293
- - examples/flickr/client.rb
294
- - examples/flickr/Helpers/gps.rb
295
- - examples/flickr/Helpers/flickr.rb
296
- - examples/flickr/declaration.xml
297
- - examples/flickr/Flickr/flickr.secret
298
- - examples/flickr/Flickr/public.rb
299
- - examples/flickr/Flickr/find.rb
300
- - examples/flickr/Flickr/authenticate.rb
301
- - examples/flickr/Flickr/flickr.xml
302
- - examples/flickr/Flickr/flickr.key
303
- - examples/flickr/Flickr/riddl.png
304
- - examples/flickr/Flickr/flickr.rb
305
- - examples/flickr/Exif/exif.test
306
- - examples/flickr/Exif/exif.ru
307
- - examples/flickr/Exif/exif.xml
308
- - examples/flickr/Exif/riddl.jpg
309
- - examples/flickr/riddl.jpg
310
- - examples/flickr/rngs/rsp.rng
311
- - examples/flickr/README
312
- - examples/client/client.rb
313
- - examples/websocket/client.rb
314
- - examples/websocket/sample.html
315
- - examples/websocket/description.xml
316
- - examples/websocket/server.rb
317
- - examples/helloworld/filter-description.xml
318
- - examples/helloworld/description.xml
319
- - examples/helloworld/declaration.xml
320
- - examples/helloworld/declaration-definition_goal.xml
321
- - examples/helloworld/rngs/filter-hello-list.rng
322
- - examples/helloworld/rngs/hello-list.rng
323
- - examples/twitter/client.rb
324
- - examples/twitter/declaration.xml
325
- - examples/twitter/twitter.xml
326
- - examples/twitter/twitpic.xml
327
- - examples/twitter/README
328
- - examples/zotero/client.rb
329
- - examples/zotero/zotero.xml
330
- - examples/zotero/README
331
- - examples/notifications/producer.rb
332
- - examples/notifications/producer.main.xml
333
- - examples/notifications/producer.fluff.xml
334
- - examples/notifications/producer.declaration.xml
335
- - examples/notifications/notifications/9f5921176e6876aca3af4428b1ccafd1/consumer-secret
336
- - examples/notifications/notifications/9f5921176e6876aca3af4428b1ccafd1/subscription.xml
337
- - examples/notifications/notifications/9f5921176e6876aca3af4428b1ccafd1/producer-secret
338
- - examples/notifications/notifications/5d68b08a13e622aada13e3c182ea9390/consumer-secret
339
- - examples/notifications/notifications/5d68b08a13e622aada13e3c182ea9390/subscription.xml
340
- - examples/notifications/notifications/5d68b08a13e622aada13e3c182ea9390/producer-secret
341
- - examples/notifications/notifications/893edd178c053a011c09f253fa85092f/consumer-secret
342
- - examples/notifications/notifications/893edd178c053a011c09f253fa85092f/subscription.xml
343
- - examples/notifications/notifications/893edd178c053a011c09f253fa85092f/producer-secret
344
- - examples/notifications/notifications/39c3b39ec3e48a514948e4981f4459d2/consumer-secret
345
- - examples/notifications/notifications/39c3b39ec3e48a514948e4981f4459d2/subscription.xml
346
- - examples/notifications/notifications/39c3b39ec3e48a514948e4981f4459d2/producer-secret
347
- - examples/notifications/notifications/c457779f6e2c086d8cf1cd9b44d8950e/consumer-secret
348
- - examples/notifications/notifications/c457779f6e2c086d8cf1cd9b44d8950e/subscription.xml
349
- - examples/notifications/notifications/c457779f6e2c086d8cf1cd9b44d8950e/producer-secret
350
- - examples/notifications/implementation/oliver.html
351
- - examples/notifications/implementation/index.html
352
- - examples/notifications/implementation/juergen.html
353
- - examples/notifications/topics.xml
354
- - examples/declaration-server-local/properties.xml
355
- - examples/declaration-server-local/declaration.rb
356
- - examples/declaration-server-local/declaration.xml
357
- - examples/declaration-server-local/xsls.xml
358
- - examples/declaration-server-local/server.properties.schema
359
- - examples/declaration-server-local/xsloverlay.xml
360
- - examples/declaration-server-local/server.properties.xml
361
- - examples/declaration-server-local/xsls/values.xsl
362
- - examples/declaration-server-local/xsls/properties.xsl
363
- - examples/declaration-server-distributed/properties.rb
364
- - examples/declaration-server-distributed/xsloverlay.rb
365
- - examples/declaration-server-distributed/properties.xml
366
- - examples/declaration-server-distributed/declaration.rb
367
- - examples/declaration-server-distributed/declaration.xml
368
- - examples/declaration-server-distributed/instances/1/properties.xml
369
- - examples/declaration-server-distributed/instances/properties.schema
370
- - examples/declaration-server-distributed/instances/2/properties.xml
371
- - examples/declaration-server-distributed/instances/instances.xml
372
- - examples/declaration-server-distributed/main.xml
373
- - examples/declaration-server-distributed/xsloverlay.xml
374
- - examples/declaration-server-distributed/xsls/values.xsl
375
- - examples/declaration-server-distributed/xsls/test/properties.xsl
376
- - examples/declaration-server-distributed/xsls/info.xsl
377
- - examples/declaration-server-distributed/xsls/properties.xsl
378
- - examples/declaration-server-distributed/xsls/instances.xsl
379
- - examples/declaration-server-distributed/rngs/instance-info.rng
380
- - examples/declaration-server-distributed/rngs/instances.rng
381
- - examples/declaration-server-distributed/main.rb
382
- - examples/declaration-server-distributed/README
383
- - examples/xmpp/client.rb
384
- - examples/xmpp/properties.xml
385
- - examples/xmpp/description.rb
386
- - examples/xmpp/server.properties.schema
387
- - examples/xmpp/server.properties.xml
388
- - examples/downloadify/server.declaration.xml
389
- - examples/downloadify/client.rb
390
- - examples/downloadify/downloadify.xml
391
- - examples/downloadify/server.rb
392
- - examples/downloadify/server.description.xml
393
- - examples/description-test/description3.xml
394
- - examples/description-test/description1.xml
349
+ - examples/declaration-server-hybrid/properties.xml
350
+ - examples/declaration-server-hybrid/main.xml
395
351
  - examples/description-test/server.rb
396
- - examples/description-test/description2.xml
397
352
  - examples/description-test/description0.xml
353
+ - examples/description-test/description1.xml
354
+ - examples/description-test/description3.xml
355
+ - examples/description-test/description2.xml
398
356
  - examples/description-test/description4.xml
399
357
  - examples/description-test/rngs/list-of-books.rng
358
+ - examples/declaration-test/declaration0.xml
359
+ - examples/declaration-test/pre.ru
360
+ - examples/declaration-test/declaration2.xml
361
+ - examples/declaration-test/goal/goal.xml
362
+ - examples/declaration-test/goal/goal.txt
363
+ - examples/declaration-test/declaration1.xml
364
+ - examples/declaration-test/post.ru
365
+ - examples/declaration-test/main.log
366
+ - examples/declaration-test/main.rb
367
+ - examples/declaration-test/over.xml
368
+ - examples/declaration-test/post.xml
369
+ - examples/declaration-test/client.test
370
+ - examples/declaration-test/pre.xml
371
+ - examples/declaration-test/main.xml
372
+ - examples/xmpp/server.properties.xml
373
+ - examples/xmpp/server.properties.schema
374
+ - examples/xmpp/client.rb
375
+ - examples/xmpp/blather/pp.rb
376
+ - examples/xmpp/blather/test.rb
377
+ - examples/xmpp/blather/description.xml
378
+ - examples/xmpp/blather/direct.rb
379
+ - examples/xmpp/blather/load.rb
380
+ - examples/xmpp/properties.xml
381
+ - examples/xmpp/description.rb
382
+ - examples/properties/server.properties.xml
383
+ - examples/properties/server.properties.schema
384
+ - examples/properties/properties.xml
385
+ - examples/properties/description.conf
386
+ - examples/properties/description.rb
387
+ - examples/declaration-server-local/server.properties.xml
388
+ - examples/declaration-server-local/xsls/properties.xsl
389
+ - examples/declaration-server-local/xsls/values.xsl
390
+ - examples/declaration-server-local/xsls.xml
391
+ - examples/declaration-server-local/xsloverlay.xml
392
+ - examples/declaration-server-local/server.properties.schema
393
+ - examples/declaration-server-local/declaration.xml
394
+ - examples/declaration-server-local/declaration.rb
395
+ - examples/declaration-server-local/properties.xml
400
396
  - examples/oauth/oauth.rb
401
397
  - examples/oauth/oauth.xml
398
+ - examples/zotero/zotero.token_secret
399
+ - examples/zotero/zotero.consumer_secret
400
+ - examples/zotero/zotero.token
401
+ - examples/zotero/zotero.consumer_key
402
+ - examples/zotero/client.rb
403
+ - examples/zotero/README
404
+ - examples/zotero/zotero.xml
405
+ - examples/zotero/zotero.user_id
406
+ - examples/zotero/litlist.html
402
407
  - COPYING
403
408
  - Rakefile
404
409
  - riddl.gemspec
@@ -406,14 +411,14 @@ files:
406
411
  - TODO
407
412
  - AUTHORS
408
413
  - INSTALL
409
- - test/tc_declaration-distributed.rb
410
- - test/tc_properties.rb
411
- - test/tc_library.rb
412
414
  - test/tc_websocket.rb
413
- - test/tc_declaration-local.rb
414
415
  - test/tc_declaration-hybrid.rb
415
- - test/tc_helloworld.rb
416
+ - test/tc_declaration-local.rb
417
+ - test/tc_properties.rb
418
+ - test/tc_library.rb
419
+ - test/tc_declaration-distributed.rb
416
420
  - test/tc_producer.rb
421
+ - test/tc_helloworld.rb
417
422
  - test/smartrunner.rb
418
423
  homepage: http://www.wst.univie.ac.at/communities/riddl/
419
424
  licenses:
@@ -442,12 +447,12 @@ specification_version: 3
442
447
  summary: ! 'restful interface description and declaration language: tools and client/server
443
448
  libs'
444
449
  test_files:
445
- - test/tc_declaration-distributed.rb
446
- - test/tc_properties.rb
447
- - test/tc_library.rb
448
450
  - test/tc_websocket.rb
449
- - test/tc_declaration-local.rb
450
451
  - test/tc_declaration-hybrid.rb
451
- - test/tc_helloworld.rb
452
+ - test/tc_declaration-local.rb
453
+ - test/tc_properties.rb
454
+ - test/tc_library.rb
455
+ - test/tc_declaration-distributed.rb
452
456
  - test/tc_producer.rb
457
+ - test/tc_helloworld.rb
453
458
  - test/smartrunner.rb