bbc-programmes 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -0
- data/README.md +11 -0
- data/Rakefile +50 -0
- data/VERSION +1 -0
- data/examples/basic.rb +19 -0
- data/examples/broadcasts.rb +19 -0
- data/examples/search.rb +15 -0
- data/examples/tracklist.rb +20 -0
- data/lib/bbc/programmes/base.rb +46 -0
- data/lib/bbc/programmes/brand.rb +12 -0
- data/lib/bbc/programmes/broadcast.rb +31 -0
- data/lib/bbc/programmes/episode.rb +13 -0
- data/lib/bbc/programmes/programme.rb +33 -0
- data/lib/bbc/programmes/segment.rb +18 -0
- data/lib/bbc/programmes/series.rb +14 -0
- data/lib/bbc/programmes/service.rb +17 -0
- data/lib/bbc/programmes/time_interval.rb +16 -0
- data/lib/bbc/programmes/time_line.rb +10 -0
- data/lib/bbc/programmes/version.rb +51 -0
- data/lib/bbc/programmes.rb +110 -0
- data/lib/rdf/po.rb +17 -0
- data/lib/rdf/time_line.rb +12 -0
- data/spec/bbc-programmes.spec +71 -0
- data/spec/brand.spec +74 -0
- data/spec/broadcast.spec +65 -0
- data/spec/data/b005sv69.rdf +507 -0
- data/spec/data/b00jnwlc.rdf +51 -0
- data/spec/data/b00jnwm0.rdf +128 -0
- data/spec/data/b00jnwnv.rdf +62 -0
- data/spec/data/the_wire.rdf +41 -0
- data/spec/episode.spec +78 -0
- data/spec/series.spec +74 -0
- data/spec/service.spec +34 -0
- data/spec/spec_helper.rb +31 -0
- data/spec/version.spec +90 -0
- metadata +151 -0
data/spec/brand.spec
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
require File.dirname(__FILE__) + "/spec_helper.rb"
|
2
|
+
|
3
|
+
describe BBC::Programmes::Brand do
|
4
|
+
before :each do
|
5
|
+
@repo = RDF::Repository.new
|
6
|
+
Spira.add_repository(:default, @repo)
|
7
|
+
end
|
8
|
+
|
9
|
+
context "fetching a Brand from the website" do
|
10
|
+
before :each do
|
11
|
+
mock_http('www.bbc.co.uk', 'b00jnwlc.rdf')
|
12
|
+
@brand = BBC::Programmes::Brand.fetch('b00jnwlc')
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should have a type URI defined" do
|
16
|
+
@brand.type.should == RDF::URI('http://purl.org/ontology/po/Brand')
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should have a correct URI" do
|
20
|
+
@brand.subject.should == RDF::URI('http://www.bbc.co.uk/programmes/b00jnwlc#programme')
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should have a programme indentifier" do
|
24
|
+
@brand.pid.should == 'b00jnwlc'
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should have the title 'The Wire'" do
|
28
|
+
@brand.title.should == 'The Wire'
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should have a short synopsis" do
|
32
|
+
@brand.short_synopsis.should =~ /^Critically acclaimed American crime drama/
|
33
|
+
end
|
34
|
+
|
35
|
+
it "should have a medium synopsis" do
|
36
|
+
@brand.medium_synopsis.should =~ /^Critically acclaimed American crime drama/
|
37
|
+
end
|
38
|
+
|
39
|
+
it "should have no long synopsis" do
|
40
|
+
@brand.long_synopsis.should be_nil
|
41
|
+
end
|
42
|
+
|
43
|
+
it "should have an image" do
|
44
|
+
@brand.image.should == RDF::URI('http://www.bbc.co.uk/iplayer/images/progbrand/b00jnwlc_512_288.jpg')
|
45
|
+
end
|
46
|
+
|
47
|
+
it "should have a master brand" do
|
48
|
+
@brand.masterbrand.should == RDF::URI('http://www.bbc.co.uk/bbctwo#service')
|
49
|
+
end
|
50
|
+
|
51
|
+
it "should have five series objects" do
|
52
|
+
@brand.series.count.should == 5
|
53
|
+
end
|
54
|
+
|
55
|
+
it "should have series of type Series" do
|
56
|
+
@brand.series.first.should be_a BBC::Programmes::Series
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
context "getting a Brand from the local repository" do
|
61
|
+
before :each do
|
62
|
+
@repo.load(
|
63
|
+
fixture('b00jnwlc.rdf'),
|
64
|
+
:base_uri => 'http://www.bbc.co.uk/programmes/b00jnwlc.rdf'
|
65
|
+
)
|
66
|
+
@brand = BBC::Programmes::Brand.for('b00jnwlc')
|
67
|
+
end
|
68
|
+
|
69
|
+
it "should have the title 'The Wire'" do
|
70
|
+
@brand.title.should == 'The Wire'
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
data/spec/broadcast.spec
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
require File.dirname(__FILE__) + "/spec_helper.rb"
|
2
|
+
|
3
|
+
describe BBC::Programmes::Broadcast do
|
4
|
+
before :each do
|
5
|
+
@repo = RDF::Repository.new
|
6
|
+
Spira.add_repository(:default, @repo)
|
7
|
+
end
|
8
|
+
|
9
|
+
context "getting a Broadcast from the local repository" do
|
10
|
+
before :each do
|
11
|
+
@repo.load(
|
12
|
+
fixture('b005sv69.rdf'),
|
13
|
+
:base_uri => 'http://www.bbc.co.uk/programmes/b005sv69.rdf'
|
14
|
+
)
|
15
|
+
@broadcast = BBC::Programmes::Broadcast.for(
|
16
|
+
RDF::URI('http://www.bbc.co.uk/programmes/b005sv69#p002jmsj')
|
17
|
+
)
|
18
|
+
end
|
19
|
+
|
20
|
+
it "should have a PID property" do
|
21
|
+
@broadcast.pid.should == 'p002jmsj'
|
22
|
+
end
|
23
|
+
|
24
|
+
it "should have a schedule date property" do
|
25
|
+
@broadcast.schedule_date.to_s.should == '2009-03-30'
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should have a broadcast_of property" do
|
29
|
+
@broadcast.broadcast_of.should be_a BBC::Programmes::Version
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should have a 'version' alias property" do
|
33
|
+
@broadcast.version.should be_a BBC::Programmes::Version
|
34
|
+
end
|
35
|
+
|
36
|
+
it "should have a broadcast_on property with a label" do
|
37
|
+
@broadcast.broadcast_on.should be_a BBC::Programmes::Service
|
38
|
+
@broadcast.broadcast_on.label.should == 'Northern Ireland (Analogue)'
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should have a 'service' alias property" do
|
42
|
+
@broadcast.service.should be_a BBC::Programmes::Service
|
43
|
+
end
|
44
|
+
|
45
|
+
it "should have a TimeInterval property" do
|
46
|
+
@broadcast.time.should be_a BBC::Programmes::TimeInterval
|
47
|
+
end
|
48
|
+
|
49
|
+
it "should have an interval start time of 22:20 GMT" do
|
50
|
+
@broadcast.time.start.should == DateTime.parse('2009-03-30T22:20:00Z')
|
51
|
+
end
|
52
|
+
|
53
|
+
it "should have an interval end time of 23:20 GMT" do
|
54
|
+
@broadcast.time.end.should == DateTime.parse('2009-03-30T23:20:00Z')
|
55
|
+
end
|
56
|
+
|
57
|
+
it "should have a porxy method to get the broadcast start time" do
|
58
|
+
@broadcast.start.should == DateTime.parse('2009-03-30T22:20:00Z')
|
59
|
+
end
|
60
|
+
|
61
|
+
it "should have a porxy method to get the broadcast end time" do
|
62
|
+
@broadcast.end.should == DateTime.parse('2009-03-30T23:20:00Z')
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,507 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<rdf:RDF xmlns:rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
3
|
+
xmlns:rdfs = "http://www.w3.org/2000/01/rdf-schema#"
|
4
|
+
xmlns:owl = "http://www.w3.org/2002/07/owl#"
|
5
|
+
xmlns:foaf = "http://xmlns.com/foaf/0.1/"
|
6
|
+
xmlns:po = "http://purl.org/ontology/po/"
|
7
|
+
xmlns:mo = "http://purl.org/ontology/mo/"
|
8
|
+
xmlns:skos = "http://www.w3.org/2008/05/skos#"
|
9
|
+
xmlns:time = "http://www.w3.org/2006/time#"
|
10
|
+
xmlns:dc = "http://purl.org/dc/elements/1.1/"
|
11
|
+
xmlns:dcterms = "http://purl.org/dc/terms/"
|
12
|
+
xmlns:wgs84_pos= "http://www.w3.org/2003/01/geo/wgs84_pos#"
|
13
|
+
xmlns:timeline = "http://purl.org/NET/c4dm/timeline.owl#"
|
14
|
+
xmlns:event = "http://purl.org/NET/c4dm/event.owl#">
|
15
|
+
|
16
|
+
<rdf:Description rdf:about="/programmes/b005sv69.rdf">
|
17
|
+
<rdfs:label>Description of a programme version of The Target</rdfs:label>
|
18
|
+
<dcterms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-23T02:04:49Z</dcterms:created>
|
19
|
+
<dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-23T02:04:49Z</dcterms:modified>
|
20
|
+
<foaf:primaryTopic rdf:resource="/programmes/b005sv69#programme"/>
|
21
|
+
</rdf:Description>
|
22
|
+
|
23
|
+
<po:Version rdf:about="/programmes/b005sv69#programme">
|
24
|
+
|
25
|
+
<rdfs:label>A version of The Target</rdfs:label>
|
26
|
+
<po:aspect_ratio>16:9</po:aspect_ratio>
|
27
|
+
<po:sound_format>Stereo</po:sound_format>
|
28
|
+
<po:duration rdf:datatype="http://www.w3.org/2001/XMLSchema#int">3600</po:duration>
|
29
|
+
<po:pid>b005sv69</po:pid>
|
30
|
+
<po:time>
|
31
|
+
<timeline:Interval>
|
32
|
+
<rdfs:label>Time interval for a version of The Target</rdfs:label>
|
33
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
34
|
+
<timeline:duration rdf:datatype="http://www.w3.org/2001/XMLSchema#duration">PT3600S</timeline:duration>
|
35
|
+
</timeline:Interval>
|
36
|
+
</po:time>
|
37
|
+
|
38
|
+
<po:credit>
|
39
|
+
<po:Credit>
|
40
|
+
<po:role>
|
41
|
+
<po:Character>
|
42
|
+
<foaf:name>Det William Bunk</foaf:name>
|
43
|
+
</po:Character>
|
44
|
+
</po:role>
|
45
|
+
<po:participant>
|
46
|
+
<po:Alias>
|
47
|
+
<rdfs:label>Wendell Pierce</rdfs:label>
|
48
|
+
<foaf:givenName>Wendell</foaf:givenName>
|
49
|
+
<foaf:familyName>Pierce</foaf:familyName>
|
50
|
+
</po:Alias>
|
51
|
+
</po:participant>
|
52
|
+
</po:Credit>
|
53
|
+
</po:credit>
|
54
|
+
<po:credit>
|
55
|
+
<po:Credit>
|
56
|
+
<po:role>
|
57
|
+
<po:Character>
|
58
|
+
<foaf:name>Moreland Bubbles</foaf:name>
|
59
|
+
</po:Character>
|
60
|
+
</po:role>
|
61
|
+
<po:participant>
|
62
|
+
<po:Alias>
|
63
|
+
<rdfs:label>Andre Royo</rdfs:label>
|
64
|
+
<foaf:givenName>Andre</foaf:givenName>
|
65
|
+
<foaf:familyName>Royo</foaf:familyName>
|
66
|
+
</po:Alias>
|
67
|
+
</po:participant>
|
68
|
+
</po:Credit>
|
69
|
+
</po:credit>
|
70
|
+
<po:credit>
|
71
|
+
<po:Credit>
|
72
|
+
<po:role>
|
73
|
+
<po:Character>
|
74
|
+
<foaf:name>Lt Cedric Daniels</foaf:name>
|
75
|
+
</po:Character>
|
76
|
+
</po:role>
|
77
|
+
<po:participant>
|
78
|
+
<po:Alias>
|
79
|
+
<rdfs:label>Lance Reddick</rdfs:label>
|
80
|
+
<foaf:givenName>Lance</foaf:givenName>
|
81
|
+
<foaf:familyName>Reddick</foaf:familyName>
|
82
|
+
</po:Alias>
|
83
|
+
</po:participant>
|
84
|
+
</po:Credit>
|
85
|
+
</po:credit>
|
86
|
+
<po:credit>
|
87
|
+
<po:Credit>
|
88
|
+
<po:role>
|
89
|
+
<po:Character>
|
90
|
+
<foaf:name>Det James 'Jimmy' McNulty</foaf:name>
|
91
|
+
</po:Character>
|
92
|
+
</po:role>
|
93
|
+
<po:participant>
|
94
|
+
<po:Alias>
|
95
|
+
<rdfs:label>Dominic West</rdfs:label>
|
96
|
+
<foaf:givenName>Dominic</foaf:givenName>
|
97
|
+
<foaf:familyName>West</foaf:familyName>
|
98
|
+
</po:Alias>
|
99
|
+
</po:participant>
|
100
|
+
</po:Credit>
|
101
|
+
</po:credit>
|
102
|
+
<po:credit>
|
103
|
+
<po:Credit>
|
104
|
+
<po:role>
|
105
|
+
<po:Character>
|
106
|
+
<foaf:name>Avon Barksdale</foaf:name>
|
107
|
+
</po:Character>
|
108
|
+
</po:role>
|
109
|
+
<po:participant>
|
110
|
+
<po:Alias>
|
111
|
+
<rdfs:label>Wood Harris</rdfs:label>
|
112
|
+
<foaf:givenName>Wood</foaf:givenName>
|
113
|
+
<foaf:familyName>Harris</foaf:familyName>
|
114
|
+
</po:Alias>
|
115
|
+
</po:participant>
|
116
|
+
</po:Credit>
|
117
|
+
</po:credit>
|
118
|
+
<po:credit>
|
119
|
+
<po:Credit>
|
120
|
+
<po:role>
|
121
|
+
<po:Character>
|
122
|
+
<foaf:name>Asst State Attorney Rhonda Pearlman</foaf:name>
|
123
|
+
</po:Character>
|
124
|
+
</po:role>
|
125
|
+
<po:participant>
|
126
|
+
<po:Alias>
|
127
|
+
<rdfs:label>Deirdre Lovejoy</rdfs:label>
|
128
|
+
<foaf:givenName>Deirdre</foaf:givenName>
|
129
|
+
<foaf:familyName>Lovejoy</foaf:familyName>
|
130
|
+
</po:Alias>
|
131
|
+
</po:participant>
|
132
|
+
</po:Credit>
|
133
|
+
</po:credit>
|
134
|
+
<po:credit>
|
135
|
+
<po:Credit>
|
136
|
+
<po:role>
|
137
|
+
<po:Character>
|
138
|
+
<foaf:name>Russell 'Stringer' Bell</foaf:name>
|
139
|
+
</po:Character>
|
140
|
+
</po:role>
|
141
|
+
<po:participant>
|
142
|
+
<po:Alias>
|
143
|
+
<rdfs:label>Idris Elba</rdfs:label>
|
144
|
+
<foaf:givenName>Idris</foaf:givenName>
|
145
|
+
<foaf:familyName>Elba</foaf:familyName>
|
146
|
+
</po:Alias>
|
147
|
+
</po:participant>
|
148
|
+
</po:Credit>
|
149
|
+
</po:credit>
|
150
|
+
<po:credit>
|
151
|
+
<po:Credit>
|
152
|
+
<po:role>
|
153
|
+
<po:Character>
|
154
|
+
<foaf:name>Det Shakima 'Kima' Greggs</foaf:name>
|
155
|
+
</po:Character>
|
156
|
+
</po:role>
|
157
|
+
<po:participant>
|
158
|
+
<po:Alias>
|
159
|
+
<rdfs:label>Sonja Sohn</rdfs:label>
|
160
|
+
<foaf:givenName>Sonja</foaf:givenName>
|
161
|
+
<foaf:familyName>Sohn</foaf:familyName>
|
162
|
+
</po:Alias>
|
163
|
+
</po:participant>
|
164
|
+
</po:Credit>
|
165
|
+
</po:credit>
|
166
|
+
<po:credit>
|
167
|
+
<po:Credit>
|
168
|
+
<po:role>
|
169
|
+
<po:Character>
|
170
|
+
<foaf:name>Maj William A Rawls</foaf:name>
|
171
|
+
</po:Character>
|
172
|
+
</po:role>
|
173
|
+
<po:participant>
|
174
|
+
<po:Alias>
|
175
|
+
<rdfs:label>John Doman</rdfs:label>
|
176
|
+
<foaf:givenName>John</foaf:givenName>
|
177
|
+
<foaf:familyName>Doman</foaf:familyName>
|
178
|
+
</po:Alias>
|
179
|
+
</po:participant>
|
180
|
+
</po:Credit>
|
181
|
+
</po:credit>
|
182
|
+
<po:credit>
|
183
|
+
<po:Credit>
|
184
|
+
<po:role>
|
185
|
+
<po:Character>
|
186
|
+
<foaf:name>D'Angelo Barksdale</foaf:name>
|
187
|
+
</po:Character>
|
188
|
+
</po:role>
|
189
|
+
<po:participant>
|
190
|
+
<po:Alias>
|
191
|
+
<rdfs:label>Larry Gilliard Jr.</rdfs:label>
|
192
|
+
<foaf:givenName>Larry</foaf:givenName>
|
193
|
+
<foaf:familyName>Gilliard Jr.</foaf:familyName>
|
194
|
+
</po:Alias>
|
195
|
+
</po:participant>
|
196
|
+
</po:Credit>
|
197
|
+
</po:credit>
|
198
|
+
<po:credit>
|
199
|
+
<po:Credit>
|
200
|
+
<po:role>
|
201
|
+
<po:Character>
|
202
|
+
<foaf:name>Deputy Comm Ervin H Burrell</foaf:name>
|
203
|
+
</po:Character>
|
204
|
+
</po:role>
|
205
|
+
<po:participant>
|
206
|
+
<po:Alias>
|
207
|
+
<rdfs:label>Frankie Faison</rdfs:label>
|
208
|
+
<foaf:givenName>Frankie</foaf:givenName>
|
209
|
+
<foaf:familyName>Faison</foaf:familyName>
|
210
|
+
</po:Alias>
|
211
|
+
</po:participant>
|
212
|
+
</po:Credit>
|
213
|
+
</po:credit>
|
214
|
+
<po:credit>
|
215
|
+
<po:Credit>
|
216
|
+
<po:role>
|
217
|
+
<po:Character>
|
218
|
+
<foaf:name>Det Ellis Carver</foaf:name>
|
219
|
+
</po:Character>
|
220
|
+
</po:role>
|
221
|
+
<po:participant>
|
222
|
+
<po:Alias>
|
223
|
+
<rdfs:label>Seth Gilliam</rdfs:label>
|
224
|
+
<foaf:givenName>Seth</foaf:givenName>
|
225
|
+
<foaf:familyName>Gilliam</foaf:familyName>
|
226
|
+
</po:Alias>
|
227
|
+
</po:participant>
|
228
|
+
</po:Credit>
|
229
|
+
</po:credit>
|
230
|
+
<po:credit>
|
231
|
+
<po:Credit>
|
232
|
+
<po:role>
|
233
|
+
<po:Role>
|
234
|
+
<rdfs:label>Director</rdfs:label>
|
235
|
+
<dc:title>Director</dc:title>
|
236
|
+
<dc:description>A supervisor; generally refers to the person responsible for all audience-visible components of a program, film, or show, whereas the producer is responsible for the financial and other behind-the-scenes aspects. A director's duties might also include casting, script editing, shot selection, shot composition, and editing</dc:description>
|
237
|
+
</po:Role>
|
238
|
+
</po:role>
|
239
|
+
<po:participant>
|
240
|
+
<po:Alias>
|
241
|
+
<rdfs:label>Clark Johnson</rdfs:label>
|
242
|
+
<foaf:givenName>Clark</foaf:givenName>
|
243
|
+
<foaf:familyName>Johnson</foaf:familyName>
|
244
|
+
</po:Alias>
|
245
|
+
</po:participant>
|
246
|
+
</po:Credit>
|
247
|
+
</po:credit>
|
248
|
+
<po:credit>
|
249
|
+
<po:Credit>
|
250
|
+
<po:role>
|
251
|
+
<po:Role>
|
252
|
+
<rdfs:label>Writer</rdfs:label>
|
253
|
+
<dc:title>Writer</dc:title>
|
254
|
+
<dc:description>A person who writes scripts for plays or movies or broadcast dramas</dc:description>
|
255
|
+
</po:Role>
|
256
|
+
</po:role>
|
257
|
+
<po:participant>
|
258
|
+
<po:Alias>
|
259
|
+
<rdfs:label>David Simon</rdfs:label>
|
260
|
+
<foaf:givenName>David</foaf:givenName>
|
261
|
+
<foaf:familyName>Simon</foaf:familyName>
|
262
|
+
</po:Alias>
|
263
|
+
</po:participant>
|
264
|
+
</po:Credit>
|
265
|
+
</po:credit>
|
266
|
+
<po:credit>
|
267
|
+
<po:Credit>
|
268
|
+
<po:role>
|
269
|
+
<po:Role>
|
270
|
+
<rdfs:label>Writer</rdfs:label>
|
271
|
+
<dc:title>Writer</dc:title>
|
272
|
+
<dc:description>A person who writes scripts for plays or movies or broadcast dramas</dc:description>
|
273
|
+
</po:Role>
|
274
|
+
</po:role>
|
275
|
+
<po:participant>
|
276
|
+
<po:Alias>
|
277
|
+
<rdfs:label>Ed Burns</rdfs:label>
|
278
|
+
<foaf:givenName>Ed</foaf:givenName>
|
279
|
+
<foaf:familyName>Burns</foaf:familyName>
|
280
|
+
</po:Alias>
|
281
|
+
</po:participant>
|
282
|
+
</po:Credit>
|
283
|
+
</po:credit>
|
284
|
+
|
285
|
+
</po:Version>
|
286
|
+
|
287
|
+
<po:Episode rdf:about="/programmes/b00jnwnv#programme">
|
288
|
+
<rdfs:label>The Target</rdfs:label>
|
289
|
+
<po:version rdf:resource="/programmes/b005sv69#programme" />
|
290
|
+
</po:Episode>
|
291
|
+
|
292
|
+
<timeline:TimeLine rdf:about="/programmes/b005sv69#timeline">
|
293
|
+
<rdfs:label>Timeline of a version of The Target</rdfs:label>
|
294
|
+
</timeline:TimeLine>
|
295
|
+
|
296
|
+
<po:Broadcast rdf:about="/programmes/b005sv69#p002jmsj">
|
297
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/FirstBroadcast"/>
|
298
|
+
<po:pid>p002jmsj</po:pid>
|
299
|
+
<po:schedule_date rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-03-30</po:schedule_date>
|
300
|
+
<event:time>
|
301
|
+
<timeline:Interval>
|
302
|
+
<timeline:start rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-30T23:20:00+01:00</timeline:start>
|
303
|
+
<timeline:end rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-31T00:20:00+01:00</timeline:end>
|
304
|
+
</timeline:Interval>
|
305
|
+
</event:time>
|
306
|
+
<po:broadcast_on>
|
307
|
+
<po:Service rdf:about="/services/bbctwo/ni_analogue#service">
|
308
|
+
<rdfs:label>Northern Ireland (Analogue)</rdfs:label>
|
309
|
+
<po:parent_service rdf:resource="/services/bbctwo#service"/>
|
310
|
+
</po:Service>
|
311
|
+
</po:broadcast_on>
|
312
|
+
<po:broadcast_of rdf:resource="/programmes/b005sv69#programme" />
|
313
|
+
</po:Broadcast>
|
314
|
+
<po:Broadcast rdf:about="/programmes/b005sv69#p002jn5y">
|
315
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/FirstBroadcast"/>
|
316
|
+
<po:pid>p002jn5y</po:pid>
|
317
|
+
<po:schedule_date rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-03-30</po:schedule_date>
|
318
|
+
<event:time>
|
319
|
+
<timeline:Interval>
|
320
|
+
<timeline:start rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-30T23:20:00+01:00</timeline:start>
|
321
|
+
<timeline:end rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-31T00:20:00+01:00</timeline:end>
|
322
|
+
</timeline:Interval>
|
323
|
+
</event:time>
|
324
|
+
<po:broadcast_on>
|
325
|
+
<po:Service rdf:about="/services/bbctwo/wales_analogue#service">
|
326
|
+
<rdfs:label>Wales (Analogue)</rdfs:label>
|
327
|
+
<po:parent_service rdf:resource="/services/bbctwo#service"/>
|
328
|
+
</po:Service>
|
329
|
+
</po:broadcast_on>
|
330
|
+
<po:broadcast_of rdf:resource="/programmes/b005sv69#programme" />
|
331
|
+
</po:Broadcast>
|
332
|
+
<po:Broadcast rdf:about="/programmes/b005sv69#p002jq47">
|
333
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/FirstBroadcast"/>
|
334
|
+
<po:pid>p002jq47</po:pid>
|
335
|
+
<po:schedule_date rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-03-30</po:schedule_date>
|
336
|
+
<event:time>
|
337
|
+
<timeline:Interval>
|
338
|
+
<timeline:start rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-30T23:20:00+01:00</timeline:start>
|
339
|
+
<timeline:end rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-31T00:20:00+01:00</timeline:end>
|
340
|
+
</timeline:Interval>
|
341
|
+
</event:time>
|
342
|
+
<po:broadcast_on>
|
343
|
+
<po:Service rdf:about="/services/bbctwo/scotland#service">
|
344
|
+
<rdfs:label>Scotland</rdfs:label>
|
345
|
+
<po:parent_service rdf:resource="/services/bbctwo#service"/>
|
346
|
+
</po:Service>
|
347
|
+
</po:broadcast_on>
|
348
|
+
<po:broadcast_of rdf:resource="/programmes/b005sv69#programme" />
|
349
|
+
</po:Broadcast>
|
350
|
+
<po:Broadcast rdf:about="/programmes/b005sv69#p002jq5w">
|
351
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/FirstBroadcast"/>
|
352
|
+
<po:pid>p002jq5w</po:pid>
|
353
|
+
<po:schedule_date rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-03-30</po:schedule_date>
|
354
|
+
<event:time>
|
355
|
+
<timeline:Interval>
|
356
|
+
<timeline:start rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-30T23:20:00+01:00</timeline:start>
|
357
|
+
<timeline:end rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-31T00:20:00+01:00</timeline:end>
|
358
|
+
</timeline:Interval>
|
359
|
+
</event:time>
|
360
|
+
<po:broadcast_on>
|
361
|
+
<po:Service rdf:about="/services/bbctwo/ni#service">
|
362
|
+
<rdfs:label>Northern Ireland</rdfs:label>
|
363
|
+
<po:parent_service rdf:resource="/services/bbctwo#service"/>
|
364
|
+
</po:Service>
|
365
|
+
</po:broadcast_on>
|
366
|
+
<po:broadcast_of rdf:resource="/programmes/b005sv69#programme" />
|
367
|
+
</po:Broadcast>
|
368
|
+
<po:Broadcast rdf:about="/programmes/b005sv69#p002jq7j">
|
369
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/FirstBroadcast"/>
|
370
|
+
<po:pid>p002jq7j</po:pid>
|
371
|
+
<po:schedule_date rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-03-30</po:schedule_date>
|
372
|
+
<event:time>
|
373
|
+
<timeline:Interval>
|
374
|
+
<timeline:start rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-30T23:20:00+01:00</timeline:start>
|
375
|
+
<timeline:end rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-31T00:20:00+01:00</timeline:end>
|
376
|
+
</timeline:Interval>
|
377
|
+
</event:time>
|
378
|
+
<po:broadcast_on>
|
379
|
+
<po:Service rdf:about="/services/bbctwo/wales#service">
|
380
|
+
<rdfs:label>Wales</rdfs:label>
|
381
|
+
<po:parent_service rdf:resource="/services/bbctwo#service"/>
|
382
|
+
</po:Service>
|
383
|
+
</po:broadcast_on>
|
384
|
+
<po:broadcast_of rdf:resource="/programmes/b005sv69#programme" />
|
385
|
+
</po:Broadcast>
|
386
|
+
<po:Broadcast rdf:about="/programmes/b005sv69#p002jq89">
|
387
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/FirstBroadcast"/>
|
388
|
+
<po:pid>p002jq89</po:pid>
|
389
|
+
<po:schedule_date rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2009-03-30</po:schedule_date>
|
390
|
+
<event:time>
|
391
|
+
<timeline:Interval>
|
392
|
+
<timeline:start rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-30T23:20:00+01:00</timeline:start>
|
393
|
+
<timeline:end rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2009-03-31T00:20:00+01:00</timeline:end>
|
394
|
+
</timeline:Interval>
|
395
|
+
</event:time>
|
396
|
+
<po:broadcast_on>
|
397
|
+
<po:Service rdf:about="/services/bbctwo/england#service">
|
398
|
+
<rdfs:label>England</rdfs:label>
|
399
|
+
<po:parent_service rdf:resource="/services/bbctwo#service"/>
|
400
|
+
</po:Service>
|
401
|
+
</po:broadcast_on>
|
402
|
+
<po:broadcast_of rdf:resource="/programmes/b005sv69#programme" />
|
403
|
+
</po:Broadcast>
|
404
|
+
|
405
|
+
|
406
|
+
<po:Segment rdf:about="/programmes/p002y5hl#segment">
|
407
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/MusicSegment"/>
|
408
|
+
<rdfs:label>Tom Waits - Way Down in the Hole</rdfs:label>
|
409
|
+
<po:time>
|
410
|
+
<timeline:Interval rdf:about="/programmes/b005sv69#p002y5hm">
|
411
|
+
|
412
|
+
<po:position>1</po:position>
|
413
|
+
<rdfs:label>Soundtrack</rdfs:label>
|
414
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
415
|
+
</timeline:Interval>
|
416
|
+
</po:time>
|
417
|
+
</po:Segment>
|
418
|
+
<po:Segment rdf:about="/programmes/p002y6r5#segment">
|
419
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/MusicSegment"/>
|
420
|
+
<rdfs:label>Jay-Z - Izzo (H.O.V.A)</rdfs:label>
|
421
|
+
<po:time>
|
422
|
+
<timeline:Interval rdf:about="/programmes/b005sv69#p002y6r6">
|
423
|
+
|
424
|
+
<po:position>2</po:position>
|
425
|
+
<rdfs:label>Time interval for Jay-Z - Izzo (H.O.V.A)</rdfs:label>
|
426
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
427
|
+
</timeline:Interval>
|
428
|
+
</po:time>
|
429
|
+
</po:Segment>
|
430
|
+
<po:Segment rdf:about="/programmes/p002y5hs#segment">
|
431
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/MusicSegment"/>
|
432
|
+
<rdfs:label>Bill Withers - Use Me</rdfs:label>
|
433
|
+
<po:time>
|
434
|
+
<timeline:Interval rdf:about="/programmes/b005sv69#p002y5ht">
|
435
|
+
|
436
|
+
<po:position>3</po:position>
|
437
|
+
<rdfs:label>Time interval for Bill Withers - Use Me</rdfs:label>
|
438
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
439
|
+
</timeline:Interval>
|
440
|
+
</po:time>
|
441
|
+
</po:Segment>
|
442
|
+
<po:Segment rdf:about="/programmes/p002y5j4#segment">
|
443
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/MusicSegment"/>
|
444
|
+
<rdfs:label>2Pac - Death Around the Corner</rdfs:label>
|
445
|
+
<po:time>
|
446
|
+
<timeline:Interval rdf:about="/programmes/b005sv69#p002y5j5">
|
447
|
+
|
448
|
+
<po:position>4</po:position>
|
449
|
+
<rdfs:label>Time interval for 2Pac - Death Around the Corner</rdfs:label>
|
450
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
451
|
+
</timeline:Interval>
|
452
|
+
</po:time>
|
453
|
+
</po:Segment>
|
454
|
+
<po:Segment rdf:about="/programmes/p002y5yg#segment">
|
455
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/MusicSegment"/>
|
456
|
+
<rdfs:label>Tompall Glaser & The Glaser Brothers - Streets of Baltimore</rdfs:label>
|
457
|
+
<po:time>
|
458
|
+
<timeline:Interval rdf:about="/programmes/b005sv69#p002y5yq">
|
459
|
+
|
460
|
+
<po:position>5</po:position>
|
461
|
+
<rdfs:label>Time interval for Tompall Glaser & The Glaser Brothers - Streets of Baltimore</rdfs:label>
|
462
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
463
|
+
</timeline:Interval>
|
464
|
+
</po:time>
|
465
|
+
</po:Segment>
|
466
|
+
<po:Segment rdf:about="/programmes/p002y5pg#segment">
|
467
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/MusicSegment"/>
|
468
|
+
<rdfs:label>Grace Jones - Pull Up to the Bumper</rdfs:label>
|
469
|
+
<po:time>
|
470
|
+
<timeline:Interval rdf:about="/programmes/b005sv69#p002y5ph">
|
471
|
+
|
472
|
+
<po:position>6</po:position>
|
473
|
+
<rdfs:label>Time interval for Grace Jones - Pull Up to the Bumper</rdfs:label>
|
474
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
475
|
+
</timeline:Interval>
|
476
|
+
</po:time>
|
477
|
+
</po:Segment>
|
478
|
+
<po:Segment rdf:about="/programmes/p002y6k7#segment">
|
479
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/MusicSegment"/>
|
480
|
+
<rdfs:label>Frédéric Chopin - Etude op.3 in E Major</rdfs:label>
|
481
|
+
<po:time>
|
482
|
+
<timeline:Interval rdf:about="/programmes/b005sv69#p002y6k8">
|
483
|
+
|
484
|
+
<po:position>7</po:position>
|
485
|
+
<rdfs:label>Time interval for Frédéric Chopin - Etude op.3 in E Major</rdfs:label>
|
486
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
487
|
+
</timeline:Interval>
|
488
|
+
</po:time>
|
489
|
+
</po:Segment>
|
490
|
+
<po:Segment rdf:about="/programmes/p002y6kh#segment">
|
491
|
+
<rdf:type rdf:resource="http://purl.org/ontology/po/MusicSegment"/>
|
492
|
+
<rdfs:label>Blake Leyh - The Fall</rdfs:label>
|
493
|
+
<po:time>
|
494
|
+
<timeline:Interval rdf:about="/programmes/b005sv69#p002y6kj">
|
495
|
+
|
496
|
+
<po:position>8</po:position>
|
497
|
+
<rdfs:label>Time interval for Blake Leyh - The Fall</rdfs:label>
|
498
|
+
<timeline:timeline rdf:resource="/programmes/b005sv69#timeline"/>
|
499
|
+
</timeline:Interval>
|
500
|
+
</po:time>
|
501
|
+
</po:Segment>
|
502
|
+
|
503
|
+
|
504
|
+
|
505
|
+
|
506
|
+
|
507
|
+
</rdf:RDF>
|