rockstar 0.5.2 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2007-2010 John Nunemaker, Bodo Tasche
1
+ Copyright (c) 2007-2011 John Nunemaker, Bodo Tasche
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
@@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
16
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
17
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
18
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.
19
+ THE SOFTWARE.
@@ -1,4 +1,4 @@
1
- =Rockstar
1
+ # Rockstar
2
2
 
3
3
  Rockstar is a wrapper for the last.fm audioscrobbler web services (http://www.last.fm/api/). This gem is based on the scrobbler
4
4
  gem by John Nunemaker and was updated to use the 2.0 version of the last.fm api
@@ -19,7 +19,7 @@ If you want to use the api in an rails app, you could add an initializer in conf
19
19
  rails_root = ENV['RAILS_ROOT'] || File.dirname(__FILE__) + '/../..'
20
20
  Rockstar.lastfm = YAML.load_file(rails_root + '/config/lastfm.yml')
21
21
 
22
- == Users
22
+ ## Users
23
23
 
24
24
  user = Rockstar::User.new('jnunemaker')
25
25
 
@@ -34,7 +34,7 @@ If you want to use the api in an rails app, you could add an initializer in conf
34
34
  puts "=" * (user.username.length + 13)
35
35
  user.top_tracks.each { |t| puts "(#{t.playcount}) #{t.name}" }
36
36
 
37
- == Albums
37
+ ## Albums
38
38
 
39
39
  album = Rockstar::Album.new('Carrie Underwood', 'Some Hearts', :include_info => true)
40
40
 
@@ -43,7 +43,7 @@ If you want to use the api in an rails app, you could add an initializer in conf
43
43
  puts "URL: #{album.url}"
44
44
  puts "Release Date: #{album.release_date.strftime('%m/%d/%Y')}"
45
45
 
46
- ==Artists
46
+ ## Artists
47
47
 
48
48
  artist = Rockstar::Artist.new('Carrie Underwood')
49
49
 
@@ -57,7 +57,7 @@ If you want to use the api in an rails app, you could add an initializer in conf
57
57
  puts "=" * 15
58
58
  artist.similar.each { |a| puts "(#{a.match}%) #{a.name}" }
59
59
 
60
- ==Tags
60
+ ## Tags
61
61
 
62
62
  tag = Rockstar::Tag.new('country')
63
63
 
@@ -69,7 +69,7 @@ If you want to use the api in an rails app, you could add an initializer in conf
69
69
  puts 'Top Tracks'
70
70
  tag.top_tracks.each { |t| puts "(#{t.count}) #{t.name} by #{t.artist}" }
71
71
 
72
- ==Tracks
72
+ ## Tracks
73
73
 
74
74
  track = Rockstar::Track.new('Carrie Underwood', 'Before He Cheats')
75
75
  puts 'Fans'
@@ -80,7 +80,7 @@ If you want to use the api in an rails app, you could add an initializer in conf
80
80
  # examples/scrobble.rb for a complete example
81
81
  track.love(session_key)
82
82
 
83
- ==Geo
83
+ ## Geo
84
84
 
85
85
  geo = Rockstar::Geo.new
86
86
 
@@ -94,7 +94,8 @@ If you want to use the api in an rails app, you could add an initializer in conf
94
94
  geo.metros("germany").each{|m| p m.name}
95
95
 
96
96
 
97
- == Get rights to access the user data for scrobbing, now playing, events etc...
97
+ ## Get rights to access the user data for scrobbing, now playing, events etc...
98
+
98
99
  a = Rockstar::Auth.new
99
100
  token = a.token
100
101
 
@@ -107,17 +108,19 @@ If you want to use the api in an rails app, you could add an initializer in conf
107
108
 
108
109
  session = a.session(token)
109
110
 
110
- == Scrobbling
111
+ You can store the session.key somewhere and use it from now on to identify the user.
112
+
113
+ ## Scrobbling
111
114
 
112
115
  track = Rockstar::Track.new('Carrie Underwood', 'Before He Cheats')
113
116
  track.scrobble(Time.now, session.key)
114
117
 
115
- == Now Playing Submission
118
+ ## Now Playing Submission
116
119
 
117
120
  track = Rockstar::Track.new('Carrie Underwood', 'Before He Cheats')
118
121
  track.updateNowPlaying(Time.now, session.key)
119
122
 
120
- == Note on Patches/Pull Requests
123
+ ## Note on Patches/Pull Requests
121
124
 
122
125
  * Fork the project.
123
126
  * Make your feature addition or bug fix.
@@ -127,6 +130,6 @@ If you want to use the api in an rails app, you could add an initializer in conf
127
130
  (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
128
131
  * Send me a pull request. Bonus points for topic branches.
129
132
 
130
- == Copyright
133
+ ## Copyright
131
134
 
132
- Copyright (c) 2007-2010 John Nunemaker, Bodo Tasche. See LICENSE for details.
135
+ Copyright (c) 2007-2011 John Nunemaker, Bodo "Bitboxer" Tasche, Nick "zapnap" Plante. See LICENSE for details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.2
1
+ 0.6.0
data/examples/artist.rb CHANGED
@@ -4,7 +4,7 @@ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'rocksta
4
4
  # You can find them here : http://www.lastfm.de/api/account
5
5
  Rockstar.lastfm = YAML.load_file(File.join(File.dirname(__FILE__), 'lastfm.yml'))
6
6
 
7
- artist = Rockstar::Artist.new('Madonna')
7
+ artist = Rockstar::Artist.new('Metallica')
8
8
 
9
9
  puts 'Top Tracks'
10
10
  puts "=" * 10
@@ -12,6 +12,12 @@ artist.top_tracks.each { |t| puts "#{t.name}" }
12
12
 
13
13
  puts
14
14
 
15
+ puts 'Events'
16
+ puts '=' * 10
17
+ artist.events.each { |e| puts "#{e.venue.city} at #{e.venue.name} on #{e.start_date.strftime("%D")}" }
18
+
19
+ puts
20
+
15
21
  puts 'Similar Artists'
16
22
  puts "=" * 15
17
23
  artist.similar.each { |a| puts "(#{a.match}%) #{a.name}" }
@@ -36,7 +36,7 @@ module Rockstar
36
36
  name = xml.at(:title).inner_html if name.nil? && (xml).at(:title)
37
37
  artist = (xml).at(:artist).at(:name).inner_html if (xml).at(:artist) && (xml).at(:artist).at(:name)
38
38
  artist = (xml).at(:artist).inner_html if artist.nil? && (xml).at(:artist)
39
- artist = doc.root['artist'] if artist.nil? && doc.root['artist']
39
+ artist = doc.root['artist'] if artist.nil? && doc && doc.root['artist']
40
40
 
41
41
  album = Album.new(artist, name)
42
42
  album.load_info(xml)
@@ -59,6 +59,8 @@ module Rockstar
59
59
  doc = self.class.fetch_and_parse("album.getInfo", {:artist => @artist, :album =>@name})
60
60
  xml = (doc / :album).first
61
61
  end
62
+
63
+ return self if xml.nil?
62
64
 
63
65
  self.artist_mbid = (xml).at(:artist)['mbid'] if (xml).at(:artist) && (xml).at(:artist)['mbid']
64
66
  self.artist_mbid = (xml).at(:artist).at(:mbid).inner_html if artist_mbid.nil? && (xml).at(:artist) && (xml).at(:artist).at(:mbid)
@@ -76,7 +78,7 @@ module Rockstar
76
78
 
77
79
  self.images = {}
78
80
  (xml/'image').each {|image|
79
- self.images[image['size']] = image.inner_html
81
+ self.images[image['size']] = image.inner_html if self.images[image['size']].nil?
80
82
  }
81
83
 
82
84
  self.image_large = images['large']
@@ -58,7 +58,8 @@
58
58
  # (62.160%) Christina Aguilera
59
59
  module Rockstar
60
60
  class Artist < Base
61
- attr_accessor :name, :mbid, :playcount, :rank, :url, :thumbnail, :images, :count, :streamable
61
+ attr_accessor :name, :mbid, :playcount, :rank, :url, :thumbnail
62
+ attr_accessor :summary, :content, :images, :count, :streamable
62
63
  attr_accessor :chartposition
63
64
 
64
65
  # used for similar artists
@@ -90,15 +91,22 @@ module Rockstar
90
91
  xml = (doc / :artist).first
91
92
  end
92
93
 
94
+ return self if xml.nil?
95
+
93
96
  self.mbid = (xml).at(:mbid).inner_html if (xml).at(:mbid)
94
97
  self.playcount = (xml).at(:playcount).inner_html if (xml).at(:playcount)
95
98
  self.chartposition = self.rank = xml['rank'] if xml['rank']
96
99
  self.chartposition = self.rank = (xml).at(:rank).inner_html if (xml).at(:rank) if self.rank.nil?
97
100
  self.url = Base.fix_url((xml).at(:url).inner_html) if (xml).at(:url)
98
-
101
+
102
+ if bio_xml = xml.at(:bio)
103
+ self.summary = bio_xml.at(:summary).to_plain_text if bio_xml.at(:summary)
104
+ self.content = bio_xml.at(:content).to_plain_text if bio_xml.at(:content)
105
+ end
106
+
99
107
  self.images = {}
100
108
  (xml/'image').each {|image|
101
- self.images[image['size']] = image.inner_html
109
+ self.images[image['size']] = image.inner_html if self.images[image['size']].nil?
102
110
  }
103
111
 
104
112
  self.thumbnail = self.images['small']
@@ -114,8 +122,12 @@ module Rockstar
114
122
  end
115
123
 
116
124
  def current_events(format=:ics)
117
- warn "[DEPRECATION] `current_events` is deprecated. The current api doesn't offer this function"
118
- []
125
+ warn "[DEPRECATION] the `current_events` method is deprecated. Please use artist.events"
126
+ events
127
+ end
128
+
129
+ def events(force=false)
130
+ get_instance("artist.getEvents", :events, :event, {:artist => @name}, force)
119
131
  end
120
132
 
121
133
  def similar(force=false)
@@ -44,7 +44,7 @@ module Rockstar
44
44
 
45
45
  e.images = {}
46
46
  xml.search('/image').each {|image|
47
- e.images[image['size']] = image.inner_html
47
+ e.images[image['size']] = image.inner_html if e.images[image['size']].nil?
48
48
  }
49
49
 
50
50
  e.venue = Venue.new_from_xml(xml.search('/venue'), doc) if xml.search('/venue')
@@ -42,7 +42,7 @@ class RequestFailedError < StandardError; end
42
42
  module Rockstar
43
43
  class Track < Base
44
44
  attr_accessor :artist, :artist_mbid, :name, :mbid, :playcount, :rank, :url
45
- attr_accessor :streamable, :album, :album_mbid, :date, :date_uts
45
+ attr_accessor :summary, :content, :streamable, :album, :album_mbid, :date, :date_uts
46
46
 
47
47
  # only seems to be used on top tracks for tag
48
48
  attr_accessor :count, :thumbnail, :image, :images
@@ -177,6 +177,8 @@ module Rockstar
177
177
  xml = (doc / :track).first
178
178
  end
179
179
 
180
+ return self if xml.nil?
181
+
180
182
  self.artist_mbid = (xml).at(:artist)['mbid'] if (xml).at(:artist) && (xml).at(:artist)['mbid']
181
183
  self.artist_mbid = (xml).at(:artist).at(:mbid).inner_html if artist_mbid.nil? && (xml).at(:artist) && (xml).at(:artist).at(:mbid)
182
184
  self.mbid = (xml).at(:mbid).inner_html if (xml).at(:mbid)
@@ -191,10 +193,15 @@ module Rockstar
191
193
  self.album_mbid = (xml).at(:album)['mbid'] if (xml).at(:album) && (xml).at(:album)['mbid']
192
194
  self.date = Base.parse_time((xml).at(:date).inner_html) if (xml).at(:date)
193
195
  self.date_uts = (xml).at(:date)['uts'] if (xml).at(:date) && (xml).at(:date)['uts']
194
-
196
+
197
+ if wiki_xml = xml.at(:wiki)
198
+ self.summary = wiki_xml.at(:summary).to_plain_text if wiki_xml.at(:summary)
199
+ self.content = wiki_xml.at(:content).to_plain_text if wiki_xml.at(:content)
200
+ end
201
+
195
202
  self.images = {}
196
203
  (xml/'image').each {|image|
197
- self.images[image['size']] = image.inner_html
204
+ self.images[image['size']] = image.inner_html if self.images[image['size']].nil?
198
205
  }
199
206
 
200
207
  self.thumbnail = images['small']
@@ -204,7 +211,7 @@ module Rockstar
204
211
  end
205
212
 
206
213
  def albums(force=false)
207
- get_instance("track.getInfo", :album, :album, {:track => @name, :artist => @artist}, force)
214
+ get_instance("track.getInfo", :albums, :album, {:track => @name, :artist => @artist}, force)
208
215
  end
209
216
 
210
217
  def fans(force=false)
data/lib/rockstar/user.rb CHANGED
@@ -66,7 +66,7 @@ module Rockstar
66
66
 
67
67
  u.images = {}
68
68
  (xml/'image').each {|image|
69
- u.images[image['size']] = image.inner_html
69
+ u.images[image['size']] = image.inner_html if u.images[image['size']].nil?
70
70
  }
71
71
 
72
72
  u.avatar = u.images['small']
@@ -23,7 +23,7 @@ module Rockstar
23
23
 
24
24
  v.images = {}
25
25
  xml.search('/image').each {|image|
26
- v.images[image['size']] = image.inner_html
26
+ v.images[image['size']] = image.inner_html if v.images[image['size']].nil?
27
27
  }
28
28
 
29
29
  v
data/rockstar.gemspec CHANGED
@@ -5,21 +5,21 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rockstar}
8
- s.version = "0.5.2"
8
+ s.version = "0.6.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bodo Tasche"]
12
- s.date = %q{2011-04-03}
12
+ s.date = %q{2011-05-29}
13
13
  s.description = %q{This gem is an updated version of jnunemakers scrobbler gem. Rockstar uses v2.0 of the last.fm api.}
14
14
  s.email = %q{bodo@bitboxer.de}
15
15
  s.extra_rdoc_files = [
16
- "README.rdoc"
16
+ "README.md"
17
17
  ]
18
18
  s.files = [
19
19
  "History.txt",
20
20
  "MIT-LICENSE",
21
21
  "Manifest",
22
- "README.rdoc",
22
+ "README.md",
23
23
  "Rakefile",
24
24
  "VERSION",
25
25
  "examples/.gitignore",
@@ -54,6 +54,7 @@ Gem::Specification.new do |s|
54
54
  "rockstar.gemspec",
55
55
  "test/fixtures/xml/album/getinfo_album_Radio_Retalation_artist_Thievery_Corporation.xml",
56
56
  "test/fixtures/xml/album/getinfo_album_Some_Hearts_artist_Carrie_Underwood.xml",
57
+ "test/fixtures/xml/artist/getevents_artist_Metallica.xml",
57
58
  "test/fixtures/xml/artist/getinfo_artist_Metallica.xml",
58
59
  "test/fixtures/xml/artist/getsimilar_artist_Metallica.xml",
59
60
  "test/fixtures/xml/artist/gettopalbums_artist_Metallica.xml",
@@ -110,7 +111,7 @@ Gem::Specification.new do |s|
110
111
  ]
111
112
  s.homepage = %q{http://github.com/bitboxer/rockstar}
112
113
  s.require_paths = ["lib"]
113
- s.rubygems_version = %q{1.6.1}
114
+ s.rubygems_version = %q{1.7.2}
114
115
  s.summary = %q{wrapper for audioscrobbler (last.fm) web services}
115
116
  s.test_files = [
116
117
  "examples/album.rb",
@@ -0,0 +1,1064 @@
1
+ <lfm status="ok">
2
+ <events artist="Metallica" festivalsonly="0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" page="1" perPage="50" totalPages="1" total="14">
3
+ <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
4
+ <id>1844518</id>
5
+ <title>The Big Four - Metallica, Slayer, Megadeth, Anthrax</title>
6
+ <artists>
7
+ <artist>Metallica</artist>
8
+ <artist>Megadeth</artist>
9
+ <artist>Slayer</artist>
10
+ <artist>Anthrax</artist>
11
+ <headliner>Metallica</headliner>
12
+ </artists>
13
+ <venue>
14
+ <id>8792848</id>
15
+ <name>Veltins-Arena</name>
16
+ <location>
17
+ <city>Gelsenkirchen</city>
18
+ <country>Germany</country>
19
+ <street>Kurt-Schumacher-Straße 284 a</street>
20
+ <postalcode>45891</postalcode>
21
+ <geo:point>
22
+ <geo:lat>51.55667</geo:lat>
23
+ <geo:long>7.061722</geo:long>
24
+ </geo:point>
25
+ </location>
26
+ <url>http://www.last.fm/venue/8792848+Veltins-Arena</url>
27
+ <website>http://www.veltins-arena.de/</website>
28
+ <phonenumber>01805 / 150810</phonenumber>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34/37567207.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64/37567207.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/37567207.jpg</image>
32
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/37567207.jpg</image>
33
+ <image size="mega">http://userserve-ak.last.fm/serve/500/37567207/VeltinsArena+veltins+arena.jpg</image>
34
+ </venue> <startDate>Sat, 02 Jul 2011 14:16:01</startDate>
35
+ <description><![CDATA[<div class="bbcode"><a href="http://metallica.com/index.asp?item=603585" rel="nofollow">http://metallica.com/index.asp?item=603585</a></div>]]></description>
36
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
37
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
38
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
39
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
40
+ <attendance>485</attendance>
41
+ <reviews>0</reviews>
42
+ <tag>lastfm:event=1844518</tag>
43
+ <url>http://www.last.fm/event/1844518+The+Big+Four+-+Metallica%2C+Slayer%2C+Megadeth%2C+Anthrax</url>
44
+ <website></website>
45
+ <tickets>
46
+ </tickets>
47
+ <cancelled>0</cancelled>
48
+ <tags>
49
+ <tag>thrash metal</tag>
50
+ <tag>metal</tag>
51
+ <tag>heavy metal</tag>
52
+ </tags>
53
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
54
+ <id>1860640</id>
55
+ <title>The Big Four</title>
56
+ <artists>
57
+ <artist>Metallica</artist>
58
+ <artist>Megadeth</artist>
59
+ <artist>Slayer</artist>
60
+ <artist>Anthrax</artist>
61
+ <headliner>Metallica</headliner>
62
+ </artists>
63
+ <venue>
64
+ <id>8789770</id>
65
+ <name>Ullevi</name>
66
+ <location>
67
+ <city>Göteborg</city>
68
+ <country>Sweden</country>
69
+ <street>Skånegatan</street>
70
+ <postalcode>411 40</postalcode>
71
+ <geo:point>
72
+ <geo:lat>57.705437</geo:lat>
73
+ <geo:long>11.988639</geo:long>
74
+ </geo:point>
75
+ </location>
76
+ <url>http://www.last.fm/venue/8789770+Ullevi</url>
77
+ <website>http://www.ullevi.se/</website>
78
+ <phonenumber>+46(0)31611845</phonenumber>
79
+ <image size="small">http://userserve-ak.last.fm/serve/34/44280205.jpg</image>
80
+ <image size="medium">http://userserve-ak.last.fm/serve/64/44280205.jpg</image>
81
+ <image size="large">http://userserve-ak.last.fm/serve/126/44280205.jpg</image>
82
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/44280205.jpg</image>
83
+ <image size="mega">http://userserve-ak.last.fm/serve/500/44280205/Ullevi+venue.jpg</image>
84
+ </venue> <startDate>Sun, 03 Jul 2011 09:13:01</startDate>
85
+ <description><![CDATA[<div class="bbcode">The final announcement in our recent series of European adventures finds us in Gothenburg, Sweden on July 3, 2011. Of course Anthrax, Megadeth and Slayer will all be there for our first Big 4 show in Scandinavia!<br /><br />Tickets go on sale Monday, March 7 at 9:00 AM local time. Met Club members should check MetClub.com for more details about a special pre-sale this week.<br /><br /><br />Tickets: <a href="http://www.ticnet.se/event/METALLICATHEBIG4biljetter/UL10703?tm_link=tm_homeA_homeA_3_f1" rel="nofollow">http://www.ticnet.se/event/METALLICATHEBIG4biljetter/UL10703?tm_link=tm_homeA_homeA_3_f1</a></div>]]></description>
86
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
87
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
88
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
89
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
90
+ <attendance>236</attendance>
91
+ <reviews>0</reviews>
92
+ <tag>lastfm:event=1860640</tag>
93
+ <url>http://www.last.fm/event/1860640+The+Big+Four</url>
94
+ <website>http://www.metallica.com/index.asp?item=603600</website>
95
+ <tickets>
96
+ </tickets>
97
+ <cancelled>0</cancelled>
98
+ <tags>
99
+ <tag>thrash metal</tag>
100
+ <tag>metal</tag>
101
+ <tag>heavy metal</tag>
102
+ </tags>
103
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
104
+ <id>1850154</id>
105
+ <title>The Big Four</title>
106
+ <artists>
107
+ <artist>Metallica</artist>
108
+ <artist>Megadeth</artist>
109
+ <artist>Slayer</artist>
110
+ <artist>Anthrax</artist>
111
+ <artist>Andreas Kisser</artist>
112
+ <headliner>Metallica</headliner>
113
+ </artists>
114
+ <venue>
115
+ <id>9028160</id>
116
+ <name>Arena Concerti - Fiera Milano Rho</name>
117
+ <location>
118
+ <city>Rho</city>
119
+ <country>Italy</country>
120
+ <street></street>
121
+ <postalcode></postalcode>
122
+ <geo:point>
123
+ <geo:lat>45.5333333</geo:lat>
124
+ <geo:long>9.0333333</geo:long>
125
+ </geo:point>
126
+ </location>
127
+ <url>http://www.last.fm/venue/9028160+Arena+Concerti+-+Fiera+Milano+Rho</url>
128
+ <website></website>
129
+ <phonenumber></phonenumber>
130
+ <image size="small"></image>
131
+ <image size="medium"></image>
132
+ <image size="large"></image>
133
+ <image size="extralarge"></image>
134
+ <image size="mega"></image>
135
+ </venue> <startDate>Wed, 06 Jul 2011 08:47:01</startDate>
136
+ <description></description>
137
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
138
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
139
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
140
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
141
+ <attendance>160</attendance>
142
+ <reviews>0</reviews>
143
+ <tag>lastfm:event=1850154</tag>
144
+ <url>http://www.last.fm/event/1850154+The+Big+Four</url>
145
+ <website>http://www.liveinitaly.com</website>
146
+ <tickets>
147
+ </tickets>
148
+ <cancelled>0</cancelled>
149
+ <tags>
150
+ <tag>metal</tag>
151
+ <tag>thrash metal</tag>
152
+ <tag>heavy metal</tag>
153
+ </tags>
154
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
155
+ <id>1850522</id>
156
+ <title>Festival d'été de Québec</title>
157
+ <artists>
158
+ <artist>The Black Keys</artist>
159
+ <artist>Metallica</artist>
160
+ <artist>Elton John</artist>
161
+ <artist>Simple Plan</artist>
162
+ <artist>Yellowcard</artist>
163
+ <artist>Ben Harper</artist>
164
+ <artist>Cut Copy</artist>
165
+ <artist>Dropkick Murphys</artist>
166
+ <artist>Coheed and Cambria</artist>
167
+ <artist>M. Ward</artist>
168
+ <artist>Death from Above 1979</artist>
169
+ <artist>Hollywood Undead</artist>
170
+ <artist>Cage the Elephant</artist>
171
+ <artist>10 Years</artist>
172
+ <artist>Joe Satriani</artist>
173
+ <artist>Joseph Arthur</artist>
174
+ <artist>Girl Talk</artist>
175
+ <artist>Buddy Guy</artist>
176
+ <artist>Martha Wainwright</artist>
177
+ <artist>Marianne Faithfull</artist>
178
+ <artist>Annihilator</artist>
179
+ <artist>John Fogerty</artist>
180
+ <artist>Wavves</artist>
181
+ <artist>Auf der Maur</artist>
182
+ <artist>Stephen Marley</artist>
183
+ <artist>Wanda Jackson</artist>
184
+ <artist>Buck 65</artist>
185
+ <artist>The Low Anthem</artist>
186
+ <artist>Francis Cabrel</artist>
187
+ <artist>Designer Drugs</artist>
188
+ <artist>Coeur de Pirate</artist>
189
+ <artist>Malajube</artist>
190
+ <artist>Manu Dibango</artist>
191
+ <artist>Ours</artist>
192
+ <artist>Young Galaxy</artist>
193
+ <artist>An Horse</artist>
194
+ <artist>Thomas Fersen</artist>
195
+ <artist>Mexican Institute of Sound</artist>
196
+ <artist>Blue King Brown</artist>
197
+ <artist>Dawes</artist>
198
+ <artist>Booba</artist>
199
+ <artist>Shad</artist>
200
+ <artist>The Klezmatics</artist>
201
+ <artist>Nolwenn Leroy</artist>
202
+ <artist>Miracle Fortress</artist>
203
+ <artist>Grand Corps Malade</artist>
204
+ <artist>Hypnotic Brass Ensemble</artist>
205
+ <artist>Cheb Khaled</artist>
206
+ <artist>Suuns</artist>
207
+ <artist>Patrick Fiori</artist>
208
+ <artist>Novalima</artist>
209
+ <artist>Duchess Says</artist>
210
+ <artist>Freshlyground</artist>
211
+ <artist>Karkwa</artist>
212
+ <artist>Nicoletta</artist>
213
+ <artist>Jacques Greene</artist>
214
+ <artist>Emmanuel Jal</artist>
215
+ <artist>Gaëtan Roussel</artist>
216
+ <artist>Emilie-Claire Barlow</artist>
217
+ <artist>Dave Aju</artist>
218
+ <artist>Jonas</artist>
219
+ <artist>Hélène Segara</artist>
220
+ <artist>Marco Calliari</artist>
221
+ <artist>Omar Souleyman</artist>
222
+ <artist>Grupo Fantasma</artist>
223
+ <artist>Stefie Shock</artist>
224
+ <artist>Jean-Pierre Ferland</artist>
225
+ <artist>Afrocubism</artist>
226
+ <artist>Sword</artist>
227
+ <artist>Marie-Mai</artist>
228
+ <artist>Blitz the Ambassador</artist>
229
+ <artist>Afrodizz</artist>
230
+ <artist>Bombino</artist>
231
+ <artist>Madjo</artist>
232
+ <artist>Baloji</artist>
233
+ <artist>Aṣa</artist>
234
+ <artist>G Love &amp; Special Sauce</artist>
235
+ <artist>Matt Schofield</artist>
236
+ <artist>eric lapointe</artist>
237
+ <artist>David Gogo</artist>
238
+ <artist>Gregory Charles</artist>
239
+ <artist>Yeshe</artist>
240
+ <artist>Bloodshot Bill</artist>
241
+ <artist>Yaron Herman Trio</artist>
242
+ <artist>Florence K</artist>
243
+ <artist>Gatineau</artist>
244
+ <artist>Plants &amp; Animals</artist>
245
+ <artist>Daran</artist>
246
+ <artist>Lee Fields and The Expressions</artist>
247
+ <artist>The Campbell Brothers</artist>
248
+ <artist>Bleeker Ridge</artist>
249
+ <artist>Michel Pagliaro</artist>
250
+ <artist>Les Charbonniers de l'Enfer</artist>
251
+ <artist>Shawn Kellerman</artist>
252
+ <artist>Random Recipe</artist>
253
+ <artist>The Twisters</artist>
254
+ <artist>Manu Militari</artist>
255
+ <artist>Ian Kelly</artist>
256
+ <artist>Galaxie</artist>
257
+ <artist>Who Are You</artist>
258
+ <artist>Tim robbins &amp; the rogues gallery band</artist>
259
+ <artist>LAURENT</artist>
260
+ <artist>Alex Nevsky</artist>
261
+ <artist>Louise Forestier</artist>
262
+ <artist>Jimmy Hunt</artist>
263
+ <artist>Emilie Clepper</artist>
264
+ <artist>Mauvais sort</artist>
265
+ <artist>William Deslauriers</artist>
266
+ <artist>Les Espoirs de Coronthie</artist>
267
+ <artist>Buddy McNeil &amp; the Magic Mirrors</artist>
268
+ <artist>Oli Brown Band</artist>
269
+ <artist>Kim Churchill</artist>
270
+ <artist>Champion et ses g-strings</artist>
271
+ <artist>Dance Laury Dance</artist>
272
+ <artist>Red Baraat</artist>
273
+ <artist>Karim Ouellet</artist>
274
+ <artist>alaclair ensemble</artist>
275
+ <artist>Vincent Lemieux</artist>
276
+ <artist>Sam Sadigursky</artist>
277
+ <artist>I. No</artist>
278
+ <artist>Jamie McLean Band</artist>
279
+ <artist>Cécile Doo-Kingué</artist>
280
+ <artist>Élage Diouf</artist>
281
+ <artist>Nortec Collective Presents: Bostich &amp; Fussible</artist>
282
+ <artist>claass</artist>
283
+ <artist>Mat Fraser</artist>
284
+ <artist>Alejandra Ribera</artist>
285
+ <artist>Pablo Mayor</artist>
286
+ <artist>Face T</artist>
287
+ <artist>Lisa LeBlanc</artist>
288
+ <artist>Folklore Urbano</artist>
289
+ <artist>Isabeau et les Chercheurs D'or</artist>
290
+ <artist>Douze Hommes Rapaillés</artist>
291
+ <artist>The blue seed</artist>
292
+ <artist>Habana Café</artist>
293
+ <artist>NASTURICA</artist>
294
+ <artist>Karen Young &amp; Éric Auclair</artist>
295
+ <artist>Lionel Young Band</artist>
296
+ <artist>Ezeckiel</artist>
297
+ <artist>Adam Doubleyou</artist>
298
+ <artist>Mark Bérubé and The Patriotic Few</artist>
299
+ <artist>CHX Soundsystem</artist>
300
+ <artist>Rael da Rima &amp; Vox Sambou</artist>
301
+ <artist>Del Sonido</artist>
302
+ <artist>Fade Wizard</artist>
303
+ <artist>Daniela Lumbroso</artist>
304
+ <artist>Folklore Urbano Orchestra</artist>
305
+ <artist>Roberto Lòpez Afro-Colombian Jazz Orchestra</artist>
306
+ <artist>Donato-Bourassa-Lozano-Tanguay</artist>
307
+ <artist>Lagacé &amp; Jolicoeur Paulo Ramos</artist>
308
+ <artist>Miss V &amp; The Lonestars</artist>
309
+ <artist>Shrofel-Moore-Doxas Trio</artist>
310
+ <artist>Jean-Pierre Zanella Trio</artist>
311
+ <artist>Gabrielle Shonk Quartet</artist>
312
+ <artist>Michelle-Marie Nestor Trio</artist>
313
+ <artist>Sextet André Larue avec Mark Weinstein</artist>
314
+ <artist>Guy Bélanger Trio Acoustique</artist>
315
+ <artist>Smokin’ Joe Kubek &amp; B’Nois King</artist>
316
+ <artist>Craig Miller’s Blues Killers</artist>
317
+ <artist>Why Alex, Why ?</artist>
318
+ <artist>E1000 + This is Not Design</artist>
319
+ <artist>Nerdy by Nature</artist>
320
+ <artist>Jewish Deli</artist>
321
+ <artist>Zéphyr and Friends</artist>
322
+ <headliner>The Black Keys</headliner>
323
+ </artists>
324
+ <venue>
325
+ <id>8821952</id>
326
+ <name>Place d'Youville</name>
327
+ <location>
328
+ <city></city>
329
+ <country>Canada</country>
330
+ <street>Place d'Youville</street>
331
+ <postalcode>G1R</postalcode>
332
+ <geo:point>
333
+ <geo:lat>46.812407</geo:lat>
334
+ <geo:long>-71.214695</geo:long>
335
+ </geo:point>
336
+ </location>
337
+ <url>http://www.last.fm/venue/8821952+Place+d%27Youville</url>
338
+ <website></website>
339
+ <phonenumber></phonenumber>
340
+ <image size="small">http://userserve-ak.last.fm/serve/34/47989969.jpg</image>
341
+ <image size="medium">http://userserve-ak.last.fm/serve/64/47989969.jpg</image>
342
+ <image size="large">http://userserve-ak.last.fm/serve/126/47989969.jpg</image>
343
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/47989969.jpg</image>
344
+ <image size="mega">http://userserve-ak.last.fm/serve/_/47989969/Place+dYouville.jpg</image>
345
+ </venue> <startDate>Thu, 07 Jul 2011 13:43:01</startDate>
346
+ <endDate>Sun, 17 Jul 2011 13:43:01</endDate>
347
+ <description><![CDATA[<div class="bbcode">Imaginez une ville à la fois moderne et historique envahie par la musique et 1,5 million de festivaliers. Douze scènes intérieures et extérieures, lieux de découvertes ou de célébrations, sur lesquelles défilent pendant 11 jours au début du mois de juillet des vedettes internationales</div>]]></description>
348
+ <image size="small">http://userserve-ak.last.fm/serve/34/54380955.jpg</image>
349
+ <image size="medium">http://userserve-ak.last.fm/serve/64/54380955.jpg</image>
350
+ <image size="large">http://userserve-ak.last.fm/serve/126/54380955.jpg</image>
351
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/54380955.jpg</image>
352
+ <attendance>51</attendance>
353
+ <reviews>0</reviews>
354
+ <tag>lastfm:event=1850522</tag>
355
+ <url>http://www.last.fm/festival/1850522+Festival+d%27%C3%A9t%C3%A9+de+Qu%C3%A9bec</url>
356
+ <website>http://www.infofestival.com/</website>
357
+ <tickets>
358
+ </tickets>
359
+ <cancelled>0</cancelled>
360
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
361
+ <id>1681633</id>
362
+ <title>Sonisphere Festival France</title>
363
+ <artists>
364
+ <artist>Metallica</artist>
365
+ <artist>Papa Roach</artist>
366
+ <artist>Slipknot</artist>
367
+ <artist>Megadeth</artist>
368
+ <artist>Slayer</artist>
369
+ <artist>Dream Theater</artist>
370
+ <artist>Anthrax</artist>
371
+ <artist>Bring Me The Horizon</artist>
372
+ <artist>Mastodon</artist>
373
+ <artist>Volbeat</artist>
374
+ <artist>Tarja</artist>
375
+ <artist>Airbourne</artist>
376
+ <artist>Gojira</artist>
377
+ <artist>Diamond Head</artist>
378
+ <artist>Mass Hysteria</artist>
379
+ <artist>Rise To Remain</artist>
380
+ <artist>Loudblast</artist>
381
+ <artist>Symfonia</artist>
382
+ <headliner>Metallica</headliner>
383
+ </artists>
384
+ <venue>
385
+ <id>9148705</id>
386
+ <name>Amneville</name>
387
+ <location>
388
+ <city>Amneville</city>
389
+ <country>France</country>
390
+ <street></street>
391
+ <postalcode>57360</postalcode>
392
+ <geo:point>
393
+ <geo:lat>49.242644</geo:lat>
394
+ <geo:long>6.135201</geo:long>
395
+ </geo:point>
396
+ </location>
397
+ <url>http://www.last.fm/venue/9148705+Amneville</url>
398
+ <website></website>
399
+ <phonenumber></phonenumber>
400
+ <image size="small"></image>
401
+ <image size="medium"></image>
402
+ <image size="large"></image>
403
+ <image size="extralarge"></image>
404
+ <image size="mega"></image>
405
+ </venue> <startDate>Fri, 08 Jul 2011 20:18:01</startDate>
406
+ <endDate>Sat, 09 Jul 2011 20:18:01</endDate>
407
+ <description><![CDATA[<div class="bbcode">Officially confirmed (bands and venue TBA)<br /><br /><a href="http://fr.sonispherefestivals.com/" rel="nofollow">http://fr.sonispherefestivals.com/</a></div>]]></description>
408
+ <image size="small">http://userserve-ak.last.fm/serve/34/60513129.jpg</image>
409
+ <image size="medium">http://userserve-ak.last.fm/serve/64/60513129.jpg</image>
410
+ <image size="large">http://userserve-ak.last.fm/serve/126/60513129.jpg</image>
411
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/60513129.jpg</image>
412
+ <attendance>247</attendance>
413
+ <reviews>0</reviews>
414
+ <tag>lastfm:event=1681633</tag>
415
+ <url>http://www.last.fm/festival/1681633+Sonisphere+Festival+France</url>
416
+ <website>http://sonispherefestivals.com/</website>
417
+ <tickets>
418
+ </tickets>
419
+ <cancelled>0</cancelled>
420
+ <tags>
421
+ <tag>metal</tag>
422
+ </tags>
423
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
424
+ <id>1722428</id>
425
+ <title>Sonisphere Festival 2011</title>
426
+ <artists>
427
+ <artist>Weezer</artist>
428
+ <artist>Metallica</artist>
429
+ <artist>Slipknot</artist>
430
+ <artist>Limp Bizkit</artist>
431
+ <artist>Sum 41</artist>
432
+ <artist>Motörhead</artist>
433
+ <artist>Megadeth</artist>
434
+ <artist>Slayer</artist>
435
+ <artist>The Mars Volta</artist>
436
+ <artist>In Flames</artist>
437
+ <artist>Bad Religion</artist>
438
+ <artist>All Time Low</artist>
439
+ <artist>Anberlin</artist>
440
+ <artist>Anthrax</artist>
441
+ <artist>Opeth</artist>
442
+ <artist>Biffy Clyro</artist>
443
+ <artist>Arch Enemy</artist>
444
+ <artist>Mastodon</artist>
445
+ <artist>House of Pain</artist>
446
+ <artist>Blood Red Shoes</artist>
447
+ <artist>Parkway Drive</artist>
448
+ <artist>The Sisters of Mercy</artist>
449
+ <artist>Paradise Lost</artist>
450
+ <artist>Four Year Strong</artist>
451
+ <artist>Volbeat</artist>
452
+ <artist>You Me At Six</artist>
453
+ <artist>The Black Dahlia Murder</artist>
454
+ <artist>Killing Joke</artist>
455
+ <artist>Airbourne</artist>
456
+ <artist>Gojira</artist>
457
+ <artist>Protest The Hero</artist>
458
+ <artist>Architects</artist>
459
+ <artist>Gallows</artist>
460
+ <artist>Kids In Glass Houses</artist>
461
+ <artist>Alestorm</artist>
462
+ <artist>InMe</artist>
463
+ <artist>Diamond Head</artist>
464
+ <artist>Firewind</artist>
465
+ <artist>Cavalera Conspiracy</artist>
466
+ <artist>Orange Goblin</artist>
467
+ <artist>Black Tide</artist>
468
+ <artist>Innerpartysystem</artist>
469
+ <artist>Amplifier</artist>
470
+ <artist>Cancer Bats</artist>
471
+ <artist>Kylesa</artist>
472
+ <artist>Grinspoon</artist>
473
+ <artist>The Answer</artist>
474
+ <artist>Hayseed Dixie</artist>
475
+ <artist>Glamour Of The Kill</artist>
476
+ <artist>Watain</artist>
477
+ <artist>Sonic Boom Six</artist>
478
+ <artist>Title Fight</artist>
479
+ <artist>Fozzy</artist>
480
+ <artist>One Minute Silence</artist>
481
+ <artist>Pulled Apart By Horses</artist>
482
+ <artist>Me vs Hero</artist>
483
+ <artist>Sylosis</artist>
484
+ <artist>Rolo Tomassi</artist>
485
+ <artist>Tesseract</artist>
486
+ <artist>Periphery</artist>
487
+ <artist>Bill Bailey</artist>
488
+ <artist>Exit Ten</artist>
489
+ <artist>Anterior</artist>
490
+ <artist>My Passion</artist>
491
+ <artist>While She Sleeps</artist>
492
+ <artist>Jim Breuer</artist>
493
+ <artist>Black Breath</artist>
494
+ <artist>Lower Than Atlantis</artist>
495
+ <artist>Turbowolf</artist>
496
+ <artist>Richard Cheese &amp; Lounge Against The Machine</artist>
497
+ <artist>The Safety Fire</artist>
498
+ <artist>Black Spiders</artist>
499
+ <artist>Cerebral Ballzy</artist>
500
+ <artist>Steve-O</artist>
501
+ <artist>Rise To Remain</artist>
502
+ <artist>Panic Cell</artist>
503
+ <artist>Hammer of the Gods</artist>
504
+ <artist>Japanese Voyeurs</artist>
505
+ <artist>You And What Army</artist>
506
+ <artist>Young Legionnaire</artist>
507
+ <artist>Don Broco</artist>
508
+ <artist>The Defiled</artist>
509
+ <artist>Fletcher</artist>
510
+ <artist>Rival Sons</artist>
511
+ <artist>Tek One</artist>
512
+ <artist>The Treatment</artist>
513
+ <artist>Mojo Fury</artist>
514
+ <artist>The Crave</artist>
515
+ <artist>Flats</artist>
516
+ <artist>Saint Jude</artist>
517
+ <artist>Decade</artist>
518
+ <artist>Hounds</artist>
519
+ <artist>Revoker</artist>
520
+ <artist>Arcane Roots</artist>
521
+ <artist>Turbogeist</artist>
522
+ <artist>No Americana</artist>
523
+ <artist>Jetblack</artist>
524
+ <artist>The Virgin Marys</artist>
525
+ <artist>Demonic Ressurection</artist>
526
+ <artist>Cherri Bomb</artist>
527
+ <artist>Cavelera Conspiracy</artist>
528
+ <artist>Jason John Whitehead</artist>
529
+ <artist>Andrew O'Neill</artist>
530
+ <artist>Slam Cartel</artist>
531
+ <artist>Sons of Icarus</artist>
532
+ <artist>Bob Slayer</artist>
533
+ <artist>Jarred Christmas</artist>
534
+ <artist>six hour sundown</artist>
535
+ <headliner>Weezer</headliner>
536
+ </artists>
537
+ <venue>
538
+ <id>8825807</id>
539
+ <name>Knebworth Park</name>
540
+ <location>
541
+ <city>Knebworth, Hertfordshire</city>
542
+ <country>United Kingdom</country>
543
+ <street></street>
544
+ <postalcode>SG3 6PY</postalcode>
545
+ <geo:point>
546
+ <geo:lat>51.872235</geo:lat>
547
+ <geo:long>-0.211709</geo:long>
548
+ </geo:point>
549
+ </location>
550
+ <url>http://www.last.fm/venue/8825807+Knebworth+Park</url>
551
+ <website>http://KnebworthHouse.com</website>
552
+ <phonenumber>014 3881 2661</phonenumber>
553
+ <image size="small">http://userserve-ak.last.fm/serve/34/44956253.png</image>
554
+ <image size="medium">http://userserve-ak.last.fm/serve/64/44956253.png</image>
555
+ <image size="large">http://userserve-ak.last.fm/serve/126/44956253.png</image>
556
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/44956253.png</image>
557
+ <image size="mega">http://userserve-ak.last.fm/serve/_/44956253/Knebworth+Park+KnebworthParkhousepinklong445x.png</image>
558
+ </venue> <startDate>Fri, 08 Jul 2011 21:42:01</startDate>
559
+ <endDate>Sun, 10 Jul 2011 21:42:01</endDate>
560
+ <description><![CDATA[<div class="bbcode">The first of the headliners can already be revealed. Iowa’s favourite sons, Slipknot will perform this summer at Sonisphere, including an exclusive UK performance at Knebworth.<br /><br />Yes, it’s really true. SONISPHERE will be bringing together METALLICA, SLAYER, MEGADETH and ANTHRAX in the UK for the first time in history to exclusively headline the Friday night at Knebworth.</div>]]></description>
561
+ <image size="small">http://userserve-ak.last.fm/serve/34/62917881.jpg</image>
562
+ <image size="medium">http://userserve-ak.last.fm/serve/64/62917881.jpg</image>
563
+ <image size="large">http://userserve-ak.last.fm/serve/126/62917881.jpg</image>
564
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/62917881.jpg</image>
565
+ <attendance>1203</attendance>
566
+ <reviews>1</reviews>
567
+ <tag>lastfm:event=1722428</tag>
568
+ <url>http://www.last.fm/festival/1722428+Sonisphere+Festival+2011</url>
569
+ <website>http://uk.sonispherefestivals.com</website>
570
+ <tickets>
571
+ </tickets>
572
+ <cancelled>0</cancelled>
573
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
574
+ <id>1935176</id>
575
+ <title>Rock the Hill</title>
576
+ <artists>
577
+ <artist>Metallica</artist>
578
+ <artist>Seether</artist>
579
+ <artist>Coheed and Cambria</artist>
580
+ <artist>Protest The Hero</artist>
581
+ <artist>Matt Mays</artist>
582
+ <headliner>Metallica</headliner>
583
+ </artists>
584
+ <venue>
585
+ <id>8939167</id>
586
+ <name>Garrison Grounds at Citadel Hill</name>
587
+ <location>
588
+ <city>Halifax, NS</city>
589
+ <country>Canada</country>
590
+ <street></street>
591
+ <postalcode></postalcode>
592
+ <geo:point>
593
+ <geo:lat>44.643162</geo:lat>
594
+ <geo:long>-63.622727</geo:long>
595
+ </geo:point>
596
+ </location>
597
+ <url>http://www.last.fm/venue/8939167+Garrison+Grounds+at+Citadel+Hill</url>
598
+ <website></website>
599
+ <phonenumber></phonenumber>
600
+ <image size="small"></image>
601
+ <image size="medium"></image>
602
+ <image size="large"></image>
603
+ <image size="extralarge"></image>
604
+ <image size="mega"></image>
605
+ </venue> <startDate>Thu, 14 Jul 2011 13:41:01</startDate>
606
+ <description></description>
607
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
608
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
609
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
610
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
611
+ <attendance>14</attendance>
612
+ <reviews>0</reviews>
613
+ <tag>lastfm:event=1935176</tag>
614
+ <url>http://www.last.fm/event/1935176+Rock+the+Hill</url>
615
+ <website>http://www.rockthehill.ca/</website>
616
+ <tickets>
617
+ </tickets>
618
+ <cancelled>0</cancelled>
619
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
620
+ <id>1915710</id>
621
+ <title>Metallica</title>
622
+ <artists>
623
+ <artist>Metallica</artist>
624
+ <artist>Joe Satriani</artist>
625
+ <artist>Dance Laury Dance</artist>
626
+ <headliner>Metallica</headliner>
627
+ </artists>
628
+ <venue>
629
+ <id>9038182</id>
630
+ <name>Scène Bell</name>
631
+ <location>
632
+ <city>Québec</city>
633
+ <country>Canada</country>
634
+ <street>Plaines d'Abraham</street>
635
+ <postalcode>G1R 2L7</postalcode>
636
+ <geo:point>
637
+ <geo:lat>46.81318</geo:lat>
638
+ <geo:long>-71.227945</geo:long>
639
+ </geo:point>
640
+ </location>
641
+ <url>http://www.last.fm/venue/9038182+Sc%C3%A8ne+Bell</url>
642
+ <website></website>
643
+ <phonenumber></phonenumber>
644
+ <image size="small"></image>
645
+ <image size="medium"></image>
646
+ <image size="large"></image>
647
+ <image size="extralarge"></image>
648
+ <image size="mega"></image>
649
+ </venue> <startDate>Sat, 16 Jul 2011 15:07:01</startDate>
650
+ <description></description>
651
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
652
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
653
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
654
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
655
+ <attendance>19</attendance>
656
+ <reviews>0</reviews>
657
+ <tag>lastfm:event=1915710</tag>
658
+ <url>http://www.last.fm/event/1915710+Metallica+at+Sc%C3%A8ne+Bell+on+16+July+2011</url>
659
+ <website></website>
660
+ <tickets>
661
+ </tickets>
662
+ <cancelled>0</cancelled>
663
+ <tags>
664
+ <tag>rock</tag>
665
+ </tags>
666
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
667
+ <id>1909054</id>
668
+ <title>Festival d'été de Québec</title>
669
+ <artists>
670
+ <artist>Metallica</artist>
671
+ <artist>Elton John</artist>
672
+ <artist>The Black Keys</artist>
673
+ <artist>Cage the Elephant</artist>
674
+ <artist>Joe Satriani</artist>
675
+ <artist>Girl Talk</artist>
676
+ <artist>Thomas Fersen</artist>
677
+ <artist>Dance Laury Dance</artist>
678
+ <headliner>Metallica</headliner>
679
+ </artists>
680
+ <venue>
681
+ <id>9184592</id>
682
+ <name>Plein d'abraham</name>
683
+ <location>
684
+ <city>Québec</city>
685
+ <country>Canada</country>
686
+ <street></street>
687
+ <postalcode></postalcode>
688
+ <geo:point>
689
+ <geo:lat></geo:lat>
690
+ <geo:long></geo:long>
691
+ </geo:point>
692
+ </location>
693
+ <url>http://www.last.fm/venue/9184592+Plein+d%27abraham</url>
694
+ <website></website>
695
+ <phonenumber></phonenumber>
696
+ <image size="small"></image>
697
+ <image size="medium"></image>
698
+ <image size="large"></image>
699
+ <image size="extralarge"></image>
700
+ <image size="mega"></image>
701
+ </venue> <startDate>Sat, 16 Jul 2011 19:00:00</startDate>
702
+ <description></description>
703
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
704
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
705
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
706
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
707
+ <attendance>7</attendance>
708
+ <reviews>0</reviews>
709
+ <tag>lastfm:event=1909054</tag>
710
+ <url>http://www.last.fm/festival/1909054+Festival+d%27%C3%A9t%C3%A9+de+Qu%C3%A9bec</url>
711
+ <website></website>
712
+ <tickets>
713
+ </tickets>
714
+ <cancelled>0</cancelled>
715
+ <tags>
716
+ <tag>rock</tag>
717
+ </tags>
718
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
719
+ <id>1925062</id>
720
+ <title>The Big 4</title>
721
+ <artists>
722
+ <artist>Metallica</artist>
723
+ <artist>Megadeth</artist>
724
+ <artist>Slayer</artist>
725
+ <artist>Anthrax</artist>
726
+ <headliner>Metallica</headliner>
727
+ </artists>
728
+ <venue>
729
+ <id>8793374</id>
730
+ <name>Yankee Stadium</name>
731
+ <location>
732
+ <city>New York</city>
733
+ <country>United States</country>
734
+ <street>1 East 161st Street</street>
735
+ <postalcode>10451</postalcode>
736
+ <geo:point>
737
+ <geo:lat>40.82697</geo:lat>
738
+ <geo:long>-73.92786</geo:long>
739
+ </geo:point>
740
+ </location>
741
+ <url>http://www.last.fm/venue/8793374+Yankee+Stadium</url>
742
+ <website></website>
743
+ <phonenumber></phonenumber>
744
+ <image size="small">http://userserve-ak.last.fm/serve/34/12031045.jpg</image>
745
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12031045.jpg</image>
746
+ <image size="large">http://userserve-ak.last.fm/serve/126/12031045.jpg</image>
747
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/12031045.jpg</image>
748
+ <image size="mega">http://userserve-ak.last.fm/serve/_/12031045/Yankee+Stadium+yankeepic.jpg</image>
749
+ </venue> <startDate>Wed, 14 Sep 2011 16:00:00</startDate>
750
+ <description><![CDATA[<div class="bbcode">Tickets on sale May 6, 2011 at 10am<br /><br />Ticket prices are as follows:<br />Front G.A. floor: $225<br />Back G.A. floor: $175<br />Reserved lower level seats: $119<br />Upper deck reserved seats: $90<br /><br />Additional Ticketmaster and facility fees will be applied.<br /><br />Check back shortly for hotel packages and shuttle bus/ferry travel packages. There will not be a VIP ticket package now that the entire floor is G.A.</div>]]></description>
751
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
752
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
753
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
754
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
755
+ <attendance>77</attendance>
756
+ <reviews>0</reviews>
757
+ <tag>lastfm:event=1925062</tag>
758
+ <url>http://www.last.fm/event/1925062+The+Big+4</url>
759
+ <website>http://www.ticketmaster.com/event/1D0046A216C14A88</website>
760
+ <tickets>
761
+ </tickets>
762
+ <cancelled>0</cancelled>
763
+ <tags>
764
+ <tag>thrash metal</tag>
765
+ <tag>metal</tag>
766
+ <tag>heavy metal</tag>
767
+ </tags>
768
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
769
+ <id>1737875</id>
770
+ <title>Rock in Rio 2011</title>
771
+ <artists>
772
+ <artist>Metallica</artist>
773
+ <artist>Coldplay</artist>
774
+ <artist>Red Hot Chili Peppers</artist>
775
+ <artist>Rihanna</artist>
776
+ <artist>System of a Down</artist>
777
+ <artist>Guns N' Roses</artist>
778
+ <artist>Snow Patrol</artist>
779
+ <artist>Katy Perry</artist>
780
+ <artist>Jay-Z</artist>
781
+ <artist>Evanescence</artist>
782
+ <artist>Slipknot</artist>
783
+ <artist>Elton John</artist>
784
+ <artist>Shakira</artist>
785
+ <artist>Lenny Kravitz</artist>
786
+ <artist>Motörhead</artist>
787
+ <artist>Stone Sour</artist>
788
+ <artist>Sepultura</artist>
789
+ <artist>Coheed and Cambria</artist>
790
+ <artist>Boys Noize</artist>
791
+ <artist>Ferry Corsten</artist>
792
+ <artist>Bebel Gilberto</artist>
793
+ <artist>Above &amp; Beyond</artist>
794
+ <artist>Maná</artist>
795
+ <artist>Os Mutantes</artist>
796
+ <artist>Angra</artist>
797
+ <artist>Gui Boratto</artist>
798
+ <artist>Dimitri from Paris</artist>
799
+ <artist>Tarja Turunen</artist>
800
+ <artist>Macaco</artist>
801
+ <artist>Pitty</artist>
802
+ <artist>Skank</artist>
803
+ <artist>Cibelle</artist>
804
+ <artist>CéU</artist>
805
+ <artist>Zeca Baleiro</artist>
806
+ <artist>The Asteroids Galaxy Tour</artist>
807
+ <artist>Milton Nascimento</artist>
808
+ <artist>Capital Inicial</artist>
809
+ <artist>Tom Zé</artist>
810
+ <artist>Os Paralamas do Sucesso</artist>
811
+ <artist>Steve Aoki</artist>
812
+ <artist>Ivete Sangalo</artist>
813
+ <artist>Jorge Drexler</artist>
814
+ <artist>Jota Quest</artist>
815
+ <artist>Titãs</artist>
816
+ <artist>Arnaldo Antunes</artist>
817
+ <artist>Buraka Som Sistema</artist>
818
+ <artist>Marcelo D2</artist>
819
+ <artist>Móveis Coloniais de Acaju</artist>
820
+ <artist>NX Zero</artist>
821
+ <artist>Esperanza Spalding</artist>
822
+ <artist>João Donato</artist>
823
+ <artist>Mariana Aydar</artist>
824
+ <artist>Cidade Negra</artist>
825
+ <artist>Guy Gerber</artist>
826
+ <artist>Matanza</artist>
827
+ <artist>The Twelves</artist>
828
+ <artist>Hercules &amp; Love Affair</artist>
829
+ <artist>Detonautas Roque Clube</artist>
830
+ <artist>Martinho da Vila</artist>
831
+ <artist>Ed Motta</artist>
832
+ <artist>Danny Tenaglia</artist>
833
+ <artist>Nação Zumbi</artist>
834
+ <artist>Frejat</artist>
835
+ <artist>Gloria</artist>
836
+ <artist>Concha Buika</artist>
837
+ <artist>Erasmo Carlos</artist>
838
+ <artist>Claudia Leitte</artist>
839
+ <artist>David Fonseca</artist>
840
+ <artist>Marcelo Camelo</artist>
841
+ <artist>Rui Veloso</artist>
842
+ <artist>Mondo Cane</artist>
843
+ <artist>Xutos &amp; Pontapés</artist>
844
+ <artist>Cidadão Instigado</artist>
845
+ <artist>Tiê</artist>
846
+ <artist>Sandra de Sá</artist>
847
+ <artist>Mixhell</artist>
848
+ <artist>BOSS in drama</artist>
849
+ <artist>EMICIDA</artist>
850
+ <artist>Monobloco</artist>
851
+ <artist>Tulipa Ruiz</artist>
852
+ <artist>BNegão</artist>
853
+ <artist>Korzus</artist>
854
+ <artist>Karina Buhr</artist>
855
+ <artist>DJ Vibe</artist>
856
+ <artist>Nicole Moudaber</artist>
857
+ <artist>Body and Soul</artist>
858
+ <artist>Jupiter Maçã</artist>
859
+ <artist>DJ Harvey</artist>
860
+ <artist>The Monomes</artist>
861
+ <artist>Killer On The Dancefloor</artist>
862
+ <artist>Flow &amp; Zeo</artist>
863
+ <artist>Tambours Du Bronx</artist>
864
+ <artist>Life is a Loop</artist>
865
+ <artist>DJ Ingrid</artist>
866
+ <artist>DJ Luciano</artist>
867
+ <artist>Mary Zander</artist>
868
+ <artist>Leo Janeiro</artist>
869
+ <artist>Nalaya Brown</artist>
870
+ <artist>DJ DRI.K</artist>
871
+ <artist>Memê</artist>
872
+ <artist>Orkestra Rumpilezz</artist>
873
+ <artist>Marcelo Yuka</artist>
874
+ <artist>Rodrigo Penna</artist>
875
+ <artist>Amora Pêra</artist>
876
+ <artist>Orquestra Sinfônica de Heliópolis</artist>
877
+ <headliner>Metallica</headliner>
878
+ </artists>
879
+ <venue>
880
+ <id>8803325</id>
881
+ <name>Cidade do Rock</name>
882
+ <location>
883
+ <city>Rio de Janeiro</city>
884
+ <country>Brazil</country>
885
+ <street></street>
886
+ <postalcode></postalcode>
887
+ <geo:point>
888
+ <geo:lat>-22.9</geo:lat>
889
+ <geo:long>-43.2333333</geo:long>
890
+ </geo:point>
891
+ </location>
892
+ <url>http://www.last.fm/venue/8803325+Cidade+do+Rock</url>
893
+ <website></website>
894
+ <phonenumber></phonenumber>
895
+ <image size="small">http://userserve-ak.last.fm/serve/34/52307243.jpg</image>
896
+ <image size="medium">http://userserve-ak.last.fm/serve/64/52307243.jpg</image>
897
+ <image size="large">http://userserve-ak.last.fm/serve/126/52307243.jpg</image>
898
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/52307243.jpg</image>
899
+ <image size="mega">http://userserve-ak.last.fm/serve/500/52307243/Cidade+do+Rock+Nova++2011.jpg</image>
900
+ </venue> <startDate>Fri, 23 Sep 2011 15:40:01</startDate>
901
+ <endDate>Sun, 02 Oct 2011 15:40:01</endDate>
902
+ <description><![CDATA[<div class="bbcode">● <a href="http://www.rockinrio.com.br/pt/lineup/" rel="nofollow">LINE-UP OFICIAL</a> ● <a href="http://www.youtube.com/watch?v=zRIN9y7Aqws&amp;feature=related" rel="nofollow">ROCK IN RIO - POR UM MUNDO MELHOR</a><br />» O Rock in Rio é o maior festival de música e entretenimento do mundo. Sempre zelando pela qualidade das atrações, o conforto do público e uma infraestrura impecável, é um evento feito para todas as tribos que movimenta a indústria fonográfica, o turismo e a economia.A ideia vem do empresário brasileiro Roberto Medina, que realizou no mês de janeiro de 1985 sua primeira edição, em plena transição da ditadura para a democracia: <a href="http://www.youtube.com/watch?v=DavEeOihwRI&amp;feature=related" rel="nofollow">O Rock in Rio convidou o Brasil a comemorar a liberdade. Em suas nove edições, sendo três no Brasil (1985, 1991 e 2001), quatro em Portugal (2004, 2006, 2008 e 2010) e duas na Espanha (2008 e 2010), o Rock in Rio reuniu mais de 5 milhões de pessoas, que aplaudiram ao vivo 656 bandas. Foram mais de 780 horas de música com transmissão para mais de 1 bilhão de telespectadores em 80 países. Com o mote Por um Mundo Melhor, o Rock in Rio sempre buscou o pioneirismo em seu modelo de negócios, visando uma atuação sustentável e socialmente responsável. Essa atitude vai desde a compensação das emissões de carbono até a escolha de parceiros com atuação socioambiental. O festival procura, além disso, o apoio direto a diversos projetos de sustentabilidade - ao longo dos últimos 10 anos, foram 4.803.357,00</a> de euros destinados a ações de educação e conscientização ambiental.Porém, mais importante que essa atuação direta, é a mensagem que o festival busca espalhar: a ideia da união de todos através da música - estamos juntos e nossas pequenas atitudes no dia a dia têm grande impacto sobre o futuro do planeta.<br />● <a href="http://www.rockinrio.com.br/pt/rock-in-rio/historia/" rel="nofollow">HISTÓRIA</a> | <a href="http://www.rockinrio.com.br/pt/rock-in-rio/numeros/" rel="nofollow">NÚMEROS</a> | <a href="http://www.rockinrio.com.br/pt/imprensa/" rel="nofollow">IMPRENSA</a> | <a href="http://www.rockinrio.com.br/pt/cidade-do-rock/tour-virtual/" rel="nofollow">CIDADE DO ROCK</a> | <a href="http://www.rockinrio.com.br/pt/cidade-do-rock/mapa/" rel="nofollow">MAPA</a><br />● <a href="http://www.rockinrio.com.br/pt/ingressos/" rel="nofollow">INGRESSOS</a> | <a href="http://www.rockinrio.com.br/pt/blog/" rel="nofollow">BLOG</a> | <a href="http://www.rockinrio.com.br/pt/tv-rock-in-rio/" rel="nofollow">TV ROCK IN RIO</a> | <a href="http://www.rockinrio.com.br/pt/tire-suas-duvidas/" rel="nofollow">TIRE SUAS DÚVIDAS</a><br />● <a href="http://www.rockinrio.com.br/pt/porummundomelhor/" rel="nofollow">POR UM MUNDO MELHOR</a> | <a href="http://www.rockinrio.com.br/pt/cidade-do-rock/localizacao/" rel="nofollow">COMO CHEGAR</a> | <a href="http://www.rockinrio.com.br/pt/multimidia/" rel="nofollow">MULTIMÍDIA</a><br />● <a href="http://www.rockinrio.com.br/rock-in-rio-abre-inscricoes-para-voluntarios-em-parceria-com-a-universidade-estacio-de-sa/" rel="nofollow">VOLUNTARIADO</a> | <a href="http://www.rockinrio.com.br/pt/rock-in-rio/patrocinadores/" rel="nofollow">PATROCINADORES</a><br /><br />● <a href="http://www.facebook.com/pages/Rock-in-Rio/142258389139112/" rel="nofollow">Facebook</a> | ● <a href="http://twitter.com/rockinrio" rel="nofollow">Twitter</a> | ● <a href="http://www.orkut.com.br/Main#Community?cmm=105368448" rel="nofollow">Orkut</a> | ● <a href="http://www.flickr.com/photos/rockinrio" rel="nofollow">Flickr</a> | ● <a href="http://www.youtube.com/rockinrioeuvou" rel="nofollow">Youtube</a> | ● <a href="http://www.formspring.me/rockinrioficial" rel="nofollow">Formspring</a><br />● <a href="http://www.rockinrio.com.br/pt/lineup/" rel="nofollow">Line-up Oficial:</a><br /><br />● Sexta - 23/09<br /><a href="http://www.last.fm/music/Os+Paralamas+do+Sucesso" class="bbcode_artist">Os Paralamas do Sucesso</a> + <a href="http://www.last.fm/music/Tit%C3%A3s" class="bbcode_artist">Tit&atilde;s</a> | <a href="http://www.last.fm/music/Milton+Nascimento" class="bbcode_artist">Milton Nascimento</a> | <a href="http://www.last.fm/music/Maria+Gad%C3%BA" class="bbcode_artist">Maria Gad&uacute;</a><br /><a href="http://www.last.fm/music/Claudia+Leitte" class="bbcode_artist">Claudia Leitte</a> | <a href="http://www.last.fm/music/Katy+Perry" class="bbcode_artist">Katy Perry</a> | <a href="http://www.last.fm/music/Rihanna" class="bbcode_artist">Rihanna</a> | <a href="http://www.last.fm/music/Elton+John" class="bbcode_artist">Elton John</a> | <br /><a href="http://www.last.fm/music/M%C3%B3veis+Coloniais+de+Acaju" class="bbcode_artist">M&oacute;veis Coloniais de Acaju</a> + <a href="http://www.last.fm/music/Letieres%2BLeite%2B%2526%2BOrkestra%2BRumpilezz" class="bbcode_artist">Letieres Leite &amp; Orkestra Rumpilezz</a> +<br /><a href="http://www.last.fm/music/Mariana+Aydar" class="bbcode_artist">Mariana Aydar</a> | <a href="http://www.last.fm/music/Ed+Motta" class="bbcode_artist">Ed Motta</a> + <a href="http://www.last.fm/music/Rui+Veloso" class="bbcode_artist">Rui Veloso</a> + convidado<br /><a href="http://www.last.fm/music/Bebel+Gilberto" class="bbcode_artist">Bebel Gilberto</a> + <a href="http://www.last.fm/music/Sandra+de+S%C3%A1" class="bbcode_artist">Sandra de S&aacute;</a> | <a href="http://www.last.fm/music/The+Asteroids+Galaxy+Tour" class="bbcode_artist">The Asteroids Galaxy Tour</a> + convidado<br /><a href="http://www.last.fm/music/DJ+DRI.K" class="bbcode_artist">DJ DRI.K</a> | <a href="http://www.last.fm/music/Leo+Janeiro" class="bbcode_artist">Leo Janeiro</a> | <a href="http://www.last.fm/music/Life+is+a+Loop" class="bbcode_artist">Life is a Loop</a> | <a href="http://www.last.fm/music/Above%2B%2526%2BBeyond" class="bbcode_artist">Above &amp; Beyond</a> | <a href="http://www.last.fm/music/Ferry+Corsten" class="bbcode_artist">Ferry Corsten</a><br /><a href="http://www.last.fm/music/Seeley%2B%2526%2BBaldori" class="bbcode_artist">Seeley &amp; Baldori</a> | <a href="http://www.last.fm/music/Guto+Goffi" class="bbcode_artist">Guto Goffi</a> | <a href="http://www.last.fm/music/Cecelo+Frony" class="bbcode_artist">Cecelo Frony</a> | <a href="http://www.last.fm/music/Orleans+Street+Jazz+Band" class="bbcode_artist">Orleans Street Jazz Band</a><br /><a href="http://www.last.fm/music/Go+east+orkestar" class="bbcode_artist">Go east orkestar</a><br /><br />● Sábado - 24/09<br /><a href="http://www.last.fm/music/Stone+Sour" class="bbcode_artist">Stone Sour</a> | <a href="http://www.last.fm/music/Capital+Inicial" class="bbcode_artist">Capital Inicial</a> | <a href="http://www.last.fm/music/Snow+Patrol" class="bbcode_artist">Snow Patrol</a> | <a href="http://www.last.fm/music/Red+Hot+Chili+Peppers" class="bbcode_artist">Red Hot Chili Peppers</a><br /><a href="http://www.last.fm/music/NX+Zero" class="bbcode_artist">NX Zero</a> | <a href="http://www.last.fm/music/Marcelo+Yuka" class="bbcode_artist">Marcelo Yuka</a> + <a href="http://www.last.fm/music/Cibelle" class="bbcode_artist">Cibelle</a> + <a href="http://www.last.fm/music/Karina+Buhr" class="bbcode_artist">Karina Buhr</a> + <a href="http://www.last.fm/music/Amora+P%C3%AAra" class="bbcode_artist">Amora P&ecirc;ra</a><br /><a href="http://www.last.fm/music/Tulipa+Ruiz" class="bbcode_artist">Tulipa Ruiz</a> + <a href="http://www.last.fm/music/Na%C3%A7%C3%A3o+Zumbi" class="bbcode_artist">Na&ccedil;&atilde;o Zumbi</a> | <a href="http://www.last.fm/music/Milton+Nascimento" class="bbcode_artist">Milton Nascimento</a> | <a href="http://www.last.fm/music/Esperanza+Spalding" class="bbcode_artist">Esperanza Spalding</a><br /><a href="http://www.last.fm/music/Mike+Patton" class="bbcode_artist">Mike Patton</a> + Orquestra | <a href="http://www.last.fm/music/Flow%2B%2526%2BZeo" class="bbcode_artist">Flow &amp; Zeo</a> | <a href="http://www.last.fm/music/Mary+Zander" class="bbcode_artist">Mary Zander</a> | <span title="Unknown artist" class="bbcode_unknown">Nicole Moudeber</span><br /><a href="http://www.last.fm/music/DJ+Vibe" class="bbcode_artist">DJ Vibe</a> | <a href="http://www.last.fm/music/Danny+Tenaglia" class="bbcode_artist">Danny Tenaglia</a> | <a href="http://www.last.fm/music/Seeley%2B%2526%2BBaldori" class="bbcode_artist">Seeley &amp; Baldori</a> | <a href="http://www.last.fm/music/The+Fabulous+Tab" class="bbcode_artist">The Fabulous Tab</a><br /><a href="http://www.last.fm/music/reverendo+franklin" class="bbcode_artist">reverendo franklin</a> | <a href="http://www.last.fm/music/Orleans+Street+Jazz+Band" class="bbcode_artist">Orleans Street Jazz Band</a> | <a href="http://www.last.fm/music/Steve+Harper" class="bbcode_artist">Steve Harper</a><br /><br />● Domingo - 25/09<br /><a href="http://www.last.fm/music/Gloria" class="bbcode_artist">Gloria</a> | <a href="http://www.last.fm/music/Coheed+and+Cambria" class="bbcode_artist">Coheed and Cambria</a> | <a href="http://www.last.fm/music/Mot%C3%B6rhead" class="bbcode_artist">Mot&ouml;rhead</a>| <a href="http://www.last.fm/music/Slipknot" class="bbcode_artist">Slipknot</a> | <a href="http://www.last.fm/music/Metallica" class="bbcode_artist">Metallica</a><br /><a href="http://www.last.fm/music/Matanza" class="bbcode_artist">Matanza</a> + <a href="http://www.last.fm/music/BNeg%C3%A3o" class="bbcode_artist">BNeg&atilde;o</a> | <a href="http://www.last.fm/music/Korzus" class="bbcode_artist">Korzus</a> + <span title="Unknown artist" class="bbcode_unknown">The Punk Metal Allstars</span><br /><a href="http://www.last.fm/music/Angra" class="bbcode_artist">Angra</a> + <a href="http://www.last.fm/music/Tarja" class="bbcode_artist">Tarja</a> | <a href="http://www.last.fm/music/Sepultura" class="bbcode_artist">Sepultura</a> + <a href="http://www.last.fm/music/Les+Tambours+du+Bronx" class="bbcode_artist">Les Tambours du Bronx</a><br /><a href="http://www.last.fm/music/Killer+On+The+Dancefloor" class="bbcode_artist">Killer On The Dancefloor</a> | <a href="http://www.last.fm/music/The+Twelves" class="bbcode_artist">The Twelves</a> | <a href="http://www.last.fm/music/Steve+Aoki" class="bbcode_artist">Steve Aoki</a> | <a href="http://www.last.fm/music/Boys+Noize" class="bbcode_artist">Boys Noize</a><br /><a href="http://www.last.fm/music/Seeley%2B%2526%2BBaldori" class="bbcode_artist">Seeley &amp; Baldori</a> | <a href="http://www.last.fm/music/Victor+Biglione" class="bbcode_artist">Victor Biglione</a> | <a href="http://www.last.fm/music/Rodrigo+Santos" class="bbcode_artist">Rodrigo Santos</a><br /><a href="http://www.last.fm/music/Orleans+Street+Jazz+Band" class="bbcode_artist">Orleans Street Jazz Band</a> | <a href="http://www.last.fm/music/Steven+Harper" class="bbcode_artist">Steven Harper</a><br /><br />● Sexta - 30/09<br /><a href="http://www.last.fm/music/Marcelo+D2" class="bbcode_artist">Marcelo D2</a> | <a href="http://www.last.fm/music/Jota+Quest" class="bbcode_artist">Jota Quest</a> | <a href="http://www.last.fm/music/Ivete+Sangalo" class="bbcode_artist">Ivete Sangalo</a> | <a href="http://www.last.fm/music/Lenny+Kravitz" class="bbcode_artist">Lenny Kravitz</a> | <a href="http://www.last.fm/music/Shakira" class="bbcode_artist">Shakira</a><br /><a href="http://www.last.fm/music/Buraka+Som+Sistema" class="bbcode_artist">Buraka Som Sistema</a> + <a href="http://www.last.fm/music/Mixhell" class="bbcode_artist">Mixhell</a> | <a href="http://www.last.fm/music/C%C3%A9U" class="bbcode_artist">C&eacute;U</a> + <a href="http://www.last.fm/music/Jo%C3%A3o+Donato" class="bbcode_artist">Jo&atilde;o Donato</a><br /><a href="http://www.last.fm/music/Cidade+Negra" class="bbcode_artist">Cidade Negra</a> + <a href="http://www.last.fm/music/Martinho+da+Vila" class="bbcode_artist">Martinho da Vila</a> + <a href="http://www.last.fm/music/EMICIDA" class="bbcode_artist">EMICIDA</a> | <a href="http://www.last.fm/music/Monobloco" class="bbcode_artist">Monobloco</a> + <a href="http://www.last.fm/music/Macaco" class="bbcode_artist">Macaco</a><br /><a href="http://www.last.fm/music/In-Grid" class="bbcode_artist">In-Grid</a> | <a href="http://www.last.fm/music/Renato+Ratier" class="bbcode_artist">Renato Ratier</a> | <a href="http://www.last.fm/music/Gui+Boratto" class="bbcode_artist">Gui Boratto</a> | <a href="http://www.last.fm/music/Guy+Gerber" class="bbcode_artist">Guy Gerber</a> | <a href="http://www.last.fm/music/Luciano" class="bbcode_artist">Luciano</a><br /><span title="Unknown artist" class="bbcode_unknown">Roncadores</span> | <a href="http://www.last.fm/music/Bruce+Henri+Quarteto" class="bbcode_artist">Bruce Henri Quarteto</a> | <a href="http://www.last.fm/music/Go+east+orkestar" class="bbcode_artist">Go east orkestar</a><br /><a href="http://www.last.fm/music/Saxophonia" class="bbcode_artist">Saxophonia</a> | <a href="http://www.last.fm/music/Paul+Carlon" class="bbcode_artist">Paul Carlon</a> &amp; <a href="http://www.last.fm/music/Max+Pollack" class="bbcode_artist">Max Pollack</a><br /><br />● Sábado - 01/10<br /><a href="http://www.last.fm/music/Frejat" class="bbcode_artist">Frejat</a> | <a href="http://www.last.fm/music/Skank" class="bbcode_artist">Skank</a> | <a href="http://www.last.fm/music/Man%C3%A1" class="bbcode_artist">Man&aacute;</a> | <a href="http://www.last.fm/music/Jay-Z" class="bbcode_artist">Jay-Z</a> | <a href="http://www.last.fm/music/Coldplay" class="bbcode_artist">Coldplay</a><br /><a href="http://www.last.fm/music/Cidad%C3%A3o+Instigado" class="bbcode_artist">Cidad&atilde;o Instigado</a> + <a href="http://www.last.fm/music/J%C3%BApiter+Ma%C3%A7%C3%A3" class="bbcode_artist">J&uacute;piter Ma&ccedil;&atilde;</a> | <a href="http://www.last.fm/music/Ti%C3%AA" class="bbcode_artist">Ti&ecirc;</a> + <a href="http://www.last.fm/music/Jorge+Drexler" class="bbcode_artist">Jorge Drexler</a><br /><a href="http://www.last.fm/music/Zeca+Baleiro" class="bbcode_artist">Zeca Baleiro</a> + convidado | <a href="http://www.last.fm/music/Erasmo+Carlos" class="bbcode_artist">Erasmo Carlos</a> + <a href="http://www.last.fm/music/Arnaldo+Antunes" class="bbcode_artist">Arnaldo Antunes</a><br />15h Years of Body &amp; Soul With: <a href="http://www.last.fm/music/Fran%C3%A7ois+K" class="bbcode_artist">Fran&ccedil;ois K</a>, <a href="http://www.last.fm/music/Danny+Krivit" class="bbcode_artist">Danny Krivit</a>, <a href="http://www.last.fm/music/Joe+Claussell" class="bbcode_artist">Joe Claussell</a><br /><a href="http://www.last.fm/music/DJ+Harvey" class="bbcode_artist">DJ Harvey</a> | <a href="http://www.last.fm/music/Paul+Carlon" class="bbcode_artist">Paul Carlon</a> &amp; <a href="http://www.last.fm/music/Max+Pollack" class="bbcode_artist">Max Pollack</a> | <a href="http://www.last.fm/music/Leo+Gandelman" class="bbcode_artist">Leo Gandelman</a><br /><a href="http://www.last.fm/music/Paraphernalia" class="bbcode_artist">Paraphernalia</a> | <a href="http://www.last.fm/music/Baia" class="bbcode_artist">Baia</a> | <a href="http://www.last.fm/music/Saxophonia" class="bbcode_artist">Saxophonia</a><br /><br />● Domingo - 02/10<br /><a href="http://www.last.fm/music/Detonautas+Roque+Clube" class="bbcode_artist">Detonautas Roque Clube</a> | <a href="http://www.last.fm/music/Pitty" class="bbcode_artist">Pitty</a> | <a href="http://www.last.fm/music/Evanescence" class="bbcode_artist">Evanescence</a> | <a href="http://www.last.fm/music/System+of+a+Down" class="bbcode_artist">System of a Down</a><br /><a href="http://www.last.fm/music/Guns+N%27+Roses" class="bbcode_artist">Guns N' Roses</a> | <a href="http://www.last.fm/music/Os+Mutantes" class="bbcode_artist">Os Mutantes</a> + <a href="http://www.last.fm/music/Tom+Z%C3%A9" class="bbcode_artist">Tom Z&eacute;</a> | <a href="http://www.last.fm/music/The+Monomes" class="bbcode_artist">The Monomes</a> +<br /><a href="http://www.last.fm/music/David+Fonseca" class="bbcode_artist">David Fonseca</a> | <a href="http://www.last.fm/music/Tit%C3%A3s" class="bbcode_artist">Tit&atilde;s</a> + <a href="http://www.last.fm/music/Xutos%2B%2526%2BPontap%25C3%25A9s" class="bbcode_artist">Xutos &amp; Pontap&eacute;s</a> | <a href="http://www.last.fm/music/Marcelo+Camelo" class="bbcode_artist">Marcelo Camelo</a><br /><a href="http://www.last.fm/music/Nalaya+Brown" class="bbcode_artist">Nalaya Brown</a> | <a href="http://www.last.fm/music/BOSS+in+drama" class="bbcode_artist">BOSS in drama</a> | <a href="http://www.last.fm/music/Rodrigo+Penna" class="bbcode_artist">Rodrigo Penna</a> | <a href="http://www.last.fm/music/Mem%C3%AA" class="bbcode_artist">Mem&ecirc;</a><br /><a href="http://www.last.fm/music/Hercules" class="bbcode_artist">Hercules</a> &amp; <a href="http://www.last.fm/music/Love+Affair" class="bbcode_artist">Love Affair</a> | <a href="http://www.last.fm/music/Dimitri+from+Paris" class="bbcode_artist">Dimitri from Paris</a> | <span title="Unknown artist" class="bbcode_unknown">All Star Blues Band</span><br /><a href="http://www.last.fm/music/Taryn+Szpilman" class="bbcode_artist">Taryn Szpilman</a> | <span title="Unknown artist" class="bbcode_unknown">Rock Street Jazz Jam</span> | <a href="http://www.last.fm/music/Saxophonia" class="bbcode_artist">Saxophonia</a><br /><a href="http://www.last.fm/music/Paul+Carlon" class="bbcode_artist">Paul Carlon</a> &amp; <a href="http://www.last.fm/music/Max+Pollack" class="bbcode_artist">Max Pollack</a></div>]]></description>
903
+ <image size="small">http://userserve-ak.last.fm/serve/34/62807041.jpg</image>
904
+ <image size="medium">http://userserve-ak.last.fm/serve/64/62807041.jpg</image>
905
+ <image size="large">http://userserve-ak.last.fm/serve/126/62807041.jpg</image>
906
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/62807041.jpg</image>
907
+ <attendance>2482</attendance>
908
+ <reviews>3</reviews>
909
+ <tag>lastfm:event=1737875</tag>
910
+ <url>http://www.last.fm/festival/1737875+Rock+in+Rio+2011</url>
911
+ <website>http://www.rockinrio.com.br/</website>
912
+ <tickets>
913
+ </tickets>
914
+ <cancelled>0</cancelled>
915
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
916
+ <id>1764555</id>
917
+ <title>Rock in Rio 2011</title>
918
+ <artists>
919
+ <artist>Metallica</artist>
920
+ <artist>Motörhead</artist>
921
+ <headliner>Metallica</headliner>
922
+ </artists>
923
+ <venue>
924
+ <id>9159007</id>
925
+ <name>Av. Salvador Allende, s/nº</name>
926
+ <location>
927
+ <city>Rio de Janeiro</city>
928
+ <country>Brazil</country>
929
+ <street></street>
930
+ <postalcode></postalcode>
931
+ <geo:point>
932
+ <geo:lat></geo:lat>
933
+ <geo:long></geo:long>
934
+ </geo:point>
935
+ </location>
936
+ <url>http://www.last.fm/venue/9159007+Av.+Salvador+Allende%2C+s%252Fn%C2%BA</url>
937
+ <website></website>
938
+ <phonenumber></phonenumber>
939
+ <image size="small"></image>
940
+ <image size="medium"></image>
941
+ <image size="large"></image>
942
+ <image size="extralarge"></image>
943
+ <image size="mega"></image>
944
+ </venue> <startDate>Sun, 25 Sep 2011 21:42:01</startDate>
945
+ <endDate>Wed, 12 Mar 2014 21:42:01</endDate>
946
+ <description><![CDATA[<div class="bbcode">Esse é pra quem vai no Rock in Rio principalmente no Metal Day!!! E Principalmente por MetallicA e Motorhead!!!<br /><br />Metal Up Your ASSES!!</div>]]></description>
947
+ <image size="small">http://userserve-ak.last.fm/serve/34/55286129.jpg</image>
948
+ <image size="medium">http://userserve-ak.last.fm/serve/64/55286129.jpg</image>
949
+ <image size="large">http://userserve-ak.last.fm/serve/126/55286129.jpg</image>
950
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/55286129.jpg</image>
951
+ <attendance>72</attendance>
952
+ <reviews>0</reviews>
953
+ <tag>lastfm:event=1764555</tag>
954
+ <url>http://www.last.fm/festival/1764555+Rock+in+Rio+2011</url>
955
+ <website>http://www.rockinrio.com.br/</website>
956
+ <tickets>
957
+ </tickets>
958
+ <cancelled>0</cancelled>
959
+ <tags>
960
+ <tag>metal</tag>
961
+ <tag>heavy metal</tag>
962
+ <tag>hard rock</tag>
963
+ <tag>metallica</tag>
964
+ <tag>thrash metal</tag>
965
+ </tags>
966
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
967
+ <id>1926661</id>
968
+ <title>F1 Rocks</title>
969
+ <artists>
970
+ <artist>Metallica</artist>
971
+ <headliner>Metallica</headliner>
972
+ </artists>
973
+ <venue>
974
+ <id>9188182</id>
975
+ <name>Leisure Valley, Sector 29</name>
976
+ <location>
977
+ <city>Gurgaon</city>
978
+ <country>India</country>
979
+ <street></street>
980
+ <postalcode></postalcode>
981
+ <geo:point>
982
+ <geo:lat></geo:lat>
983
+ <geo:long></geo:long>
984
+ </geo:point>
985
+ </location>
986
+ <url>http://www.last.fm/venue/9188182+Leisure+Valley%2C+Sector+29</url>
987
+ <website></website>
988
+ <phonenumber></phonenumber>
989
+ <image size="small"></image>
990
+ <image size="medium"></image>
991
+ <image size="large"></image>
992
+ <image size="extralarge"></image>
993
+ <image size="mega"></image>
994
+ </venue> <startDate>Fri, 28 Oct 2011 12:10:01</startDate>
995
+ <description><![CDATA[<div class="bbcode">Up first will be Delhi on October 28, 2011 at F1 Rocks, held in Leisure Valley, Sector 29, Gurgaon as we help to celebrate the first Grand Prix race ever held in India.</div>]]></description>
996
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
997
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
998
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
999
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
1000
+ <attendance>10</attendance>
1001
+ <reviews>0</reviews>
1002
+ <tag>lastfm:event=1926661</tag>
1003
+ <url>http://www.last.fm/event/1926661+F1+Rocks</url>
1004
+ <website>http://www.metallica.com/page.asp?ps_key=333678F72238418A8FED6CFFD2754891&amp;utm_source=twitterfeed&amp;utm_medium=twitter</website>
1005
+ <tickets>
1006
+ </tickets>
1007
+ <cancelled>0</cancelled>
1008
+ <tags>
1009
+ <tag>thrash metal</tag>
1010
+ <tag>metal</tag>
1011
+ <tag>metallica</tag>
1012
+ <tag>heavy metal</tag>
1013
+ </tags>
1014
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
1015
+ <id>1926920</id>
1016
+ <title>Sonisphere Festival India</title>
1017
+ <artists>
1018
+ <artist>Metallica</artist>
1019
+ <headliner>Metallica</headliner>
1020
+ </artists>
1021
+ <venue>
1022
+ <id>8807822</id>
1023
+ <name>Palace Grounds</name>
1024
+ <location>
1025
+ <city>Bangalore</city>
1026
+ <country>India</country>
1027
+ <street>Palace Cricket Ground, Armane Nagar</street>
1028
+ <postalcode>560080</postalcode>
1029
+ <geo:point>
1030
+ <geo:lat>13.004076</geo:lat>
1031
+ <geo:long>77.590249</geo:long>
1032
+ </geo:point>
1033
+ </location>
1034
+ <url>http://www.last.fm/venue/8807822+Palace+Grounds</url>
1035
+ <website></website>
1036
+ <phonenumber></phonenumber>
1037
+ <image size="small">http://userserve-ak.last.fm/serve/34/50898841.jpg</image>
1038
+ <image size="medium">http://userserve-ak.last.fm/serve/64/50898841.jpg</image>
1039
+ <image size="large">http://userserve-ak.last.fm/serve/126/50898841.jpg</image>
1040
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/50898841.jpg</image>
1041
+ <image size="mega">http://userserve-ak.last.fm/serve/_/50898841/Palace+Grounds+jbl_rockethos.jpg</image>
1042
+ </venue> <startDate>Sun, 30 Oct 2011 16:05:01</startDate>
1043
+ <description><![CDATA[<div class="bbcode">Unchartered Territory<br />May 1, 2011<br /><br />At this stage in the game, there are very few places in the world that we have not dragged our gear and crew to, so that makes this show announcement extra special . . . for the first time ever, we will be visiting India for two shows! It’s about time, wouldn’t you say?!?!<br /><br />Up first will be Delhi on October 28, 2011 at F1 Rocks, held in Leisure Valley, Sector 29, Gurgaon as we help to celebrate the first Grand Prix race ever held in India. Night number two will find us at the Bangalore Palace Ground, Main Palace, Bangalore, on October 30 as part of the Sonisphere Festival.<br /><br />All tickets are general admission and will go sale on <a href="http://www.ticketgenie.in" rel="nofollow">www.ticketgenie.in</a> and <a href="http://www.dnanetworks.com" rel="nofollow">www.dnanetworks.com</a> on May 4 at a time still to be announced.<br /><br />And for those of you who like to travel, you might want to keep watching this site . . .</div>]]></description>
1044
+ <image size="small">http://userserve-ak.last.fm/serve/34/13440.jpg</image>
1045
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13440.jpg</image>
1046
+ <image size="large">http://userserve-ak.last.fm/serve/126/13440.jpg</image>
1047
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/13440.jpg</image>
1048
+ <attendance>65</attendance>
1049
+ <reviews>0</reviews>
1050
+ <tag>lastfm:event=1926920</tag>
1051
+ <url>http://www.last.fm/festival/1926920+Sonisphere+Festival+India</url>
1052
+ <website></website>
1053
+ <tickets>
1054
+ </tickets>
1055
+ <cancelled>0</cancelled>
1056
+ <tags>
1057
+ <tag>thrash metal</tag>
1058
+ <tag>metal</tag>
1059
+ <tag>metallica</tag>
1060
+ <tag>heavy metal</tag>
1061
+ </tags>
1062
+ </event>
1063
+ </events>
1064
+ </lfm>