firstfm 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,13 +1,13 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gem "httparty"
4
- gem "will_paginate", "~> 3.0.pre2"
5
- gem "activesupport", "~> 3.0.7"
3
+ gem "httparty", "0.7.8"
4
+ gem "will_paginate"
5
+ gem "activesupport", "~> 3.0.10"
6
6
  gem "chronic"
7
7
 
8
8
  group :development do
9
- gem "bundler", "~> 1.0.0"
10
- gem "jeweler", "~> 1.6.2"
9
+ gem "bundler"
10
+ gem "jeweler"
11
11
  gem "rcov", ">= 0"
12
12
  gem "fakeweb"
13
13
  end
data/Gemfile.lock CHANGED
@@ -1,30 +1,30 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- activesupport (3.0.9)
5
- chronic (0.6.1)
4
+ activesupport (3.0.10)
5
+ chronic (0.6.5)
6
6
  crack (0.1.8)
7
7
  fakeweb (1.3.0)
8
8
  git (1.2.5)
9
9
  httparty (0.7.8)
10
10
  crack (= 0.1.8)
11
- jeweler (1.6.2)
11
+ jeweler (1.6.4)
12
12
  bundler (~> 1.0)
13
13
  git (>= 1.2.5)
14
14
  rake
15
- rake (0.9.2)
16
- rcov (0.9.9)
17
- will_paginate (3.0.pre2)
15
+ rake (0.9.2.2)
16
+ rcov (0.9.11)
17
+ will_paginate (3.0.2)
18
18
 
19
19
  PLATFORMS
20
20
  ruby
21
21
 
22
22
  DEPENDENCIES
23
- activesupport (~> 3.0.7)
24
- bundler (~> 1.0.0)
23
+ activesupport (~> 3.0.10)
24
+ bundler
25
25
  chronic
26
26
  fakeweb
27
- httparty
28
- jeweler (~> 1.6.2)
27
+ httparty (= 0.7.8)
28
+ jeweler
29
29
  rcov
30
- will_paginate (~> 3.0.pre2)
30
+ will_paginate
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
+ :major: 0
2
3
  :minor: 2
3
- :patch: 0
4
4
  :build:
5
- :major: 0
5
+ :patch: 1
data/firstfm.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{firstfm}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Aleksandr Lossenko"]
12
- s.date = %q{2011-07-27}
12
+ s.date = %q{2011-11-05}
13
13
  s.description = %q{Firstfm is a ruby wrapper for the Last.fm APIs ( http://www.last.fm/api ). My main focus is to import events from Last.FM, but with time I will try to add support for all API methods.}
14
14
  s.email = %q{aleksandr.lossenko@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -37,6 +37,7 @@ Gem::Specification.new do |s|
37
37
  "test/fixtures/events.xml",
38
38
  "test/fixtures/geo_event.xml",
39
39
  "test/fixtures/geo_events.xml",
40
+ "test/fixtures/get_images.xml",
40
41
  "test/fixtures/top_tracks.xml",
41
42
  "test/fixtures/tracks.xml",
42
43
  "test/fixtures/venue.xml",
@@ -57,31 +58,31 @@ Gem::Specification.new do |s|
57
58
  s.specification_version = 3
58
59
 
59
60
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
60
- s.add_runtime_dependency(%q<httparty>, [">= 0"])
61
- s.add_runtime_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
62
- s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.7"])
61
+ s.add_runtime_dependency(%q<httparty>, ["= 0.7.8"])
62
+ s.add_runtime_dependency(%q<will_paginate>, [">= 0"])
63
+ s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.10"])
63
64
  s.add_runtime_dependency(%q<chronic>, [">= 0"])
64
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
65
- s.add_development_dependency(%q<jeweler>, ["~> 1.6.2"])
65
+ s.add_development_dependency(%q<bundler>, [">= 0"])
66
+ s.add_development_dependency(%q<jeweler>, [">= 0"])
66
67
  s.add_development_dependency(%q<rcov>, [">= 0"])
67
68
  s.add_development_dependency(%q<fakeweb>, [">= 0"])
68
69
  else
69
- s.add_dependency(%q<httparty>, [">= 0"])
70
- s.add_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
71
- s.add_dependency(%q<activesupport>, ["~> 3.0.7"])
70
+ s.add_dependency(%q<httparty>, ["= 0.7.8"])
71
+ s.add_dependency(%q<will_paginate>, [">= 0"])
72
+ s.add_dependency(%q<activesupport>, ["~> 3.0.10"])
72
73
  s.add_dependency(%q<chronic>, [">= 0"])
73
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
74
- s.add_dependency(%q<jeweler>, ["~> 1.6.2"])
74
+ s.add_dependency(%q<bundler>, [">= 0"])
75
+ s.add_dependency(%q<jeweler>, [">= 0"])
75
76
  s.add_dependency(%q<rcov>, [">= 0"])
76
77
  s.add_dependency(%q<fakeweb>, [">= 0"])
77
78
  end
78
79
  else
79
- s.add_dependency(%q<httparty>, [">= 0"])
80
- s.add_dependency(%q<will_paginate>, ["~> 3.0.pre2"])
81
- s.add_dependency(%q<activesupport>, ["~> 3.0.7"])
80
+ s.add_dependency(%q<httparty>, ["= 0.7.8"])
81
+ s.add_dependency(%q<will_paginate>, [">= 0"])
82
+ s.add_dependency(%q<activesupport>, ["~> 3.0.10"])
82
83
  s.add_dependency(%q<chronic>, [">= 0"])
83
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
84
- s.add_dependency(%q<jeweler>, ["~> 1.6.2"])
84
+ s.add_dependency(%q<bundler>, [">= 0"])
85
+ s.add_dependency(%q<jeweler>, [">= 0"])
85
86
  s.add_dependency(%q<rcov>, [">= 0"])
86
87
  s.add_dependency(%q<fakeweb>, [">= 0"])
87
88
  end
@@ -13,7 +13,7 @@ module Firstfm
13
13
  end
14
14
 
15
15
  def get_images(page = 1, limit = 50)
16
- name_params = self.mbid.empty? ? {:artist => self.name} : {:mbid => self.mbid}
16
+ name_params = !self.mbid.nil? ? {:artist => self.name} : {:mbid => self.mbid}
17
17
  response = self.class.get("/2.0/", {:query => {:method => 'artist.getImages', :page => page, :limit => limit, :api_key => Firstfm::CONFIG['api_key']}.merge(name_params)})
18
18
  images_array = (response["lfm"] and response["lfm"]["images"] and response["lfm"]["images"]["image"]) || []
19
19
  images = Image.init_from_array(images_array)
data/lib/firstfm/image.rb CHANGED
@@ -5,6 +5,13 @@ module Firstfm
5
5
  attr_accessor :title, :url, :dateadded, :format, :owner_name, :owner_url, :sizes, :thumbsup, :thumbsdown, :artist
6
6
 
7
7
  include HTTParty
8
+
9
+ parser(
10
+ Proc.new do |body, format|
11
+ Nokogiri::XML.parse(body)
12
+ end
13
+ )
14
+
8
15
  base_uri 'ws.audioscrobbler.com'
9
16
  format :xml
10
17
 
data/lib/firstfm/venue.rb CHANGED
@@ -13,7 +13,7 @@ module Firstfm
13
13
  venues = response && response['lfm'] ? Venue.init_venues_from_hash(response['lfm']) : []
14
14
  collection = WillPaginate::Collection.create(page, limit) do |pager|
15
15
  pager.replace venues
16
- pager.total_entries = response['lfm']['results']['opensearch:totalResults'].to_i
16
+ pager.total_entries = response['lfm']['results']['totalResults'].to_i
17
17
  end
18
18
  end
19
19
 
@@ -0,0 +1,913 @@
1
+
2
+ <?xml version="1.0" encoding="utf-8"?>
3
+ <lfm status="ok">
4
+ <images artist="Cher" page="1" perPage="50" totalPages="21" total="1023">
5
+ <image>
6
+ <title></title>
7
+ <url>http://www.last.fm/music/Cher/+images/62274799</url>
8
+ <dateadded>Fri, 29 Apr 2011 14:40:53</dateadded>
9
+ <format>png</format>
10
+ <sizes>
11
+ <size name="original" width="1376" height="1083">http://userserve-ak.last.fm/serve/_/62274799/Cher.png</size>
12
+ <size name="large" width="126" height="99">http://userserve-ak.last.fm/serve/126/62274799.png</size>
13
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62274799.png</size>
14
+ <size name="medium" width="64" height="50">http://userserve-ak.last.fm/serve/64/62274799.png</size>
15
+ <size name="small" width="34" height="27">http://userserve-ak.last.fm/serve/34/62274799.png</size>
16
+ <size name="extralarge" width="252" height="198">http://userserve-ak.last.fm/serve/252/62274799.png</size>
17
+ </sizes>
18
+ <votes>
19
+ <thumbsup>81</thumbsup>
20
+ <thumbsdown>28</thumbsdown>
21
+ </votes>
22
+ </image>
23
+ <image>
24
+ <title></title>
25
+ <url>http://www.last.fm/music/Cher/+images/62506491</url>
26
+ <dateadded>Thu, 5 May 2011 04:52:25</dateadded>
27
+ <format>png</format>
28
+ <sizes>
29
+ <size name="original" width="795" height="1060">http://userserve-ak.last.fm/serve/_/62506491/Cher.png</size>
30
+ <size name="large" width="126" height="168">http://userserve-ak.last.fm/serve/126/62506491.png</size>
31
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62506491.png</size>
32
+ <size name="medium" width="64" height="85">http://userserve-ak.last.fm/serve/64/62506491.png</size>
33
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/62506491.png</size>
34
+ <size name="extralarge" width="252" height="336">http://userserve-ak.last.fm/serve/252/62506491.png</size>
35
+ </sizes>
36
+ <votes>
37
+ <thumbsup>97</thumbsup>
38
+ <thumbsdown>34</thumbsdown>
39
+ </votes>
40
+ </image>
41
+ <image>
42
+ <title>hos</title>
43
+ <url>http://www.last.fm/music/Cher/+images/69738650</url>
44
+ <dateadded>Sun, 9 Oct 2011 21:16:53</dateadded>
45
+ <format>png</format>
46
+ <owner type="user">
47
+ <name>TheEdgeOfGaga</name>
48
+ <url>http://www.last.fm/user/TheEdgeOfGaga</url>
49
+ </owner>
50
+ <sizes>
51
+ <size name="original" width="692" height="953">http://userserve-ak.last.fm/serve/_/69738650/Cher+hos.png</size>
52
+ <size name="large" width="126" height="174">http://userserve-ak.last.fm/serve/126/69738650.png</size>
53
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/69738650.png</size>
54
+ <size name="medium" width="64" height="88">http://userserve-ak.last.fm/serve/64/69738650.png</size>
55
+ <size name="small" width="34" height="47">http://userserve-ak.last.fm/serve/34/69738650.png</size>
56
+ <size name="extralarge" width="252" height="347">http://userserve-ak.last.fm/serve/252/69738650.png</size>
57
+ </sizes>
58
+ <votes>
59
+ <thumbsup>35</thumbsup>
60
+ <thumbsdown>14</thumbsdown>
61
+ </votes>
62
+ </image>
63
+ <image>
64
+ <title></title>
65
+ <url>http://www.last.fm/music/Cher/+images/63111289</url>
66
+ <dateadded>Fri, 20 May 2011 04:06:38</dateadded>
67
+ <format>png</format>
68
+ <sizes>
69
+ <size name="original" width="1200" height="1628">http://userserve-ak.last.fm/serve/_/63111289/Cher.png</size>
70
+ <size name="large" width="126" height="171">http://userserve-ak.last.fm/serve/126/63111289.png</size>
71
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63111289.png</size>
72
+ <size name="medium" width="64" height="87">http://userserve-ak.last.fm/serve/64/63111289.png</size>
73
+ <size name="small" width="34" height="46">http://userserve-ak.last.fm/serve/34/63111289.png</size>
74
+ <size name="extralarge" width="252" height="342">http://userserve-ak.last.fm/serve/252/63111289.png</size>
75
+ </sizes>
76
+ <votes>
77
+ <thumbsup>97</thumbsup>
78
+ <thumbsdown>33</thumbsdown>
79
+ </votes>
80
+ </image>
81
+ <image>
82
+ <title></title>
83
+ <url>http://www.last.fm/music/Cher/+images/62886905</url>
84
+ <dateadded>Sun, 15 May 2011 04:18:29</dateadded>
85
+ <format>png</format>
86
+ <sizes>
87
+ <size name="original" width="586" height="754">http://userserve-ak.last.fm/serve/_/62886905/Cher.png</size>
88
+ <size name="large" width="126" height="162">http://userserve-ak.last.fm/serve/126/62886905.png</size>
89
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62886905.png</size>
90
+ <size name="medium" width="64" height="82">http://userserve-ak.last.fm/serve/64/62886905.png</size>
91
+ <size name="small" width="34" height="44">http://userserve-ak.last.fm/serve/34/62886905.png</size>
92
+ <size name="extralarge" width="252" height="324">http://userserve-ak.last.fm/serve/252/62886905.png</size>
93
+ </sizes>
94
+ <votes>
95
+ <thumbsup>65</thumbsup>
96
+ <thumbsdown>25</thumbsdown>
97
+ </votes>
98
+ </image>
99
+ <image>
100
+ <title></title>
101
+ <url>http://www.last.fm/music/Cher/+images/62886645</url>
102
+ <dateadded>Sun, 15 May 2011 04:02:56</dateadded>
103
+ <format>png</format>
104
+ <sizes>
105
+ <size name="original" width="447" height="575">http://userserve-ak.last.fm/serve/_/62886645/Cher.png</size>
106
+ <size name="large" width="126" height="162">http://userserve-ak.last.fm/serve/126/62886645.png</size>
107
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62886645.png</size>
108
+ <size name="medium" width="64" height="82">http://userserve-ak.last.fm/serve/64/62886645.png</size>
109
+ <size name="small" width="34" height="44">http://userserve-ak.last.fm/serve/34/62886645.png</size>
110
+ <size name="extralarge" width="252" height="324">http://userserve-ak.last.fm/serve/252/62886645.png</size>
111
+ </sizes>
112
+ <votes>
113
+ <thumbsup>56</thumbsup>
114
+ <thumbsdown>23</thumbsdown>
115
+ </votes>
116
+ </image>
117
+ <image>
118
+ <title></title>
119
+ <url>http://www.last.fm/music/Cher/+images/62884387</url>
120
+ <dateadded>Sun, 15 May 2011 02:05:54</dateadded>
121
+ <format>png</format>
122
+ <sizes>
123
+ <size name="original" width="761" height="978">http://userserve-ak.last.fm/serve/_/62884387/Cher.png</size>
124
+ <size name="large" width="126" height="162">http://userserve-ak.last.fm/serve/126/62884387.png</size>
125
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62884387.png</size>
126
+ <size name="medium" width="64" height="82">http://userserve-ak.last.fm/serve/64/62884387.png</size>
127
+ <size name="small" width="34" height="44">http://userserve-ak.last.fm/serve/34/62884387.png</size>
128
+ <size name="extralarge" width="252" height="324">http://userserve-ak.last.fm/serve/252/62884387.png</size>
129
+ </sizes>
130
+ <votes>
131
+ <thumbsup>61</thumbsup>
132
+ <thumbsdown>25</thumbsdown>
133
+ </votes>
134
+ </image>
135
+ <image>
136
+ <title></title>
137
+ <url>http://www.last.fm/music/Cher/+images/62875209</url>
138
+ <dateadded>Sat, 14 May 2011 20:49:46</dateadded>
139
+ <format>png</format>
140
+ <sizes>
141
+ <size name="original" width="1189" height="1784">http://userserve-ak.last.fm/serve/_/62875209/Cher.png</size>
142
+ <size name="large" width="126" height="189">http://userserve-ak.last.fm/serve/126/62875209.png</size>
143
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62875209.png</size>
144
+ <size name="medium" width="64" height="96">http://userserve-ak.last.fm/serve/64/62875209.png</size>
145
+ <size name="small" width="34" height="51">http://userserve-ak.last.fm/serve/34/62875209.png</size>
146
+ <size name="extralarge" width="252" height="378">http://userserve-ak.last.fm/serve/252/62875209.png</size>
147
+ </sizes>
148
+ <votes>
149
+ <thumbsup>86</thumbsup>
150
+ <thumbsdown>29</thumbsdown>
151
+ </votes>
152
+ </image>
153
+ <image>
154
+ <title></title>
155
+ <url>http://www.last.fm/music/Cher/+images/62361131</url>
156
+ <dateadded>Sun, 1 May 2011 20:41:55</dateadded>
157
+ <format>png</format>
158
+ <sizes>
159
+ <size name="original" width="2000" height="2667">http://userserve-ak.last.fm/serve/_/62361131/Cher.png</size>
160
+ <size name="large" width="126" height="168">http://userserve-ak.last.fm/serve/126/62361131.png</size>
161
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62361131.png</size>
162
+ <size name="medium" width="64" height="85">http://userserve-ak.last.fm/serve/64/62361131.png</size>
163
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/62361131.png</size>
164
+ <size name="extralarge" width="252" height="336">http://userserve-ak.last.fm/serve/252/62361131.png</size>
165
+ </sizes>
166
+ <votes>
167
+ <thumbsup>73</thumbsup>
168
+ <thumbsdown>31</thumbsdown>
169
+ </votes>
170
+ </image>
171
+ <image>
172
+ <title></title>
173
+ <url>http://www.last.fm/music/Cher/+images/62360425</url>
174
+ <dateadded>Sun, 1 May 2011 20:25:10</dateadded>
175
+ <format>png</format>
176
+ <sizes>
177
+ <size name="original" width="2000" height="2052">http://userserve-ak.last.fm/serve/_/62360425/Cher.png</size>
178
+ <size name="large" width="126" height="129">http://userserve-ak.last.fm/serve/126/62360425.png</size>
179
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62360425.png</size>
180
+ <size name="medium" width="64" height="66">http://userserve-ak.last.fm/serve/64/62360425.png</size>
181
+ <size name="small" width="34" height="35">http://userserve-ak.last.fm/serve/34/62360425.png</size>
182
+ <size name="extralarge" width="252" height="259">http://userserve-ak.last.fm/serve/252/62360425.png</size>
183
+ </sizes>
184
+ <votes>
185
+ <thumbsup>54</thumbsup>
186
+ <thumbsdown>18</thumbsdown>
187
+ </votes>
188
+ </image>
189
+ <image>
190
+ <title></title>
191
+ <url>http://www.last.fm/music/Cher/+images/62322801</url>
192
+ <dateadded>Sat, 30 Apr 2011 20:55:33</dateadded>
193
+ <format>png</format>
194
+ <sizes>
195
+ <size name="original" width="1757" height="2343">http://userserve-ak.last.fm/serve/_/62322801/Cher.png</size>
196
+ <size name="large" width="126" height="168">http://userserve-ak.last.fm/serve/126/62322801.png</size>
197
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62322801.png</size>
198
+ <size name="medium" width="64" height="85">http://userserve-ak.last.fm/serve/64/62322801.png</size>
199
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/62322801.png</size>
200
+ <size name="extralarge" width="252" height="336">http://userserve-ak.last.fm/serve/252/62322801.png</size>
201
+ </sizes>
202
+ <votes>
203
+ <thumbsup>48</thumbsup>
204
+ <thumbsdown>15</thumbsdown>
205
+ </votes>
206
+ </image>
207
+ <image>
208
+ <title></title>
209
+ <url>http://www.last.fm/music/Cher/+images/62291231</url>
210
+ <dateadded>Sat, 30 Apr 2011 00:01:07</dateadded>
211
+ <format>png</format>
212
+ <sizes>
213
+ <size name="original" width="2000" height="1987">http://userserve-ak.last.fm/serve/_/62291231/Cher.png</size>
214
+ <size name="large" width="126" height="125">http://userserve-ak.last.fm/serve/126/62291231.png</size>
215
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62291231.png</size>
216
+ <size name="medium" width="64" height="64">http://userserve-ak.last.fm/serve/64/62291231.png</size>
217
+ <size name="small" width="34" height="34">http://userserve-ak.last.fm/serve/34/62291231.png</size>
218
+ <size name="extralarge" width="252" height="250">http://userserve-ak.last.fm/serve/252/62291231.png</size>
219
+ </sizes>
220
+ <votes>
221
+ <thumbsup>54</thumbsup>
222
+ <thumbsdown>17</thumbsdown>
223
+ </votes>
224
+ </image>
225
+ <image>
226
+ <title></title>
227
+ <url>http://www.last.fm/music/Cher/+images/63855533</url>
228
+ <dateadded>Tue, 7 Jun 2011 03:25:47</dateadded>
229
+ <format>png</format>
230
+ <sizes>
231
+ <size name="original" width="754" height="1024">http://userserve-ak.last.fm/serve/_/63855533/Cher.png</size>
232
+ <size name="large" width="126" height="171">http://userserve-ak.last.fm/serve/126/63855533.png</size>
233
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63855533.png</size>
234
+ <size name="medium" width="64" height="87">http://userserve-ak.last.fm/serve/64/63855533.png</size>
235
+ <size name="small" width="34" height="46">http://userserve-ak.last.fm/serve/34/63855533.png</size>
236
+ <size name="extralarge" width="252" height="342">http://userserve-ak.last.fm/serve/252/63855533.png</size>
237
+ </sizes>
238
+ <votes>
239
+ <thumbsup>22</thumbsup>
240
+ <thumbsdown>3</thumbsdown>
241
+ </votes>
242
+ </image>
243
+ <image>
244
+ <title></title>
245
+ <url>http://www.last.fm/music/Cher/+images/63816977</url>
246
+ <dateadded>Mon, 6 Jun 2011 02:25:03</dateadded>
247
+ <format>png</format>
248
+ <sizes>
249
+ <size name="original" width="897" height="698">http://userserve-ak.last.fm/serve/_/63816977/Cher.png</size>
250
+ <size name="large" width="126" height="98">http://userserve-ak.last.fm/serve/126/63816977.png</size>
251
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63816977.png</size>
252
+ <size name="medium" width="64" height="50">http://userserve-ak.last.fm/serve/64/63816977.png</size>
253
+ <size name="small" width="34" height="26">http://userserve-ak.last.fm/serve/34/63816977.png</size>
254
+ <size name="extralarge" width="252" height="196">http://userserve-ak.last.fm/serve/252/63816977.png</size>
255
+ </sizes>
256
+ <votes>
257
+ <thumbsup>29</thumbsup>
258
+ <thumbsdown>10</thumbsdown>
259
+ </votes>
260
+ </image>
261
+ <image>
262
+ <title></title>
263
+ <url>http://www.last.fm/music/Cher/+images/63473249</url>
264
+ <dateadded>Sat, 28 May 2011 22:50:53</dateadded>
265
+ <format>png</format>
266
+ <sizes>
267
+ <size name="original" width="837" height="1116">http://userserve-ak.last.fm/serve/_/63473249/Cher.png</size>
268
+ <size name="large" width="126" height="168">http://userserve-ak.last.fm/serve/126/63473249.png</size>
269
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63473249.png</size>
270
+ <size name="medium" width="64" height="85">http://userserve-ak.last.fm/serve/64/63473249.png</size>
271
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/63473249.png</size>
272
+ <size name="extralarge" width="252" height="336">http://userserve-ak.last.fm/serve/252/63473249.png</size>
273
+ </sizes>
274
+ <votes>
275
+ <thumbsup>30</thumbsup>
276
+ <thumbsdown>11</thumbsdown>
277
+ </votes>
278
+ </image>
279
+ <image>
280
+ <title></title>
281
+ <url>http://www.last.fm/music/Cher/+images/63856003</url>
282
+ <dateadded>Tue, 7 Jun 2011 03:51:30</dateadded>
283
+ <format>png</format>
284
+ <sizes>
285
+ <size name="original" width="881" height="1007">http://userserve-ak.last.fm/serve/_/63856003/Cher.png</size>
286
+ <size name="large" width="126" height="144">http://userserve-ak.last.fm/serve/126/63856003.png</size>
287
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63856003.png</size>
288
+ <size name="medium" width="64" height="73">http://userserve-ak.last.fm/serve/64/63856003.png</size>
289
+ <size name="small" width="34" height="39">http://userserve-ak.last.fm/serve/34/63856003.png</size>
290
+ <size name="extralarge" width="252" height="288">http://userserve-ak.last.fm/serve/252/63856003.png</size>
291
+ </sizes>
292
+ <votes>
293
+ <thumbsup>43</thumbsup>
294
+ <thumbsdown>16</thumbsdown>
295
+ </votes>
296
+ </image>
297
+ <image>
298
+ <title></title>
299
+ <url>http://www.last.fm/music/Cher/+images/63855681</url>
300
+ <dateadded>Tue, 7 Jun 2011 03:34:08</dateadded>
301
+ <format>png</format>
302
+ <sizes>
303
+ <size name="original" width="1900" height="2341">http://userserve-ak.last.fm/serve/_/63855681/Cher.png</size>
304
+ <size name="large" width="126" height="155">http://userserve-ak.last.fm/serve/126/63855681.png</size>
305
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63855681.png</size>
306
+ <size name="medium" width="64" height="79">http://userserve-ak.last.fm/serve/64/63855681.png</size>
307
+ <size name="small" width="34" height="42">http://userserve-ak.last.fm/serve/34/63855681.png</size>
308
+ <size name="extralarge" width="252" height="310">http://userserve-ak.last.fm/serve/252/63855681.png</size>
309
+ </sizes>
310
+ <votes>
311
+ <thumbsup>22</thumbsup>
312
+ <thumbsdown>4</thumbsdown>
313
+ </votes>
314
+ </image>
315
+ <image>
316
+ <title></title>
317
+ <url>http://www.last.fm/music/Cher/+images/63831871</url>
318
+ <dateadded>Mon, 6 Jun 2011 14:21:43</dateadded>
319
+ <format>png</format>
320
+ <sizes>
321
+ <size name="original" width="1238" height="990">http://userserve-ak.last.fm/serve/_/63831871/Cher.png</size>
322
+ <size name="large" width="126" height="101">http://userserve-ak.last.fm/serve/126/63831871.png</size>
323
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63831871.png</size>
324
+ <size name="medium" width="64" height="51">http://userserve-ak.last.fm/serve/64/63831871.png</size>
325
+ <size name="small" width="34" height="27">http://userserve-ak.last.fm/serve/34/63831871.png</size>
326
+ <size name="extralarge" width="252" height="202">http://userserve-ak.last.fm/serve/252/63831871.png</size>
327
+ </sizes>
328
+ <votes>
329
+ <thumbsup>20</thumbsup>
330
+ <thumbsdown>2</thumbsdown>
331
+ </votes>
332
+ </image>
333
+ <image>
334
+ <title></title>
335
+ <url>http://www.last.fm/music/Cher/+images/63815489</url>
336
+ <dateadded>Mon, 6 Jun 2011 01:09:40</dateadded>
337
+ <format>png</format>
338
+ <sizes>
339
+ <size name="original" width="411" height="548">http://userserve-ak.last.fm/serve/_/63815489/Cher.png</size>
340
+ <size name="large" width="126" height="168">http://userserve-ak.last.fm/serve/126/63815489.png</size>
341
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63815489.png</size>
342
+ <size name="medium" width="64" height="85">http://userserve-ak.last.fm/serve/64/63815489.png</size>
343
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/63815489.png</size>
344
+ <size name="extralarge" width="252" height="336">http://userserve-ak.last.fm/serve/252/63815489.png</size>
345
+ </sizes>
346
+ <votes>
347
+ <thumbsup>29</thumbsup>
348
+ <thumbsdown>11</thumbsdown>
349
+ </votes>
350
+ </image>
351
+ <image>
352
+ <title></title>
353
+ <url>http://www.last.fm/music/Cher/+images/63534349</url>
354
+ <dateadded>Mon, 30 May 2011 14:46:15</dateadded>
355
+ <format>png</format>
356
+ <sizes>
357
+ <size name="original" width="500" height="733">http://userserve-ak.last.fm/serve/_/63534349/Cher.png</size>
358
+ <size name="large" width="126" height="185">http://userserve-ak.last.fm/serve/126/63534349.png</size>
359
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63534349.png</size>
360
+ <size name="medium" width="64" height="94">http://userserve-ak.last.fm/serve/64/63534349.png</size>
361
+ <size name="small" width="34" height="50">http://userserve-ak.last.fm/serve/34/63534349.png</size>
362
+ <size name="extralarge" width="252" height="369">http://userserve-ak.last.fm/serve/252/63534349.png</size>
363
+ </sizes>
364
+ <votes>
365
+ <thumbsup>23</thumbsup>
366
+ <thumbsdown>5</thumbsdown>
367
+ </votes>
368
+ </image>
369
+ <image>
370
+ <title></title>
371
+ <url>http://www.last.fm/music/Cher/+images/63529699</url>
372
+ <dateadded>Mon, 30 May 2011 11:57:39</dateadded>
373
+ <format>png</format>
374
+ <sizes>
375
+ <size name="original" width="1038" height="908">http://userserve-ak.last.fm/serve/_/63529699/Cher.png</size>
376
+ <size name="large" width="126" height="110">http://userserve-ak.last.fm/serve/126/63529699.png</size>
377
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63529699.png</size>
378
+ <size name="medium" width="64" height="56">http://userserve-ak.last.fm/serve/64/63529699.png</size>
379
+ <size name="small" width="34" height="30">http://userserve-ak.last.fm/serve/34/63529699.png</size>
380
+ <size name="extralarge" width="252" height="220">http://userserve-ak.last.fm/serve/252/63529699.png</size>
381
+ </sizes>
382
+ <votes>
383
+ <thumbsup>61</thumbsup>
384
+ <thumbsdown>22</thumbsdown>
385
+ </votes>
386
+ </image>
387
+ <image>
388
+ <title></title>
389
+ <url>http://www.last.fm/music/Cher/+images/63187145</url>
390
+ <dateadded>Sun, 22 May 2011 02:21:46</dateadded>
391
+ <format>png</format>
392
+ <sizes>
393
+ <size name="original" width="700" height="1000">http://userserve-ak.last.fm/serve/_/63187145/Cher.png</size>
394
+ <size name="large" width="126" height="180">http://userserve-ak.last.fm/serve/126/63187145.png</size>
395
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63187145.png</size>
396
+ <size name="medium" width="64" height="91">http://userserve-ak.last.fm/serve/64/63187145.png</size>
397
+ <size name="small" width="34" height="49">http://userserve-ak.last.fm/serve/34/63187145.png</size>
398
+ <size name="extralarge" width="252" height="360">http://userserve-ak.last.fm/serve/252/63187145.png</size>
399
+ </sizes>
400
+ <votes>
401
+ <thumbsup>32</thumbsup>
402
+ <thumbsdown>14</thumbsdown>
403
+ </votes>
404
+ </image>
405
+ <image>
406
+ <title></title>
407
+ <url>http://www.last.fm/music/Cher/+images/62925773</url>
408
+ <dateadded>Mon, 16 May 2011 02:41:54</dateadded>
409
+ <format>png</format>
410
+ <sizes>
411
+ <size name="original" width="981" height="1121">http://userserve-ak.last.fm/serve/_/62925773/Cher.png</size>
412
+ <size name="large" width="126" height="144">http://userserve-ak.last.fm/serve/126/62925773.png</size>
413
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62925773.png</size>
414
+ <size name="medium" width="64" height="73">http://userserve-ak.last.fm/serve/64/62925773.png</size>
415
+ <size name="small" width="34" height="39">http://userserve-ak.last.fm/serve/34/62925773.png</size>
416
+ <size name="extralarge" width="252" height="288">http://userserve-ak.last.fm/serve/252/62925773.png</size>
417
+ </sizes>
418
+ <votes>
419
+ <thumbsup>74</thumbsup>
420
+ <thumbsdown>33</thumbsdown>
421
+ </votes>
422
+ </image>
423
+ <image>
424
+ <title></title>
425
+ <url>http://www.last.fm/music/Cher/+images/62901385</url>
426
+ <dateadded>Sun, 15 May 2011 14:09:38</dateadded>
427
+ <format>png</format>
428
+ <sizes>
429
+ <size name="original" width="398" height="493">http://userserve-ak.last.fm/serve/_/62901385/Cher.png</size>
430
+ <size name="large" width="126" height="156">http://userserve-ak.last.fm/serve/126/62901385.png</size>
431
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62901385.png</size>
432
+ <size name="medium" width="64" height="79">http://userserve-ak.last.fm/serve/64/62901385.png</size>
433
+ <size name="small" width="34" height="42">http://userserve-ak.last.fm/serve/34/62901385.png</size>
434
+ <size name="extralarge" width="252" height="312">http://userserve-ak.last.fm/serve/252/62901385.png</size>
435
+ </sizes>
436
+ <votes>
437
+ <thumbsup>57</thumbsup>
438
+ <thumbsdown>23</thumbsdown>
439
+ </votes>
440
+ </image>
441
+ <image>
442
+ <title></title>
443
+ <url>http://www.last.fm/music/Cher/+images/62803887</url>
444
+ <dateadded>Fri, 13 May 2011 02:47:17</dateadded>
445
+ <format>png</format>
446
+ <sizes>
447
+ <size name="original" width="1950" height="2596">http://userserve-ak.last.fm/serve/_/62803887/Cher.png</size>
448
+ <size name="large" width="126" height="168">http://userserve-ak.last.fm/serve/126/62803887.png</size>
449
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62803887.png</size>
450
+ <size name="medium" width="64" height="85">http://userserve-ak.last.fm/serve/64/62803887.png</size>
451
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/62803887.png</size>
452
+ <size name="extralarge" width="252" height="335">http://userserve-ak.last.fm/serve/252/62803887.png</size>
453
+ </sizes>
454
+ <votes>
455
+ <thumbsup>61</thumbsup>
456
+ <thumbsdown>22</thumbsdown>
457
+ </votes>
458
+ </image>
459
+ <image>
460
+ <title></title>
461
+ <url>http://www.last.fm/music/Cher/+images/62556561</url>
462
+ <dateadded>Fri, 6 May 2011 14:36:13</dateadded>
463
+ <format>png</format>
464
+ <sizes>
465
+ <size name="original" width="535" height="713">http://userserve-ak.last.fm/serve/_/62556561/Cher.png</size>
466
+ <size name="large" width="126" height="168">http://userserve-ak.last.fm/serve/126/62556561.png</size>
467
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62556561.png</size>
468
+ <size name="medium" width="64" height="85">http://userserve-ak.last.fm/serve/64/62556561.png</size>
469
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/62556561.png</size>
470
+ <size name="extralarge" width="252" height="336">http://userserve-ak.last.fm/serve/252/62556561.png</size>
471
+ </sizes>
472
+ <votes>
473
+ <thumbsup>57</thumbsup>
474
+ <thumbsdown>23</thumbsdown>
475
+ </votes>
476
+ </image>
477
+ <image>
478
+ <title></title>
479
+ <url>http://www.last.fm/music/Cher/+images/62556387</url>
480
+ <dateadded>Fri, 6 May 2011 14:30:02</dateadded>
481
+ <format>png</format>
482
+ <sizes>
483
+ <size name="original" width="759" height="976">http://userserve-ak.last.fm/serve/_/62556387/Cher.png</size>
484
+ <size name="large" width="126" height="162">http://userserve-ak.last.fm/serve/126/62556387.png</size>
485
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62556387.png</size>
486
+ <size name="medium" width="64" height="82">http://userserve-ak.last.fm/serve/64/62556387.png</size>
487
+ <size name="small" width="34" height="44">http://userserve-ak.last.fm/serve/34/62556387.png</size>
488
+ <size name="extralarge" width="252" height="324">http://userserve-ak.last.fm/serve/252/62556387.png</size>
489
+ </sizes>
490
+ <votes>
491
+ <thumbsup>44</thumbsup>
492
+ <thumbsdown>16</thumbsdown>
493
+ </votes>
494
+ </image>
495
+ <image>
496
+ <title></title>
497
+ <url>http://www.last.fm/music/Cher/+images/62412039</url>
498
+ <dateadded>Tue, 3 May 2011 01:03:56</dateadded>
499
+ <format>png</format>
500
+ <sizes>
501
+ <size name="original" width="678" height="1074">http://userserve-ak.last.fm/serve/_/62412039/Cher.png</size>
502
+ <size name="large" width="126" height="200">http://userserve-ak.last.fm/serve/126/62412039.png</size>
503
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62412039.png</size>
504
+ <size name="medium" width="64" height="101">http://userserve-ak.last.fm/serve/64/62412039.png</size>
505
+ <size name="small" width="34" height="54">http://userserve-ak.last.fm/serve/34/62412039.png</size>
506
+ <size name="extralarge" width="252" height="399">http://userserve-ak.last.fm/serve/252/62412039.png</size>
507
+ </sizes>
508
+ <votes>
509
+ <thumbsup>33</thumbsup>
510
+ <thumbsdown>11</thumbsdown>
511
+ </votes>
512
+ </image>
513
+ <image>
514
+ <title></title>
515
+ <url>http://www.last.fm/music/Cher/+images/62388021</url>
516
+ <dateadded>Mon, 2 May 2011 13:34:36</dateadded>
517
+ <format>png</format>
518
+ <sizes>
519
+ <size name="original" width="517" height="618">http://userserve-ak.last.fm/serve/_/62388021/Cher.png</size>
520
+ <size name="large" width="126" height="151">http://userserve-ak.last.fm/serve/126/62388021.png</size>
521
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62388021.png</size>
522
+ <size name="medium" width="64" height="77">http://userserve-ak.last.fm/serve/64/62388021.png</size>
523
+ <size name="small" width="34" height="41">http://userserve-ak.last.fm/serve/34/62388021.png</size>
524
+ <size name="extralarge" width="252" height="301">http://userserve-ak.last.fm/serve/252/62388021.png</size>
525
+ </sizes>
526
+ <votes>
527
+ <thumbsup>43</thumbsup>
528
+ <thumbsdown>16</thumbsdown>
529
+ </votes>
530
+ </image>
531
+ <image>
532
+ <title></title>
533
+ <url>http://www.last.fm/music/Cher/+images/62374441</url>
534
+ <dateadded>Mon, 2 May 2011 04:32:00</dateadded>
535
+ <format>png</format>
536
+ <sizes>
537
+ <size name="original" width="1094" height="1565">http://userserve-ak.last.fm/serve/_/62374441/Cher.png</size>
538
+ <size name="large" width="126" height="180">http://userserve-ak.last.fm/serve/126/62374441.png</size>
539
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62374441.png</size>
540
+ <size name="medium" width="64" height="92">http://userserve-ak.last.fm/serve/64/62374441.png</size>
541
+ <size name="small" width="34" height="49">http://userserve-ak.last.fm/serve/34/62374441.png</size>
542
+ <size name="extralarge" width="252" height="360">http://userserve-ak.last.fm/serve/252/62374441.png</size>
543
+ </sizes>
544
+ <votes>
545
+ <thumbsup>46</thumbsup>
546
+ <thumbsdown>16</thumbsdown>
547
+ </votes>
548
+ </image>
549
+ <image>
550
+ <title></title>
551
+ <url>http://www.last.fm/music/Cher/+images/62373915</url>
552
+ <dateadded>Mon, 2 May 2011 03:59:57</dateadded>
553
+ <format>png</format>
554
+ <sizes>
555
+ <size name="original" width="1973" height="1973">http://userserve-ak.last.fm/serve/_/62373915/Cher.png</size>
556
+ <size name="large" width="126" height="126">http://userserve-ak.last.fm/serve/126/62373915.png</size>
557
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62373915.png</size>
558
+ <size name="medium" width="64" height="64">http://userserve-ak.last.fm/serve/64/62373915.png</size>
559
+ <size name="small" width="34" height="34">http://userserve-ak.last.fm/serve/34/62373915.png</size>
560
+ <size name="extralarge" width="252" height="252">http://userserve-ak.last.fm/serve/252/62373915.png</size>
561
+ </sizes>
562
+ <votes>
563
+ <thumbsup>42</thumbsup>
564
+ <thumbsdown>16</thumbsdown>
565
+ </votes>
566
+ </image>
567
+ <image>
568
+ <title></title>
569
+ <url>http://www.last.fm/music/Cher/+images/62373525</url>
570
+ <dateadded>Mon, 2 May 2011 03:33:40</dateadded>
571
+ <format>png</format>
572
+ <sizes>
573
+ <size name="original" width="2000" height="1371">http://userserve-ak.last.fm/serve/_/62373525/Cher.png</size>
574
+ <size name="large" width="126" height="86">http://userserve-ak.last.fm/serve/126/62373525.png</size>
575
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62373525.png</size>
576
+ <size name="medium" width="64" height="44">http://userserve-ak.last.fm/serve/64/62373525.png</size>
577
+ <size name="small" width="34" height="23">http://userserve-ak.last.fm/serve/34/62373525.png</size>
578
+ <size name="extralarge" width="252" height="173">http://userserve-ak.last.fm/serve/252/62373525.png</size>
579
+ </sizes>
580
+ <votes>
581
+ <thumbsup>31</thumbsup>
582
+ <thumbsdown>13</thumbsdown>
583
+ </votes>
584
+ </image>
585
+ <image>
586
+ <title></title>
587
+ <url>http://www.last.fm/music/Cher/+images/62360643</url>
588
+ <dateadded>Sun, 1 May 2011 20:29:56</dateadded>
589
+ <format>png</format>
590
+ <sizes>
591
+ <size name="original" width="1000" height="1309">http://userserve-ak.last.fm/serve/_/62360643/Cher.png</size>
592
+ <size name="large" width="126" height="165">http://userserve-ak.last.fm/serve/126/62360643.png</size>
593
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62360643.png</size>
594
+ <size name="medium" width="64" height="84">http://userserve-ak.last.fm/serve/64/62360643.png</size>
595
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/62360643.png</size>
596
+ <size name="extralarge" width="252" height="330">http://userserve-ak.last.fm/serve/252/62360643.png</size>
597
+ </sizes>
598
+ <votes>
599
+ <thumbsup>40</thumbsup>
600
+ <thumbsdown>16</thumbsdown>
601
+ </votes>
602
+ </image>
603
+ <image>
604
+ <title></title>
605
+ <url>http://www.last.fm/music/Cher/+images/62332005</url>
606
+ <dateadded>Sun, 1 May 2011 03:37:08</dateadded>
607
+ <format>png</format>
608
+ <sizes>
609
+ <size name="original" width="573" height="344">http://userserve-ak.last.fm/serve/_/62332005/Cher.png</size>
610
+ <size name="large" width="126" height="76">http://userserve-ak.last.fm/serve/126/62332005.png</size>
611
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62332005.png</size>
612
+ <size name="medium" width="64" height="38">http://userserve-ak.last.fm/serve/64/62332005.png</size>
613
+ <size name="small" width="34" height="20">http://userserve-ak.last.fm/serve/34/62332005.png</size>
614
+ <size name="extralarge" width="252" height="151">http://userserve-ak.last.fm/serve/252/62332005.png</size>
615
+ </sizes>
616
+ <votes>
617
+ <thumbsup>50</thumbsup>
618
+ <thumbsdown>16</thumbsdown>
619
+ </votes>
620
+ </image>
621
+ <image>
622
+ <title></title>
623
+ <url>http://www.last.fm/music/Cher/+images/62329329</url>
624
+ <dateadded>Sun, 1 May 2011 01:21:37</dateadded>
625
+ <format>png</format>
626
+ <sizes>
627
+ <size name="original" width="689" height="1033">http://userserve-ak.last.fm/serve/_/62329329/Cher.png</size>
628
+ <size name="large" width="126" height="189">http://userserve-ak.last.fm/serve/126/62329329.png</size>
629
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62329329.png</size>
630
+ <size name="medium" width="64" height="96">http://userserve-ak.last.fm/serve/64/62329329.png</size>
631
+ <size name="small" width="34" height="51">http://userserve-ak.last.fm/serve/34/62329329.png</size>
632
+ <size name="extralarge" width="252" height="378">http://userserve-ak.last.fm/serve/252/62329329.png</size>
633
+ </sizes>
634
+ <votes>
635
+ <thumbsup>50</thumbsup>
636
+ <thumbsdown>17</thumbsdown>
637
+ </votes>
638
+ </image>
639
+ <image>
640
+ <title></title>
641
+ <url>http://www.last.fm/music/Cher/+images/62325545</url>
642
+ <dateadded>Sat, 30 Apr 2011 22:31:08</dateadded>
643
+ <format>png</format>
644
+ <sizes>
645
+ <size name="original" width="543" height="965">http://userserve-ak.last.fm/serve/_/62325545/Cher.png</size>
646
+ <size name="large" width="126" height="224">http://userserve-ak.last.fm/serve/126/62325545.png</size>
647
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62325545.png</size>
648
+ <size name="medium" width="64" height="114">http://userserve-ak.last.fm/serve/64/62325545.png</size>
649
+ <size name="small" width="34" height="60">http://userserve-ak.last.fm/serve/34/62325545.png</size>
650
+ <size name="extralarge" width="252" height="448">http://userserve-ak.last.fm/serve/252/62325545.png</size>
651
+ </sizes>
652
+ <votes>
653
+ <thumbsup>47</thumbsup>
654
+ <thumbsdown>16</thumbsdown>
655
+ </votes>
656
+ </image>
657
+ <image>
658
+ <title></title>
659
+ <url>http://www.last.fm/music/Cher/+images/62320773</url>
660
+ <dateadded>Sat, 30 Apr 2011 19:52:03</dateadded>
661
+ <format>png</format>
662
+ <sizes>
663
+ <size name="original" width="2000" height="1314">http://userserve-ak.last.fm/serve/_/62320773/Cher.png</size>
664
+ <size name="large" width="126" height="83">http://userserve-ak.last.fm/serve/126/62320773.png</size>
665
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62320773.png</size>
666
+ <size name="medium" width="64" height="42">http://userserve-ak.last.fm/serve/64/62320773.png</size>
667
+ <size name="small" width="34" height="22">http://userserve-ak.last.fm/serve/34/62320773.png</size>
668
+ <size name="extralarge" width="252" height="166">http://userserve-ak.last.fm/serve/252/62320773.png</size>
669
+ </sizes>
670
+ <votes>
671
+ <thumbsup>34</thumbsup>
672
+ <thumbsdown>16</thumbsdown>
673
+ </votes>
674
+ </image>
675
+ <image>
676
+ <title></title>
677
+ <url>http://www.last.fm/music/Cher/+images/62319027</url>
678
+ <dateadded>Sat, 30 Apr 2011 19:01:52</dateadded>
679
+ <format>png</format>
680
+ <sizes>
681
+ <size name="original" width="1350" height="1800">http://userserve-ak.last.fm/serve/_/62319027/Cher.png</size>
682
+ <size name="large" width="126" height="168">http://userserve-ak.last.fm/serve/126/62319027.png</size>
683
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62319027.png</size>
684
+ <size name="medium" width="64" height="85">http://userserve-ak.last.fm/serve/64/62319027.png</size>
685
+ <size name="small" width="34" height="45">http://userserve-ak.last.fm/serve/34/62319027.png</size>
686
+ <size name="extralarge" width="252" height="336">http://userserve-ak.last.fm/serve/252/62319027.png</size>
687
+ </sizes>
688
+ <votes>
689
+ <thumbsup>38</thumbsup>
690
+ <thumbsdown>16</thumbsdown>
691
+ </votes>
692
+ </image>
693
+ <image>
694
+ <title></title>
695
+ <url>http://www.last.fm/music/Cher/+images/62292183</url>
696
+ <dateadded>Sat, 30 Apr 2011 00:45:00</dateadded>
697
+ <format>png</format>
698
+ <sizes>
699
+ <size name="original" width="1122" height="1620">http://userserve-ak.last.fm/serve/_/62292183/Cher.png</size>
700
+ <size name="large" width="126" height="182">http://userserve-ak.last.fm/serve/126/62292183.png</size>
701
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62292183.png</size>
702
+ <size name="medium" width="64" height="92">http://userserve-ak.last.fm/serve/64/62292183.png</size>
703
+ <size name="small" width="34" height="49">http://userserve-ak.last.fm/serve/34/62292183.png</size>
704
+ <size name="extralarge" width="252" height="364">http://userserve-ak.last.fm/serve/252/62292183.png</size>
705
+ </sizes>
706
+ <votes>
707
+ <thumbsup>41</thumbsup>
708
+ <thumbsdown>16</thumbsdown>
709
+ </votes>
710
+ </image>
711
+ <image>
712
+ <title></title>
713
+ <url>http://www.last.fm/music/Cher/+images/62291875</url>
714
+ <dateadded>Sat, 30 Apr 2011 00:31:11</dateadded>
715
+ <format>png</format>
716
+ <sizes>
717
+ <size name="original" width="700" height="496">http://userserve-ak.last.fm/serve/_/62291875/Cher.png</size>
718
+ <size name="large" width="126" height="89">http://userserve-ak.last.fm/serve/126/62291875.png</size>
719
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62291875.png</size>
720
+ <size name="medium" width="64" height="45">http://userserve-ak.last.fm/serve/64/62291875.png</size>
721
+ <size name="small" width="34" height="24">http://userserve-ak.last.fm/serve/34/62291875.png</size>
722
+ <size name="extralarge" width="252" height="179">http://userserve-ak.last.fm/serve/252/62291875.png</size>
723
+ </sizes>
724
+ <votes>
725
+ <thumbsup>35</thumbsup>
726
+ <thumbsdown>16</thumbsdown>
727
+ </votes>
728
+ </image>
729
+ <image>
730
+ <title></title>
731
+ <url>http://www.last.fm/music/Cher/+images/62291803</url>
732
+ <dateadded>Sat, 30 Apr 2011 00:27:26</dateadded>
733
+ <format>png</format>
734
+ <sizes>
735
+ <size name="original" width="500" height="722">http://userserve-ak.last.fm/serve/_/62291803/Cher.png</size>
736
+ <size name="large" width="126" height="182">http://userserve-ak.last.fm/serve/126/62291803.png</size>
737
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62291803.png</size>
738
+ <size name="medium" width="64" height="92">http://userserve-ak.last.fm/serve/64/62291803.png</size>
739
+ <size name="small" width="34" height="49">http://userserve-ak.last.fm/serve/34/62291803.png</size>
740
+ <size name="extralarge" width="252" height="364">http://userserve-ak.last.fm/serve/252/62291803.png</size>
741
+ </sizes>
742
+ <votes>
743
+ <thumbsup>48</thumbsup>
744
+ <thumbsdown>16</thumbsdown>
745
+ </votes>
746
+ </image>
747
+ <image>
748
+ <title></title>
749
+ <url>http://www.last.fm/music/Cher/+images/62290645</url>
750
+ <dateadded>Fri, 29 Apr 2011 23:36:06</dateadded>
751
+ <format>png</format>
752
+ <sizes>
753
+ <size name="original" width="1311" height="936">http://userserve-ak.last.fm/serve/_/62290645/Cher.png</size>
754
+ <size name="large" width="126" height="90">http://userserve-ak.last.fm/serve/126/62290645.png</size>
755
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62290645.png</size>
756
+ <size name="medium" width="64" height="46">http://userserve-ak.last.fm/serve/64/62290645.png</size>
757
+ <size name="small" width="34" height="24">http://userserve-ak.last.fm/serve/34/62290645.png</size>
758
+ <size name="extralarge" width="252" height="180">http://userserve-ak.last.fm/serve/252/62290645.png</size>
759
+ </sizes>
760
+ <votes>
761
+ <thumbsup>88</thumbsup>
762
+ <thumbsdown>26</thumbsdown>
763
+ </votes>
764
+ </image>
765
+ <image>
766
+ <title></title>
767
+ <url>http://www.last.fm/music/Cher/+images/62286929</url>
768
+ <dateadded>Fri, 29 Apr 2011 21:27:56</dateadded>
769
+ <format>png</format>
770
+ <sizes>
771
+ <size name="original" width="1192" height="1318">http://userserve-ak.last.fm/serve/_/62286929/Cher.png</size>
772
+ <size name="large" width="126" height="139">http://userserve-ak.last.fm/serve/126/62286929.png</size>
773
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62286929.png</size>
774
+ <size name="medium" width="64" height="71">http://userserve-ak.last.fm/serve/64/62286929.png</size>
775
+ <size name="small" width="34" height="38">http://userserve-ak.last.fm/serve/34/62286929.png</size>
776
+ <size name="extralarge" width="252" height="279">http://userserve-ak.last.fm/serve/252/62286929.png</size>
777
+ </sizes>
778
+ <votes>
779
+ <thumbsup>84</thumbsup>
780
+ <thumbsdown>39</thumbsdown>
781
+ </votes>
782
+ </image>
783
+ <image>
784
+ <title></title>
785
+ <url>http://www.last.fm/music/Cher/+images/62286415</url>
786
+ <dateadded>Fri, 29 Apr 2011 21:08:59</dateadded>
787
+ <format>png</format>
788
+ <sizes>
789
+ <size name="original" width="2143" height="1607">http://userserve-ak.last.fm/serve/_/62286415/Cher.png</size>
790
+ <size name="large" width="126" height="94">http://userserve-ak.last.fm/serve/126/62286415.png</size>
791
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62286415.png</size>
792
+ <size name="medium" width="64" height="48">http://userserve-ak.last.fm/serve/64/62286415.png</size>
793
+ <size name="small" width="34" height="25">http://userserve-ak.last.fm/serve/34/62286415.png</size>
794
+ <size name="extralarge" width="252" height="189">http://userserve-ak.last.fm/serve/252/62286415.png</size>
795
+ </sizes>
796
+ <votes>
797
+ <thumbsup>57</thumbsup>
798
+ <thumbsdown>23</thumbsdown>
799
+ </votes>
800
+ </image>
801
+ <image>
802
+ <title></title>
803
+ <url>http://www.last.fm/music/Cher/+images/62211351</url>
804
+ <dateadded>Wed, 27 Apr 2011 19:05:51</dateadded>
805
+ <format>png</format>
806
+ <sizes>
807
+ <size name="original" width="1770" height="2287">http://userserve-ak.last.fm/serve/_/62211351/Cher.png</size>
808
+ <size name="large" width="126" height="163">http://userserve-ak.last.fm/serve/126/62211351.png</size>
809
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62211351.png</size>
810
+ <size name="medium" width="64" height="83">http://userserve-ak.last.fm/serve/64/62211351.png</size>
811
+ <size name="small" width="34" height="44">http://userserve-ak.last.fm/serve/34/62211351.png</size>
812
+ <size name="extralarge" width="252" height="326">http://userserve-ak.last.fm/serve/252/62211351.png</size>
813
+ </sizes>
814
+ <votes>
815
+ <thumbsup>31</thumbsup>
816
+ <thumbsdown>13</thumbsdown>
817
+ </votes>
818
+ </image>
819
+ <image>
820
+ <title></title>
821
+ <url>http://www.last.fm/music/Cher/+images/62210477</url>
822
+ <dateadded>Wed, 27 Apr 2011 18:41:54</dateadded>
823
+ <format>png</format>
824
+ <sizes>
825
+ <size name="original" width="1236" height="1414">http://userserve-ak.last.fm/serve/_/62210477/Cher.png</size>
826
+ <size name="large" width="126" height="144">http://userserve-ak.last.fm/serve/126/62210477.png</size>
827
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/62210477.png</size>
828
+ <size name="medium" width="64" height="73">http://userserve-ak.last.fm/serve/64/62210477.png</size>
829
+ <size name="small" width="34" height="39">http://userserve-ak.last.fm/serve/34/62210477.png</size>
830
+ <size name="extralarge" width="252" height="288">http://userserve-ak.last.fm/serve/252/62210477.png</size>
831
+ </sizes>
832
+ <votes>
833
+ <thumbsup>105</thumbsup>
834
+ <thumbsdown>35</thumbsdown>
835
+ </votes>
836
+ </image>
837
+ <image>
838
+ <title></title>
839
+ <url>http://www.last.fm/music/Cher/+images/69865740</url>
840
+ <dateadded>Thu, 13 Oct 2011 18:22:27</dateadded>
841
+ <format>png</format>
842
+ <owner type="user">
843
+ <name>imagine003</name>
844
+ <url>http://www.last.fm/user/imagine003</url>
845
+ </owner>
846
+ <sizes>
847
+ <size name="original" width="900" height="1238">http://userserve-ak.last.fm/serve/_/69865740/Cher.png</size>
848
+ <size name="large" width="126" height="173">http://userserve-ak.last.fm/serve/126/69865740.png</size>
849
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/69865740.png</size>
850
+ <size name="medium" width="64" height="88">http://userserve-ak.last.fm/serve/64/69865740.png</size>
851
+ <size name="small" width="34" height="47">http://userserve-ak.last.fm/serve/34/69865740.png</size>
852
+ <size name="extralarge" width="252" height="347">http://userserve-ak.last.fm/serve/252/69865740.png</size>
853
+ </sizes>
854
+ <votes>
855
+ <thumbsup>18</thumbsup>
856
+ <thumbsdown>1</thumbsdown>
857
+ </votes>
858
+ </image>
859
+ <image>
860
+ <title></title>
861
+ <url>http://www.last.fm/music/Cher/+images/63819159</url>
862
+ <dateadded>Mon, 6 Jun 2011 04:19:21</dateadded>
863
+ <format>png</format>
864
+ <sizes>
865
+ <size name="original" width="973" height="1729">http://userserve-ak.last.fm/serve/_/63819159/Cher.png</size>
866
+ <size name="large" width="126" height="224">http://userserve-ak.last.fm/serve/126/63819159.png</size>
867
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63819159.png</size>
868
+ <size name="medium" width="64" height="114">http://userserve-ak.last.fm/serve/64/63819159.png</size>
869
+ <size name="small" width="34" height="60">http://userserve-ak.last.fm/serve/34/63819159.png</size>
870
+ <size name="extralarge" width="252" height="448">http://userserve-ak.last.fm/serve/252/63819159.png</size>
871
+ </sizes>
872
+ <votes>
873
+ <thumbsup>23</thumbsup>
874
+ <thumbsdown>6</thumbsdown>
875
+ </votes>
876
+ </image>
877
+ <image>
878
+ <title></title>
879
+ <url>http://www.last.fm/music/Cher/+images/63818835</url>
880
+ <dateadded>Mon, 6 Jun 2011 04:00:17</dateadded>
881
+ <format>png</format>
882
+ <sizes>
883
+ <size name="original" width="2000" height="2495">http://userserve-ak.last.fm/serve/_/63818835/Cher.png</size>
884
+ <size name="large" width="126" height="157">http://userserve-ak.last.fm/serve/126/63818835.png</size>
885
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63818835.png</size>
886
+ <size name="medium" width="64" height="80">http://userserve-ak.last.fm/serve/64/63818835.png</size>
887
+ <size name="small" width="34" height="42">http://userserve-ak.last.fm/serve/34/63818835.png</size>
888
+ <size name="extralarge" width="252" height="314">http://userserve-ak.last.fm/serve/252/63818835.png</size>
889
+ </sizes>
890
+ <votes>
891
+ <thumbsup>22</thumbsup>
892
+ <thumbsdown>5</thumbsdown>
893
+ </votes>
894
+ </image>
895
+ <image>
896
+ <title></title>
897
+ <url>http://www.last.fm/music/Cher/+images/63818499</url>
898
+ <dateadded>Mon, 6 Jun 2011 03:43:19</dateadded>
899
+ <format>png</format>
900
+ <sizes>
901
+ <size name="original" width="718" height="574">http://userserve-ak.last.fm/serve/_/63818499/Cher.png</size>
902
+ <size name="large" width="126" height="101">http://userserve-ak.last.fm/serve/126/63818499.png</size>
903
+ <size name="largesquare" width="126" height="126">http://userserve-ak.last.fm/serve/126s/63818499.png</size>
904
+ <size name="medium" width="64" height="51">http://userserve-ak.last.fm/serve/64/63818499.png</size>
905
+ <size name="small" width="34" height="27">http://userserve-ak.last.fm/serve/34/63818499.png</size>
906
+ <size name="extralarge" width="252" height="201">http://userserve-ak.last.fm/serve/252/63818499.png</size>
907
+ </sizes>
908
+ <votes>
909
+ <thumbsup>29</thumbsup>
910
+ <thumbsdown>12</thumbsdown>
911
+ </votes>
912
+ </image>
913
+ </images></lfm>
data/test/test_artist.rb CHANGED
@@ -36,4 +36,13 @@ class TestArtist < Test::Unit::TestCase
36
36
  assert_equal "Cher", track.artist.name
37
37
  end
38
38
 
39
+ def test_should_get_images
40
+ artist = Firstfm::Artist.new :name => "Cher"
41
+
42
+ FakeWeb.register_uri(:get, %r|http://ws.audioscrobbler.com/|, :body => File.read(File.dirname(__FILE__) + "/fixtures/get_images.xml"))
43
+ images = artist.get_images
44
+ assert_equal 50, images.size
45
+ assert images.detect {|i| i.with_width(600) }
46
+ end
47
+
39
48
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firstfm
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Aleksandr Lossenko
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-07-27 00:00:00 +02:00
18
+ date: 2011-11-05 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -23,12 +23,14 @@ dependencies:
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
24
  none: false
25
25
  requirements:
26
- - - ">="
26
+ - - "="
27
27
  - !ruby/object:Gem::Version
28
- hash: 3
28
+ hash: 19
29
29
  segments:
30
30
  - 0
31
- version: "0"
31
+ - 7
32
+ - 8
33
+ version: 0.7.8
32
34
  name: httparty
33
35
  version_requirements: *id001
34
36
  prerelease: false
@@ -37,15 +39,12 @@ dependencies:
37
39
  requirement: &id002 !ruby/object:Gem::Requirement
38
40
  none: false
39
41
  requirements:
40
- - - ~>
42
+ - - ">="
41
43
  - !ruby/object:Gem::Version
42
- hash: 1923831917
44
+ hash: 3
43
45
  segments:
44
- - 3
45
46
  - 0
46
- - pre
47
- - 2
48
- version: 3.0.pre2
47
+ version: "0"
49
48
  name: will_paginate
50
49
  version_requirements: *id002
51
50
  prerelease: false
@@ -56,12 +55,12 @@ dependencies:
56
55
  requirements:
57
56
  - - ~>
58
57
  - !ruby/object:Gem::Version
59
- hash: 9
58
+ hash: 19
60
59
  segments:
61
60
  - 3
62
61
  - 0
63
- - 7
64
- version: 3.0.7
62
+ - 10
63
+ version: 3.0.10
65
64
  name: activesupport
66
65
  version_requirements: *id003
67
66
  prerelease: false
@@ -84,14 +83,12 @@ dependencies:
84
83
  requirement: &id005 !ruby/object:Gem::Requirement
85
84
  none: false
86
85
  requirements:
87
- - - ~>
86
+ - - ">="
88
87
  - !ruby/object:Gem::Version
89
- hash: 23
88
+ hash: 3
90
89
  segments:
91
- - 1
92
90
  - 0
93
- - 0
94
- version: 1.0.0
91
+ version: "0"
95
92
  name: bundler
96
93
  version_requirements: *id005
97
94
  prerelease: false
@@ -100,14 +97,12 @@ dependencies:
100
97
  requirement: &id006 !ruby/object:Gem::Requirement
101
98
  none: false
102
99
  requirements:
103
- - - ~>
100
+ - - ">="
104
101
  - !ruby/object:Gem::Version
105
- hash: 11
102
+ hash: 3
106
103
  segments:
107
- - 1
108
- - 6
109
- - 2
110
- version: 1.6.2
104
+ - 0
105
+ version: "0"
111
106
  name: jeweler
112
107
  version_requirements: *id006
113
108
  prerelease: false
@@ -169,6 +164,7 @@ files:
169
164
  - test/fixtures/events.xml
170
165
  - test/fixtures/geo_event.xml
171
166
  - test/fixtures/geo_events.xml
167
+ - test/fixtures/get_images.xml
172
168
  - test/fixtures/top_tracks.xml
173
169
  - test/fixtures/tracks.xml
174
170
  - test/fixtures/venue.xml