eventify 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,36 @@
1
+ require "spec_helper"
2
+
3
+ describe Eventify::Provider::Piletilevi do
4
+ context "#fetch" do
5
+ it "fetches events" do
6
+ stub_request(:get, Eventify::Provider::Piletilevi::URLS[0]).to_return(body: File.read(File.expand_path("../../support/piletilevi-music.xml", __dir__)))
7
+ stub_request(:get, Eventify::Provider::Piletilevi::URLS[1]).to_return(body: File.read(File.expand_path("../../support/piletilevi-news.xml", __dir__)))
8
+
9
+ Eventify::Provider::Piletilevi::URLS[2..-1].each do |url|
10
+ stub_request(:get, url).to_return(body: File.read(File.expand_path("../../support/piletilevi-empty.xml", __dir__)))
11
+ end
12
+
13
+ events = Eventify::Provider::Piletilevi.fetch
14
+ events.should == [
15
+ Eventify::Provider::Piletilevi.new(
16
+ title: "Koit Toome ja Karl-Erik Taukar 17.01.2014 - 21:00 - Rock Cafe, Tallinn, Eesti",
17
+ link: "http://www.piletilevi.ee/est/piletid/muusika/rock_ja_pop/?concert=138090",
18
+ date: Time.parse("2013-12-27 12:30:11"),
19
+ id: "86362"
20
+ ),
21
+ Eventify::Provider::Piletilevi.new(
22
+ title: "Ott Lepland 04.01.2014 - 21:00 - Rock Cafe, Tallinn, Eesti",
23
+ link: "http://www.piletilevi.ee/est/piletid/muusika/show/?concert=138050",
24
+ date: Time.parse("2013-12-27 11:16:14"),
25
+ id: "86359"
26
+ ),
27
+ Eventify::Provider::Piletilevi.new(
28
+ title: "Homme startiva Green Christmasi ajakava on paigas",
29
+ link: "http://www.piletilevi.ee/est/uudised/homme-startiva-green-christmasi-ajakava-on-paigas",
30
+ date: Time.parse("Fri, 27 Dec 13 00:00:00 +0200"),
31
+ id: "61041"
32
+ )
33
+ ]
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,25 @@
1
+ require "spec_helper"
2
+
3
+ describe Eventify::Provider::Ticketpro do
4
+ context "#fetch" do
5
+ it "fetches events" do
6
+ stub_request(:get, Eventify::Provider::Ticketpro::URL).to_return(body: File.read(File.expand_path("../../support/ticketpro.xml", __dir__)))
7
+
8
+ events = Eventify::Provider::Ticketpro.fetch
9
+ events.should == [
10
+ Eventify::Provider::Ticketpro.new(
11
+ title: "KGB teater-kohvik-muuseum",
12
+ link: "http://www.ticketpro.ee/jnp/theatre/1080200-kgb-teater-kohvik-muuseum.html",
13
+ date: Time.parse("Mon, 06 May 2013 09:33:26 +0200"),
14
+ id: "http://www.ticketpro.ee/jnp/theatre/1080200-kgb-teater-kohvik-muuseum.html"
15
+ ),
16
+ Eventify::Provider::Ticketpro.new(
17
+ title: "Danny Malando tantsumuusika orkester ( Holland )",
18
+ link: "http://www.ticketpro.ee/jnp/music/1095688-danny-malando-tantsumuusika-orkester-holland-.html",
19
+ date: Time.parse("Fri, 31 May 2013 14:29:07 +0200"),
20
+ id: "http://www.ticketpro.ee/jnp/music/1095688-danny-malando-tantsumuusika-orkester-holland-.html"
21
+ )
22
+ ]
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,14 @@
1
+ require "spec_helper"
2
+ require File.expand_path("../../lib/eventify/scheduler", __dir__)
3
+
4
+ describe Eventify::Scheduler do
5
+ before do
6
+ Eventify::Scheduler.any_instance.stub(:L)
7
+ end
8
+
9
+ it "#call invokes Eventify#process_new_events" do
10
+ Eventify.any_instance.should_receive(:process_new_events)
11
+
12
+ Eventify::Scheduler.new.call nil
13
+ end
14
+ end
@@ -0,0 +1,150 @@
1
+ require "spec_helper"
2
+
3
+ describe Eventify do
4
+ before do
5
+ stub_const "Eventify::Configuration::PATH", File.join(Dir.tmpdir, "eventify-config.yml")
6
+ File.delete Eventify::Configuration::PATH if File.exists? Eventify::Configuration::PATH
7
+ end
8
+
9
+ context "#initialize" do
10
+ it "initializes configuration" do
11
+ Eventify.new.configuration[:subscribers].should == ["user@example.org"]
12
+ end
13
+
14
+ it "allows to override configuration" do
15
+ Eventify.new(foo: "bar").configuration[:foo].should == "bar"
16
+ end
17
+ end
18
+
19
+ context "#configuration" do
20
+ it "provides access to the configuration instance" do
21
+ eventify = Eventify.new
22
+ eventify.configuration.should == eventify.instance_variable_get(:@configuration)
23
+ end
24
+ end
25
+
26
+ context "#new_events" do
27
+ it "all are new" do
28
+ eventify = Eventify.new
29
+ events = [
30
+ Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org"),
31
+ Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
32
+ ]
33
+ eventify.stub(all_events: events)
34
+ eventify.new_events.should == events
35
+ end
36
+
37
+ it "old ones are filtered out" do
38
+ eventify = Eventify.new
39
+ old_event = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org").save
40
+ new_event = Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
41
+ events = [old_event, new_event]
42
+ eventify.stub(all_events: events)
43
+
44
+ eventify.new_events.should == [new_event]
45
+ end
46
+
47
+ it "caches the results" do
48
+ eventify = Eventify.new
49
+
50
+ event = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org")
51
+ eventify.should_receive(:all_events).and_return([event])
52
+
53
+ 2.times { eventify.new_events.should == [event] }
54
+ end
55
+ end
56
+
57
+ context "#all_events" do
58
+ it "fetches all events from all providers" do
59
+ eventify = Eventify.new
60
+ eventify.providers.each do |provider|
61
+ provider.should_receive :fetch
62
+ end
63
+
64
+ eventify.all_events
65
+ end
66
+
67
+ it "combines all events from all providers" do
68
+ event1 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
69
+ event2 = Eventify::Provider::Piletilevi.new(id: "456", title: "bar", link: "http://example.org")
70
+ Eventify::Provider::Piletilevi.stub(fetch: [event1, event2])
71
+
72
+ event3 = Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org")
73
+ Eventify::Provider::Base.stub(fetch: [event3])
74
+
75
+ eventify = Eventify.new
76
+ eventify.stub(providers: [Eventify::Provider::Piletilevi, Eventify::Provider::Base])
77
+ eventify.all_events.should == [event1, event2, event3]
78
+ end
79
+
80
+ it "caches results" do
81
+ eventify = Eventify.new
82
+ eventify.should_receive(:providers).once.and_return([Eventify::Provider::Base])
83
+ Eventify::Provider::Base.should_receive(:fetch).once.and_return([1])
84
+
85
+ eventify.all_events.should == [1]
86
+ eventify.all_events.should == [1]
87
+ end
88
+
89
+ it "removes duplicate entries" do
90
+ event1 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
91
+ event2 = Eventify::Provider::Piletilevi.new(id: "123", title: "foo", link: "http://example.org")
92
+ event1.should == event2
93
+ Eventify::Provider::Piletilevi.stub(fetch: [event1, event2])
94
+
95
+ eventify = Eventify.new
96
+ eventify.stub(providers: [Eventify::Provider::Piletilevi])
97
+ eventify.all_events.should == [event1]
98
+ end
99
+ end
100
+
101
+ context "#providers" do
102
+ it "returns all providers" do
103
+ Eventify.new.providers.should == [Eventify::Provider::Piletilevi, Eventify::Provider::Ticketpro, Eventify::Provider::FBI]
104
+ end
105
+
106
+ it "allows to override" do
107
+ eventify = Eventify.new
108
+ eventify.providers = ["foo"]
109
+
110
+ eventify.providers.should == ["foo"]
111
+ end
112
+ end
113
+
114
+ context "#process_new_events" do
115
+ it "sends out e-mail for new events" do
116
+ new_events = [
117
+ Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org"),
118
+ Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org")
119
+ ]
120
+ configuration = double("configuration")
121
+ eventify = Eventify.new configuration
122
+ eventify.should_receive(:new_events).and_return(new_events)
123
+ Eventify::Mail.should_receive(:deliver).with(new_events, configuration)
124
+
125
+ eventify.process_new_events
126
+ end
127
+
128
+ it "does not send e-mail when no new events" do
129
+ eventify = Eventify.new
130
+ eventify.should_receive(:new_events).and_return([])
131
+ Eventify::Mail.should_not_receive(:deliver)
132
+
133
+ eventify.process_new_events
134
+ end
135
+
136
+ it "saves new events into database" do
137
+ new_events = [
138
+ Eventify::Provider::Base.new(id: "123", title: "foo", link: "http://example.org/1", date: Time.now),
139
+ Eventify::Provider::Base.new(id: "456", title: "bar", link: "http://example.org/2", date: Time.now)
140
+ ]
141
+ eventify = Eventify.new
142
+ eventify.should_receive(:new_events).and_return(new_events)
143
+ Eventify::Mail.stub(:deliver)
144
+
145
+ eventify.process_new_events
146
+
147
+ Eventify::Database.events.size.should == 2
148
+ end
149
+ end
150
+ end
@@ -0,0 +1,25 @@
1
+ require "simplecov"
2
+ require 'coveralls'
3
+
4
+ SimpleCov.formatter = Coveralls::SimpleCov::Formatter
5
+ SimpleCov.start
6
+
7
+ require File.expand_path("../lib/eventify", __dir__)
8
+
9
+ require "tempfile"
10
+ require "webmock/rspec"
11
+ WebMock.disable_net_connect!(allow_localhost: true)
12
+
13
+ RSpec.configure do |config|
14
+ config.color = true
15
+
16
+ config.before do
17
+ database_path = File.join(Dir.tmpdir, "eventify-test.sqlite3")
18
+ stub_const "Eventify::Database::PATH", database_path
19
+
20
+ sqlite = Eventify::Database.instance_variable_get(:@sqlite)
21
+ sqlite.close if sqlite
22
+ File.delete database_path if File.exists? database_path
23
+ Eventify::Database.instance_variable_set(:@sqlite, nil)
24
+ end
25
+ end
@@ -0,0 +1,802 @@
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&amp;redirect_to=http%3A%2F%2Fwww.fbi.ee%2F&amp;_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>