riddl 0.99.149 → 0.99.150
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 +7 -0
- data/lib/ruby/riddl/ns/common-patterns/turtle/1.0/turtle.xml +30 -0
- data/lib/ruby/riddl/utils/turtle.rb +72 -0
- data/ns/common-patterns/turtle/1.0/turtle.xml +30 -0
- data/riddl.gemspec +2 -1
- metadata +251 -274
- data/examples/declaration-test/main.log +0 -57
- data/examples/flickr/Exif/riddl.new.jpg +0 -0
- data/examples/flickr/Flickr/flickr.frob +0 -1
- data/examples/flickr/Flickr/flickr.token +0 -1
- data/examples/twitter/twitter.consumer_key +0 -1
- data/examples/twitter/twitter.consumer_secret +0 -1
- data/examples/twitter/twitter.token +0 -1
- data/examples/twitter/twitter.token_secret +0 -1
- data/examples/twitter/twitter.user_id +0 -1
- data/examples/xmpp/blather/description.xml +0 -981
- data/examples/xmpp/blather/direct.rb +0 -44
- data/examples/xmpp/blather/load.rb +0 -18
- data/examples/xmpp/blather/pp.rb +0 -40
- data/examples/xmpp/blather/test.rb +0 -32
- data/examples/zotero/litlist.html +0 -540
- data/examples/zotero/zotero.consumer_key +0 -1
- data/examples/zotero/zotero.consumer_secret +0 -1
- data/examples/zotero/zotero.token +0 -1
- data/examples/zotero/zotero.token_secret +0 -1
- data/examples/zotero/zotero.user_id +0 -1
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 20e1d76f1d70b39c9d0d0764cc6b5b11ead3e115
|
|
4
|
+
data.tar.gz: 00afe7a201a447fd6d987f210fb64cd2c20c2ecd
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b6efd60e82a7ec5a52eb93cb43a6f6e40e9810c13be3bdf6379d7e2ccd89130a0c86c06afe1e07a6893f32c4c407692933ed9af09a57357ef344a0e6a1e4e990
|
|
7
|
+
data.tar.gz: 8719a78c7e6b304ef013d8c46df6e4c2bd7a2736a0f4592635ce4e17de126404d126c9dd757398564e5d07b46191e17b1b94a7cb8cb3d364e714ba4842875942
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<description xmlns="http://riddl.org/ns/description/1.0" xmlns:ann="http://riddl.org/ns/annotation/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns:doc="http://cpee.org/ns/documentation">
|
|
3
|
+
<message name="json">
|
|
4
|
+
<parameter name="value" mimetype="application/json"/>
|
|
5
|
+
</message>
|
|
6
|
+
<message name="query">
|
|
7
|
+
<parameter name="query" type="string"/>
|
|
8
|
+
</message>
|
|
9
|
+
<message name="query_resp">
|
|
10
|
+
<choice>
|
|
11
|
+
<parameter name="value" mimetype="application/json"/>
|
|
12
|
+
<parameter name="value" mimetype="text/plain"/>
|
|
13
|
+
</choice>
|
|
14
|
+
</message>
|
|
15
|
+
<message name="turtle">
|
|
16
|
+
<choice>
|
|
17
|
+
<parameter name="list" mimetype="text/plain"/>
|
|
18
|
+
<parameter name="list" mimetype="text/turtle"/>
|
|
19
|
+
</choice>
|
|
20
|
+
</message>
|
|
21
|
+
|
|
22
|
+
<!-- Resources -->
|
|
23
|
+
<resource>
|
|
24
|
+
<get in="*" out="turtle"/>
|
|
25
|
+
<get in="query" out="json"/>
|
|
26
|
+
<resource>
|
|
27
|
+
<get in="*" out="query_resp"/>
|
|
28
|
+
</resource>
|
|
29
|
+
</resource>
|
|
30
|
+
</description>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'rdf/smart'
|
|
3
|
+
require 'json'
|
|
4
|
+
|
|
5
|
+
module Riddl
|
|
6
|
+
module Utils
|
|
7
|
+
|
|
8
|
+
module Turtle
|
|
9
|
+
|
|
10
|
+
class File
|
|
11
|
+
attr_accessor :data, :changed
|
|
12
|
+
attr_reader :url
|
|
13
|
+
|
|
14
|
+
def initialize(url)
|
|
15
|
+
@url = url
|
|
16
|
+
@data = ""
|
|
17
|
+
@changed = Time.at(0)
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def self::implementation(tf)
|
|
22
|
+
Proc.new do
|
|
23
|
+
if ::File.mtime(tf.url) > tf.changed
|
|
24
|
+
tf.data = ""
|
|
25
|
+
::File.open(tf.url,"r") do |f|
|
|
26
|
+
f.each_line do |line|
|
|
27
|
+
tf.data += line
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
tf.changed = ::File.mtime(tf.url)
|
|
31
|
+
end
|
|
32
|
+
run Show, tf.data, tf.changed if get
|
|
33
|
+
run Query, tf.url if get 'query'
|
|
34
|
+
on resource do
|
|
35
|
+
run GetQuery, tf.url if get
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
class Query < Riddl::Implementation # {{{
|
|
40
|
+
def response #{{{
|
|
41
|
+
Riddl::Parameter::Complex.new "list","application/json", JSON::pretty_generate(RDF::Smart.new(@a[0]).execute(@p[0].value))
|
|
42
|
+
end #}}}
|
|
43
|
+
end # }}}
|
|
44
|
+
class Show < Riddl::Implementation # {{{
|
|
45
|
+
def response #{{{
|
|
46
|
+
Riddl::Parameter::Complex.new "list", "text/plain", @a[0]
|
|
47
|
+
end #}}}
|
|
48
|
+
end # }}}
|
|
49
|
+
class GetQuery < Riddl::Implementation#{{{
|
|
50
|
+
def response #{{{
|
|
51
|
+
a = RDF::Smart.new(@a[0])
|
|
52
|
+
if a.namespaces.size > 0
|
|
53
|
+
ns = ""
|
|
54
|
+
if @r[-1].start_with?(":")
|
|
55
|
+
if (!(a.namespaces[nil]))
|
|
56
|
+
return Riddl::Parameter::Complex.new "value","text/plain", "Error parsing namespaces"
|
|
57
|
+
end
|
|
58
|
+
return Riddl::Parameter::Complex.new "value","application/json", JSON::pretty_generate(a.execute("PREFIX : <" + a.namespaces[nil] + "> SELECT * WHERE { #{@r[-1]} ?p ?o}"))
|
|
59
|
+
else
|
|
60
|
+
if (!(a.namespaces[@r[-1].partition(":")[0]]))
|
|
61
|
+
return Riddl::Parameter::Complex.new "value","text/plain", "Error parsing namespaces"
|
|
62
|
+
end
|
|
63
|
+
return Riddl::Parameter::Complex.new "value","application/json", JSON::pretty_generate(a.execute("PREFIX #{@r[-1].partition(":")[0]}: <" + a.namespaces[@r[-1].partition(":")[0]] + "> SELECT * WHERE { #{@r[-1]} ?p ?o}"))
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
Riddl::Parameter::Complex.new "list","application/json", JSON::pretty_generate(a.execute("select * where {#{@r[-1]} ?p ?o}"))
|
|
67
|
+
end #}}}
|
|
68
|
+
end#}}}
|
|
69
|
+
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<description xmlns="http://riddl.org/ns/description/1.0" xmlns:ann="http://riddl.org/ns/annotation/1.0" xmlns:xi="http://www.w3.org/2001/XInclude" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes" xmlns:doc="http://cpee.org/ns/documentation">
|
|
3
|
+
<message name="json">
|
|
4
|
+
<parameter name="value" mimetype="application/json"/>
|
|
5
|
+
</message>
|
|
6
|
+
<message name="query">
|
|
7
|
+
<parameter name="query" type="string"/>
|
|
8
|
+
</message>
|
|
9
|
+
<message name="query_resp">
|
|
10
|
+
<choice>
|
|
11
|
+
<parameter name="value" mimetype="application/json"/>
|
|
12
|
+
<parameter name="value" mimetype="text/plain"/>
|
|
13
|
+
</choice>
|
|
14
|
+
</message>
|
|
15
|
+
<message name="turtle">
|
|
16
|
+
<choice>
|
|
17
|
+
<parameter name="list" mimetype="text/plain"/>
|
|
18
|
+
<parameter name="list" mimetype="text/turtle"/>
|
|
19
|
+
</choice>
|
|
20
|
+
</message>
|
|
21
|
+
|
|
22
|
+
<!-- Resources -->
|
|
23
|
+
<resource>
|
|
24
|
+
<get in="*" out="turtle"/>
|
|
25
|
+
<get in="query" out="json"/>
|
|
26
|
+
<resource>
|
|
27
|
+
<get in="*" out="query_resp"/>
|
|
28
|
+
</resource>
|
|
29
|
+
</resource>
|
|
30
|
+
</description>
|
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.
|
|
3
|
+
s.version = "0.99.150"
|
|
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"
|
|
@@ -22,6 +22,7 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
s.required_ruby_version = '>=1.9.3'
|
|
23
23
|
|
|
24
24
|
s.add_runtime_dependency 'xml-smart', '>=0.3.6'
|
|
25
|
+
s.add_runtime_dependency 'rdf-smart', '>=0.0.160'
|
|
25
26
|
s.add_runtime_dependency 'rack'
|
|
26
27
|
s.add_runtime_dependency 'thin', '>=1.6.1'
|
|
27
28
|
s.add_runtime_dependency 'eventmachine', '>= 1.0.0'
|
metadata
CHANGED
|
@@ -1,158 +1,153 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: riddl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.99.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.99.150
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Juergen eTM Mangler
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: tools
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2014-
|
|
11
|
+
date: 2014-07-14 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: xml-smart
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - ">="
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: 0.3.6
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
24
|
+
- - ">="
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: 0.3.6
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rdf-smart
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 0.0.160
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 0.0.160
|
|
30
41
|
- !ruby/object:Gem::Dependency
|
|
31
42
|
name: rack
|
|
32
43
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
44
|
requirements:
|
|
35
|
-
- -
|
|
45
|
+
- - ">="
|
|
36
46
|
- !ruby/object:Gem::Version
|
|
37
47
|
version: '0'
|
|
38
48
|
type: :runtime
|
|
39
49
|
prerelease: false
|
|
40
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
51
|
requirements:
|
|
43
|
-
- -
|
|
52
|
+
- - ">="
|
|
44
53
|
- !ruby/object:Gem::Version
|
|
45
54
|
version: '0'
|
|
46
55
|
- !ruby/object:Gem::Dependency
|
|
47
56
|
name: thin
|
|
48
57
|
requirement: !ruby/object:Gem::Requirement
|
|
49
|
-
none: false
|
|
50
58
|
requirements:
|
|
51
|
-
- -
|
|
59
|
+
- - ">="
|
|
52
60
|
- !ruby/object:Gem::Version
|
|
53
61
|
version: 1.6.1
|
|
54
62
|
type: :runtime
|
|
55
63
|
prerelease: false
|
|
56
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
-
none: false
|
|
58
65
|
requirements:
|
|
59
|
-
- -
|
|
66
|
+
- - ">="
|
|
60
67
|
- !ruby/object:Gem::Version
|
|
61
68
|
version: 1.6.1
|
|
62
69
|
- !ruby/object:Gem::Dependency
|
|
63
70
|
name: eventmachine
|
|
64
71
|
requirement: !ruby/object:Gem::Requirement
|
|
65
|
-
none: false
|
|
66
72
|
requirements:
|
|
67
|
-
- -
|
|
73
|
+
- - ">="
|
|
68
74
|
- !ruby/object:Gem::Version
|
|
69
75
|
version: 1.0.0
|
|
70
76
|
type: :runtime
|
|
71
77
|
prerelease: false
|
|
72
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
-
none: false
|
|
74
79
|
requirements:
|
|
75
|
-
- -
|
|
80
|
+
- - ">="
|
|
76
81
|
- !ruby/object:Gem::Version
|
|
77
82
|
version: 1.0.0
|
|
78
83
|
- !ruby/object:Gem::Dependency
|
|
79
84
|
name: em-websocket
|
|
80
85
|
requirement: !ruby/object:Gem::Requirement
|
|
81
|
-
none: false
|
|
82
86
|
requirements:
|
|
83
|
-
- -
|
|
87
|
+
- - ">="
|
|
84
88
|
- !ruby/object:Gem::Version
|
|
85
89
|
version: 0.4.0
|
|
86
90
|
type: :runtime
|
|
87
91
|
prerelease: false
|
|
88
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
89
|
-
none: false
|
|
90
93
|
requirements:
|
|
91
|
-
- -
|
|
94
|
+
- - ">="
|
|
92
95
|
- !ruby/object:Gem::Version
|
|
93
96
|
version: 0.4.0
|
|
94
97
|
- !ruby/object:Gem::Dependency
|
|
95
98
|
name: em-websocket-client
|
|
96
99
|
requirement: !ruby/object:Gem::Requirement
|
|
97
|
-
none: false
|
|
98
100
|
requirements:
|
|
99
|
-
- -
|
|
101
|
+
- - ">="
|
|
100
102
|
- !ruby/object:Gem::Version
|
|
101
103
|
version: '0'
|
|
102
104
|
type: :runtime
|
|
103
105
|
prerelease: false
|
|
104
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
-
none: false
|
|
106
107
|
requirements:
|
|
107
|
-
- -
|
|
108
|
+
- - ">="
|
|
108
109
|
- !ruby/object:Gem::Version
|
|
109
110
|
version: '0'
|
|
110
111
|
- !ruby/object:Gem::Dependency
|
|
111
112
|
name: mime-types
|
|
112
113
|
requirement: !ruby/object:Gem::Requirement
|
|
113
|
-
none: false
|
|
114
114
|
requirements:
|
|
115
|
-
- -
|
|
115
|
+
- - ">="
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
117
|
version: '0'
|
|
118
118
|
type: :runtime
|
|
119
119
|
prerelease: false
|
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
none: false
|
|
122
121
|
requirements:
|
|
123
|
-
- -
|
|
122
|
+
- - ">="
|
|
124
123
|
- !ruby/object:Gem::Version
|
|
125
124
|
version: '0'
|
|
126
125
|
- !ruby/object:Gem::Dependency
|
|
127
126
|
name: minitest
|
|
128
127
|
requirement: !ruby/object:Gem::Requirement
|
|
129
|
-
none: false
|
|
130
128
|
requirements:
|
|
131
|
-
- -
|
|
129
|
+
- - ">="
|
|
132
130
|
- !ruby/object:Gem::Version
|
|
133
131
|
version: 5.0.0
|
|
134
132
|
type: :runtime
|
|
135
133
|
prerelease: false
|
|
136
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
137
|
-
none: false
|
|
138
135
|
requirements:
|
|
139
|
-
- -
|
|
136
|
+
- - ">="
|
|
140
137
|
- !ruby/object:Gem::Version
|
|
141
138
|
version: 5.0.0
|
|
142
139
|
- !ruby/object:Gem::Dependency
|
|
143
140
|
name: blather
|
|
144
141
|
requirement: !ruby/object:Gem::Requirement
|
|
145
|
-
none: false
|
|
146
142
|
requirements:
|
|
147
|
-
- -
|
|
143
|
+
- - ">="
|
|
148
144
|
- !ruby/object:Gem::Version
|
|
149
145
|
version: '0'
|
|
150
146
|
type: :runtime
|
|
151
147
|
prerelease: false
|
|
152
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
153
|
-
none: false
|
|
154
149
|
requirements:
|
|
155
|
-
- -
|
|
150
|
+
- - ">="
|
|
156
151
|
- !ruby/object:Gem::Version
|
|
157
152
|
version: '0'
|
|
158
153
|
description: rest service interface definition, mixing, and evolution. supports mixed
|
|
@@ -165,295 +160,277 @@ extensions: []
|
|
|
165
160
|
extra_rdoc_files:
|
|
166
161
|
- README.rdoc
|
|
167
162
|
files:
|
|
168
|
-
-
|
|
169
|
-
-
|
|
170
|
-
-
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
-
|
|
174
|
-
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.schema
|
|
175
|
-
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.xml
|
|
176
|
-
- lib/ruby/riddl/ns/common-patterns/properties/1.0/properties.schema.xsl
|
|
177
|
-
- lib/ruby/riddl/ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
|
178
|
-
- lib/ruby/riddl/ns/common/relaxng.rng
|
|
179
|
-
- lib/ruby/riddl/ns/common/datatypes-1_0.rng
|
|
180
|
-
- lib/ruby/riddl/ns/common/relaxng-modular.rng
|
|
181
|
-
- lib/ruby/riddl/ns/declaration/1.0/declaration.rng
|
|
182
|
-
- lib/ruby/riddl/ns/description/1.0/description.rng
|
|
183
|
-
- tools/riddlprocess
|
|
184
|
-
- tools/riddlprocess-1_0
|
|
185
|
-
- tools/flash-policy-server.rb
|
|
186
|
-
- tools/riddlcheck
|
|
187
|
-
- tools/riddlcheck-1_0
|
|
188
|
-
- ns/common-patterns/downloadify/1.0/downloadify.xml
|
|
189
|
-
- ns/common-patterns/addon-security/request.xml
|
|
190
|
-
- ns/common-patterns/addon-security/response.xml
|
|
191
|
-
- ns/common-patterns/riddl-description/show.xml
|
|
192
|
-
- ns/common-patterns/riddl-description/resource-show.xml
|
|
193
|
-
- ns/common-patterns/notifications-producer/1.0/producer.xml
|
|
194
|
-
- ns/common-patterns/properties/1.0/properties.schema.schema
|
|
195
|
-
- ns/common-patterns/properties/1.0/properties.xml
|
|
196
|
-
- ns/common-patterns/properties/1.0/properties.schema.xsl
|
|
197
|
-
- ns/common-patterns/notifications-consumer/1.0/consumer.xml
|
|
198
|
-
- ns/common/relaxng.rng
|
|
199
|
-
- ns/common/datatypes-1_0.rng
|
|
200
|
-
- ns/common/relaxng-modular.rng
|
|
201
|
-
- ns/declaration/1.0/declaration.rng
|
|
202
|
-
- ns/description/1.0/description.rng
|
|
203
|
-
- contrib/riddl.png
|
|
163
|
+
- AUTHORS
|
|
164
|
+
- COPYING
|
|
165
|
+
- INSTALL
|
|
166
|
+
- README.rdoc
|
|
167
|
+
- Rakefile
|
|
168
|
+
- TODO
|
|
204
169
|
- contrib/riddl.jpg
|
|
170
|
+
- contrib/riddl.png
|
|
205
171
|
- contrib/riddl.svg
|
|
206
|
-
- lib/ruby/riddl/handlers.rb
|
|
207
|
-
- lib/ruby/riddl/server.rb
|
|
208
|
-
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Faccess_token.rb
|
|
209
|
-
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Fon_behalf.rb
|
|
210
|
-
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0%2Frequest_token.rb
|
|
211
|
-
- lib/ruby/riddl/roles/http%3A%2F%2Foauth.net%2F1.0/base.rb
|
|
212
|
-
- lib/ruby/riddl/wrapper.rb
|
|
213
|
-
- lib/ruby/riddl/commonlogger.rb
|
|
214
|
-
- lib/ruby/riddl/error.rb
|
|
215
|
-
- lib/ruby/riddl/client.rb
|
|
216
|
-
- lib/ruby/riddl/handlers/plain-type.rb
|
|
217
|
-
- lib/ruby/riddl/handlers/xmlschema.rb
|
|
218
|
-
- lib/ruby/riddl/handlers/oauth.rb
|
|
219
|
-
- lib/ruby/riddl/handlers/relaxng.rb
|
|
220
|
-
- lib/ruby/riddl/implementation.rb
|
|
221
|
-
- lib/ruby/riddl/wrapper/messageparser.rb
|
|
222
|
-
- lib/ruby/riddl/wrapper/resourcechecker.rb
|
|
223
|
-
- lib/ruby/riddl/wrapper/declaration.rb
|
|
224
|
-
- lib/ruby/riddl/wrapper/layerchecker.rb
|
|
225
|
-
- lib/ruby/riddl/wrapper/description.rb
|
|
226
|
-
- lib/ruby/riddl/wrapper/declaration/interface.rb
|
|
227
|
-
- lib/ruby/riddl/wrapper/declaration/facade.rb
|
|
228
|
-
- lib/ruby/riddl/wrapper/declaration/tile.rb
|
|
229
|
-
- lib/ruby/riddl/wrapper/description/message_and_transformation.rb
|
|
230
|
-
- lib/ruby/riddl/wrapper/description/resource.rb
|
|
231
|
-
- lib/ruby/riddl/wrapper/description/access.rb
|
|
232
|
-
- lib/ruby/riddl/option.rb
|
|
233
|
-
- lib/ruby/riddl/utils/properties.rb
|
|
234
|
-
- lib/ruby/riddl/utils/notifications_producer.rb
|
|
235
|
-
- lib/ruby/riddl/utils/downloadify.rb
|
|
236
|
-
- lib/ruby/riddl/utils/erbserve.rb
|
|
237
|
-
- lib/ruby/riddl/utils/xsloverlay.rb
|
|
238
|
-
- lib/ruby/riddl/utils/fileserve.rb
|
|
239
|
-
- lib/ruby/riddl/utils/description.rb
|
|
240
|
-
- lib/ruby/riddl/roles.rb
|
|
241
|
-
- lib/ruby/riddl/parameter.rb
|
|
242
|
-
- lib/ruby/riddl/constants.rb
|
|
243
|
-
- lib/ruby/riddl/protocols/http/generator.rb
|
|
244
|
-
- lib/ruby/riddl/protocols/http/parser.rb
|
|
245
|
-
- lib/ruby/riddl/protocols/websocket.rb
|
|
246
|
-
- lib/ruby/riddl/protocols/xmpp/generator.rb
|
|
247
|
-
- lib/ruby/riddl/protocols/xmpp/parser.rb
|
|
248
|
-
- lib/ruby/riddl/header.rb
|
|
249
172
|
- examples/client/client.rb
|
|
250
|
-
- examples/
|
|
251
|
-
- examples/
|
|
252
|
-
- examples/downloadify/server.description.xml
|
|
253
|
-
- examples/downloadify/server.declaration.xml
|
|
254
|
-
- examples/downloadify/client.rb
|
|
255
|
-
- examples/twitter/twitter.token_secret
|
|
256
|
-
- examples/twitter/twitter.xml
|
|
257
|
-
- examples/twitter/declaration.xml
|
|
258
|
-
- examples/twitter/client.rb
|
|
259
|
-
- examples/twitter/twitter.consumer_key
|
|
260
|
-
- examples/twitter/README
|
|
261
|
-
- examples/twitter/twitpic.xml
|
|
262
|
-
- examples/twitter/twitter.user_id
|
|
263
|
-
- examples/twitter/twitter.consumer_secret
|
|
264
|
-
- examples/twitter/twitter.token
|
|
265
|
-
- examples/helloworld/declaration.xml
|
|
266
|
-
- examples/helloworld/description.xml
|
|
267
|
-
- examples/helloworld/declaration-definition_goal.xml
|
|
268
|
-
- examples/helloworld/rngs/hello-list.rng
|
|
269
|
-
- examples/helloworld/rngs/filter-hello-list.rng
|
|
270
|
-
- examples/helloworld/filter-description.xml
|
|
271
|
-
- examples/websocket/server.rb
|
|
272
|
-
- examples/websocket/description.xml
|
|
273
|
-
- examples/websocket/client.rb
|
|
274
|
-
- examples/websocket/sample.html
|
|
275
|
-
- examples/declaration-server-distributed/xsls/test/properties.xsl
|
|
276
|
-
- examples/declaration-server-distributed/xsls/instances.xsl
|
|
277
|
-
- examples/declaration-server-distributed/xsls/properties.xsl
|
|
278
|
-
- examples/declaration-server-distributed/xsls/info.xsl
|
|
279
|
-
- examples/declaration-server-distributed/xsls/values.xsl
|
|
280
|
-
- examples/declaration-server-distributed/properties.rb
|
|
281
|
-
- examples/declaration-server-distributed/xsloverlay.xml
|
|
173
|
+
- examples/declaration-server-distributed/README
|
|
174
|
+
- examples/declaration-server-distributed/declaration.rb
|
|
282
175
|
- examples/declaration-server-distributed/declaration.xml
|
|
283
176
|
- examples/declaration-server-distributed/instances/1/properties.xml
|
|
177
|
+
- examples/declaration-server-distributed/instances/2/properties.xml
|
|
284
178
|
- examples/declaration-server-distributed/instances/instances.xml
|
|
285
179
|
- examples/declaration-server-distributed/instances/properties.schema
|
|
286
|
-
- examples/declaration-server-distributed/instances/2/properties.xml
|
|
287
|
-
- examples/declaration-server-distributed/README
|
|
288
180
|
- examples/declaration-server-distributed/main.rb
|
|
289
|
-
- examples/declaration-server-distributed/
|
|
290
|
-
- examples/declaration-server-distributed/
|
|
181
|
+
- examples/declaration-server-distributed/main.xml
|
|
182
|
+
- examples/declaration-server-distributed/properties.rb
|
|
183
|
+
- examples/declaration-server-distributed/properties.xml
|
|
291
184
|
- examples/declaration-server-distributed/rngs/instance-info.rng
|
|
292
185
|
- examples/declaration-server-distributed/rngs/instances.rng
|
|
293
|
-
- examples/declaration-server-distributed/
|
|
294
|
-
- examples/declaration-server-distributed/
|
|
295
|
-
- examples/
|
|
296
|
-
- examples/
|
|
297
|
-
- examples/
|
|
298
|
-
- examples/
|
|
299
|
-
- examples/
|
|
300
|
-
- examples/
|
|
301
|
-
- examples/
|
|
302
|
-
- examples/flickr/Flickr/flickr.frob
|
|
303
|
-
- examples/flickr/Flickr/authenticate.rb
|
|
304
|
-
- examples/flickr/Flickr/public.rb
|
|
305
|
-
- examples/flickr/riddl.jpg
|
|
306
|
-
- examples/flickr/declaration.xml
|
|
307
|
-
- examples/flickr/client.rb
|
|
308
|
-
- examples/flickr/README
|
|
309
|
-
- examples/flickr/rngs/rsp.rng
|
|
310
|
-
- examples/flickr/Exif/exif.ru
|
|
311
|
-
- examples/flickr/Exif/exif.xml
|
|
312
|
-
- examples/flickr/Exif/riddl.jpg
|
|
313
|
-
- examples/flickr/Exif/exif.test
|
|
314
|
-
- examples/flickr/Exif/riddl.new.jpg
|
|
315
|
-
- examples/flickr/Helpers/gps.rb
|
|
316
|
-
- examples/flickr/Helpers/flickr.rb
|
|
317
|
-
- examples/notifications/topics.xml
|
|
318
|
-
- examples/notifications/producer.main.xml
|
|
319
|
-
- examples/notifications/producer.declaration.xml
|
|
320
|
-
- examples/notifications/implementation/juergen.html
|
|
321
|
-
- examples/notifications/implementation/oliver.html
|
|
322
|
-
- examples/notifications/implementation/index.html
|
|
323
|
-
- examples/notifications/producer.rb
|
|
324
|
-
- examples/notifications/producer.fluff.xml
|
|
325
|
-
- examples/library/server.rb
|
|
326
|
-
- examples/library/static/info.txt
|
|
327
|
-
- examples/library/declaration.xml
|
|
328
|
-
- examples/library/description.xml
|
|
329
|
-
- examples/library/description-image-addon.xml
|
|
330
|
-
- examples/library/rngs/customer-description.rng
|
|
331
|
-
- examples/library/rngs/list-of-loans.rng
|
|
332
|
-
- examples/library/rngs/book-description.rng
|
|
333
|
-
- examples/library/rngs/list-of-books.rng
|
|
334
|
-
- examples/library/rngs/list-of-customers.rng
|
|
335
|
-
- examples/declaration-server-hybrid/xsls/instances.xsl
|
|
336
|
-
- examples/declaration-server-hybrid/xsls/properties.xsl
|
|
337
|
-
- examples/declaration-server-hybrid/xsls/info.xsl
|
|
338
|
-
- examples/declaration-server-hybrid/xsls/values.xsl
|
|
339
|
-
- examples/declaration-server-hybrid/xsloverlay.xml
|
|
186
|
+
- examples/declaration-server-distributed/xsloverlay.rb
|
|
187
|
+
- examples/declaration-server-distributed/xsloverlay.xml
|
|
188
|
+
- examples/declaration-server-distributed/xsls/info.xsl
|
|
189
|
+
- examples/declaration-server-distributed/xsls/instances.xsl
|
|
190
|
+
- examples/declaration-server-distributed/xsls/properties.xsl
|
|
191
|
+
- examples/declaration-server-distributed/xsls/test/properties.xsl
|
|
192
|
+
- examples/declaration-server-distributed/xsls/values.xsl
|
|
193
|
+
- examples/declaration-server-hybrid/README
|
|
194
|
+
- examples/declaration-server-hybrid/declaration.rb
|
|
340
195
|
- examples/declaration-server-hybrid/declaration.xml
|
|
341
196
|
- examples/declaration-server-hybrid/instances/1/properties.xml
|
|
197
|
+
- examples/declaration-server-hybrid/instances/2/properties.xml
|
|
342
198
|
- examples/declaration-server-hybrid/instances/instances.xml
|
|
343
199
|
- examples/declaration-server-hybrid/instances/properties.schema
|
|
344
|
-
- examples/declaration-server-hybrid/
|
|
345
|
-
- examples/declaration-server-hybrid/
|
|
346
|
-
- examples/declaration-server-hybrid/declaration.rb
|
|
347
|
-
- examples/declaration-server-hybrid/xsloverlay.rb
|
|
200
|
+
- examples/declaration-server-hybrid/main.xml
|
|
201
|
+
- examples/declaration-server-hybrid/properties.xml
|
|
348
202
|
- examples/declaration-server-hybrid/rngs/instance-info.rng
|
|
349
203
|
- examples/declaration-server-hybrid/rngs/instances.rng
|
|
350
|
-
- examples/declaration-server-hybrid/
|
|
351
|
-
- examples/declaration-server-hybrid/
|
|
352
|
-
- examples/
|
|
353
|
-
- examples/
|
|
354
|
-
- examples/
|
|
355
|
-
- examples/
|
|
356
|
-
- examples/
|
|
357
|
-
- examples/
|
|
358
|
-
- examples/
|
|
204
|
+
- examples/declaration-server-hybrid/xsloverlay.rb
|
|
205
|
+
- examples/declaration-server-hybrid/xsloverlay.xml
|
|
206
|
+
- examples/declaration-server-hybrid/xsls/info.xsl
|
|
207
|
+
- examples/declaration-server-hybrid/xsls/instances.xsl
|
|
208
|
+
- examples/declaration-server-hybrid/xsls/properties.xsl
|
|
209
|
+
- examples/declaration-server-hybrid/xsls/values.xsl
|
|
210
|
+
- examples/declaration-server-local/declaration.rb
|
|
211
|
+
- examples/declaration-server-local/declaration.xml
|
|
212
|
+
- examples/declaration-server-local/properties.xml
|
|
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
|
|
359
220
|
- examples/declaration-test/declaration0.xml
|
|
360
|
-
- examples/declaration-test/
|
|
221
|
+
- examples/declaration-test/declaration1.xml
|
|
361
222
|
- examples/declaration-test/declaration2.xml
|
|
362
|
-
- examples/declaration-test/goal/goal.xml
|
|
363
223
|
- examples/declaration-test/goal/goal.txt
|
|
364
|
-
- examples/declaration-test/
|
|
365
|
-
- examples/declaration-test/post.ru
|
|
366
|
-
- examples/declaration-test/main.log
|
|
224
|
+
- examples/declaration-test/goal/goal.xml
|
|
367
225
|
- examples/declaration-test/main.rb
|
|
226
|
+
- examples/declaration-test/main.xml
|
|
368
227
|
- examples/declaration-test/over.xml
|
|
228
|
+
- examples/declaration-test/post.ru
|
|
369
229
|
- examples/declaration-test/post.xml
|
|
370
|
-
- examples/declaration-test/
|
|
230
|
+
- examples/declaration-test/pre.ru
|
|
371
231
|
- examples/declaration-test/pre.xml
|
|
372
|
-
- examples/
|
|
373
|
-
- examples/
|
|
374
|
-
- examples/
|
|
375
|
-
- examples/
|
|
376
|
-
- examples/
|
|
377
|
-
- examples/
|
|
378
|
-
- examples/
|
|
379
|
-
- examples/
|
|
380
|
-
- examples/
|
|
381
|
-
- examples/
|
|
382
|
-
- examples/
|
|
383
|
-
- examples/
|
|
384
|
-
- examples/
|
|
385
|
-
- examples/
|
|
386
|
-
- examples/
|
|
387
|
-
- examples/
|
|
388
|
-
- examples/
|
|
389
|
-
- examples/
|
|
390
|
-
- examples/
|
|
391
|
-
- examples/
|
|
392
|
-
- examples/
|
|
393
|
-
- examples/
|
|
394
|
-
- examples/
|
|
395
|
-
- examples/
|
|
396
|
-
- examples/
|
|
232
|
+
- examples/description-test/description0.xml
|
|
233
|
+
- examples/description-test/description1.xml
|
|
234
|
+
- examples/description-test/description2.xml
|
|
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
|
|
397
287
|
- examples/oauth/oauth.rb
|
|
398
288
|
- examples/oauth/oauth.xml
|
|
399
|
-
- examples/
|
|
400
|
-
- examples/
|
|
401
|
-
- examples/
|
|
402
|
-
- examples/
|
|
403
|
-
- examples/
|
|
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
|
|
303
|
+
- examples/xmpp/client.rb
|
|
304
|
+
- examples/xmpp/description.rb
|
|
305
|
+
- examples/xmpp/properties.xml
|
|
306
|
+
- examples/xmpp/server.properties.schema
|
|
307
|
+
- examples/xmpp/server.properties.xml
|
|
404
308
|
- examples/zotero/README
|
|
309
|
+
- examples/zotero/client.rb
|
|
405
310
|
- examples/zotero/zotero.xml
|
|
406
|
-
-
|
|
407
|
-
-
|
|
408
|
-
-
|
|
409
|
-
-
|
|
311
|
+
- lib/ruby/riddl/client.rb
|
|
312
|
+
- lib/ruby/riddl/commonlogger.rb
|
|
313
|
+
- lib/ruby/riddl/constants.rb
|
|
314
|
+
- lib/ruby/riddl/error.rb
|
|
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
|
|
410
387
|
- riddl.gemspec
|
|
411
|
-
-
|
|
412
|
-
-
|
|
413
|
-
- AUTHORS
|
|
414
|
-
- INSTALL
|
|
415
|
-
- test/tc_websocket.rb
|
|
388
|
+
- test/smartrunner.rb
|
|
389
|
+
- test/tc_declaration-distributed.rb
|
|
416
390
|
- test/tc_declaration-hybrid.rb
|
|
417
391
|
- test/tc_declaration-local.rb
|
|
418
|
-
- test/
|
|
392
|
+
- test/tc_helloworld.rb
|
|
419
393
|
- test/tc_library.rb
|
|
420
|
-
- test/tc_declaration-distributed.rb
|
|
421
394
|
- test/tc_producer.rb
|
|
422
|
-
- test/
|
|
423
|
-
- test/
|
|
395
|
+
- test/tc_properties.rb
|
|
396
|
+
- test/tc_websocket.rb
|
|
397
|
+
- tools/flash-policy-server.rb
|
|
398
|
+
- tools/riddlcheck
|
|
399
|
+
- tools/riddlcheck-1_0
|
|
400
|
+
- tools/riddlprocess
|
|
401
|
+
- tools/riddlprocess-1_0
|
|
424
402
|
homepage: http://www.wst.univie.ac.at/communities/riddl/
|
|
425
403
|
licenses:
|
|
426
404
|
- LGPL-3
|
|
405
|
+
metadata: {}
|
|
427
406
|
post_install_message:
|
|
428
407
|
rdoc_options: []
|
|
429
408
|
require_paths:
|
|
430
409
|
- lib/ruby
|
|
431
410
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
432
|
-
none: false
|
|
433
411
|
requirements:
|
|
434
|
-
- -
|
|
412
|
+
- - ">="
|
|
435
413
|
- !ruby/object:Gem::Version
|
|
436
414
|
version: 1.9.3
|
|
437
415
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
438
|
-
none: false
|
|
439
416
|
requirements:
|
|
440
|
-
- -
|
|
417
|
+
- - ">="
|
|
441
418
|
- !ruby/object:Gem::Version
|
|
442
419
|
version: '0'
|
|
443
420
|
requirements: []
|
|
444
421
|
rubyforge_project:
|
|
445
|
-
rubygems_version:
|
|
422
|
+
rubygems_version: 2.2.2
|
|
446
423
|
signing_key:
|
|
447
|
-
specification_version:
|
|
448
|
-
summary:
|
|
424
|
+
specification_version: 4
|
|
425
|
+
summary: 'restful interface description and declaration language: tools and client/server
|
|
449
426
|
libs'
|
|
450
427
|
test_files:
|
|
451
428
|
- test/tc_websocket.rb
|
|
452
|
-
- test/tc_declaration-hybrid.rb
|
|
453
|
-
- test/tc_declaration-local.rb
|
|
454
|
-
- test/tc_properties.rb
|
|
455
429
|
- test/tc_library.rb
|
|
456
|
-
- test/tc_declaration-distributed.rb
|
|
457
430
|
- test/tc_producer.rb
|
|
431
|
+
- test/tc_declaration-distributed.rb
|
|
458
432
|
- test/tc_helloworld.rb
|
|
433
|
+
- test/tc_declaration-hybrid.rb
|
|
434
|
+
- test/tc_declaration-local.rb
|
|
435
|
+
- test/tc_properties.rb
|
|
459
436
|
- test/smartrunner.rb
|