eventify 1.5.0 → 2.0.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.
- checksums.yaml +5 -5
- data/.gitignore +0 -0
- data/.ruby-version +1 -1
- data/.travis.yml +0 -1
- data/Gemfile +14 -14
- data/Guardfile +0 -0
- data/LICENSE +1 -1
- data/README.md +2 -2
- data/Rakefile +0 -0
- data/eventify.gemspec +2 -2
- data/lib/eventify.rb +4 -4
- data/lib/eventify/configuration.rb +0 -0
- data/lib/eventify/database.rb +0 -0
- data/lib/eventify/mail.rb +0 -0
- data/lib/eventify/provider/apollo_kino.rb +21 -0
- data/lib/eventify/provider/base.rb +55 -55
- data/lib/eventify/provider/livenation.rb +21 -0
- data/lib/eventify/provider/piletilevi.rb +1 -1
- data/lib/eventify/version.rb +1 -1
- data/spec/eventify/configuration_spec.rb +51 -51
- data/spec/eventify/database_spec.rb +9 -9
- data/spec/eventify/mail_spec.rb +33 -33
- data/spec/eventify/provider/apollo_kino_spec.rb +25 -0
- data/spec/eventify/provider/base_spec.rb +145 -145
- data/spec/eventify/provider/livenation_spec.rb +25 -0
- data/spec/eventify/provider/piletilevi_spec.rb +46 -46
- data/spec/eventify_spec.rb +155 -155
- data/spec/spec_helper.rb +7 -0
- data/spec/support/apollo_kino.html +1021 -0
- data/spec/support/livenation.html +1444 -0
- data/spec/support/piletilevi.json +0 -0
- metadata +21 -23
- data/lib/eventify/provider/fbi.rb +0 -17
- data/lib/eventify/provider/solaris_kino.rb +0 -30
- data/spec/eventify/provider/fbi_spec.rb +0 -25
- data/spec/eventify/provider/solaris_kino_spec.rb +0 -31
- data/spec/support/fbi.html +0 -802
- data/spec/support/solaris_kino.html +0 -542
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eventify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jarmo Pertman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: simple-rss
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: nokogiri
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 1.11.0
|
34
34
|
type: :runtime
|
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:
|
40
|
+
version: 1.11.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: sqlite3
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -56,16 +56,16 @@ dependencies:
|
|
56
56
|
name: mail
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 2.7.0.rc1
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 2.7.0.rc1
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: faraday
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,23 +170,23 @@ files:
|
|
170
170
|
- lib/eventify/configuration.rb
|
171
171
|
- lib/eventify/database.rb
|
172
172
|
- lib/eventify/mail.rb
|
173
|
+
- lib/eventify/provider/apollo_kino.rb
|
173
174
|
- lib/eventify/provider/base.rb
|
174
|
-
- lib/eventify/provider/
|
175
|
+
- lib/eventify/provider/livenation.rb
|
175
176
|
- lib/eventify/provider/piletilevi.rb
|
176
|
-
- lib/eventify/provider/solaris_kino.rb
|
177
177
|
- lib/eventify/version.rb
|
178
178
|
- spec/eventify/configuration_spec.rb
|
179
179
|
- spec/eventify/database_spec.rb
|
180
180
|
- spec/eventify/mail_spec.rb
|
181
|
+
- spec/eventify/provider/apollo_kino_spec.rb
|
181
182
|
- spec/eventify/provider/base_spec.rb
|
182
|
-
- spec/eventify/provider/
|
183
|
+
- spec/eventify/provider/livenation_spec.rb
|
183
184
|
- spec/eventify/provider/piletilevi_spec.rb
|
184
|
-
- spec/eventify/provider/solaris_kino_spec.rb
|
185
185
|
- spec/eventify_spec.rb
|
186
186
|
- spec/spec_helper.rb
|
187
|
-
- spec/support/
|
187
|
+
- spec/support/apollo_kino.html
|
188
|
+
- spec/support/livenation.html
|
188
189
|
- spec/support/piletilevi.json
|
189
|
-
- spec/support/solaris_kino.html
|
190
190
|
homepage: https://github.com/jarmo/eventify
|
191
191
|
licenses:
|
192
192
|
- MIT
|
@@ -206,8 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
206
|
- !ruby/object:Gem::Version
|
207
207
|
version: '0'
|
208
208
|
requirements: []
|
209
|
-
|
210
|
-
rubygems_version: 2.5.1
|
209
|
+
rubygems_version: 3.0.3
|
211
210
|
signing_key:
|
212
211
|
specification_version: 4
|
213
212
|
summary: Get notifications about upcoming events from different providers/organizers.
|
@@ -215,13 +214,12 @@ test_files:
|
|
215
214
|
- spec/eventify/configuration_spec.rb
|
216
215
|
- spec/eventify/database_spec.rb
|
217
216
|
- spec/eventify/mail_spec.rb
|
217
|
+
- spec/eventify/provider/apollo_kino_spec.rb
|
218
218
|
- spec/eventify/provider/base_spec.rb
|
219
|
-
- spec/eventify/provider/
|
219
|
+
- spec/eventify/provider/livenation_spec.rb
|
220
220
|
- spec/eventify/provider/piletilevi_spec.rb
|
221
|
-
- spec/eventify/provider/solaris_kino_spec.rb
|
222
221
|
- spec/eventify_spec.rb
|
223
222
|
- spec/spec_helper.rb
|
224
|
-
- spec/support/
|
223
|
+
- spec/support/apollo_kino.html
|
224
|
+
- spec/support/livenation.html
|
225
225
|
- spec/support/piletilevi.json
|
226
|
-
- spec/support/solaris_kino.html
|
227
|
-
has_rdoc:
|
@@ -1,17 +0,0 @@
|
|
1
|
-
require "open-uri"
|
2
|
-
require "nokogiri"
|
3
|
-
|
4
|
-
module Eventify::Provider
|
5
|
-
class FBI < Base
|
6
|
-
URL = "http://www.fbi.ee/"
|
7
|
-
|
8
|
-
class << self
|
9
|
-
def fetch
|
10
|
-
doc = Nokogiri::HTML(open(URL))
|
11
|
-
doc.search(".article-list li h2 a").map do |a|
|
12
|
-
new id: a["href"], title: a.content, link: a["href"], date: Time.now
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
require "open-uri"
|
2
|
-
require "nokogiri"
|
3
|
-
|
4
|
-
module Eventify::Provider
|
5
|
-
class SolarisKino < Base
|
6
|
-
URL = "http://solariskino.ee/"
|
7
|
-
|
8
|
-
class << self
|
9
|
-
def fetch
|
10
|
-
doc = Nokogiri::HTML(open(URI.join(URL, "et/tulemas/")))
|
11
|
-
poster_movie = movie doc.at(".info")
|
12
|
-
|
13
|
-
other_movies = doc.search(".item").map do |div|
|
14
|
-
movie div
|
15
|
-
end
|
16
|
-
|
17
|
-
[poster_movie].concat other_movies
|
18
|
-
end
|
19
|
-
|
20
|
-
private
|
21
|
-
|
22
|
-
def movie(node)
|
23
|
-
link = node.at("h2 a")
|
24
|
-
title = "#{link.content}/#{node.at(".original-title").content}"
|
25
|
-
|
26
|
-
new id: title, title: title, link: URI.join(URL, link["href"]).to_s, date: Time.now
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Eventify::Provider::FBI do
|
4
|
-
context "#fetch" do
|
5
|
-
it "fetches events" do
|
6
|
-
stub_request(:get, Eventify::Provider::FBI::URL).to_return(body: File.read(File.expand_path("../../support/fbi.html", __dir__)))
|
7
|
-
|
8
|
-
events = Eventify::Provider::FBI.fetch
|
9
|
-
events.should == [
|
10
|
-
Eventify::Provider::FBI.new(
|
11
|
-
title: "BONOBO Tallinna kontsert on välja müüdud",
|
12
|
-
link: "http://www.fbi.ee/bonobo-tallinna-kontsert-on-valja-muudud/",
|
13
|
-
date: Time.now,
|
14
|
-
id: "http://www.fbi.ee/bonobo-tallinna-kontsert-on-valja-muudud/"
|
15
|
-
),
|
16
|
-
Eventify::Provider::FBI.new(
|
17
|
-
title: "Rokilegend ROBERT PLANT esineb oma bändiga Tallinnas",
|
18
|
-
link: "http://www.fbi.ee/rokilegend-robert-plant-esineb-oma-bandiga-tallinnas/",
|
19
|
-
date: Time.now,
|
20
|
-
id: "http://www.fbi.ee/rokilegend-robert-plant-esineb-oma-bandiga-tallinnas/"
|
21
|
-
)
|
22
|
-
]
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
@@ -1,31 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe Eventify::Provider::SolarisKino do
|
4
|
-
context "#fetch" do
|
5
|
-
it "fetches events" do
|
6
|
-
stub_request(:get, URI.join(Eventify::Provider::SolarisKino::URL, "et/tulemas/").to_s).to_return(body: File.read(File.expand_path("../../support/solaris_kino.html", __dir__)))
|
7
|
-
|
8
|
-
events = Eventify::Provider::SolarisKino.fetch
|
9
|
-
events.should == [
|
10
|
-
Eventify::Provider::SolarisKino.new(
|
11
|
-
title: "Tuul tõuseb/Kaze Tachinu (2014)",
|
12
|
-
link: "http://solariskino.ee/et/kinokavad/tuul-touseb/",
|
13
|
-
date: Time.now,
|
14
|
-
id: "Tuul tõuseb/Kaze Tachinu (2014)"
|
15
|
-
),
|
16
|
-
Eventify::Provider::SolarisKino.new(
|
17
|
-
title: "Kiki kullerteenus/Majo no Takkyuubin (2014)",
|
18
|
-
link: "http://solariskino.ee/et/kinokavad/kiki-kullerteenus/",
|
19
|
-
date: Time.now,
|
20
|
-
id: "Kiki kullerteenus/Majo no Takkyuubin (2014)"
|
21
|
-
),
|
22
|
-
Eventify::Provider::SolarisKino.new(
|
23
|
-
title: "Kättemaks kõrgetel kontsadel/The Other Woman (2014)",
|
24
|
-
link: "http://solariskino.ee/et/kinokavad/kattemaks-korgetel-kontsadel/",
|
25
|
-
date: Time.now,
|
26
|
-
id: "Kättemaks kõrgetel kontsadel/The Other Woman (2014)"
|
27
|
-
)
|
28
|
-
]
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
data/spec/support/fbi.html
DELETED
@@ -1,802 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" dir="ltr" lang="et">
|
3
|
-
|
4
|
-
<head>
|
5
|
-
|
6
|
-
<meta charset="UTF-8" />
|
7
|
-
|
8
|
-
<title>FBI | First Baltic International</title>
|
9
|
-
|
10
|
-
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Droid+Sans:regular,italic,bold,bolditalic" type="text/css">
|
11
|
-
<link rel="stylesheet" href="http://www.fbi.ee/wp-content/themes/FBI/media/css/carte-blanche.css" type="text/css" />
|
12
|
-
<link rel="stylesheet" href="http://www.fbi.ee/wp-content/themes/FBI/style.css" type="text/css" />
|
13
|
-
<link rel="stylesheet" href="http://www.fbi.ee/wp-content/themes/FBI/media/js/fancybox/jquery.fancybox-1.3.1.css" />
|
14
|
-
|
15
|
-
<link rel="apple-touch-icon" href="http://www.fbi.ee/wp-content/themes/FBI/media/gfx/ios_icon-precomposed.png"/>
|
16
|
-
|
17
|
-
|
18
|
-
<meta property="og:image" content="http://www.fbi.ee/wp-content/themes/FBI/media/gfx/fbi_fb.jpg" />
|
19
|
-
<meta property="fb:page_id" content="159246876395" />
|
20
|
-
|
21
|
-
<!--[if IE]>
|
22
|
-
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
23
|
-
<![endif]-->
|
24
|
-
|
25
|
-
<script type="text/javascript">
|
26
|
-
|
27
|
-
var _gaq = _gaq || [];
|
28
|
-
_gaq.push(['_setAccount', 'UA-18972597-1']);
|
29
|
-
_gaq.push(['_trackPageview']);
|
30
|
-
|
31
|
-
(function() {
|
32
|
-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
33
|
-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
34
|
-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
35
|
-
})();
|
36
|
-
|
37
|
-
</script>
|
38
|
-
|
39
|
-
<link rel='stylesheet' id='contact-form-7-css' href='http://www.fbi.ee/wp-content/plugins/contact-form-7/styles.css?ver=2.4.6' type='text/css' media='all' />
|
40
|
-
<script type='text/javascript' src='http://www.fbi.ee/wp-includes/js/jquery/jquery.js?ver=1.4.2'></script>
|
41
|
-
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/et?ver=0.4'></script>
|
42
|
-
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.fbi.ee/xmlrpc.php?rsd" />
|
43
|
-
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.fbi.ee/wp-includes/wlwmanifest.xml" />
|
44
|
-
<link rel='index' title='FBI' href='http://www.fbi.ee/' />
|
45
|
-
<link rel='prev' title='Uudised' href='http://www.fbi.ee/uudised/' />
|
46
|
-
<link rel='next' title='�ritused' href='http://www.fbi.ee/uritused/' />
|
47
|
-
<meta name="generator" content="WordPress 3.0.1" />
|
48
|
-
<link rel='canonical' href='http://www.fbi.ee/' />
|
49
|
-
<meta property="og:type" content="article" />
|
50
|
-
<meta property="og:title" content="FBI" />
|
51
|
-
<meta name="title" content="FBI" />
|
52
|
-
<meta name="description" content="" />
|
53
|
-
<meta name="medium" content="blog" />
|
54
|
-
<meta property='fb:app_id' content='154445477913680' />
|
55
|
-
<meta property="og:site_name" content="FBI" />
|
56
|
-
<meta property='og:url' content='http://www.fbi.ee/' />
|
57
|
-
|
58
|
-
</head>
|
59
|
-
|
60
|
-
<body id="front-page">
|
61
|
-
|
62
|
-
|
63
|
-
<header id="header" style="background-image: url(http://www.fbi.ee/wp-content/uploads/kodo_bg.jpg);">
|
64
|
-
|
65
|
-
<div class="container" style="background-image: url(http://www.fbi.ee/wp-content/uploads/kodo_960.jpg);">
|
66
|
-
|
67
|
-
<a href="/" id="logo" class="ir">
|
68
|
-
|
69
|
-
<h1>FBI</h1>
|
70
|
-
|
71
|
-
</a>
|
72
|
-
|
73
|
-
<div id="nav-container">
|
74
|
-
|
75
|
-
<a href="/maailmakuulsa-jaapani-ansambli-kodo-suurejooneline-taiko-trummide-etendus-nokia-kontserdimajas" id="promo"></a>
|
76
|
-
|
77
|
-
<nav id="nav">
|
78
|
-
|
79
|
-
<div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-11" class="menu-item menu-item-type-post_type menu-item-11"><a href="http://www.fbi.ee/uudised/">Uudised</a></li>
|
80
|
-
<li id="menu-item-29" class="menu-item menu-item-type-post_type menu-item-29"><a href="http://www.fbi.ee/uritused/">�ritused</a></li>
|
81
|
-
<li id="menu-item-3615" class="menu-item menu-item-type-taxonomy menu-item-3615"><a href="http://www.fbi.ee/category/press/">Press</a></li>
|
82
|
-
<li id="menu-item-26" class="menu-item menu-item-type-post_type menu-item-26"><a href="http://www.fbi.ee/pildid/">Pildigaleriid</a></li>
|
83
|
-
<li id="menu-item-27" class="menu-item menu-item-type-post_type menu-item-27"><a href="http://www.fbi.ee/piletiinfo/">Piletiinfo</a></li>
|
84
|
-
<li id="menu-item-28" class="menu-item menu-item-type-post_type menu-item-28"><a href="http://www.fbi.ee/kontserdikulastaja-meelespea/">Meelespea</a></li>
|
85
|
-
<li id="menu-item-25" class="menu-item menu-item-type-post_type menu-item-25"><a href="http://www.fbi.ee/kontakt/">Kontakt</a></li>
|
86
|
-
<li id="menu-item-429" class="menu-item menu-item-type-custom menu-item-429"><a href="http://www.fbi.lv">FBI.lv</a></li>
|
87
|
-
</ul></div>
|
88
|
-
<div id="concert-club">
|
89
|
-
|
90
|
-
<ul>
|
91
|
-
<li class="ir"><a href="/concert-club">Concert Club</a></li>
|
92
|
-
</ul>
|
93
|
-
|
94
|
-
<div id="concert-club-menu" style="display: none;">
|
95
|
-
|
96
|
-
|
97
|
-
<ul>
|
98
|
-
<li><a href="http://www.fbi.ee/wp-login.php?action=logout&redirect_to=http%3A%2F%2Fwww.fbi.ee%2F&_wpnonce=d14cdcf145">V�lju</a></li>
|
99
|
-
</ul>
|
100
|
-
|
101
|
-
|
102
|
-
</div>
|
103
|
-
|
104
|
-
</div>
|
105
|
-
|
106
|
-
</nav>
|
107
|
-
|
108
|
-
</div>
|
109
|
-
|
110
|
-
</div>
|
111
|
-
|
112
|
-
</header>
|
113
|
-
|
114
|
-
<div id="header-companion">
|
115
|
-
<a href="/" id="logo-companion"></a>
|
116
|
-
<ul id="social-links">
|
117
|
-
<li class="facebook ir"><a href="http://www.facebook.com/pages/FBI-ConcertClub/159246876395" target="_blank">FBI Facebook'is</a></li>
|
118
|
-
<li class="instagram ir"><a href="http://instagram.com/fbiconcertclub" target="_blank">FBI Instagram'is</a></li>
|
119
|
-
<!-- <li class="twitter ir"><a href="https://twitter.com/FBIConcertClub" target="_blank">FBI Twitter'is</a></li>
|
120
|
-
<li class="youtube ir"><a href="http://www.youtube.com/user/fbiconcertclub" target="_blank">FBI Youtube'is</a></li>
|
121
|
-
-->
|
122
|
-
</ul>
|
123
|
-
</div>
|
124
|
-
|
125
|
-
<div style="clear: both;"></div>
|
126
|
-
|
127
|
-
<section id="content" class="clearfix">
|
128
|
-
<div class="container clearfix">
|
129
|
-
<section id="body">
|
130
|
-
|
131
|
-
<section id="posters">
|
132
|
-
|
133
|
-
<div class="container">
|
134
|
-
|
135
|
-
<ul class="clearfix">
|
136
|
-
|
137
|
-
<li>
|
138
|
-
<a href="http://www.fbi.ee/jaaetendus-disney-on-ice-viib-eesti-lapsed-ja-nende-vanemad-seiklusele-disney-muinasjutulisse-maailmasse/">
|
139
|
-
<span>DISNEY ON ICE</br>
|
140
|
-
7. - 9. veebruaril</br>
|
141
|
-
Saku Suurhaliis</span>
|
142
|
-
<img src="http://www.fbi.ee/wp-content/uploads/disney_fposter.jpg" width="208" height="260" title="" alt="" />
|
143
|
-
</a>
|
144
|
-
</li>
|
145
|
-
<li>
|
146
|
-
<a href="http://www.fbi.ee/elektroonilise-muusika-suurnimi-bonobo-esineb-tallinnas/">
|
147
|
-
<span>BONOBO</br>
|
148
|
-
18. veebruaril</br>
|
149
|
-
Rock Caf�s</span>
|
150
|
-
<img src="http://www.fbi.ee/wp-content/uploads/bonobo_fposter2.jpg" width="208" height="260" title="" alt="" />
|
151
|
-
</a>
|
152
|
-
</li>
|
153
|
-
<li>
|
154
|
-
<a href="http://www.fbi.ee/koomik-ja-naitleja-russell-brand-esineb-ulemaailmse-stand-up-komoodiatuuri-raames-tallinnas/">
|
155
|
-
<span>RUSSELL BRAND</br>
|
156
|
-
21. veebruaril</br>
|
157
|
-
Nokia Kontserdimajas</span>
|
158
|
-
<img src="http://www.fbi.ee/wp-content/uploads/russell_fposter.jpg" width="208" height="260" title="" alt="" />
|
159
|
-
</a>
|
160
|
-
</li>
|
161
|
-
<li>
|
162
|
-
<a href="http://www.fbi.ee/kultusband-depeche-mode-annab-riias-baltikumi-ainsa-sisekontserdi/">
|
163
|
-
<span>DEPECHE MODE</br>
|
164
|
-
2. m�rtsil</br>
|
165
|
-
Riias, Ar�na R�gal</span>
|
166
|
-
<img src="http://www.fbi.ee/wp-content/uploads/dm_fposterlv.jpg" width="208" height="260" title="" alt="" />
|
167
|
-
</a>
|
168
|
-
</li>
|
169
|
-
<li>
|
170
|
-
<a href="http://www.fbi.ee/maailmakuulsa-jaapani-ansambli-kodo-suurejooneline-taiko-trummide-etendus-nokia-kontserdimajas/">
|
171
|
-
<span>KOD�</br>
|
172
|
-
24. m�rtsil</br>
|
173
|
-
Nokia Kontserdimajas</span>
|
174
|
-
<img src="http://www.fbi.ee/wp-content/uploads/kodo_fposter.jpg" width="208" height="260" title="" alt="" />
|
175
|
-
</a>
|
176
|
-
</li>
|
177
|
-
<li>
|
178
|
-
<a href="http://www.fbi.ee/katie-melua-esineb-esmakordselt-eestis-akustilise-kontsediga/">
|
179
|
-
<span>KATIE MELUA</br>
|
180
|
-
25. m�rtsil</br>
|
181
|
-
Nokia Kontserdimajas</span>
|
182
|
-
<img src="http://www.fbi.ee/wp-content/uploads/katie_fposter.jpg" width="208" height="260" title="" alt="" />
|
183
|
-
</a>
|
184
|
-
</li>
|
185
|
-
<li>
|
186
|
-
<a href="http://www.fbi.ee/gogol-bordello-tuleb-martsis-esimest-korda-eestisse/">
|
187
|
-
<span>GOGOL BORDELLO</br>
|
188
|
-
26. m�rtsil</br>
|
189
|
-
Rock Caf�s</span>
|
190
|
-
<img src="http://www.fbi.ee/wp-content/uploads/gogol_fposter.jpg" width="208" height="260" title="" alt="" />
|
191
|
-
</a>
|
192
|
-
</li>
|
193
|
-
<li>
|
194
|
-
<a href="http://www.fbi.ee/peter-gabriel-tahistab-riias-oma-edukaima-sooloalbumi-ilmumise-25-aastapaeva/">
|
195
|
-
<span>PETER GABRIEL</br>
|
196
|
-
17. mail</br>
|
197
|
-
Riias, Arena Rigal</span>
|
198
|
-
<img src="http://www.fbi.ee/wp-content/uploads/gabriel_fposter.jpg" width="208" height="260" title="" alt="" />
|
199
|
-
</a>
|
200
|
-
</li>
|
201
|
-
<li>
|
202
|
-
<a href="http://www.fbi.ee/rokilegend-robert-plant-esineb-oma-bandiga-tallinnas/">
|
203
|
-
<span>ROBERT PLANT</br>
|
204
|
-
16. juunil</br>
|
205
|
-
Saku Suurhallis</span>
|
206
|
-
<img src="http://www.fbi.ee/wp-content/uploads/plant_fposter.jpg" width="208" height="260" title="" alt="" />
|
207
|
-
</a>
|
208
|
-
</li>
|
209
|
-
<li>
|
210
|
-
<a href="http://www.fbi.ee/liiti-fbi-concertclubiga-juba-tana/">
|
211
|
-
<span>Liitu FBI CONCERT CLUBiga juba t�na. TASUTA!</br>
|
212
|
-
Meil on �le 50 000 liikme!</span>
|
213
|
-
<img src="http://www.fbi.ee/wp-content/uploads/fbi_club.jpg" width="208" height="260" title="" alt="" />
|
214
|
-
</a>
|
215
|
-
</li>
|
216
|
-
</ul>
|
217
|
-
|
218
|
-
</div>
|
219
|
-
|
220
|
-
</section>
|
221
|
-
|
222
|
-
<section id="news">
|
223
|
-
|
224
|
-
<div class="container">
|
225
|
-
|
226
|
-
<ul class="article-list">
|
227
|
-
<li>
|
228
|
-
<article class="clearfix">
|
229
|
-
<div class="date">detsember 27, 2013</div>
|
230
|
-
|
231
|
-
<a href="http://www.fbi.ee/bonobo-tallinna-kontsert-on-valja-muudud/"><img src="http://www.fbi.ee/wp-content/uploads/bonobo_news2.jpg" title="" alt="" /></a>
|
232
|
-
|
233
|
-
<h2><a href="http://www.fbi.ee/bonobo-tallinna-kontsert-on-valja-muudud/" title="BONOBO Tallinna kontsert on v�lja m��dud" rel="bookmark">BONOBO Tallinna kontsert on v�lja m��dud</a></h2>
|
234
|
-
|
235
|
-
<div class="excerpt">
|
236
|
-
<p>18. veebruaril Rock Caf�s esineva elektroonilise muusika suurnime BONOBO kontsert on v�lja m��dud. Pileteid kontserdile m��s vaid Ticketpro. Live Nation Baltics peapromootori Eva Palmi s�nul annab nii kiire l�bim��giga �ritus [...]</p>
|
237
|
-
</div>
|
238
|
-
|
239
|
-
</article>
|
240
|
-
</li>
|
241
|
-
<li>
|
242
|
-
<article class="clearfix">
|
243
|
-
<div class="date">detsember 18, 2013</div>
|
244
|
-
|
245
|
-
<a href="http://www.fbi.ee/rokilegend-robert-plant-esineb-oma-bandiga-tallinnas/"><img src="http://www.fbi.ee/wp-content/uploads/plant_news1.jpg" title="" alt="" /></a>
|
246
|
-
|
247
|
-
<h2><a href="http://www.fbi.ee/rokilegend-robert-plant-esineb-oma-bandiga-tallinnas/" title="Rokilegend ROBERT PLANT esineb oma b�ndiga Tallinnas" rel="bookmark">Rokilegend ROBERT PLANT esineb oma b�ndiga Tallinnas</a></h2>
|
248
|
-
|
249
|
-
<div class="excerpt">
|
250
|
-
<p>16. juunil esineb Saku Suurhallis Inglise muusik ja laulja, legendaarse rokkansambli Led Zeppelin juhtfiguur Robert Plant. Tallinnas astub Plant lavale oma uue b�ndiga Sensational Space Shifters, esitades lugusid nii soolokarj��ri [...]</p>
|
251
|
-
</div>
|
252
|
-
|
253
|
-
</article>
|
254
|
-
</li>
|
255
|
-
</ul>
|
256
|
-
|
257
|
-
<div class="archive">
|
258
|
-
<a href="/uudised">K�ik uudised</a>
|
259
|
-
</div>
|
260
|
-
|
261
|
-
</div>
|
262
|
-
|
263
|
-
</section>
|
264
|
-
|
265
|
-
</section>
|
266
|
-
|
267
|
-
<section id="sidebar">
|
268
|
-
|
269
|
-
|
270
|
-
<section id="events">
|
271
|
-
|
272
|
-
<a href="/uritused" class="title ir">
|
273
|
-
<h2>�ritused</h2>
|
274
|
-
</a>
|
275
|
-
|
276
|
-
<div id="events-scroll-up" class="scroll-up"><a href="#"></a></div>
|
277
|
-
|
278
|
-
<div id="events-scroll-container" class="container">
|
279
|
-
|
280
|
-
<ul>
|
281
|
-
</ul>
|
282
|
-
|
283
|
-
<h3>2014</h3>
|
284
|
-
<ul>
|
285
|
-
<li class="upcoming"><a href="/uritused/robert-plant">Robert Plant</a></li>
|
286
|
-
<li class="upcoming"><a href="/uritused/peter-gabriel">Peter Gabriel</a></li>
|
287
|
-
<li class="upcoming"><a href="/uritused/gogol-bordello">Gogol Bordello</a></li>
|
288
|
-
<li class="upcoming"><a href="/uritused/katie-melua">Katie Melua *V�LJA M��DUD*</a></li>
|
289
|
-
<li class="upcoming"><a href="/uritused/kodo">Kod�</a></li>
|
290
|
-
<li class="upcoming"><a href="/uritused/depeche-mode-2">Depeche Mode *V�LJA M��DUD*</a></li>
|
291
|
-
<li class="upcoming"><a href="/uritused/russell-brand">Russell Brand</a></li>
|
292
|
-
<li class="upcoming"><a href="/uritused/bonobo">Bonobo *V�LJA M��DUD*</a></li>
|
293
|
-
<li class="upcoming"><a href="/uritused/disney-on-ice-fantaasiamaailmad">Disney On Ice - Fantaasiamaailmad</a></li>
|
294
|
-
</ul>
|
295
|
-
|
296
|
-
<h3>2013</h3>
|
297
|
-
<ul>
|
298
|
-
<li class="past"><a href="/uritused/elton-john-2">Sir Elton John</a></li>
|
299
|
-
<li class="past"><a href="/uritused/zappa-plays-zappa">Zappa Plays Zappa</a></li>
|
300
|
-
<li class="past"><a href="/uritused/orquesta-buena-vista-social-club-2">Orquesta Buena Vista Social Club</a></li>
|
301
|
-
<li class="past"><a href="/uritused/suzanne-vega">Suzanne Vega</a></li>
|
302
|
-
<li class="past"><a href="/uritused/robert-lepage-far-side-of-the-moon">Robert Lepage's Far Side of the Moon</a></li>
|
303
|
-
<li class="past"><a href="/uritused/robbie-williams">Robbie Williams</a></li>
|
304
|
-
<li class="past"><a href="/uritused/depeche-mode">Depeche Mode</a></li>
|
305
|
-
<li class="past"><a href="/uritused/lana-del-rey">Lana Del Rey</a></li>
|
306
|
-
<li class="past"><a href="/uritused/eric-clapton">Eric Clapton</a></li>
|
307
|
-
<li class="past"><a href="/uritused/rock-the-ballet">Rock the Ballet</a></li>
|
308
|
-
<li class="past"><a href="/uritused/killswitch-engage-2">Killswitch Engage</a></li>
|
309
|
-
<li class="past"><a href="/uritused/cirque-du-soleil-alegria">Cirque du Soleil - Alegria</a></li>
|
310
|
-
<li class="past"><a href="/uritused/funeral-for-a-friend">Funeral For A Friend</a></li>
|
311
|
-
<li class="past"><a href="/uritused/gregorian">Gregorian</a></li>
|
312
|
-
<li class="past"><a href="/uritused/stone">Stone</a></li>
|
313
|
-
<li class="past"><a href="/uritused/lee-ritenour">Lee Ritenour</a></li>
|
314
|
-
</ul>
|
315
|
-
|
316
|
-
<h3>2012</h3>
|
317
|
-
<ul>
|
318
|
-
<li class="past"><a href="/uritused/muse">Muse</a></li>
|
319
|
-
<li class="past"><a href="/uritused/katatonia">Katatonia / Junius / Alcest</a></li>
|
320
|
-
<li class="past"><a href="/uritused/steve-vai">Steve Vai</a></li>
|
321
|
-
<li class="past"><a href="/uritused/russian-chamber-philharmonic">Dmitri Berlinsky</a></li>
|
322
|
-
<li class="past"><a href="/uritused/lady-gaga">Lady Gaga</a></li>
|
323
|
-
<li class="past"><a href="/uritused/red-hot-chili-peppers">Red Hot Chili Peppers</a></li>
|
324
|
-
<li class="past"><a href="/uritused/sting">Sting</a></li>
|
325
|
-
<li class="past"><a href="/uritused/bryan-adams-2">Bryan Adams</a></li>
|
326
|
-
<li class="past"><a href="/uritused/megadeth">Megadeth</a></li>
|
327
|
-
<li class="past"><a href="/uritused/mastodon">Mastodon</a></li>
|
328
|
-
<li class="past"><a href="/uritused/michael-buble">Michael Bubl�</a></li>
|
329
|
-
<li class="past"><a href="/uritused/zucchero">Zucchero</a></li>
|
330
|
-
<li class="past"><a href="/uritused/mustasch">Mustasch</a></li>
|
331
|
-
<li class="past"><a href="/uritused/rammstein">Rammstein</a></li>
|
332
|
-
</ul>
|
333
|
-
|
334
|
-
<h3>2011</h3>
|
335
|
-
<ul>
|
336
|
-
<li class="past"><a href="/uritused/cirque-du-soleil">Cirque du Soleil - Saltimbanco</a></li>
|
337
|
-
<li class="past"><a href="/uritused/elton-john">Sir Elton John</a></li>
|
338
|
-
<li class="past"><a href="/uritused/30-seconds-to-mars">Thirty Seconds to Mars</a></li>
|
339
|
-
<li class="past"><a href="/uritused/sade">Sade</a></li>
|
340
|
-
<li class="past"><a href="/uritused/kaiser-chiefs">Kaiser Chiefs</a></li>
|
341
|
-
<li class="past"><a href="/uritused/ian-anderson">Ian Anderson</a></li>
|
342
|
-
<li class="past"><a href="/uritused/deftones">Deftones</a></li>
|
343
|
-
<li class="past"><a href="/uritused/ariel-pinks-haunted-graffiti">Ariel Pink's Haunted Graffiti</a></li>
|
344
|
-
<li class="past"><a href="/uritused/roxette-2010">Roxette</a></li>
|
345
|
-
<li class="past"><a href="/uritused/jamiroquai">Jamiroquai</a></li>
|
346
|
-
<li class="past"><a href="/uritused/kylie-minogue">Kylie Minogue</a></li>
|
347
|
-
</ul>
|
348
|
-
|
349
|
-
<h3>2010</h3>
|
350
|
-
<ul>
|
351
|
-
<li class="past"><a href="/uritused/helloween">Helloween</a></li>
|
352
|
-
<li class="past"><a href="/uritused/herbie-hancock">Herbie Hancock</a></li>
|
353
|
-
<li class="past"><a href="/uritused/annihilator">Annihilator</a></li>
|
354
|
-
<li class="past"><a href="/uritused/marcus-miller">Marcus Miller</a></li>
|
355
|
-
<li class="past"><a href="/uritused/sting-2010">Sting</a></li>
|
356
|
-
<li class="past"><a href="/uritused/orquesta-buena-vista-social-club">Orquesta Buena Vista Social Club</a></li>
|
357
|
-
<li class="past"><a href="/uritused/rein-kuld">Suur ooperi�htu - Reini Kuld</a></li>
|
358
|
-
<li class="past"><a href="/uritused/haaremiroov">Suur ooperi�htu - Haaremir��v</a></li>
|
359
|
-
<li class="past"><a href="/uritused/duke-ellington-orchestra">Duke Ellington Orchestra</a></li>
|
360
|
-
<li class="past"><a href="/uritused/metallica-2010">Metallica</a></li>
|
361
|
-
<li class="past"><a href="/uritused/la-boheme">Suur ooperi�htu - La Boh�me</a></li>
|
362
|
-
<li class="past"><a href="/uritused/leonardo-da-vinci-leiutised">Leonardo da Vinci leiutised</a></li>
|
363
|
-
<li class="past"><a href="/uritused/eesti-laul-2010">Eesti Laul 2010</a></li>
|
364
|
-
<li class="past"><a href="/uritused/alexander-rybak">Alexander Rybak</a></li>
|
365
|
-
<li class="past"><a href="/uritused/rammstein-2010">Rammstein</a></li>
|
366
|
-
<li class="past"><a href="/uritused/suur-ooperiohtu-othello">Suur ooperi�htu - Othello</a></li>
|
367
|
-
<li class="past"><a href="/uritused/suur-ooperiohtu-traviata">Suur ooperi�htu - La Traviata</a></li>
|
368
|
-
</ul>
|
369
|
-
|
370
|
-
<h3>2009</h3>
|
371
|
-
<ul>
|
372
|
-
<li class="past"><a href="/uritused/suur-ooperiohtu">Suur ooperi�htu - Carmen</a></li>
|
373
|
-
<li class="past"><a href="/uritused/marilyn-manson-2009">Marilyn Manson</a></li>
|
374
|
-
<li class="past"><a href="/uritused/bodies-revealed">Bodies Revealed</a></li>
|
375
|
-
<li class="past"><a href="/uritused/madonna">Madonna</a></li>
|
376
|
-
<li class="past"><a href="/uritused/enrique-iglesias-2009">Enrique Iglesias</a></li>
|
377
|
-
</ul>
|
378
|
-
|
379
|
-
<h3>2008</h3>
|
380
|
-
<ul>
|
381
|
-
<li class="past"><a href="/uritused/efterklang">Efterklang</a></li>
|
382
|
-
<li class="past"><a href="/uritused/tricky">Tricky</a></li>
|
383
|
-
<li class="past"><a href="/uritused/monster-magnet">Monster Magnet</a></li>
|
384
|
-
<li class="past"><a href="/uritused/klaxons">Klaxons</a></li>
|
385
|
-
<li class="past"><a href="/uritused/black-dice">Black Dice</a></li>
|
386
|
-
<li class="past"><a href="/uritused/rem-2008">R.E.M.</a></li>
|
387
|
-
<li class="past"><a href="/uritused/sigur-ros">Sigur R�s</a></li>
|
388
|
-
<li class="past"><a href="/uritused/metallica-2008">Metallica</a></li>
|
389
|
-
<li class="past"><a href="/uritused/lou-reed">Lou Reed</a></li>
|
390
|
-
<li class="past"><a href="/uritused/avril-lavigne">Avril Lavigne</a></li>
|
391
|
-
<li class="past"><a href="/uritused/kumu-oo-vol-3">Kumu �� vol.3</a></li>
|
392
|
-
<li class="past"><a href="/uritused/linkin-park">Linkin Park</a></li>
|
393
|
-
<li class="past"><a href="/uritused/def-leppard">Def Leppard</a></li>
|
394
|
-
<li class="past"><a href="/uritused/lenny-kravitz">Lenny Kravitz</a></li>
|
395
|
-
<li class="past"><a href="/uritused/massive-attack">Massive Attack</a></li>
|
396
|
-
<li class="past"><a href="/uritused/bob-dylan">Bob Dylan</a></li>
|
397
|
-
<li class="past"><a href="/uritused/kiss">KISS</a></li>
|
398
|
-
<li class="past"><a href="/uritused/jose-gonzalez">Jos� Gonz?lez</a></li>
|
399
|
-
<li class="past"><a href="/uritused/rihanna">Rihanna</a></li>
|
400
|
-
<li class="past"><a href="/uritused/korn">Korn</a></li>
|
401
|
-
<li class="past"><a href="/uritused/roisin-murphy">Roisin Murphy</a></li>
|
402
|
-
</ul>
|
403
|
-
|
404
|
-
<h3>2007</h3>
|
405
|
-
<ul>
|
406
|
-
<li class="past"><a href="/uritused/marilyn-manson-2007">Marilyn Manson</a></li>
|
407
|
-
<li class="past"><a href="/uritused/enrique-iglesias-2007">Enrique Iglesias</a></li>
|
408
|
-
<li class="past"><a href="/uritused/fu-manchu">Fu Manchu</a></li>
|
409
|
-
<li class="past"><a href="/uritused/killswitch-engage">Killswitch Engage</a></li>
|
410
|
-
<li class="past"><a href="/uritused/sir-elton-john-2007">Sir Elton John</a></li>
|
411
|
-
<li class="past"><a href="/uritused/aerosmith">Aerosmith</a></li>
|
412
|
-
<li class="past"><a href="/uritused/ozzy-osbourne">Ozzy Osbourne</a></li>
|
413
|
-
<li class="past"><a href="/uritused/placebo">Placebo</a></li>
|
414
|
-
<li class="past"><a href="/uritused/kumu-oo-vol-2">Kumu �� vol.2</a></li>
|
415
|
-
<li class="past"><a href="/uritused/pet-shop-boys-2007">Pet Shop Boys</a></li>
|
416
|
-
</ul>
|
417
|
-
|
418
|
-
<h3>2006</h3>
|
419
|
-
<ul>
|
420
|
-
<li class="past"><a href="/uritused/pink">Pink</a></li>
|
421
|
-
<li class="past"><a href="/uritused/simply-red">Simply Red</a></li>
|
422
|
-
<li class="past"><a href="/uritused/sting-2006">Sting</a></li>
|
423
|
-
<li class="past"><a href="/uritused/animal-collective">Animal Collective</a></li>
|
424
|
-
<li class="past"><a href="/uritused/metallica-2006">Metallica</a></li>
|
425
|
-
<li class="past"><a href="/uritused/kumu-oo-2006">Kumu ��</a></li>
|
426
|
-
<li class="past"><a href="/uritused/simple-minds">Simple Minds</a></li>
|
427
|
-
<li class="past"><a href="/uritused/depeche-mode-2006">Depeche Mode</a></li>
|
428
|
-
<li class="past"><a href="/uritused/fun-lovin-criminals">Fun Lovin' Criminals</a></li>
|
429
|
-
</ul>
|
430
|
-
|
431
|
-
<h3>2005</h3>
|
432
|
-
<ul>
|
433
|
-
<li class="past"><a href="/uritused/dwight-trible-the-life-force-trio">Dwight Trible & the Life Force Trio</a></li>
|
434
|
-
<li class="past"><a href="/uritused/phil-collins">Phil Collins</a></li>
|
435
|
-
<li class="past"><a href="/uritused/club-uk-05">Club UK '05</a></li>
|
436
|
-
<li class="past"><a href="/uritused/white-stripes">White Stripes</a></li>
|
437
|
-
<li class="past"><a href="/uritused/jaga-jazzist">Jaga Jazzist</a></li>
|
438
|
-
<li class="past"><a href="/uritused/the-matthew-herbert-big-band">The Matthew Herbert Big Band</a></li>
|
439
|
-
<li class="past"><a href="/uritused/rem-2005">R.E.M.</a></li>
|
440
|
-
</ul>
|
441
|
-
|
442
|
-
<h3>2004</h3>
|
443
|
-
<ul>
|
444
|
-
<li class="past"><a href="/uritused/rammstein-2004">Rammstein</a></li>
|
445
|
-
<li class="past"><a href="/uritused/the-rasmus">The Rasmus</a></li>
|
446
|
-
<li class="past"><a href="/uritused/ralph-myerz-the-jack-herren-band">Ralph Myerz & the Jack Herren Band </a></li>
|
447
|
-
<li class="past"><a href="/uritused/kraftwerk">Kraftwerk</a></li>
|
448
|
-
<li class="past"><a href="/uritused/club-uk-04">Club UK '04</a></li>
|
449
|
-
</ul>
|
450
|
-
|
451
|
-
<h3>2003</h3>
|
452
|
-
<ul>
|
453
|
-
<li class="past"><a href="/uritused/cinematic-orchestra">Cinematic Orchestra</a></li>
|
454
|
-
<li class="past"><a href="/uritused/andrea-bocelli">Andrea Bocelli</a></li>
|
455
|
-
<li class="past"><a href="/uritused/beach-party-03">Beach party '03</a></li>
|
456
|
-
<li class="past"><a href="/uritused/gotan-project">Gotan Project</a></li>
|
457
|
-
</ul>
|
458
|
-
|
459
|
-
<h3>2002</h3>
|
460
|
-
<ul>
|
461
|
-
<li class="past"><a href="/uritused/wimme-kimmo-pohjonen-rinneradio">Wimme, Kimmo Pohjonen & RinneRadio</a></li>
|
462
|
-
<li class="past"><a href="/uritused/riverdance">Riverdance</a></li>
|
463
|
-
<li class="past"><a href="/uritused/candy-dulfer-rinneraadio-villu-veski">Candy Dulfer, Rinneraadio & Villu Veski</a></li>
|
464
|
-
<li class="past"><a href="/uritused/joe-cocker">Joe Cocker</a></li>
|
465
|
-
<li class="past"><a href="/uritused/chris-de-burgh">Chris De Burgh</a></li>
|
466
|
-
<li class="past"><a href="/uritused/bryan-adams">Bryan Adams</a></li>
|
467
|
-
</ul>
|
468
|
-
|
469
|
-
<h3>2001</h3>
|
470
|
-
<ul>
|
471
|
-
<li class="past"><a href="/uritused/bejart-ballet-for-life">Bejart Ballet for Life</a></li>
|
472
|
-
<li class="past"><a href="/uritused/roxette">Roxette</a></li>
|
473
|
-
<li class="past"><a href="/uritused/yes">Yes</a></li>
|
474
|
-
<li class="past"><a href="/uritused/jethro-tull-2001">Jethro Tull</a></li>
|
475
|
-
<li class="past"><a href="/uritused/depeche-mode-2001">Depeche Mode</a></li>
|
476
|
-
<li class="past"><a href="/uritused/sir-elton-john-2001">Sir Elton John</a></li>
|
477
|
-
<li class="past"><a href="/uritused/huun-huur-tu">Huun Huur Tu</a></li>
|
478
|
-
<li class="past"><a href="/uritused/rammstein-3">Rammstein</a></li>
|
479
|
-
</ul>
|
480
|
-
|
481
|
-
<h3>2000</h3>
|
482
|
-
<ul>
|
483
|
-
<li class="past"><a href="/uritused/voices-of-europe">Voices of Europe</a></li>
|
484
|
-
<li class="past"><a href="/uritused/candy-dulfer-apocalyptica">Candy Dulfer & Apocalyptica</a></li>
|
485
|
-
<li class="past"><a href="/uritused/iron-maiden">Iron Maiden</a></li>
|
486
|
-
<li class="past"><a href="/uritused/pet-shop-boys-2">Pet Shop Boys</a></li>
|
487
|
-
</ul>
|
488
|
-
|
489
|
-
<h3>1999</h3>
|
490
|
-
<ul>
|
491
|
-
<li class="past"><a href="/uritused/chippendales">Chippendales</a></li>
|
492
|
-
<li class="past"><a href="/uritused/scooter">Scooter</a></li>
|
493
|
-
<li class="past"><a href="/uritused/tamula-jarvemuusika-ja-chris-de-burgh">Tamula j�rvemuusika ja Chris de Burgh</a></li>
|
494
|
-
<li class="past"><a href="/uritused/metallica-1999">Metallica</a></li>
|
495
|
-
</ul>
|
496
|
-
|
497
|
-
<h3>1998</h3>
|
498
|
-
<ul>
|
499
|
-
<li class="past"><a href="/uritused/alphaville-maria-nayler">Alphaville & Maria Nayler</a></li>
|
500
|
-
</ul>
|
501
|
-
|
502
|
-
</div>
|
503
|
-
|
504
|
-
<div id="events-scroll-down" class="scroll-down"><a href="#"></a></div>
|
505
|
-
|
506
|
-
</section>
|
507
|
-
|
508
|
-
<section class="banner">
|
509
|
-
<div class="wp_bannerize_sidebar"><ul><li ><a rel="nofollow" onclick="SMWPBannerizeJavascript.incrementClickCount(5)" target="_blank" href="http://www.facebook.com/pages/Ticketpro-Eesti/304303302021"><img width="280" height="180" alt="Statoil ja Selver" src="http://www.fbi.ee/wp-content/uploads/statoilselver280x180.gif" /></a></li></ul></div> </section>
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
<ul id="widgets">
|
514
|
-
</ul>
|
515
|
-
<section id="ad">
|
516
|
-
|
517
|
-
|
518
|
-
</section>
|
519
|
-
|
520
|
-
</section>
|
521
|
-
|
522
|
-
<div class="clearfix" style="clear: both;"></div>
|
523
|
-
|
524
|
-
<section id="galleries" class="clearfix">
|
525
|
-
<div id="galleries-scroll-left" class="scroll-left"><a href="#"></a></div>
|
526
|
-
<div id="galleries-scroll-container" class="container">
|
527
|
-
<ul class="clearfix">
|
528
|
-
<li>
|
529
|
-
<a href="/pildid/?zappa-plays-zappa"><img src="http://www.fbi.ee/wp-content/uploads/DSC6311-175x175.jpg" title="" alt="" /></a>
|
530
|
-
<div class="gallery-title">
|
531
|
-
<a href="/pildid/?zappa-plays-zappa">Zappa Plays Zappa</a>
|
532
|
-
<span>28.11.2013</span>
|
533
|
-
</div>
|
534
|
-
</li>
|
535
|
-
<li>
|
536
|
-
<a href="/pildid/?robbie-williams"><img src="http://www.fbi.ee/wp-content/uploads/robbie-43-175x175.jpg" title="" alt="" /></a>
|
537
|
-
<div class="gallery-title">
|
538
|
-
<a href="/pildid/?robbie-williams">Robbie Williams</a>
|
539
|
-
<span>20.08.2013</span>
|
540
|
-
</div>
|
541
|
-
</li>
|
542
|
-
<li>
|
543
|
-
<a href="/pildid/?depeche-mode"><img src="http://www.fbi.ee/wp-content/uploads/019-175x175.jpg" title="" alt="" /></a>
|
544
|
-
<div class="gallery-title">
|
545
|
-
<a href="/pildid/?depeche-mode">Depeche Mode</a>
|
546
|
-
<span>27.07.2013</span>
|
547
|
-
</div>
|
548
|
-
</li>
|
549
|
-
<li>
|
550
|
-
<a href="/pildid/?lana-del-rey"><img src="http://www.fbi.ee/wp-content/uploads/lanal1-175x175.jpg" title="" alt="" /></a>
|
551
|
-
<div class="gallery-title">
|
552
|
-
<a href="/pildid/?lana-del-rey">Lana Del Rey</a>
|
553
|
-
<span>14.06.2013</span>
|
554
|
-
</div>
|
555
|
-
</li>
|
556
|
-
<li>
|
557
|
-
<a href="/pildid/?eric-clapton"><img src="http://www.fbi.ee/wp-content/uploads/INK5269a-175x175.jpg" title="" alt="" /></a>
|
558
|
-
<div class="gallery-title">
|
559
|
-
<a href="/pildid/?eric-clapton">Eric Clapton</a>
|
560
|
-
<span>05.06.2013</span>
|
561
|
-
</div>
|
562
|
-
</li>
|
563
|
-
<li>
|
564
|
-
<a href="/pildid/?rock-the-ballet"><img src="http://www.fbi.ee/wp-content/uploads/Rock_the_Ballett_klein-9862-175x175.jpg" title="" alt="" /></a>
|
565
|
-
<div class="gallery-title">
|
566
|
-
<a href="/pildid/?rock-the-ballet">Rock the Ballet</a>
|
567
|
-
<span>12.05.2013</span>
|
568
|
-
</div>
|
569
|
-
</li>
|
570
|
-
<li>
|
571
|
-
<a href="/pildid/?killswitch-engage-2"><img src="http://www.fbi.ee/wp-content/uploads/kse9-175x175.jpg" title="" alt="" /></a>
|
572
|
-
<div class="gallery-title">
|
573
|
-
<a href="/pildid/?killswitch-engage-2">Killswitch Engage</a>
|
574
|
-
<span>17.04.2013</span>
|
575
|
-
</div>
|
576
|
-
</li>
|
577
|
-
<li>
|
578
|
-
<a href="/pildid/?cirque-du-soleil-alegria"><img src="http://www.fbi.ee/wp-content/uploads/cirque-soleil-7-2-175x175.jpg" title="" alt="" /></a>
|
579
|
-
<div class="gallery-title">
|
580
|
-
<a href="/pildid/?cirque-du-soleil-alegria">Cirque du Soleil - Alegria</a>
|
581
|
-
<span>03.04.2013</span>
|
582
|
-
</div>
|
583
|
-
</li>
|
584
|
-
<li>
|
585
|
-
<a href="/pildid/?funeral-for-a-friend"><img src="http://www.fbi.ee/wp-content/uploads/funeral-for-a-friend_5-175x175.jpg" title="" alt="" /></a>
|
586
|
-
<div class="gallery-title">
|
587
|
-
<a href="/pildid/?funeral-for-a-friend">Funeral For A Friend</a>
|
588
|
-
<span>23.03.2013</span>
|
589
|
-
</div>
|
590
|
-
</li>
|
591
|
-
<li>
|
592
|
-
<a href="/pildid/?stone"><img src="http://www.fbi.ee/wp-content/uploads/stone_13-175x175.jpg" title="" alt="" /></a>
|
593
|
-
<div class="gallery-title">
|
594
|
-
<a href="/pildid/?stone">Stone</a>
|
595
|
-
<span>27.02.2013</span>
|
596
|
-
</div>
|
597
|
-
</li>
|
598
|
-
<li>
|
599
|
-
<a href="/pildid/?muse"><img src="http://www.fbi.ee/wp-content/uploads/nuse_nikonV1-2-175x175.jpg" title="" alt="" /></a>
|
600
|
-
<div class="gallery-title">
|
601
|
-
<a href="/pildid/?muse">Muse</a>
|
602
|
-
<span>11.12.2012</span>
|
603
|
-
</div>
|
604
|
-
</li>
|
605
|
-
<li>
|
606
|
-
<a href="/pildid/?katatonia"><img src="http://www.fbi.ee/wp-content/uploads/IMG_2539-175x175.jpg" title="" alt="" /></a>
|
607
|
-
<div class="gallery-title">
|
608
|
-
<a href="/pildid/?katatonia">Katatonia / Junius / Alcest</a>
|
609
|
-
<span>06.11.2012</span>
|
610
|
-
</div>
|
611
|
-
</li>
|
612
|
-
<li>
|
613
|
-
<a href="/pildid/?steve-vai"><img src="http://www.fbi.ee/wp-content/uploads/117-175x175.jpg" title="" alt="" /></a>
|
614
|
-
<div class="gallery-title">
|
615
|
-
<a href="/pildid/?steve-vai">Steve Vai</a>
|
616
|
-
<span>25.10.2012</span>
|
617
|
-
</div>
|
618
|
-
</li>
|
619
|
-
<li>
|
620
|
-
<a href="/pildid/?lady-gaga"><img src="http://www.fbi.ee/wp-content/uploads/423-175x175.jpg" title="" alt="" /></a>
|
621
|
-
<div class="gallery-title">
|
622
|
-
<a href="/pildid/?lady-gaga">Lady Gaga</a>
|
623
|
-
<span>25.08.2012</span>
|
624
|
-
</div>
|
625
|
-
</li>
|
626
|
-
<li>
|
627
|
-
<a href="/pildid/?red-hot-chili-peppers"><img src="http://www.fbi.ee/wp-content/uploads/210-175x175.jpg" title="" alt="" /></a>
|
628
|
-
<div class="gallery-title">
|
629
|
-
<a href="/pildid/?red-hot-chili-peppers">Red Hot Chili Peppers</a>
|
630
|
-
<span>30.07.2012</span>
|
631
|
-
</div>
|
632
|
-
</li>
|
633
|
-
<li>
|
634
|
-
<a href="/pildid/?sting"><img src="http://www.fbi.ee/wp-content/uploads/109-175x175.jpg" title="" alt="" /></a>
|
635
|
-
<div class="gallery-title">
|
636
|
-
<a href="/pildid/?sting">Sting</a>
|
637
|
-
<span>29.07.2012</span>
|
638
|
-
</div>
|
639
|
-
</li>
|
640
|
-
<li>
|
641
|
-
<a href="/pildid/?bryan-adams-2"><img src="http://www.fbi.ee/wp-content/uploads/ba8-175x175.jpg" title="" alt="" /></a>
|
642
|
-
<div class="gallery-title">
|
643
|
-
<a href="/pildid/?bryan-adams-2">Bryan Adams</a>
|
644
|
-
<span>02.07.2012</span>
|
645
|
-
</div>
|
646
|
-
</li>
|
647
|
-
<li>
|
648
|
-
<a href="/pildid/?megadeth"><img src="http://www.fbi.ee/wp-content/uploads/m73-175x175.jpg" title="" alt="" /></a>
|
649
|
-
<div class="gallery-title">
|
650
|
-
<a href="/pildid/?megadeth">Megadeth</a>
|
651
|
-
<span>28.06.2012</span>
|
652
|
-
</div>
|
653
|
-
</li>
|
654
|
-
<li>
|
655
|
-
<a href="/pildid/?mastodon"><img src="http://www.fbi.ee/wp-content/uploads/m5-175x175.jpg" title="" alt="" /></a>
|
656
|
-
<div class="gallery-title">
|
657
|
-
<a href="/pildid/?mastodon">Mastodon</a>
|
658
|
-
<span>19.06.2012</span>
|
659
|
-
</div>
|
660
|
-
</li>
|
661
|
-
<li>
|
662
|
-
<a href="/pildid/?michael-buble"><img src="http://www.fbi.ee/wp-content/uploads/mb3-175x175.jpg" title="" alt="" /></a>
|
663
|
-
<div class="gallery-title">
|
664
|
-
<a href="/pildid/?michael-buble">Michael Bubl�</a>
|
665
|
-
<span>21.04.2012</span>
|
666
|
-
</div>
|
667
|
-
</li>
|
668
|
-
<li>
|
669
|
-
<a href="/pildid/?zucchero"><img src="http://www.fbi.ee/wp-content/uploads/zucchero8-175x175.jpg" title="" alt="" /></a>
|
670
|
-
<div class="gallery-title">
|
671
|
-
<a href="/pildid/?zucchero">Zucchero</a>
|
672
|
-
<span>10.04.2012</span>
|
673
|
-
</div>
|
674
|
-
</li>
|
675
|
-
<li>
|
676
|
-
<a href="/pildid/?mustasch"><img src="http://www.fbi.ee/wp-content/uploads/44-175x175.jpg" title="" alt="" /></a>
|
677
|
-
<div class="gallery-title">
|
678
|
-
<a href="/pildid/?mustasch">Mustasch</a>
|
679
|
-
<span>08.04.2012</span>
|
680
|
-
</div>
|
681
|
-
</li>
|
682
|
-
<li>
|
683
|
-
<a href="/pildid/?rammstein"><img src="http://www.fbi.ee/wp-content/uploads/62-175x175.jpg" title="" alt="" /></a>
|
684
|
-
<div class="gallery-title">
|
685
|
-
<a href="/pildid/?rammstein">Rammstein</a>
|
686
|
-
<span>07.02.2012</span>
|
687
|
-
</div>
|
688
|
-
</li>
|
689
|
-
<li>
|
690
|
-
<a href="/pildid/?cirque-du-soleil"><img src="http://www.fbi.ee/wp-content/uploads/circus-82-175x175.jpg" title="" alt="" /></a>
|
691
|
-
<div class="gallery-title">
|
692
|
-
<a href="/pildid/?cirque-du-soleil">Cirque du Soleil - Saltimbanco</a>
|
693
|
-
<span>28.12.2011</span>
|
694
|
-
</div>
|
695
|
-
</li>
|
696
|
-
<li>
|
697
|
-
<a href="/pildid/?elton-john"><img src="http://www.fbi.ee/wp-content/uploads/elton9-175x175.jpg" title="" alt="" /></a>
|
698
|
-
<div class="gallery-title">
|
699
|
-
<a href="/pildid/?elton-john">Sir Elton John</a>
|
700
|
-
<span>03.11.2011</span>
|
701
|
-
</div>
|
702
|
-
</li>
|
703
|
-
<li>
|
704
|
-
<a href="/pildid/?30-seconds-to-mars"><img src="http://www.fbi.ee/wp-content/uploads/30stm_7-175x175.jpg" title="" alt="" /></a>
|
705
|
-
<div class="gallery-title">
|
706
|
-
<a href="/pildid/?30-seconds-to-mars">Thirty Seconds to Mars</a>
|
707
|
-
<span>02.11.2011</span>
|
708
|
-
</div>
|
709
|
-
</li>
|
710
|
-
<li>
|
711
|
-
<a href="/pildid/?sade"><img src="http://www.fbi.ee/wp-content/uploads/sade54-175x175.jpg" title="" alt="" /></a>
|
712
|
-
<div class="gallery-title">
|
713
|
-
<a href="/pildid/?sade">Sade</a>
|
714
|
-
<span>02.11.2011</span>
|
715
|
-
</div>
|
716
|
-
</li>
|
717
|
-
<li>
|
718
|
-
<a href="/pildid/?kaiser-chiefs"><img src="http://www.fbi.ee/wp-content/uploads/kaiserchiefs00-175x175.jpg" title="" alt="" /></a>
|
719
|
-
<div class="gallery-title">
|
720
|
-
<a href="/pildid/?kaiser-chiefs">Kaiser Chiefs</a>
|
721
|
-
<span>13.10.2011</span>
|
722
|
-
</div>
|
723
|
-
</li>
|
724
|
-
<li>
|
725
|
-
<a href="/pildid/?deftones"><img src="http://www.fbi.ee/wp-content/uploads/deftones01-175x175.jpg" title="" alt="" /></a>
|
726
|
-
<div class="gallery-title">
|
727
|
-
<a href="/pildid/?deftones">Deftones</a>
|
728
|
-
<span>31.08.2011</span>
|
729
|
-
</div>
|
730
|
-
</li>
|
731
|
-
<li>
|
732
|
-
<a href="/pildid/?ariel-pinks-haunted-graffiti"><img src="http://www.fbi.ee/wp-content/uploads/arielpink2-175x175.jpg" title="" alt="" /></a>
|
733
|
-
<div class="gallery-title">
|
734
|
-
<a href="/pildid/?ariel-pinks-haunted-graffiti">Ariel Pink's Haunted Graffiti</a>
|
735
|
-
<span>11.08.2011</span>
|
736
|
-
</div>
|
737
|
-
</li>
|
738
|
-
</ul>
|
739
|
-
</div>
|
740
|
-
<div id="galleries-scroll-right" class="scroll-right"><a href="#"></a></div>
|
741
|
-
</section>
|
742
|
-
|
743
|
-
|
744
|
-
</div> <!-- .container -->
|
745
|
-
</section> <!-- #content -->
|
746
|
-
|
747
|
-
<div style="clear: both;" class="clearfix"></div>
|
748
|
-
|
749
|
-
<footer id="footer" class="clearfix">
|
750
|
-
|
751
|
-
<section id="partners">
|
752
|
-
<ul class="clearfix">
|
753
|
-
<li class="ticketpro"><a href="http://www.ticketpro.ee" target="_blank" class="ir">TicketPro</a></li>
|
754
|
-
<li class="solaris"><a href="http://www.solaris.ee" target="_blank" class="ir">Solaris</a></li>
|
755
|
-
<li class="solaris-kino"><a href="http://www.solariskino.ee" target="_blank" class="ir">Solaris Kino</a></li>
|
756
|
-
<li class="nokia-kontserdimaja"><a href="http://www.tallinnconcerthall.com" target="_blank" class="ir">Nokia Kontserdimaja</a></li>
|
757
|
-
<li class="club-hollywood"><a href="http://www.clubhollywood.ee" target="_blank" class="ir">Club Hollywood</a></li>
|
758
|
-
<li class="bdg"><a href="http://www.bdg.ee" target="_blank" class="ir">BDG</a></li>
|
759
|
-
</ul>
|
760
|
-
</section>
|
761
|
-
|
762
|
-
<section id="contacts">
|
763
|
-
<div>
|
764
|
-
<table width="100%">
|
765
|
-
<tbody>
|
766
|
-
<tr>
|
767
|
-
<td valign="top">
|
768
|
-
<div>Live Nation Estonia O�</div></td>
|
769
|
-
<td valign="top">
|
770
|
-
<div>Estonia pst 9</div>
|
771
|
-
<div>10143 Tallinn</div>
|
772
|
-
<div>Estonia</div></td>
|
773
|
-
<td valign="top">
|
774
|
-
<div>Telefon</div>
|
775
|
-
<div>Faks</div>
|
776
|
-
<div>E-mail</div></td>
|
777
|
-
<td valign="top">
|
778
|
-
<div>+372 615 5100</div>
|
779
|
-
<div>+372 615 5101</div>
|
780
|
-
<div><a href="mailto:fbi@bdg.ee">fbi@bdg.ee</a></div></td>
|
781
|
-
</tr>
|
782
|
-
</tbody>
|
783
|
-
</table> </div>
|
784
|
-
</section>
|
785
|
-
|
786
|
-
<div class="clearfix"></div>
|
787
|
-
|
788
|
-
</footer>
|
789
|
-
|
790
|
-
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> -->
|
791
|
-
<script src="http://www.fbi.ee/wp-content/themes/FBI/media/js/cufon-yui.js"></script>
|
792
|
-
<script src="http://www.fbi.ee/wp-content/themes/FBI/media/fonts/the.font.js"></script>
|
793
|
-
<script src="http://www.fbi.ee/wp-content/themes/FBI/media/js/jquery.scrollTo-1.4.2-min.js"></script>
|
794
|
-
<script src="http://www.fbi.ee/wp-content/themes/FBI/media/js/scripts.js"></script>
|
795
|
-
<script src="http://www.fbi.ee/wp-content/themes/FBI/media/js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
|
796
|
-
<script src="http://www.fbi.ee/wp-content/themes/FBI/media/js/jquery.cycle.min.js"></script>
|
797
|
-
<script src="http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js"></script>
|
798
|
-
|
799
|
-
<script type="text/javascript"> Cufon.now(); </script>
|
800
|
-
</body>
|
801
|
-
|
802
|
-
</html>
|