fonecal 0.1.0 → 0.3.0

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.
@@ -0,0 +1,111 @@
1
+ require 'fonecal'
2
+
3
+ describe Fonecal::GrandPrix do
4
+ describe "Hungarian GP" do
5
+ subject(:hungarianGP) { Fonecal::GrandPrix.new('http://www.formula1.com/races/in_detail/hungary_926/circuit_diagram.html') }
6
+
7
+ it "should have the correct race title" do
8
+ expect(hungarianGP.raceTitle).to eql "Formula 1 Pirelli Magyar Nagydíj 2014"
9
+ end
10
+
11
+ it "should be in Hungary" do
12
+ expect(hungarianGP.country).to eql "Hungary"
13
+ end
14
+
15
+ it "should be in Budapest" do
16
+ expect(hungarianGP.city).to eql "Budapest"
17
+ end
18
+
19
+ it "should be in the CET timezone" do
20
+ cetTS = Timezone::Zone.new(zone: "CET")
21
+ budapestTS = Timezone::Zone.new(zone: "Europe/Budapest")
22
+
23
+ expect(hungarianGP.timezone.time(Time.now).to_i).to eq cetTS.time(Time.now).to_i
24
+ expect(hungarianGP.timezone.time(Time.now).to_i).to eq budapestTS.time(Time.now).to_i
25
+ end
26
+
27
+ it "should have 5 events" do
28
+ expect(hungarianGP.events.count).to eql 5
29
+ end
30
+
31
+ context "practice 1" do
32
+ subject(:p1) { hungarianGP.events.first }
33
+
34
+ it "should be of type Practice" do
35
+ expect(p1.class).to eql Fonecal::Practice
36
+ end
37
+
38
+ it "should start at 10:00 on friday" do
39
+ expect(p1.start).to eql Time.new(2014, 7, 25, 10, 0, 0, '+02:00')
40
+ end
41
+
42
+ it "should end at 11:30 on friday" do
43
+ expect(p1.end).to eql Time.new(2014, 7, 25, 11, 30, 0, '+02:00')
44
+ end
45
+ end
46
+
47
+ context "practice 2" do
48
+ subject(:p2) { hungarianGP.events[1] }
49
+
50
+ it "should be of type Practice" do
51
+ expect(p2.class).to eql Fonecal::Practice
52
+ end
53
+
54
+ it "should start at 14:00 on friday" do
55
+ expect(p2.start).to eql Time.new(2014, 7, 25, 14, 0, 0, '+02:00')
56
+ end
57
+
58
+ it "should end at 15:30 on friday" do
59
+ expect(p2.end).to eql Time.new(2014, 7, 25, 15, 30, 0, '+02:00')
60
+ end
61
+ end
62
+
63
+ context "practice 3" do
64
+ subject(:p3) { hungarianGP.events[2] }
65
+
66
+ it "should be of type Practice" do
67
+ expect(p3.class).to eql Fonecal::Practice
68
+ end
69
+
70
+ it "should start at 10:00 on saturday" do
71
+ expect(p3.start).to eql Time.new(2014, 7, 26, 11, 0, 0, '+02:00')
72
+ end
73
+
74
+ it "should end at 11:30 on saturday" do
75
+ expect(p3.end).to eql Time.new(2014, 7, 26, 12, 0, 0, '+02:00')
76
+ end
77
+ end
78
+
79
+ context "qualifying" do
80
+ subject(:q) { hungarianGP.events[3] }
81
+
82
+ it "should be of type Practice" do
83
+ expect(q.class).to eql Fonecal::Qualifying
84
+ end
85
+
86
+ it "should start at 14:00 on saturday" do
87
+ expect(q.start).to eql Time.new(2014, 7, 26, 14, 0, 0, '+02:00')
88
+ end
89
+
90
+ it "should end at 15:30 on saturday" do
91
+ expect(q.end).to eql Time.new(2014, 7, 26, 15, 30, 0, '+02:00')
92
+ end
93
+ end
94
+
95
+ context "race" do
96
+ subject(:race) { hungarianGP.events[4] }
97
+
98
+ it "should be of type Practice" do
99
+ expect(race.class).to eql Fonecal::Race
100
+ end
101
+
102
+ it "should start at 14:00 on sunday" do
103
+ expect(race.start).to eql Time.new(2014, 7, 27, 14, 0, 0, '+02:00')
104
+ end
105
+
106
+ it "should end at 18:00 on sunday" do
107
+ expect(race.end).to eql Time.new(2014, 7, 27, 18, 0, 0, '+02:00')
108
+ end
109
+ end
110
+ end
111
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fonecal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
- - Martin Madsen
7
+ - Martin Bjeldbak Madsen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-22 00:00:00.000000000 Z
11
+ date: 2014-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '10.1'
33
+ version: 10.3.2
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '10.1'
40
+ version: 10.3.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -122,9 +122,9 @@ dependencies:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0.6'
125
- description: f1cal generates an iCalendar file for the 2014 Formula 1 season.
125
+ description: fonecal generates an iCalendar file for the 2014 Formula 1 season.
126
126
  email:
127
- - martin2madsen@gmail.com
127
+ - martinbmadsen@gmail.com
128
128
  executables: []
129
129
  extensions: []
130
130
  extra_rdoc_files: []
@@ -135,7 +135,6 @@ files:
135
135
  - LICENSE.txt
136
136
  - README.md
137
137
  - Rakefile
138
- - f1cal.ical
139
138
  - fonecal.gemspec
140
139
  - lib/fonecal.rb
141
140
  - lib/fonecal/calendar.rb
@@ -145,7 +144,6 @@ files:
145
144
  - lib/fonecal/crawler.rb
146
145
  - lib/fonecal/event.rb
147
146
  - lib/fonecal/event_crawler.rb
148
- - lib/fonecal/fonecal_spec.rb
149
147
  - lib/fonecal/grand_prix.rb
150
148
  - lib/fonecal/practice.rb
151
149
  - lib/fonecal/qualifying.rb
@@ -153,11 +151,17 @@ files:
153
151
  - lib/fonecal/session.rb
154
152
  - lib/fonecal/util.rb
155
153
  - lib/fonecal/version.rb
154
+ - spec/abu_dabi_gp_spec.rb
155
+ - spec/australian_gp_spec.rb
156
+ - spec/belgian_gp_spec.rb
157
+ - spec/brazilian_gp_spec.rb
156
158
  - spec/calendar_crawler_spec.rb
159
+ - spec/canadian_gp_spec.rb
157
160
  - spec/event_crawler_spec.rb
158
161
  - spec/event_spec.rb
159
162
  - spec/fonecal_spec.rb
160
163
  - spec/grand_prix_spec.rb
164
+ - spec/hungarian_gp_spec.rb
161
165
  - spec/race_spec.rb
162
166
  - spec/spec_helper.rb
163
167
  - spec/util_test.rb
@@ -187,11 +191,17 @@ specification_version: 4
187
191
  summary: Crawls the Grand Prix list at formula1.com and builds an iCalendar file with
188
192
  events in UTC
189
193
  test_files:
194
+ - spec/abu_dabi_gp_spec.rb
195
+ - spec/australian_gp_spec.rb
196
+ - spec/belgian_gp_spec.rb
197
+ - spec/brazilian_gp_spec.rb
190
198
  - spec/calendar_crawler_spec.rb
199
+ - spec/canadian_gp_spec.rb
191
200
  - spec/event_crawler_spec.rb
192
201
  - spec/event_spec.rb
193
202
  - spec/fonecal_spec.rb
194
203
  - spec/grand_prix_spec.rb
204
+ - spec/hungarian_gp_spec.rb
195
205
  - spec/race_spec.rb
196
206
  - spec/spec_helper.rb
197
207
  - spec/util_test.rb
data/f1cal.ical DELETED
@@ -1,860 +0,0 @@
1
- BEGIN:VCALENDAR
2
- VERSION:2.0
3
- PRODID:-//fonecal//NONSGML v1.0//EN
4
-
5
- BEGIN:VEVENT
6
- SUMMARY:Australia GP: Practice 1
7
- DESCRIPTION:2014 Formula 1 Rolex Australian Grand Prix: Practice 1
8
- DTSTAMP:20140302T142752Z
9
- LOCATION:Melbourne, Australia
10
- DTSTART:20140314T013000Z
11
- DTEND:20140314T030000Z
12
- END:VEVENT
13
-
14
- BEGIN:VEVENT
15
- SUMMARY:Australia GP: Practice 2
16
- DESCRIPTION:2014 Formula 1 Rolex Australian Grand Prix: Practice 2
17
- DTSTAMP:20140302T142752Z
18
- LOCATION:Melbourne, Australia
19
- DTSTART:20140314T053000Z
20
- DTEND:20140314T070000Z
21
- END:VEVENT
22
-
23
- BEGIN:VEVENT
24
- SUMMARY:Australia GP: Practice 3
25
- DESCRIPTION:2014 Formula 1 Rolex Australian Grand Prix: Practice 3
26
- DTSTAMP:20140302T142752Z
27
- LOCATION:Melbourne, Australia
28
- DTSTART:20140315T030000Z
29
- DTEND:20140315T040000Z
30
- END:VEVENT
31
-
32
- BEGIN:VEVENT
33
- SUMMARY:Australia GP: Qualifying
34
- DESCRIPTION:2014 Formula 1 Rolex Australian Grand Prix: Qualifying
35
- DTSTAMP:20140302T142752Z
36
- LOCATION:Melbourne, Australia
37
- DTSTART:20140315T060000Z
38
- DTEND:20140315T100000Z
39
- END:VEVENT
40
-
41
- BEGIN:VEVENT
42
- SUMMARY:Australia GP: Race
43
- DESCRIPTION:2014 Formula 1 Rolex Australian Grand Prix: Race
44
- DTSTAMP:20140302T142752Z
45
- LOCATION:Melbourne, Australia
46
- DTSTART:20140316T060000Z
47
- DTEND:20140316T100000Z
48
- END:VEVENT
49
-
50
- BEGIN:VEVENT
51
- SUMMARY:Malaysia GP: Practice 1
52
- DESCRIPTION:2014 Formula 1 Petronas Malaysia Grand Prix: Practice 1
53
- DTSTAMP:20140302T142752Z
54
- LOCATION:Kuala Lumpur, Malaysia
55
- DTSTART:20140328T020000Z
56
- DTEND:20140328T033000Z
57
- END:VEVENT
58
-
59
- BEGIN:VEVENT
60
- SUMMARY:Malaysia GP: Practice 2
61
- DESCRIPTION:2014 Formula 1 Petronas Malaysia Grand Prix: Practice 2
62
- DTSTAMP:20140302T142752Z
63
- LOCATION:Kuala Lumpur, Malaysia
64
- DTSTART:20140328T060000Z
65
- DTEND:20140328T073000Z
66
- END:VEVENT
67
-
68
- BEGIN:VEVENT
69
- SUMMARY:Malaysia GP: Practice 3
70
- DESCRIPTION:2014 Formula 1 Petronas Malaysia Grand Prix: Practice 3
71
- DTSTAMP:20140302T142752Z
72
- LOCATION:Kuala Lumpur, Malaysia
73
- DTSTART:20140329T050000Z
74
- DTEND:20140329T060000Z
75
- END:VEVENT
76
-
77
- BEGIN:VEVENT
78
- SUMMARY:Malaysia GP: Qualifying
79
- DESCRIPTION:2014 Formula 1 Petronas Malaysia Grand Prix: Qualifying
80
- DTSTAMP:20140302T142752Z
81
- LOCATION:Kuala Lumpur, Malaysia
82
- DTSTART:20140329T080000Z
83
- DTEND:20140329T120000Z
84
- END:VEVENT
85
-
86
- BEGIN:VEVENT
87
- SUMMARY:Malaysia GP: Race
88
- DESCRIPTION:2014 Formula 1 Petronas Malaysia Grand Prix: Race
89
- DTSTAMP:20140302T142752Z
90
- LOCATION:Kuala Lumpur, Malaysia
91
- DTSTART:20140330T080000Z
92
- DTEND:20140330T120000Z
93
- END:VEVENT
94
-
95
- BEGIN:VEVENT
96
- SUMMARY:Bahrain GP: Practice 1
97
- DESCRIPTION:2014 Formula 1 Gulf Air Bahrain Grand Prix: Practice 1
98
- DTSTAMP:20140302T142752Z
99
- LOCATION:Sakhir, Bahrain
100
- DTSTART:20140404T110000Z
101
- DTEND:20140404T123000Z
102
- END:VEVENT
103
-
104
- BEGIN:VEVENT
105
- SUMMARY:Bahrain GP: Practice 2
106
- DESCRIPTION:2014 Formula 1 Gulf Air Bahrain Grand Prix: Practice 2
107
- DTSTAMP:20140302T142752Z
108
- LOCATION:Sakhir, Bahrain
109
- DTSTART:20140404T150000Z
110
- DTEND:20140404T163000Z
111
- END:VEVENT
112
-
113
- BEGIN:VEVENT
114
- SUMMARY:Bahrain GP: Practice 3
115
- DESCRIPTION:2014 Formula 1 Gulf Air Bahrain Grand Prix: Practice 3
116
- DTSTAMP:20140302T142752Z
117
- LOCATION:Sakhir, Bahrain
118
- DTSTART:20140405T120000Z
119
- DTEND:20140405T130000Z
120
- END:VEVENT
121
-
122
- BEGIN:VEVENT
123
- SUMMARY:Bahrain GP: Qualifying
124
- DESCRIPTION:2014 Formula 1 Gulf Air Bahrain Grand Prix: Qualifying
125
- DTSTAMP:20140302T142752Z
126
- LOCATION:Sakhir, Bahrain
127
- DTSTART:20140405T150000Z
128
- DTEND:20140405T190000Z
129
- END:VEVENT
130
-
131
- BEGIN:VEVENT
132
- SUMMARY:Bahrain GP: Race
133
- DESCRIPTION:2014 Formula 1 Gulf Air Bahrain Grand Prix: Race
134
- DTSTAMP:20140302T142752Z
135
- LOCATION:Sakhir, Bahrain
136
- DTSTART:20140406T150000Z
137
- DTEND:20140406T190000Z
138
- END:VEVENT
139
-
140
- BEGIN:VEVENT
141
- SUMMARY:China GP: Practice 1
142
- DESCRIPTION:2014 Formula 1 Ubs Chinese Grand Prix: Practice 1
143
- DTSTAMP:20140302T142752Z
144
- LOCATION:Shanghai, China
145
- DTSTART:20140418T020000Z
146
- DTEND:20140418T033000Z
147
- END:VEVENT
148
-
149
- BEGIN:VEVENT
150
- SUMMARY:China GP: Practice 2
151
- DESCRIPTION:2014 Formula 1 Ubs Chinese Grand Prix: Practice 2
152
- DTSTAMP:20140302T142752Z
153
- LOCATION:Shanghai, China
154
- DTSTART:20140418T060000Z
155
- DTEND:20140418T073000Z
156
- END:VEVENT
157
-
158
- BEGIN:VEVENT
159
- SUMMARY:China GP: Practice 3
160
- DESCRIPTION:2014 Formula 1 Ubs Chinese Grand Prix: Practice 3
161
- DTSTAMP:20140302T142752Z
162
- LOCATION:Shanghai, China
163
- DTSTART:20140419T030000Z
164
- DTEND:20140419T040000Z
165
- END:VEVENT
166
-
167
- BEGIN:VEVENT
168
- SUMMARY:China GP: Qualifying
169
- DESCRIPTION:2014 Formula 1 Ubs Chinese Grand Prix: Qualifying
170
- DTSTAMP:20140302T142752Z
171
- LOCATION:Shanghai, China
172
- DTSTART:20140419T060000Z
173
- DTEND:20140419T100000Z
174
- END:VEVENT
175
-
176
- BEGIN:VEVENT
177
- SUMMARY:China GP: Race
178
- DESCRIPTION:2014 Formula 1 Ubs Chinese Grand Prix: Race
179
- DTSTAMP:20140302T142752Z
180
- LOCATION:Shanghai, China
181
- DTSTART:20140420T070000Z
182
- DTEND:20140420T110000Z
183
- END:VEVENT
184
-
185
- BEGIN:VEVENT
186
- SUMMARY:Spain GP: Practice 1
187
- DESCRIPTION:Formula 1 Gran Premio De Espa A Pirelli 2014: Practice 1
188
- DTSTAMP:20140302T142752Z
189
- LOCATION:Catalunya, Spain
190
- DTSTART:20140509T090000Z
191
- DTEND:20140509T103000Z
192
- END:VEVENT
193
-
194
- BEGIN:VEVENT
195
- SUMMARY:Spain GP: Practice 2
196
- DESCRIPTION:Formula 1 Gran Premio De Espa A Pirelli 2014: Practice 2
197
- DTSTAMP:20140302T142752Z
198
- LOCATION:Catalunya, Spain
199
- DTSTART:20140509T130000Z
200
- DTEND:20140509T143000Z
201
- END:VEVENT
202
-
203
- BEGIN:VEVENT
204
- SUMMARY:Spain GP: Practice 3
205
- DESCRIPTION:Formula 1 Gran Premio De Espa A Pirelli 2014: Practice 3
206
- DTSTAMP:20140302T142752Z
207
- LOCATION:Catalunya, Spain
208
- DTSTART:20140510T100000Z
209
- DTEND:20140510T110000Z
210
- END:VEVENT
211
-
212
- BEGIN:VEVENT
213
- SUMMARY:Spain GP: Qualifying
214
- DESCRIPTION:Formula 1 Gran Premio De Espa A Pirelli 2014: Qualifying
215
- DTSTAMP:20140302T142752Z
216
- LOCATION:Catalunya, Spain
217
- DTSTART:20140510T130000Z
218
- DTEND:20140510T170000Z
219
- END:VEVENT
220
-
221
- BEGIN:VEVENT
222
- SUMMARY:Spain GP: Race
223
- DESCRIPTION:Formula 1 Gran Premio De Espa A Pirelli 2014: Race
224
- DTSTAMP:20140302T142752Z
225
- LOCATION:Catalunya, Spain
226
- DTSTART:20140511T130000Z
227
- DTEND:20140511T170000Z
228
- END:VEVENT
229
-
230
- BEGIN:VEVENT
231
- SUMMARY:Monaco GP: Practice 1
232
- DESCRIPTION:Formula 1 Grand Prix De Monaco 2014: Practice 1
233
- DTSTAMP:20140302T142752Z
234
- LOCATION:Monte Carlo, Monaco
235
- DTSTART:20140522T090000Z
236
- DTEND:20140522T103000Z
237
- END:VEVENT
238
-
239
- BEGIN:VEVENT
240
- SUMMARY:Monaco GP: Practice 2
241
- DESCRIPTION:Formula 1 Grand Prix De Monaco 2014: Practice 2
242
- DTSTAMP:20140302T142752Z
243
- LOCATION:Monte Carlo, Monaco
244
- DTSTART:20140522T130000Z
245
- DTEND:20140522T143000Z
246
- END:VEVENT
247
-
248
- BEGIN:VEVENT
249
- SUMMARY:Monaco GP: Practice 3
250
- DESCRIPTION:Formula 1 Grand Prix De Monaco 2014: Practice 3
251
- DTSTAMP:20140302T142752Z
252
- LOCATION:Monte Carlo, Monaco
253
- DTSTART:20140524T100000Z
254
- DTEND:20140524T110000Z
255
- END:VEVENT
256
-
257
- BEGIN:VEVENT
258
- SUMMARY:Monaco GP: Qualifying
259
- DESCRIPTION:Formula 1 Grand Prix De Monaco 2014: Qualifying
260
- DTSTAMP:20140302T142752Z
261
- LOCATION:Monte Carlo, Monaco
262
- DTSTART:20140524T130000Z
263
- DTEND:20140524T170000Z
264
- END:VEVENT
265
-
266
- BEGIN:VEVENT
267
- SUMMARY:Monaco GP: Race
268
- DESCRIPTION:Formula 1 Grand Prix De Monaco 2014: Race
269
- DTSTAMP:20140302T142752Z
270
- LOCATION:Monte Carlo, Monaco
271
- DTSTART:20140525T130000Z
272
- DTEND:20140525T170000Z
273
- END:VEVENT
274
-
275
- BEGIN:VEVENT
276
- SUMMARY:Canada GP: Practice 1
277
- DESCRIPTION:Formula 1 Grand Prix Du Canada 2014: Practice 1
278
- DTSTAMP:20140302T142752Z
279
- LOCATION:Montr Al, Canada
280
- DTSTART:20140606T100000Z
281
- DTEND:20140606T113000Z
282
- END:VEVENT
283
-
284
- BEGIN:VEVENT
285
- SUMMARY:Canada GP: Practice 2
286
- DESCRIPTION:Formula 1 Grand Prix Du Canada 2014: Practice 2
287
- DTSTAMP:20140302T142752Z
288
- LOCATION:Montr Al, Canada
289
- DTSTART:20140606T140000Z
290
- DTEND:20140606T153000Z
291
- END:VEVENT
292
-
293
- BEGIN:VEVENT
294
- SUMMARY:Canada GP: Practice 3
295
- DESCRIPTION:Formula 1 Grand Prix Du Canada 2014: Practice 3
296
- DTSTAMP:20140302T142752Z
297
- LOCATION:Montr Al, Canada
298
- DTSTART:20140607T100000Z
299
- DTEND:20140607T110000Z
300
- END:VEVENT
301
-
302
- BEGIN:VEVENT
303
- SUMMARY:Canada GP: Qualifying
304
- DESCRIPTION:Formula 1 Grand Prix Du Canada 2014: Qualifying
305
- DTSTAMP:20140302T142752Z
306
- LOCATION:Montr Al, Canada
307
- DTSTART:20140607T130000Z
308
- DTEND:20140607T170000Z
309
- END:VEVENT
310
-
311
- BEGIN:VEVENT
312
- SUMMARY:Canada GP: Race
313
- DESCRIPTION:Formula 1 Grand Prix Du Canada 2014: Race
314
- DTSTAMP:20140302T142752Z
315
- LOCATION:Montr Al, Canada
316
- DTSTART:20140608T140000Z
317
- DTEND:20140608T180000Z
318
- END:VEVENT
319
-
320
- BEGIN:VEVENT
321
- SUMMARY:Austria GP: Practice 1
322
- DESCRIPTION:Formula 1 Grosser Preis Von Sterreich 2014: Practice 1
323
- DTSTAMP:20140302T142752Z
324
- LOCATION:Spielberg, Austria
325
- DTSTART:20140620T090000Z
326
- DTEND:20140620T103000Z
327
- END:VEVENT
328
-
329
- BEGIN:VEVENT
330
- SUMMARY:Austria GP: Practice 2
331
- DESCRIPTION:Formula 1 Grosser Preis Von Sterreich 2014: Practice 2
332
- DTSTAMP:20140302T142752Z
333
- LOCATION:Spielberg, Austria
334
- DTSTART:20140620T130000Z
335
- DTEND:20140620T143000Z
336
- END:VEVENT
337
-
338
- BEGIN:VEVENT
339
- SUMMARY:Austria GP: Practice 3
340
- DESCRIPTION:Formula 1 Grosser Preis Von Sterreich 2014: Practice 3
341
- DTSTAMP:20140302T142752Z
342
- LOCATION:Spielberg, Austria
343
- DTSTART:20140621T100000Z
344
- DTEND:20140621T110000Z
345
- END:VEVENT
346
-
347
- BEGIN:VEVENT
348
- SUMMARY:Austria GP: Qualifying
349
- DESCRIPTION:Formula 1 Grosser Preis Von Sterreich 2014: Qualifying
350
- DTSTAMP:20140302T142752Z
351
- LOCATION:Spielberg, Austria
352
- DTSTART:20140621T130000Z
353
- DTEND:20140621T170000Z
354
- END:VEVENT
355
-
356
- BEGIN:VEVENT
357
- SUMMARY:Austria GP: Race
358
- DESCRIPTION:Formula 1 Grosser Preis Von Sterreich 2014: Race
359
- DTSTAMP:20140302T142752Z
360
- LOCATION:Spielberg, Austria
361
- DTSTART:20140622T130000Z
362
- DTEND:20140622T170000Z
363
- END:VEVENT
364
-
365
- BEGIN:VEVENT
366
- SUMMARY:United Kingdom GP: Practice 1
367
- DESCRIPTION:2014 Formula 1 Santander British Grand Prix: Practice 1
368
- DTSTAMP:20140302T142752Z
369
- LOCATION:Silverstone, United Kingdom
370
- DTSTART:20140704T100000Z
371
- DTEND:20140704T113000Z
372
- END:VEVENT
373
-
374
- BEGIN:VEVENT
375
- SUMMARY:United Kingdom GP: Practice 2
376
- DESCRIPTION:2014 Formula 1 Santander British Grand Prix: Practice 2
377
- DTSTAMP:20140302T142752Z
378
- LOCATION:Silverstone, United Kingdom
379
- DTSTART:20140704T140000Z
380
- DTEND:20140704T153000Z
381
- END:VEVENT
382
-
383
- BEGIN:VEVENT
384
- SUMMARY:United Kingdom GP: Practice 3
385
- DESCRIPTION:2014 Formula 1 Santander British Grand Prix: Practice 3
386
- DTSTAMP:20140302T142752Z
387
- LOCATION:Silverstone, United Kingdom
388
- DTSTART:20140705T100000Z
389
- DTEND:20140705T110000Z
390
- END:VEVENT
391
-
392
- BEGIN:VEVENT
393
- SUMMARY:United Kingdom GP: Qualifying
394
- DESCRIPTION:2014 Formula 1 Santander British Grand Prix: Qualifying
395
- DTSTAMP:20140302T142752Z
396
- LOCATION:Silverstone, United Kingdom
397
- DTSTART:20140705T130000Z
398
- DTEND:20140705T170000Z
399
- END:VEVENT
400
-
401
- BEGIN:VEVENT
402
- SUMMARY:United Kingdom GP: Race
403
- DESCRIPTION:2014 Formula 1 Santander British Grand Prix: Race
404
- DTSTAMP:20140302T142752Z
405
- LOCATION:Silverstone, United Kingdom
406
- DTSTART:20140706T130000Z
407
- DTEND:20140706T170000Z
408
- END:VEVENT
409
-
410
- BEGIN:VEVENT
411
- SUMMARY:Germany GP: Practice 1
412
- DESCRIPTION:Formula 1 Grosser Preis Santander Von Deutschland 2014: Practice 1
413
- DTSTAMP:20140302T142752Z
414
- LOCATION:Hockenheim, Germany
415
- DTSTART:20140718T090000Z
416
- DTEND:20140718T103000Z
417
- END:VEVENT
418
-
419
- BEGIN:VEVENT
420
- SUMMARY:Germany GP: Practice 2
421
- DESCRIPTION:Formula 1 Grosser Preis Santander Von Deutschland 2014: Practice 2
422
- DTSTAMP:20140302T142752Z
423
- LOCATION:Hockenheim, Germany
424
- DTSTART:20140718T130000Z
425
- DTEND:20140718T143000Z
426
- END:VEVENT
427
-
428
- BEGIN:VEVENT
429
- SUMMARY:Germany GP: Practice 3
430
- DESCRIPTION:Formula 1 Grosser Preis Santander Von Deutschland 2014: Practice 3
431
- DTSTAMP:20140302T142752Z
432
- LOCATION:Hockenheim, Germany
433
- DTSTART:20140719T100000Z
434
- DTEND:20140719T110000Z
435
- END:VEVENT
436
-
437
- BEGIN:VEVENT
438
- SUMMARY:Germany GP: Qualifying
439
- DESCRIPTION:Formula 1 Grosser Preis Santander Von Deutschland 2014: Qualifying
440
- DTSTAMP:20140302T142752Z
441
- LOCATION:Hockenheim, Germany
442
- DTSTART:20140719T130000Z
443
- DTEND:20140719T170000Z
444
- END:VEVENT
445
-
446
- BEGIN:VEVENT
447
- SUMMARY:Germany GP: Race
448
- DESCRIPTION:Formula 1 Grosser Preis Santander Von Deutschland 2014: Race
449
- DTSTAMP:20140302T142752Z
450
- LOCATION:Hockenheim, Germany
451
- DTSTART:20140720T130000Z
452
- DTEND:20140720T170000Z
453
- END:VEVENT
454
-
455
- BEGIN:VEVENT
456
- SUMMARY:Hungary GP: Practice 1
457
- DESCRIPTION:Formula 1 Pirelli Magyar Nagyd J 2014: Practice 1
458
- DTSTAMP:20140302T142752Z
459
- LOCATION:Budapest, Hungary
460
- DTSTART:20140725T090000Z
461
- DTEND:20140725T103000Z
462
- END:VEVENT
463
-
464
- BEGIN:VEVENT
465
- SUMMARY:Hungary GP: Practice 2
466
- DESCRIPTION:Formula 1 Pirelli Magyar Nagyd J 2014: Practice 2
467
- DTSTAMP:20140302T142752Z
468
- LOCATION:Budapest, Hungary
469
- DTSTART:20140725T130000Z
470
- DTEND:20140725T143000Z
471
- END:VEVENT
472
-
473
- BEGIN:VEVENT
474
- SUMMARY:Hungary GP: Practice 3
475
- DESCRIPTION:Formula 1 Pirelli Magyar Nagyd J 2014: Practice 3
476
- DTSTAMP:20140302T142752Z
477
- LOCATION:Budapest, Hungary
478
- DTSTART:20140726T100000Z
479
- DTEND:20140726T110000Z
480
- END:VEVENT
481
-
482
- BEGIN:VEVENT
483
- SUMMARY:Hungary GP: Qualifying
484
- DESCRIPTION:Formula 1 Pirelli Magyar Nagyd J 2014: Qualifying
485
- DTSTAMP:20140302T142752Z
486
- LOCATION:Budapest, Hungary
487
- DTSTART:20140726T130000Z
488
- DTEND:20140726T170000Z
489
- END:VEVENT
490
-
491
- BEGIN:VEVENT
492
- SUMMARY:Hungary GP: Race
493
- DESCRIPTION:Formula 1 Pirelli Magyar Nagyd J 2014: Race
494
- DTSTAMP:20140302T142752Z
495
- LOCATION:Budapest, Hungary
496
- DTSTART:20140727T130000Z
497
- DTEND:20140727T170000Z
498
- END:VEVENT
499
-
500
- BEGIN:VEVENT
501
- SUMMARY:Belgium GP: Practice 1
502
- DESCRIPTION:2014 Formula 1 Shell Belgian Grand Prix: Practice 1
503
- DTSTAMP:20140302T142752Z
504
- LOCATION:Spa Francorchamps, Belgium
505
- DTSTART:20140822T090000Z
506
- DTEND:20140822T103000Z
507
- END:VEVENT
508
-
509
- BEGIN:VEVENT
510
- SUMMARY:Belgium GP: Practice 2
511
- DESCRIPTION:2014 Formula 1 Shell Belgian Grand Prix: Practice 2
512
- DTSTAMP:20140302T142752Z
513
- LOCATION:Spa Francorchamps, Belgium
514
- DTSTART:20140822T130000Z
515
- DTEND:20140822T143000Z
516
- END:VEVENT
517
-
518
- BEGIN:VEVENT
519
- SUMMARY:Belgium GP: Practice 3
520
- DESCRIPTION:2014 Formula 1 Shell Belgian Grand Prix: Practice 3
521
- DTSTAMP:20140302T142752Z
522
- LOCATION:Spa Francorchamps, Belgium
523
- DTSTART:20140823T100000Z
524
- DTEND:20140823T110000Z
525
- END:VEVENT
526
-
527
- BEGIN:VEVENT
528
- SUMMARY:Belgium GP: Qualifying
529
- DESCRIPTION:2014 Formula 1 Shell Belgian Grand Prix: Qualifying
530
- DTSTAMP:20140302T142752Z
531
- LOCATION:Spa Francorchamps, Belgium
532
- DTSTART:20140823T130000Z
533
- DTEND:20140823T170000Z
534
- END:VEVENT
535
-
536
- BEGIN:VEVENT
537
- SUMMARY:Belgium GP: Race
538
- DESCRIPTION:2014 Formula 1 Shell Belgian Grand Prix: Race
539
- DTSTAMP:20140302T142752Z
540
- LOCATION:Spa Francorchamps, Belgium
541
- DTSTART:20140824T130000Z
542
- DTEND:20140824T170000Z
543
- END:VEVENT
544
-
545
- BEGIN:VEVENT
546
- SUMMARY:Italy GP: Practice 1
547
- DESCRIPTION:Formula 1 Gran Premio D Italia 2014: Practice 1
548
- DTSTAMP:20140302T142752Z
549
- LOCATION:Monza, Italy
550
- DTSTART:20140905T090000Z
551
- DTEND:20140905T103000Z
552
- END:VEVENT
553
-
554
- BEGIN:VEVENT
555
- SUMMARY:Italy GP: Practice 2
556
- DESCRIPTION:Formula 1 Gran Premio D Italia 2014: Practice 2
557
- DTSTAMP:20140302T142752Z
558
- LOCATION:Monza, Italy
559
- DTSTART:20140905T130000Z
560
- DTEND:20140905T143000Z
561
- END:VEVENT
562
-
563
- BEGIN:VEVENT
564
- SUMMARY:Italy GP: Practice 3
565
- DESCRIPTION:Formula 1 Gran Premio D Italia 2014: Practice 3
566
- DTSTAMP:20140302T142752Z
567
- LOCATION:Monza, Italy
568
- DTSTART:20140906T100000Z
569
- DTEND:20140906T110000Z
570
- END:VEVENT
571
-
572
- BEGIN:VEVENT
573
- SUMMARY:Italy GP: Qualifying
574
- DESCRIPTION:Formula 1 Gran Premio D Italia 2014: Qualifying
575
- DTSTAMP:20140302T142752Z
576
- LOCATION:Monza, Italy
577
- DTSTART:20140906T130000Z
578
- DTEND:20140906T170000Z
579
- END:VEVENT
580
-
581
- BEGIN:VEVENT
582
- SUMMARY:Italy GP: Race
583
- DESCRIPTION:Formula 1 Gran Premio D Italia 2014: Race
584
- DTSTAMP:20140302T142752Z
585
- LOCATION:Monza, Italy
586
- DTSTART:20140907T130000Z
587
- DTEND:20140907T170000Z
588
- END:VEVENT
589
-
590
- BEGIN:VEVENT
591
- SUMMARY:Singapore GP: Practice 1
592
- DESCRIPTION:2014 Formula 1 Singapore Grand Prix: Practice 1
593
- DTSTAMP:20140302T142752Z
594
- LOCATION:Singapore, Singapore
595
- DTSTART:20140919T100000Z
596
- DTEND:20140919T113000Z
597
- END:VEVENT
598
-
599
- BEGIN:VEVENT
600
- SUMMARY:Singapore GP: Practice 2
601
- DESCRIPTION:2014 Formula 1 Singapore Grand Prix: Practice 2
602
- DTSTAMP:20140302T142752Z
603
- LOCATION:Singapore, Singapore
604
- DTSTART:20140919T133000Z
605
- DTEND:20140919T150000Z
606
- END:VEVENT
607
-
608
- BEGIN:VEVENT
609
- SUMMARY:Singapore GP: Practice 3
610
- DESCRIPTION:2014 Formula 1 Singapore Grand Prix: Practice 3
611
- DTSTAMP:20140302T142752Z
612
- LOCATION:Singapore, Singapore
613
- DTSTART:20140920T100000Z
614
- DTEND:20140920T110000Z
615
- END:VEVENT
616
-
617
- BEGIN:VEVENT
618
- SUMMARY:Singapore GP: Qualifying
619
- DESCRIPTION:2014 Formula 1 Singapore Grand Prix: Qualifying
620
- DTSTAMP:20140302T142752Z
621
- LOCATION:Singapore, Singapore
622
- DTSTART:20140920T130000Z
623
- DTEND:20140920T170000Z
624
- END:VEVENT
625
-
626
- BEGIN:VEVENT
627
- SUMMARY:Singapore GP: Race
628
- DESCRIPTION:2014 Formula 1 Singapore Grand Prix: Race
629
- DTSTAMP:20140302T142752Z
630
- LOCATION:Singapore, Singapore
631
- DTSTART:20140921T120000Z
632
- DTEND:20140921T160000Z
633
- END:VEVENT
634
-
635
- BEGIN:VEVENT
636
- SUMMARY:Japan GP: Practice 1
637
- DESCRIPTION:2014 Formula 1 Japanese Grand Prix: Practice 1
638
- DTSTAMP:20140302T142752Z
639
- LOCATION:Suzuka, Japan
640
- DTSTART:20141003T010000Z
641
- DTEND:20141003T023000Z
642
- END:VEVENT
643
-
644
- BEGIN:VEVENT
645
- SUMMARY:Japan GP: Practice 2
646
- DESCRIPTION:2014 Formula 1 Japanese Grand Prix: Practice 2
647
- DTSTAMP:20140302T142752Z
648
- LOCATION:Suzuka, Japan
649
- DTSTART:20141003T050000Z
650
- DTEND:20141003T063000Z
651
- END:VEVENT
652
-
653
- BEGIN:VEVENT
654
- SUMMARY:Japan GP: Practice 3
655
- DESCRIPTION:2014 Formula 1 Japanese Grand Prix: Practice 3
656
- DTSTAMP:20140302T142752Z
657
- LOCATION:Suzuka, Japan
658
- DTSTART:20141004T020000Z
659
- DTEND:20141004T030000Z
660
- END:VEVENT
661
-
662
- BEGIN:VEVENT
663
- SUMMARY:Japan GP: Qualifying
664
- DESCRIPTION:2014 Formula 1 Japanese Grand Prix: Qualifying
665
- DTSTAMP:20140302T142752Z
666
- LOCATION:Suzuka, Japan
667
- DTSTART:20141004T050000Z
668
- DTEND:20141004T090000Z
669
- END:VEVENT
670
-
671
- BEGIN:VEVENT
672
- SUMMARY:Japan GP: Race
673
- DESCRIPTION:2014 Formula 1 Japanese Grand Prix: Race
674
- DTSTAMP:20140302T142752Z
675
- LOCATION:Suzuka, Japan
676
- DTSTART:20141005T060000Z
677
- DTEND:20141005T100000Z
678
- END:VEVENT
679
-
680
- BEGIN:VEVENT
681
- SUMMARY:Russia GP: Practice 1
682
- DESCRIPTION:2014 Formula 1 Russian Grand Prix: Practice 1
683
- DTSTAMP:20140302T142752Z
684
- LOCATION:Sochi, Russia
685
- DTSTART:20141010T060000Z
686
- DTEND:20141010T073000Z
687
- END:VEVENT
688
-
689
- BEGIN:VEVENT
690
- SUMMARY:Russia GP: Practice 2
691
- DESCRIPTION:2014 Formula 1 Russian Grand Prix: Practice 2
692
- DTSTAMP:20140302T142752Z
693
- LOCATION:Sochi, Russia
694
- DTSTART:20141010T100000Z
695
- DTEND:20141010T113000Z
696
- END:VEVENT
697
-
698
- BEGIN:VEVENT
699
- SUMMARY:Russia GP: Practice 3
700
- DESCRIPTION:2014 Formula 1 Russian Grand Prix: Practice 3
701
- DTSTAMP:20140302T142752Z
702
- LOCATION:Sochi, Russia
703
- DTSTART:20141011T080000Z
704
- DTEND:20141011T090000Z
705
- END:VEVENT
706
-
707
- BEGIN:VEVENT
708
- SUMMARY:Russia GP: Qualifying
709
- DESCRIPTION:2014 Formula 1 Russian Grand Prix: Qualifying
710
- DTSTAMP:20140302T142752Z
711
- LOCATION:Sochi, Russia
712
- DTSTART:20141011T110000Z
713
- DTEND:20141011T150000Z
714
- END:VEVENT
715
-
716
- BEGIN:VEVENT
717
- SUMMARY:Russia GP: Race
718
- DESCRIPTION:2014 Formula 1 Russian Grand Prix: Race
719
- DTSTAMP:20140302T142752Z
720
- LOCATION:Sochi, Russia
721
- DTSTART:20141012T110000Z
722
- DTEND:20141012T150000Z
723
- END:VEVENT
724
-
725
- BEGIN:VEVENT
726
- SUMMARY:United States GP: Practice 1
727
- DESCRIPTION:2014 Formula 1 United States Grand Prix: Practice 1
728
- DTSTAMP:20140302T142752Z
729
- LOCATION:Austin, United States
730
- DTSTART:20141031T100000Z
731
- DTEND:20141031T113000Z
732
- END:VEVENT
733
-
734
- BEGIN:VEVENT
735
- SUMMARY:United States GP: Practice 2
736
- DESCRIPTION:2014 Formula 1 United States Grand Prix: Practice 2
737
- DTSTAMP:20140302T142752Z
738
- LOCATION:Austin, United States
739
- DTSTART:20141031T140000Z
740
- DTEND:20141031T153000Z
741
- END:VEVENT
742
-
743
- BEGIN:VEVENT
744
- SUMMARY:United States GP: Practice 3
745
- DESCRIPTION:2014 Formula 1 United States Grand Prix: Practice 3
746
- DTSTAMP:20140302T142752Z
747
- LOCATION:Austin, United States
748
- DTSTART:20141101T100000Z
749
- DTEND:20141101T110000Z
750
- END:VEVENT
751
-
752
- BEGIN:VEVENT
753
- SUMMARY:United States GP: Qualifying
754
- DESCRIPTION:2014 Formula 1 United States Grand Prix: Qualifying
755
- DTSTAMP:20140302T142752Z
756
- LOCATION:Austin, United States
757
- DTSTART:20141101T130000Z
758
- DTEND:20141101T170000Z
759
- END:VEVENT
760
-
761
- BEGIN:VEVENT
762
- SUMMARY:United States GP: Race
763
- DESCRIPTION:2014 Formula 1 United States Grand Prix: Race
764
- DTSTAMP:20140302T142752Z
765
- LOCATION:Austin, United States
766
- DTSTART:20141102T140000Z
767
- DTEND:20141102T180000Z
768
- END:VEVENT
769
-
770
- BEGIN:VEVENT
771
- SUMMARY:Brazil GP: Practice 1
772
- DESCRIPTION:Formula 1 Grande Pr Mio Do Brasil 2014: Practice 1
773
- DTSTAMP:20140302T142752Z
774
- LOCATION:S O Paulo, Brazil
775
- DTSTART:20141107T100000Z
776
- DTEND:20141107T113000Z
777
- END:VEVENT
778
-
779
- BEGIN:VEVENT
780
- SUMMARY:Brazil GP: Practice 2
781
- DESCRIPTION:Formula 1 Grande Pr Mio Do Brasil 2014: Practice 2
782
- DTSTAMP:20140302T142752Z
783
- LOCATION:S O Paulo, Brazil
784
- DTSTART:20141107T140000Z
785
- DTEND:20141107T153000Z
786
- END:VEVENT
787
-
788
- BEGIN:VEVENT
789
- SUMMARY:Brazil GP: Practice 3
790
- DESCRIPTION:Formula 1 Grande Pr Mio Do Brasil 2014: Practice 3
791
- DTSTAMP:20140302T142752Z
792
- LOCATION:S O Paulo, Brazil
793
- DTSTART:20141108T110000Z
794
- DTEND:20141108T120000Z
795
- END:VEVENT
796
-
797
- BEGIN:VEVENT
798
- SUMMARY:Brazil GP: Qualifying
799
- DESCRIPTION:Formula 1 Grande Pr Mio Do Brasil 2014: Qualifying
800
- DTSTAMP:20140302T142752Z
801
- LOCATION:S O Paulo, Brazil
802
- DTSTART:20141108T140000Z
803
- DTEND:20141108T180000Z
804
- END:VEVENT
805
-
806
- BEGIN:VEVENT
807
- SUMMARY:Brazil GP: Race
808
- DESCRIPTION:Formula 1 Grande Pr Mio Do Brasil 2014: Race
809
- DTSTAMP:20140302T142752Z
810
- LOCATION:S O Paulo, Brazil
811
- DTSTART:20141109T140000Z
812
- DTEND:20141109T180000Z
813
- END:VEVENT
814
-
815
- BEGIN:VEVENT
816
- SUMMARY:United Arab Emirates GP: Practice 1
817
- DESCRIPTION:2014 Formula 1 Etihad Airways Abu Dhabi Grand Prix: Practice 1
818
- DTSTAMP:20140302T142752Z
819
- LOCATION:Yas Marina, United Arab Emirates
820
- DTSTART:20141121T090000Z
821
- DTEND:20141121T103000Z
822
- END:VEVENT
823
-
824
- BEGIN:VEVENT
825
- SUMMARY:United Arab Emirates GP: Practice 2
826
- DESCRIPTION:2014 Formula 1 Etihad Airways Abu Dhabi Grand Prix: Practice 2
827
- DTSTAMP:20140302T142752Z
828
- LOCATION:Yas Marina, United Arab Emirates
829
- DTSTART:20141121T130000Z
830
- DTEND:20141121T143000Z
831
- END:VEVENT
832
-
833
- BEGIN:VEVENT
834
- SUMMARY:United Arab Emirates GP: Practice 3
835
- DESCRIPTION:2014 Formula 1 Etihad Airways Abu Dhabi Grand Prix: Practice 3
836
- DTSTAMP:20140302T142752Z
837
- LOCATION:Yas Marina, United Arab Emirates
838
- DTSTART:20141122T100000Z
839
- DTEND:20141122T110000Z
840
- END:VEVENT
841
-
842
- BEGIN:VEVENT
843
- SUMMARY:United Arab Emirates GP: Qualifying
844
- DESCRIPTION:2014 Formula 1 Etihad Airways Abu Dhabi Grand Prix: Qualifying
845
- DTSTAMP:20140302T142752Z
846
- LOCATION:Yas Marina, United Arab Emirates
847
- DTSTART:20141122T130000Z
848
- DTEND:20141122T170000Z
849
- END:VEVENT
850
-
851
- BEGIN:VEVENT
852
- SUMMARY:United Arab Emirates GP: Race
853
- DESCRIPTION:2014 Formula 1 Etihad Airways Abu Dhabi Grand Prix: Race
854
- DTSTAMP:20140302T142752Z
855
- LOCATION:Yas Marina, United Arab Emirates
856
- DTSTART:20141123T130000Z
857
- DTEND:20141123T170000Z
858
- END:VEVENT
859
-
860
- END:VCALENDAR