shortwave 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. data/.document +5 -0
  2. data/.gitignore +10 -0
  3. data/.gitmodules +3 -0
  4. data/LICENSE +20 -0
  5. data/README.rdoc +74 -0
  6. data/Rakefile +133 -0
  7. data/VERSION +1 -0
  8. data/lib/shortwave.rb +12 -0
  9. data/lib/shortwave/authentication.rb +107 -0
  10. data/lib/shortwave/facade.rb +3 -0
  11. data/lib/shortwave/facade/build/facade_builder.rb +199 -0
  12. data/lib/shortwave/facade/build/facade_template.erb +17 -0
  13. data/lib/shortwave/facade/lastfm.rb +878 -0
  14. data/lib/shortwave/facade/remote.rb +86 -0
  15. data/lib/shortwave/model/album.rb +33 -0
  16. data/lib/shortwave/model/artist.rb +62 -0
  17. data/lib/shortwave/model/base_model.rb +112 -0
  18. data/lib/shortwave/model/chart_dates.rb +15 -0
  19. data/lib/shortwave/model/comparison.rb +15 -0
  20. data/lib/shortwave/model/event.rb +55 -0
  21. data/lib/shortwave/model/group.rb +26 -0
  22. data/lib/shortwave/model/location.rb +45 -0
  23. data/lib/shortwave/model/playlist.rb +36 -0
  24. data/lib/shortwave/model/shout.rb +21 -0
  25. data/lib/shortwave/model/tag.rb +47 -0
  26. data/lib/shortwave/model/track.rb +71 -0
  27. data/lib/shortwave/model/user.rb +70 -0
  28. data/lib/shortwave/model/venue.rb +37 -0
  29. data/lib/shortwave/model/weekly_charts.rb +31 -0
  30. data/lib/shortwave/providers.rb +161 -0
  31. data/shortwave.gemspec +178 -0
  32. data/test/authentication_test.rb +64 -0
  33. data/test/build/build_test.rb +25 -0
  34. data/test/build/data/intro.yml +2 -0
  35. data/test/build/data/screens/album_addTags.html +1238 -0
  36. data/test/build/data/screens/intro_truncated.html +426 -0
  37. data/test/build/data/screens/tasteometer_compare.html +1274 -0
  38. data/test/build/data/screens/user_getLovedTracks.html +1278 -0
  39. data/test/build/data/screens/venue_search.html +1261 -0
  40. data/test/build/facade_builder_test.rb +23 -0
  41. data/test/build/parameter_test.rb +43 -0
  42. data/test/build/remote_method_test.rb +47 -0
  43. data/test/build/ruby_class_test.rb +12 -0
  44. data/test/build/ruby_method_test.rb +137 -0
  45. data/test/helper.rb +35 -0
  46. data/test/model/album_test.rb +62 -0
  47. data/test/model/artist_test.rb +103 -0
  48. data/test/model/chart_dates_test.rb +11 -0
  49. data/test/model/comparison_test.rb +18 -0
  50. data/test/model/data/album_info.xml +38 -0
  51. data/test/model/data/album_search.xml +210 -0
  52. data/test/model/data/artist_info.xml +58 -0
  53. data/test/model/data/artist_search.xml +109 -0
  54. data/test/model/data/artist_shouts.xml +546 -0
  55. data/test/model/data/artist_top_fans.xml +405 -0
  56. data/test/model/data/event_info.xml +47 -0
  57. data/test/model/data/group_members.xml +242 -0
  58. data/test/model/data/group_weekly_album_chart.xml +1754 -0
  59. data/test/model/data/group_weekly_artist_chart.xml +604 -0
  60. data/test/model/data/group_weekly_track_chart.xml +1005 -0
  61. data/test/model/data/location_events.xml +383 -0
  62. data/test/model/data/ok.xml +2 -0
  63. data/test/model/data/playlist_fetch.xml +227 -0
  64. data/test/model/data/tag_search.xml +110 -0
  65. data/test/model/data/tag_similar.xml +254 -0
  66. data/test/model/data/tag_top_albums.xml +805 -0
  67. data/test/model/data/tag_top_artists.xml +605 -0
  68. data/test/model/data/tag_top_tags.xml +1254 -0
  69. data/test/model/data/tag_top_tracks.xml +843 -0
  70. data/test/model/data/tag_weekly_chart_list.xml +57 -0
  71. data/test/model/data/tasteometer_compare.xml +54 -0
  72. data/test/model/data/track_info.xml +53 -0
  73. data/test/model/data/track_search.xml +195 -0
  74. data/test/model/data/user_chartlist.xml +90 -0
  75. data/test/model/data/user_info.xml +16 -0
  76. data/test/model/data/user_neighbours.xml +484 -0
  77. data/test/model/data/user_playlists.xml +17 -0
  78. data/test/model/data/user_recent_tracks.xml +124 -0
  79. data/test/model/data/user_recommended_artists.xml +454 -0
  80. data/test/model/data/user_shouts.xml +9 -0
  81. data/test/model/data/user_weekly_artist_chart.xml +478 -0
  82. data/test/model/data/venue_events.xml +556 -0
  83. data/test/model/data/venue_past_events.xml +1778 -0
  84. data/test/model/data/venue_search.xml +355 -0
  85. data/test/model/event_test.rb +63 -0
  86. data/test/model/group_test.rb +45 -0
  87. data/test/model/location_test.rb +25 -0
  88. data/test/model/playlist_test.rb +51 -0
  89. data/test/model/shout_test.rb +23 -0
  90. data/test/model/tag_test.rb +39 -0
  91. data/test/model/track_test.rb +67 -0
  92. data/test/model/user_test.rb +125 -0
  93. data/test/model/venue_test.rb +60 -0
  94. data/test/provider/album_provider_test.rb +26 -0
  95. data/test/provider/artist_provider_test.rb +25 -0
  96. data/test/provider/group_provider_test.rb +9 -0
  97. data/test/provider/location_provider_test.rb +9 -0
  98. data/test/provider/playlist_provider_test.rb +12 -0
  99. data/test/provider/tag_provider_test.rb +24 -0
  100. data/test/provider/track_provider_test.rb +26 -0
  101. data/test/provider/user_provider_test.rb +11 -0
  102. data/test/provider/venue_provider_test.rb +15 -0
  103. data/test/provider_test_helper.rb +27 -0
  104. data/test/remote_test.rb +26 -0
  105. metadata +209 -0
@@ -0,0 +1,11 @@
1
+ require 'helper'
2
+
3
+ class ChartDatesTest < TestCase
4
+ include ProviderTestHelper
5
+
6
+ test "can be parsed" do
7
+ dates = Model::ChartDates.parse(xml("tag_weekly_chart_list")).first
8
+ assert_equal Time.local(2008, 5, 25, 13, 0, 0), dates.from
9
+ assert_equal Time.local(2008, 6, 1, 13, 0, 0), dates.to
10
+ end
11
+ end
@@ -0,0 +1,18 @@
1
+ require 'helper'
2
+
3
+ class ComparisonTest < TestCase
4
+ include ProviderTestHelper
5
+
6
+ def setup
7
+ super
8
+ @comparison = Model::Comparison.parse(xml("tasteometer_compare"), :single => true)
9
+ end
10
+
11
+ test "has a score" do
12
+ assert_equal 0.71107162951922, @comparison.score
13
+ end
14
+
15
+ test "has artists" do
16
+ assert_equal 4, @comparison.artists.size
17
+ end
18
+ end
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <album>
4
+ <name>Only Life</name>
5
+ <artist>The Feelies</artist>
6
+ <id>2045356</id>
7
+ <mbid>464efacc-a133-4ae6-a9ff-7573c448eb32</mbid>
8
+ <url>http://www.last.fm/music/The+Feelies/Only+Life</url>
9
+ <releasedate> 30 Nov 1987, 00:00</releasedate>
10
+ <image size="small">http://images.amazon.com/images/P/B000002GI2.01.MZZZZZZZ.jpg</image>
11
+ <image size="medium">http://images.amazon.com/images/P/B000002GI2.01.MZZZZZZZ.jpg</image>
12
+ <image size="large">http://images.amazon.com/images/P/B000002GI2.01.MZZZZZZZ.jpg</image>
13
+ <image size="extralarge">http://images.amazon.com/images/P/B000002GI2.01.MZZZZZZZ.jpg</image>
14
+ <listeners>10068</listeners>
15
+ <playcount>67545</playcount>
16
+ <toptags>
17
+ <tag>
18
+ <name>indie</name>
19
+ <url>http://www.last.fm/tag/indie</url>
20
+ </tag>
21
+ <tag>
22
+ <name>wave</name>
23
+ <url>http://www.last.fm/tag/wave</url>
24
+ </tag>
25
+ <tag>
26
+ <name>favorite albums</name>
27
+ <url>http://www.last.fm/tag/favorite%20albums</url>
28
+ </tag>
29
+ <tag>
30
+ <name>pub</name>
31
+ <url>http://www.last.fm/tag/pub</url>
32
+ </tag>
33
+ <tag>
34
+ <name>records and tapes</name>
35
+ <url>http://www.last.fm/tag/records%20and%20tapes</url>
36
+ </tag>
37
+ </toptags>
38
+ </album></lfm>
@@ -0,0 +1,210 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <results for="Only Life" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
4
+ <opensearch:Query role="request" searchTerms="Only Life" startPage="1" />
5
+ <opensearch:totalResults>28</opensearch:totalResults>
6
+ <opensearch:startIndex>0</opensearch:startIndex>
7
+ <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
8
+ <albummatches>
9
+ <album>
10
+ <name>Only Life</name>
11
+ <artist>The Feelies</artist>
12
+ <id>2045356</id>
13
+ <url>http://www.last.fm/music/The+Feelies/Only+Life</url>
14
+ <image size="small">http://images.amazon.com/images/P/B000002GI2.01.MZZZZZZZ.jpg</image>
15
+ <image size="medium">http://images.amazon.com/images/P/B000002GI2.01.MZZZZZZZ.jpg</image>
16
+ <image size="large">http://images.amazon.com/images/P/B000002GI2.01.MZZZZZZZ.jpg</image>
17
+ <streamable>0</streamable>
18
+ </album>
19
+ <album>
20
+ <name>Only One Life (Ganja Kru remix)</name>
21
+ <artist>DJ Hype</artist>
22
+ <id>3384085</id>
23
+ <url>http://www.last.fm/music/DJ+Hype/Only+One+Life+%28Ganja+Kru+remix%29</url>
24
+ <image size="small"></image>
25
+ <image size="medium"></image>
26
+ <image size="large"></image>
27
+ <streamable>0</streamable>
28
+ </album>
29
+ <album>
30
+ <name>Only One Life</name>
31
+ <artist>DJ Hype</artist>
32
+ <id>3384083</id>
33
+ <url>http://www.last.fm/music/DJ+Hype/Only+One+Life</url>
34
+ <image size="small"></image>
35
+ <image size="medium"></image>
36
+ <image size="large"></image>
37
+ <streamable>0</streamable>
38
+ </album>
39
+ <album>
40
+ <name>It's Only Life: The Songs Of John Bucchino</name>
41
+ <artist>Various Artists</artist>
42
+ <id>3330291</id>
43
+ <url>http://www.last.fm/music/Various+Artists/It%27s+Only+Life%3A+The+Songs+Of+John+Bucchino</url>
44
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10086855.jpg</image>
45
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10086855.jpg</image>
46
+ <image size="large">http://userserve-ak.last.fm/serve/126/10086855.jpg</image>
47
+ <streamable>0</streamable>
48
+ </album>
49
+ <album>
50
+ <name>Only One Love in My Life</name>
51
+ <artist>Ronnie Milsap</artist>
52
+ <id>2328661</id>
53
+ <url>http://www.last.fm/music/Ronnie+Milsap/Only+One+Love+in+My+Life</url>
54
+ <image size="small"></image>
55
+ <image size="medium"></image>
56
+ <image size="large"></image>
57
+ <streamable>0</streamable>
58
+ </album>
59
+ <album>
60
+ <name>Life's Rich Pageant: The I.R.S. Years Vintage 1986 (Int'l Only)</name>
61
+ <artist>R.E.M.</artist>
62
+ <id>3271686</id>
63
+ <url>http://www.last.fm/music/R.E.M./Life%27s+Rich+Pageant%3A+The+I.R.S.+Years+Vintage+1986+%28Int%27l+Only%29</url>
64
+ <image size="small">http://www.7digital.com/shops/assets/sleeveart/0077771320156_182.JPEG</image>
65
+ <image size="medium">http://www.7digital.com/shops/assets/sleeveart/0077771320156_182.JPEG</image>
66
+ <image size="large">http://www.7digital.com/shops/assets/sleeveart/0077771320156_182.JPEG</image>
67
+ <streamable>0</streamable>
68
+ </album>
69
+ <album>
70
+ <name>The Albatross Mates for Life, But Only After a Lengthy Courtship That Can Take Up to Four Y</name>
71
+ <artist>Matson Jones</artist>
72
+ <id>2545261</id>
73
+ <url>http://www.last.fm/music/Matson+Jones/The+Albatross+Mates+for+Life%2C+But+Only+After+a+Lengthy+Courtship+That+Can+Take+Up+to+Four+Y</url>
74
+ <image size="small">http://images.amazon.com/images/P/B000CSULKE.01._SCMZZZZZZZ_.jpg</image>
75
+ <image size="medium">http://images.amazon.com/images/P/B000CSULKE.01._SCMZZZZZZZ_.jpg</image>
76
+ <image size="large">http://images.amazon.com/images/P/B000CSULKE.01._SCMZZZZZZZ_.jpg</image>
77
+ <streamable>0</streamable>
78
+ </album>
79
+ <album>
80
+ <name>Extreme Soca Volume 1 Individual Tracks Only</name>
81
+ <artist>D Life</artist>
82
+ <id>3725629</id>
83
+ <url>http://www.last.fm/music/D+Life/Extreme+Soca+Volume+1+Individual+Tracks+Only</url>
84
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14578767.jpg</image>
85
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14578767.jpg</image>
86
+ <image size="large">http://userserve-ak.last.fm/serve/126/14578767.jpg</image>
87
+ <streamable>0</streamable>
88
+ </album>
89
+ <album>
90
+ <name>Road Life</name>
91
+ <artist>Moka Only</artist>
92
+ <id>2727982</id>
93
+ <url>http://www.last.fm/music/Moka+Only/Road+Life</url>
94
+ <image size="small">http://images.amazon.com/images/P/B000056L0R.02._SCMZZZZZZZ_.jpg</image>
95
+ <image size="medium">http://images.amazon.com/images/P/B000056L0R.02._SCMZZZZZZZ_.jpg</image>
96
+ <image size="large">http://images.amazon.com/images/P/B000056L0R.02._SCMZZZZZZZ_.jpg</image>
97
+ <streamable>0</streamable>
98
+ </album>
99
+ <album>
100
+ <name>Its Only Real</name>
101
+ <artist>Secret of Life</artist>
102
+ <id>3730195</id>
103
+ <url>http://www.last.fm/music/Secret+of+Life/Its+Only+Real</url>
104
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10539709.jpg</image>
105
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10539709.jpg</image>
106
+ <image size="large">http://userserve-ak.last.fm/serve/126/10539709.jpg</image>
107
+ <streamable>0</streamable>
108
+ </album>
109
+ <album>
110
+ <name>Life Can Only Get Better</name>
111
+ <artist>Saint</artist>
112
+ <id>3167779</id>
113
+ <url>http://www.last.fm/music/Saint/Life+Can+Only+Get+Better</url>
114
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8973467.jpg</image>
115
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8973467.jpg</image>
116
+ <image size="large">http://userserve-ak.last.fm/serve/126/8973467.jpg</image>
117
+ <streamable>0</streamable>
118
+ </album>
119
+ <album>
120
+ <name>Art of Life, Art of War</name>
121
+ <artist>Only One Desire</artist>
122
+ <id>3701104</id>
123
+ <url>http://www.last.fm/music/Only+One+Desire/Art+of+Life%2C+Art+of+War</url>
124
+ <image size="small"></image>
125
+ <image size="medium"></image>
126
+ <image size="large"></image>
127
+ <streamable>0</streamable>
128
+ </album>
129
+ <album>
130
+ <name>Only One Life</name>
131
+ <artist>Michael Feinstein</artist>
132
+ <id>2921952</id>
133
+ <url>http://www.last.fm/music/Michael+Feinstein/Only+One+Life</url>
134
+ <image size="small">http://images.amazon.com/images/P/B0000C9JDN.03.MZZZZZZZ.jpg</image>
135
+ <image size="medium">http://images.amazon.com/images/P/B0000C9JDN.03.MZZZZZZZ.jpg</image>
136
+ <image size="large">http://images.amazon.com/images/P/B0000C9JDN.03.MZZZZZZZ.jpg</image>
137
+ <streamable>0</streamable>
138
+ </album>
139
+ <album>
140
+ <name>The Albatross Mates For Life, But Only After a Lengthy Courtship That Can Take Up to Four Years.</name>
141
+ <artist>Matson Jones</artist>
142
+ <id>3387082</id>
143
+ <url>http://www.last.fm/music/Matson+Jones/The+Albatross+Mates+For+Life%2C+But+Only+After+a+Lengthy+Courtship+That+Can+Take+Up+to+Four+Years.</url>
144
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15702757.jpg</image>
145
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15702757.jpg</image>
146
+ <image size="large">http://userserve-ak.last.fm/serve/126/15702757.jpg</image>
147
+ <streamable>0</streamable>
148
+ </album>
149
+ <album>
150
+ <name>Only Human</name>
151
+ <artist>Kiss Of Life</artist>
152
+ <id>2953134</id>
153
+ <url>http://www.last.fm/music/Kiss+Of+Life/Only+Human</url>
154
+ <image size="small">http://images.amazon.com/images/P/B0000088ZI.01.MZZZZZZZ.jpg</image>
155
+ <image size="medium">http://images.amazon.com/images/P/B0000088ZI.01.MZZZZZZZ.jpg</image>
156
+ <image size="large">http://images.amazon.com/images/P/B0000088ZI.01.MZZZZZZZ.jpg</image>
157
+ <streamable>0</streamable>
158
+ </album>
159
+ <album>
160
+ <name>Livin' The Life (Jimmy Buffett Only Wrote About)</name>
161
+ <artist>Brent Burns</artist>
162
+ <id>3472583</id>
163
+ <url>http://www.last.fm/music/Brent+Burns/Livin%27+The+Life+%28Jimmy+Buffett+Only+Wrote+About%29</url>
164
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10217675.jpg</image>
165
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10217675.jpg</image>
166
+ <image size="large">http://userserve-ak.last.fm/serve/126/10217675.jpg</image>
167
+ <streamable>0</streamable>
168
+ </album>
169
+ <album>
170
+ <name>Jack To A King / Only One Life</name>
171
+ <artist>DJ Hype</artist>
172
+ <id>2403209</id>
173
+ <url>http://www.last.fm/music/DJ+Hype/Jack%2BTo%2BA%2BKing%2B%252F%2BOnly%2BOne%2BLife</url>
174
+ <image size="small"></image>
175
+ <image size="medium"></image>
176
+ <image size="large"></image>
177
+ <streamable>0</streamable>
178
+ </album>
179
+ <album>
180
+ <name>Only One Life - The Songs Of Jimmy Webb</name>
181
+ <artist>Michael Feinstein</artist>
182
+ <id>3427957</id>
183
+ <url>http://www.last.fm/music/Michael+Feinstein/Only+One+Life+-+The+Songs+Of+Jimmy+Webb</url>
184
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10014701.jpg</image>
185
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10014701.jpg</image>
186
+ <image size="large">http://userserve-ak.last.fm/serve/126/10014701.jpg</image>
187
+ <streamable>0</streamable>
188
+ </album>
189
+ <album>
190
+ <name>Only One Life: The Songs of Jimmy Webb</name>
191
+ <artist>Michael Feinstein</artist>
192
+ <id>2594065</id>
193
+ <url>http://www.last.fm/music/Michael+Feinstein/Only+One+Life%3A+The+Songs+of+Jimmy+Webb</url>
194
+ <image size="small">http://images.amazon.com/images/P/B0000C9JDN.01._SCMZZZZZZZ_.jpg</image>
195
+ <image size="medium">http://images.amazon.com/images/P/B0000C9JDN.01._SCMZZZZZZZ_.jpg</image>
196
+ <image size="large">http://images.amazon.com/images/P/B0000C9JDN.01._SCMZZZZZZZ_.jpg</image>
197
+ <streamable>0</streamable>
198
+ </album>
199
+ <album>
200
+ <name>It's Only Life: Songs of John Bucchino</name>
201
+ <artist>John Bucchino</artist>
202
+ <id>2599309</id>
203
+ <url>http://www.last.fm/music/John+Bucchino/It%27s+Only+Life%3A+Songs+of+John+Bucchino</url>
204
+ <image size="small">http://images.amazon.com/images/P/B000EZ9052.01._SCMZZZZZZZ_.jpg</image>
205
+ <image size="medium">http://images.amazon.com/images/P/B000EZ9052.01._SCMZZZZZZZ_.jpg</image>
206
+ <image size="large">http://images.amazon.com/images/P/B000EZ9052.01._SCMZZZZZZZ_.jpg</image>
207
+ <streamable>0</streamable>
208
+ </album>
209
+ </albummatches>
210
+ </results></lfm>
@@ -0,0 +1,58 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <artist>
4
+ <name>The Feelies</name>
5
+ <mbid>28c07254-aeae-42ad-beea-67f59c3c8baf</mbid>
6
+ <url>http://www.last.fm/music/The+Feelies</url>
7
+ <image size="small">http://userserve-ak.last.fm/serve/34/2160902.jpg</image>
8
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2160902.jpg</image>
9
+ <image size="large">http://userserve-ak.last.fm/serve/126/2160902.jpg</image>
10
+ <streamable>1</streamable>
11
+ <stats>
12
+ <listeners>43593</listeners>
13
+ <playcount>498218</playcount>
14
+ </stats>
15
+
16
+ <similar>
17
+ <artist>
18
+ <name>The Soft Boys</name>
19
+ <url>http://www.last.fm/music/The+Soft+Boys</url>
20
+ <image size="small">http://userserve-ak.last.fm/serve/34/153338.jpg</image>
21
+ <image size="medium">http://userserve-ak.last.fm/serve/64/153338.jpg></image>
22
+ <image size="large">http://userserve-ak.last.fm/serve/126/153338.jpg</image>
23
+ </artist>
24
+ <artist>
25
+ <name>The dB's</name>
26
+ <url>http://www.last.fm/music/The+dB%27s</url>
27
+ <image size="small">http://userserve-ak.last.fm/serve/34/12051.jpg</image>
28
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12051.jpg></image>
29
+ <image size="large">http://userserve-ak.last.fm/serve/126/12051.jpg</image>
30
+ </artist>
31
+ <artist>
32
+ <name>The Mekons</name>
33
+ <url>http://www.last.fm/music/The+Mekons</url>
34
+ <image size="small">http://userserve-ak.last.fm/serve/34/200009.jpg</image>
35
+ <image size="medium">http://userserve-ak.last.fm/serve/64/200009.jpg></image>
36
+ <image size="large">http://userserve-ak.last.fm/serve/126/200009.jpg</image>
37
+ </artist>
38
+ <artist>
39
+ <name>Glenn Mercer</name>
40
+ <url>http://www.last.fm/music/Glenn+Mercer</url>
41
+ <image size="small">http://userserve-ak.last.fm/serve/34/2242923.jpg</image>
42
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2242923.jpg></image>
43
+ <image size="large">http://userserve-ak.last.fm/serve/126/2242923.jpg</image>
44
+ </artist>
45
+ <artist>
46
+ <name>Pylon</name>
47
+ <url>http://www.last.fm/music/Pylon</url>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34/2207048.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2207048.jpg></image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/2207048.jpg</image>
51
+ </artist>
52
+ </similar>
53
+ <bio>
54
+ <published>Fri, 19 Sep 2008 21:58:41 +0000</published>
55
+ <summary><![CDATA[The Feelies are an <a href="http://www.last.fm/tag/alternative" class="bbcode_tag" rel="tag">alternative</a> rock band from Haledon, New Jersey. They formed in 1976 and disbanded in 1992. They frequently played at Maxwell's, a live music venue and bar restaurant in Hoboken in the 1980s. Their first album, <a title="The Feelies - Crazy Rhythms" href="http://www.last.fm/music/The+Feelies/Crazy+Rhythms" class="bbcode_album">Crazy Rhythms</a> (Stiff Records, 1980) was cited by the Athens, Georgia band, <a href="http://www.last.fm/music/R.E.M." class="bbcode_artist">R.E.M.</a>, as a major influence. The Feelies rarely worked with outside producers and created shimmering soundscapes with multiple guitar layers that sounded very unique compared to the <a href="http://www.last.fm/tag/punk" class="bbcode_tag" rel="tag">punk</a>/<a href="http://www.last.fm/tag/new%20wave" class="bbcode_tag" rel="tag">new wave</a> atmosphere of the late 1970's and early 1980's.]]></summary>
56
+ <content><![CDATA[The Feelies are an <a href="http://www.last.fm/tag/alternative" class="bbcode_tag" rel="tag">alternative</a> rock band from Haledon, New Jersey. They formed in 1976 and disbanded in 1992. They frequently played at Maxwell's, a live music venue and bar restaurant in Hoboken in the 1980s. Their first album, <a title="The Feelies - Crazy Rhythms" href="http://www.last.fm/music/The+Feelies/Crazy+Rhythms" class="bbcode_album">Crazy Rhythms</a> (Stiff Records, 1980) was cited by the Athens, Georgia band, <a href="http://www.last.fm/music/R.E.M." class="bbcode_artist">R.E.M.</a>, as a major influence. The Feelies rarely worked with outside producers and created shimmering soundscapes with multiple guitar layers that sounded very unique compared to the <a href="http://www.last.fm/tag/punk" class="bbcode_tag" rel="tag">punk</a>/<a href="http://www.last.fm/tag/new%20wave" class="bbcode_tag" rel="tag">new wave</a> atmosphere of the late 1970's and early 1980's. The band reunited in 2008. The band has announced reunion shows that will occur in early July 2008, including shows at Maxwells, Hoboken, NJ (July 1 and 2, 2008) and opening for Sonic Youth at Battery Park, New York, NY on July 4, 2008. The band's name refers to a multi sensory form of entertainment in Aldous Huxley's book, Brave New World.]]></content>
57
+ </bio>
58
+ </artist></lfm>
@@ -0,0 +1,109 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <results for="The Feelies" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
4
+ <opensearch:Query role="request" searchTerms="The Feelies" startPage="1" />
5
+ <opensearch:totalResults>11</opensearch:totalResults>
6
+ <opensearch:startIndex>0</opensearch:startIndex>
7
+ <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
8
+ <artistmatches>
9
+ <artist>
10
+ <name>The Feelies</name>
11
+ <mbid>28c07254-aeae-42ad-beea-67f59c3c8baf</mbid>
12
+ <url>www.last.fm/music/The+Feelies</url>
13
+ <image size="small">http://userserve-ak.last.fm/serve/34/2160902.jpg</image>
14
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2160902.jpg</image>
15
+ <image size="large">http://userserve-ak.last.fm/serve/126/2160902.jpg</image>
16
+ <streamable>1</streamable>
17
+ </artist>
18
+ <artist>
19
+ <name>The Feelies</name>
20
+ <mbid></mbid>
21
+ <url>www.last.fm/music/+noredirect/The++Feelies</url>
22
+ <image size="small"></image>
23
+ <image size="medium"></image>
24
+ <image size="large"></image>
25
+ <streamable>0</streamable>
26
+ </artist>
27
+ <artist>
28
+ <name>feelies, the</name>
29
+ <mbid></mbid>
30
+ <url>www.last.fm/music/+noredirect/feelies%2C+the</url>
31
+ <image size="small"></image>
32
+ <image size="medium"></image>
33
+ <image size="large"></image>
34
+ <streamable>0</streamable>
35
+ </artist>
36
+ <artist>
37
+ <name>Let's Go - The Feelies</name>
38
+ <mbid></mbid>
39
+ <url>www.last.fm/music/+noredirect/Let%27s+Go+-+The+Feelies</url>
40
+ <image size="small"></image>
41
+ <image size="medium"></image>
42
+ <image size="large"></image>
43
+ <streamable>0</streamable>
44
+ </artist>
45
+ <artist>
46
+ <name>Feelies (The)</name>
47
+ <mbid></mbid>
48
+ <url>www.last.fm/music/Feelies+%28The%29</url>
49
+ <image size="small"></image>
50
+ <image size="medium"></image>
51
+ <image size="large"></image>
52
+ <streamable>0</streamable>
53
+ </artist>
54
+ <artist>
55
+ <name>Feelies , The</name>
56
+ <mbid></mbid>
57
+ <url>www.last.fm/music/Feelies+%2C+The</url>
58
+ <image size="small"></image>
59
+ <image size="medium"></image>
60
+ <image size="large"></image>
61
+ <streamable>0</streamable>
62
+ </artist>
63
+ <artist>
64
+ <name>La - The Feelies</name>
65
+ <mbid></mbid>
66
+ <url>www.last.fm/music/+noredirect/La+-+The+Feelies</url>
67
+ <image size="small"></image>
68
+ <image size="medium"></image>
69
+ <image size="large"></image>
70
+ <streamable>0</streamable>
71
+ </artist>
72
+ <artist>
73
+ <name>The Feelies; The Stooges</name>
74
+ <mbid></mbid>
75
+ <url>www.last.fm/music/The%2BFeelies%253B%2BThe%2BStooges</url>
76
+ <image size="small"></image>
77
+ <image size="medium"></image>
78
+ <image size="large"></image>
79
+ <streamable>0</streamable>
80
+ </artist>
81
+ <artist>
82
+ <name>The Feelies/The Stooges</name>
83
+ <mbid></mbid>
84
+ <url>www.last.fm/music/The%2BFeelies%252FThe%2BStooges</url>
85
+ <image size="small"></image>
86
+ <image size="medium"></image>
87
+ <image size="large"></image>
88
+ <streamable>0</streamable>
89
+ </artist>
90
+ <artist>
91
+ <name>Lou Reed &amp; The Feelies</name>
92
+ <mbid></mbid>
93
+ <url>www.last.fm/music/Lou%2BReed%2B%2526%2BThe%2BFeelies</url>
94
+ <image size="small"></image>
95
+ <image size="medium"></image>
96
+ <image size="large"></image>
97
+ <streamable>0</streamable>
98
+ </artist>
99
+ <artist>
100
+ <name>The Touchy Feelies</name>
101
+ <mbid></mbid>
102
+ <url>www.last.fm/music/The+Touchy+Feelies</url>
103
+ <image size="small"></image>
104
+ <image size="medium"></image>
105
+ <image size="large"></image>
106
+ <streamable>0</streamable>
107
+ </artist>
108
+ </artistmatches>
109
+ </results></lfm>