rockstar-custom 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. data/.travis.yml +6 -0
  2. data/Gemfile +11 -0
  3. data/Gemfile.lock +22 -0
  4. data/History.txt +6 -0
  5. data/MIT-LICENSE +19 -0
  6. data/Manifest +72 -0
  7. data/README.md +135 -0
  8. data/Rakefile +34 -0
  9. data/VERSION +1 -0
  10. data/examples/.gitignore +1 -0
  11. data/examples/album.rb +16 -0
  12. data/examples/artist.rb +23 -0
  13. data/examples/geo.rb +9 -0
  14. data/examples/lastfm.yml_example +3 -0
  15. data/examples/scrobble.rb +45 -0
  16. data/examples/tag.rb +20 -0
  17. data/examples/track.rb +14 -0
  18. data/examples/user.rb +18 -0
  19. data/lib/rockstar.rb +50 -0
  20. data/lib/rockstar/album.rb +109 -0
  21. data/lib/rockstar/artist.rb +182 -0
  22. data/lib/rockstar/auth.rb +21 -0
  23. data/lib/rockstar/base.rb +48 -0
  24. data/lib/rockstar/chart.rb +31 -0
  25. data/lib/rockstar/event.rb +73 -0
  26. data/lib/rockstar/geo.rb +22 -0
  27. data/lib/rockstar/metro.rb +26 -0
  28. data/lib/rockstar/playing.rb +50 -0
  29. data/lib/rockstar/rest.rb +66 -0
  30. data/lib/rockstar/scrobble.rb +68 -0
  31. data/lib/rockstar/session.rb +19 -0
  32. data/lib/rockstar/simpleauth.rb +62 -0
  33. data/lib/rockstar/tag.rb +100 -0
  34. data/lib/rockstar/tokenauth.rb +84 -0
  35. data/lib/rockstar/track.rb +260 -0
  36. data/lib/rockstar/user.rb +200 -0
  37. data/lib/rockstar/venue.rb +59 -0
  38. data/lib/rockstar/version.rb +3 -0
  39. data/rockstar.gemspec +174 -0
  40. data/test/fixtures/xml/album/getinfo_album_Radio_Retalation_artist_Thievery_Corporation.xml +21 -0
  41. data/test/fixtures/xml/album/getinfo_album_Some_Hearts_artist_Carrie_Underwood.xml +63 -0
  42. data/test/fixtures/xml/artist/getevents_artist_Metallica.xml +1064 -0
  43. data/test/fixtures/xml/artist/getimages_artist_Metallica_page_2.xml +1074 -0
  44. data/test/fixtures/xml/artist/getinfo_artist_Metallica.xml +115 -0
  45. data/test/fixtures/xml/artist/getsimilar_artist_Metallica.xml +1203 -0
  46. data/test/fixtures/xml/artist/gettopalbums_artist_Metallica.xml +704 -0
  47. data/test/fixtures/xml/artist/gettopfans_artist_Metallica.xml +504 -0
  48. data/test/fixtures/xml/artist/gettoptags_artist_Metallica.xml +403 -0
  49. data/test/fixtures/xml/artist/gettoptracks_artist_Metallica.xml +800 -0
  50. data/test/fixtures/xml/geo/getevents_location_london.xml +531 -0
  51. data/test/fixtures/xml/geo/getmetros_country_germany.xml +44 -0
  52. data/test/fixtures/xml/tag/gettopalbums_tag_rock.xml +654 -0
  53. data/test/fixtures/xml/tag/gettopartists_tag_rock.xml +504 -0
  54. data/test/fixtures/xml/tag/gettoptags.xml +1253 -0
  55. data/test/fixtures/xml/tag/gettoptracks_tag_rock.xml +704 -0
  56. data/test/fixtures/xml/track/getinfo_artist_Carrie_Underwood_track_Before_He_Cheats.xml +55 -0
  57. data/test/fixtures/xml/track/gettopfans_artist_Carrie_Underwood_track_Before_He_Cheats.xml +504 -0
  58. data/test/fixtures/xml/track/gettoptags_artist_Carrie_Underwood_track_Before_He_Cheats.xml +403 -0
  59. data/test/fixtures/xml/track/love_artist_Carrie_Underwood_sk_tag_track_Before_He_Cheats.xml +2 -0
  60. data/test/fixtures/xml/track/updatenowplaying_artist_Carrie_Underwood_sk_tag_track_Before_He_Cheats.xml +10 -0
  61. data/test/fixtures/xml/user/getevents_sk_token_user_bodot.xml +513 -0
  62. data/test/fixtures/xml/user/getfriends_user_jnunemaker.xml +173 -0
  63. data/test/fixtures/xml/user/getinfo_user_jnunemaker.xml +22 -0
  64. data/test/fixtures/xml/user/getinfo_user_oaknd1.xml +22 -0
  65. data/test/fixtures/xml/user/getinfo_user_wharle.xml +22 -0
  66. data/test/fixtures/xml/user/getlovedtracks_user_jnunemaker.xml +775 -0
  67. data/test/fixtures/xml/user/getneighbours_user_jnunemaker.xml +503 -0
  68. data/test/fixtures/xml/user/getrecenttracks_user_jnunemaker.xml +133 -0
  69. data/test/fixtures/xml/user/getrecommendedartists_sk_token_user_jnunemaker.xml +553 -0
  70. data/test/fixtures/xml/user/gettopalbums_user_jnunemaker.xml +704 -0
  71. data/test/fixtures/xml/user/gettopartists_period_overall_user_jnunemaker.xml +554 -0
  72. data/test/fixtures/xml/user/gettoptags_user_jnunemaker.xml +63 -0
  73. data/test/fixtures/xml/user/gettoptracks_user_jnunemaker.xml +750 -0
  74. data/test/fixtures/xml/user/getweeklyalbumchart_from_1138536002_to_1139140802_user_jnunemaker.xml +143 -0
  75. data/test/fixtures/xml/user/getweeklyalbumchart_from__to__user_jnunemaker.xml +31 -0
  76. data/test/fixtures/xml/user/getweeklyartistchart_from_1138536002_to_1139140802_user_jnunemaker.xml +201 -0
  77. data/test/fixtures/xml/user/getweeklyartistchart_from__to__user_jnunemaker.xml +21 -0
  78. data/test/fixtures/xml/user/getweeklychartlist_user_jnunemaker.xml +232 -0
  79. data/test/fixtures/xml/user/getweeklytrackchart_from_1138536002_to_1139140802_user_jnunemaker.xml +883 -0
  80. data/test/fixtures/xml/user/getweeklytrackchart_from__to__user_jnunemaker.xml +423 -0
  81. data/test/fixtures/xml/venue/getevents_venue_8807850.xml +280 -0
  82. data/test/fixtures/xml/venue/search_country__limit__page__venue_country_DE_venue_cotton.xml +72 -0
  83. data/test/mocks/rest.rb +67 -0
  84. data/test/test_helper.rb +18 -0
  85. data/test/unit/test_album.rb +76 -0
  86. data/test/unit/test_artist.rb +102 -0
  87. data/test/unit/test_chart.rb +35 -0
  88. data/test/unit/test_geo.rb +25 -0
  89. data/test/unit/test_playing.rb +53 -0
  90. data/test/unit/test_scrobble.rb +69 -0
  91. data/test/unit/test_simpleauth.rb +45 -0
  92. data/test/unit/test_tag.rb +57 -0
  93. data/test/unit/test_tokenauth.rb +45 -0
  94. data/test/unit/test_track.rb +82 -0
  95. data/test/unit/test_user.rb +299 -0
  96. data/test/unit/test_venue.rb +20 -0
  97. metadata +269 -0
@@ -0,0 +1,531 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <events xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" location="London, United Kingdom" page="1" totalpages="149" total="1486">
4
+ <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
5
+ <id>1595673</id>
6
+ <title>Basement Scam</title>
7
+ <artists>
8
+ <artist>George Washington's Penis</artist>
9
+ <artist>The Blanche Hudson Weekend</artist>
10
+ <artist>Electrophonvintage</artist>
11
+ <headliner>George Washington's Penis</headliner>
12
+ </artists>
13
+ <venue>
14
+ <id>8780149</id>
15
+ <name>Buffalo Bar</name>
16
+ <location>
17
+ <city>London</city>
18
+ <country>United Kingdom</country>
19
+ <street>259 Upper Street, Highbury Corner</street>
20
+ <postalcode>N1 1RU</postalcode>
21
+ <geo:point>
22
+ <geo:lat>51.546074</geo:lat>
23
+ <geo:long>-0.103393</geo:long>
24
+ </geo:point>
25
+ </location>
26
+ <url>http://www.last.fm/venue/8780149+Buffalo+Bar</url>
27
+ <website>http://www.buffalobar.co.uk/</website>
28
+ <phonenumber></phonenumber>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34/12225457.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12225457.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/12225457.jpg</image>
32
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/12225457.jpg</image>
33
+ <image size="mega">http://userserve-ak.last.fm/serve/_/12225457/Buffalo+Bar+bar3th.jpg</image>
34
+ </venue> <startDate>Fri, 30 Jul 2010 01:12:01</startDate>
35
+ <description></description>
36
+ <image size="small"></image>
37
+ <image size="medium"></image>
38
+ <image size="large"></image>
39
+ <image size="extralarge"></image>
40
+ <attendance>13</attendance>
41
+ <reviews>0</reviews>
42
+ <tag>lastfm:event=1595673</tag>
43
+ <url>http://www.last.fm/event/1595673+Basement+Scam</url>
44
+ <website></website>
45
+ <tickets>
46
+ </tickets>
47
+ <cancelled>0</cancelled>
48
+ <tags>
49
+ <tag>under 2000 listeners</tag>
50
+ </tags>
51
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
52
+ <id>1618751</id>
53
+ <title>Reggie Watts</title>
54
+ <artists>
55
+ <artist>Reggie Watts</artist>
56
+ <headliner>Reggie Watts</headliner>
57
+ </artists>
58
+ <venue>
59
+ <id>8777870</id>
60
+ <name>Bloomsbury Theatre</name>
61
+ <location>
62
+ <city>London</city>
63
+ <country>United Kingdom</country>
64
+ <street>15 Gordon Street</street>
65
+ <postalcode>WC1H 0AH</postalcode>
66
+ <geo:point>
67
+ <geo:lat>51.525323</geo:lat>
68
+ <geo:long>-0.133001</geo:long>
69
+ </geo:point>
70
+ </location>
71
+ <url>http://www.last.fm/venue/8777870+Bloomsbury+Theatre</url>
72
+ <website>http://www.thebloomsbury.com</website>
73
+ <phonenumber></phonenumber>
74
+ <image size="small"></image>
75
+ <image size="medium"></image>
76
+ <image size="large"></image>
77
+ <image size="extralarge"></image>
78
+ <image size="mega"></image>
79
+ </venue> <startDate>Fri, 30 Jul 2010 08:01:01</startDate>
80
+ <description></description>
81
+ <image size="small">http://userserve-ak.last.fm/serve/34/16286901.jpg</image>
82
+ <image size="medium">http://userserve-ak.last.fm/serve/64/16286901.jpg</image>
83
+ <image size="large">http://userserve-ak.last.fm/serve/126/16286901.jpg</image>
84
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/16286901.jpg</image>
85
+ <attendance>1</attendance>
86
+ <reviews>0</reviews>
87
+ <tag>lastfm:event=1618751</tag>
88
+ <url>http://www.last.fm/event/1618751+Reggie+Watts+at+Bloomsbury+Theatre+on+30+July+2010</url>
89
+ <website></website>
90
+ <tickets>
91
+ </tickets>
92
+ <cancelled>0</cancelled>
93
+ <tags>
94
+ <tag>funk</tag>
95
+ <tag>soul</tag>
96
+ <tag>electronic</tag>
97
+ <tag>beatbox</tag>
98
+ </tags>
99
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
100
+ <id>1490925</id>
101
+ <title>Ssh All Day Festival Of Quiet Music</title>
102
+ <artists>
103
+ <artist>Alex Highton</artist>
104
+ <headliner>Alex Highton</headliner>
105
+ </artists>
106
+ <venue>
107
+ <id>8792865</id>
108
+ <name>Cecil Sharp House</name>
109
+ <location>
110
+ <city>London</city>
111
+ <country>United Kingdom</country>
112
+ <street>2 Regents Park Road</street>
113
+ <postalcode>NW1 7AY</postalcode>
114
+ <geo:point>
115
+ <geo:lat>51.5381</geo:lat>
116
+ <geo:long>-0.149363</geo:long>
117
+ </geo:point>
118
+ </location>
119
+ <url>http://www.last.fm/venue/8792865+Cecil+Sharp+House</url>
120
+ <website>http://www.efdss.org/contact.htm</website>
121
+ <phonenumber></phonenumber>
122
+ <image size="small">http://userserve-ak.last.fm/serve/34/88471.jpg</image>
123
+ <image size="medium">http://userserve-ak.last.fm/serve/64/88471.jpg</image>
124
+ <image size="large">http://userserve-ak.last.fm/serve/126/88471.jpg</image>
125
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/88471.jpg</image>
126
+ <image size="mega">http://userserve-ak.last.fm/serve/_/88471/Cecil+Sharp+House.jpg</image>
127
+ </venue> <startDate>Fri, 30 Jul 2010 09:18:01</startDate>
128
+ <description><![CDATA[<div class="bbcode">Shh the mini festival of quiet music. Cecil Sharp House is the headquarters of the English Folk Dance and Song Society, and houses the Vaughan Williams Memorial Library. It also contains a number of halls which are used for folk events of various sorts. There is a licensed bar serving Greene King re</div>]]></description>
129
+ <image size="small">http://userserve-ak.last.fm/serve/34/41195423.jpg</image>
130
+ <image size="medium">http://userserve-ak.last.fm/serve/64/41195423.jpg</image>
131
+ <image size="large">http://userserve-ak.last.fm/serve/126/41195423.jpg</image>
132
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/41195423.jpg</image>
133
+ <attendance>2</attendance>
134
+ <reviews>0</reviews>
135
+ <tag>lastfm:event=1490925</tag>
136
+ <url>http://www.last.fm/event/1490925+Ssh+All+Day+Festival+Of+Quiet+Music</url>
137
+ <website>http://www.localism.org.uk</website>
138
+ <tickets>
139
+ </tickets>
140
+ <cancelled>0</cancelled>
141
+ <tags>
142
+ <tag>folk</tag>
143
+ <tag>mellow</tag>
144
+ <tag>singer-songwriter</tag>
145
+ <tag>indie</tag>
146
+ </tags>
147
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
148
+ <id>1539290</id>
149
+ <title>Camera &amp; Tremor - Album Launch Party</title>
150
+ <artists>
151
+ <artist>the Tamborines</artist>
152
+ <artist>Advert</artist>
153
+ <headliner>the Tamborines</headliner>
154
+ </artists>
155
+ <venue>
156
+ <id>8968610</id>
157
+ <name>The Victoria</name>
158
+ <location>
159
+ <city>London</city>
160
+ <country>United Kingdom</country>
161
+ <street>110 Grove Road, Bow</street>
162
+ <postalcode>E3 5TH</postalcode>
163
+ <geo:point>
164
+ <geo:lat>51.538376</geo:lat>
165
+ <geo:long>-0.040078</geo:long>
166
+ </geo:point>
167
+ </location>
168
+ <url>http://www.last.fm/venue/8968610+The+Victoria</url>
169
+ <website></website>
170
+ <phonenumber></phonenumber>
171
+ <image size="small">http://userserve-ak.last.fm/serve/34/17962599.jpg</image>
172
+ <image size="medium">http://userserve-ak.last.fm/serve/64/17962599.jpg</image>
173
+ <image size="large">http://userserve-ak.last.fm/serve/126/17962599.jpg</image>
174
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/17962599.jpg</image>
175
+ <image size="mega">http://userserve-ak.last.fm/serve/_/17962599/The+Victoria+pic96.jpg</image>
176
+ </venue> <startDate>Fri, 30 Jul 2010 09:39:01</startDate>
177
+ <description><![CDATA[<div class="bbcode">Launch party for our debut album<br />
178
+ [ [ Camera &amp; Tremor] ]<br />
179
+ <br />
180
+ Come and celebrate with us!<br />
181
+ <br />
182
+ Special Guests<br />
183
+ Advert ( live)<br />
184
+ <br />
185
+ DJ sets from<br />
186
+ Jonathan &amp; Panda [The Ruling Class]<br />
187
+ Vanessa &amp; Issie (The She Set)<br />
188
+ <br />
189
+ More to be announced shortly!<br />
190
+ <a href="http://www.myspace.com/thetamborines" rel="nofollow">http://www.myspace.com/thetamborines</a><br />
191
+ <a href="http://www.myspace.com/therulingclassuk" rel="nofollow">http://www.myspace.com/therulingclassuk</a><br />
192
+ <a href="http://www.myspace.com/thesheset" rel="nofollow">http://www.myspace.com/thesheset</a><br />
193
+ <a href="http://www.myspace.com/advert" rel="nofollow">http://www.myspace.com/advert</a></div>]]></description>
194
+ <image size="small">http://userserve-ak.last.fm/serve/34/36700663.jpg</image>
195
+ <image size="medium">http://userserve-ak.last.fm/serve/64/36700663.jpg</image>
196
+ <image size="large">http://userserve-ak.last.fm/serve/126/36700663.jpg</image>
197
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/36700663.jpg</image>
198
+ <attendance>8</attendance>
199
+ <reviews>0</reviews>
200
+ <tag>lastfm:event=1539290</tag>
201
+ <url>http://www.last.fm/event/1539290+Camera+-+Tremor++-+Album+Launch+Party</url>
202
+ <website></website>
203
+ <tickets>
204
+ </tickets>
205
+ <cancelled>0</cancelled>
206
+ <tags>
207
+ <tag>shoegaze</tag>
208
+ <tag>under 2000 listeners</tag>
209
+ <tag>indie</tag>
210
+ <tag>post-punk</tag>
211
+ <tag>lo-fi</tag>
212
+ <tag>indiepop</tag>
213
+ <tag>experimental</tag>
214
+ </tags>
215
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
216
+ <id>1552481</id>
217
+ <title>Guided By Lights</title>
218
+ <artists>
219
+ <artist>Guided By Lights</artist>
220
+ <artist>The Cut Outs</artist>
221
+ <headliner>Guided By Lights</headliner>
222
+ </artists>
223
+ <venue>
224
+ <id>8816722</id>
225
+ <name>The Spice Of Life</name>
226
+ <location>
227
+ <city>London</city>
228
+ <country>United Kingdom</country>
229
+ <street>6 Moor St</street>
230
+ <postalcode>W1D 5NA</postalcode>
231
+ <geo:point>
232
+ <geo:lat>51.513419</geo:lat>
233
+ <geo:long>-0.129783</geo:long>
234
+ </geo:point>
235
+ </location>
236
+ <url>http://www.last.fm/venue/8816722+The+Spice+Of+Life</url>
237
+ <website>http://www.spiceoflifesoho.com/</website>
238
+ <phonenumber></phonenumber>
239
+ <image size="small">http://userserve-ak.last.fm/serve/34/6264221.gif</image>
240
+ <image size="medium">http://userserve-ak.last.fm/serve/64/6264221.gif</image>
241
+ <image size="large">http://userserve-ak.last.fm/serve/126/6264221.gif</image>
242
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/6264221.gif</image>
243
+ <image size="mega">http://userserve-ak.last.fm/serve/_/6264221/The+Spice+Of+Life+spice_home.gif</image>
244
+ </venue> <startDate>Fri, 30 Jul 2010 11:21:01</startDate>
245
+ <description></description>
246
+ <image size="small">http://userserve-ak.last.fm/serve/34/34685611.jpg</image>
247
+ <image size="medium">http://userserve-ak.last.fm/serve/64/34685611.jpg</image>
248
+ <image size="large">http://userserve-ak.last.fm/serve/126/34685611.jpg</image>
249
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/34685611.jpg</image>
250
+ <attendance>1</attendance>
251
+ <reviews>0</reviews>
252
+ <tag>lastfm:event=1552481</tag>
253
+ <url>http://www.last.fm/event/1552481+Guided+By+Lights+at+The+Spice+Of+Life+on+30+July+2010</url>
254
+ <website>http://www.facebook.com/event.php?eid=130602816952770&amp;ref=mf</website>
255
+ <tickets>
256
+ </tickets>
257
+ <cancelled>0</cancelled>
258
+ <tags>
259
+ <tag>folk</tag>
260
+ <tag>brighton</tag>
261
+ <tag>alternative</tag>
262
+ <tag>indie pop</tag>
263
+ <tag>indie</tag>
264
+ </tags>
265
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
266
+ <id>1604617</id>
267
+ <title>Djevara LIVE : Moved to THE WATER RATS</title>
268
+ <artists>
269
+ <artist>Djevara</artist>
270
+ <headliner>Djevara</headliner>
271
+ </artists>
272
+ <venue>
273
+ <id>8790875</id>
274
+ <name>229 Great Portland Street</name>
275
+ <location>
276
+ <city>London</city>
277
+ <country>United Kingdom</country>
278
+ <street>229 Great Portland Street</street>
279
+ <postalcode>W1W 5PN</postalcode>
280
+ <geo:point>
281
+ <geo:lat>51.523568</geo:lat>
282
+ <geo:long>-0.144821</geo:long>
283
+ </geo:point>
284
+ </location>
285
+ <url>http://www.last.fm/venue/8790875+229+Great+Portland+Street</url>
286
+ <website>http://www.229thevenue.co.uk/</website>
287
+ <phonenumber></phonenumber>
288
+ <image size="small">http://userserve-ak.last.fm/serve/34/8601565.jpg</image>
289
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8601565.jpg</image>
290
+ <image size="large">http://userserve-ak.last.fm/serve/126/8601565.jpg</image>
291
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/8601565.jpg</image>
292
+ <image size="mega">http://userserve-ak.last.fm/serve/_/8601565/229+Great+Portland+Street+229front.jpg</image>
293
+ </venue> <startDate>Fri, 30 Jul 2010 13:37:01</startDate>
294
+ <description><![CDATA[<div class="bbcode">Djevara will be perfoming as part of a live showcase at THE WATER RATS on FRIDAY 30th JULY, one of London's premier small venues renowned for its sound and vibe. As a final last performance before heading into the studio to record &quot;The Rising Tide (Part 2)&quot;, the band will be using this as part of their &quot;Voice of The Voiceless&quot; campaign of shows, following on from the successful festival, aimed at promoting awareness and raising funds for people across the world affected by injustice, discrimination and oppression. Djevara will be showcasing all-new material here- playing through the new record in its entirety; this will be the first opportunity to hear the new material in its final form! :)<br />
295
+ <br />
296
+ FUNDRAISING<br />
297
+ Djevara will donate £1 from every ticket sold to Welfare Association (Palestine) for their vital work in Palestine. Here is a link: <a href="http://www.welfareassociation.org.uk" rel="nofollow">www.welfareassociation.org.uk</a> <br />
298
+ <br />
299
+ This is a part of the world where suffering results from one of the greatest injustices of our time made even more poignant by the fact that its one of the most conspicuous. <br />
300
+ <br />
301
+ Please come out and help us to make a difference.<br />
302
+ <br />
303
+ TICKETS AVAILABLE DIRECT FROM THE BAND HERE:<br />
304
+ <a href="http://www.wegottickets.com/event/87716" rel="nofollow">http://www.wegottickets.com/event/87716</a><br />
305
+ <br />
306
+ Alternatively please print off our flyer and bring it with you to the venue. Highly recommend ordering the advance ticket for cheaper entry.<br />
307
+ <br />
308
+ IMPORTANT NOTE! : we are not the promoters of this show. All donations to World Vision are from tickets we sell only.</div>]]></description>
309
+ <image size="small">http://userserve-ak.last.fm/serve/34/48883089.jpg</image>
310
+ <image size="medium">http://userserve-ak.last.fm/serve/64/48883089.jpg</image>
311
+ <image size="large">http://userserve-ak.last.fm/serve/126/48883089.jpg</image>
312
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/48883089.jpg</image>
313
+ <attendance>1</attendance>
314
+ <reviews>0</reviews>
315
+ <tag>lastfm:event=1604617</tag>
316
+ <url>http://www.last.fm/event/1604617+Djevara+LIVE+%3A+Moved+to+THE+WATER+RATS</url>
317
+ <website>http://www.wegottickets.com/event/87716</website>
318
+ <tickets>
319
+ </tickets>
320
+ <cancelled>0</cancelled>
321
+ <tags>
322
+ <tag>the low fidelity disconnect</tag>
323
+ <tag>punk</tag>
324
+ <tag>miocene</tag>
325
+ <tag>genin records</tag>
326
+ </tags>
327
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
328
+ <id>1500159</id>
329
+ <title>Tiësto</title>
330
+ <artists>
331
+ <artist>Tiësto</artist>
332
+ <artist>Pendulum</artist>
333
+ <artist>The Japanese Popstars</artist>
334
+ <artist>South Central</artist>
335
+ <artist>Avicii</artist>
336
+ <artist>Blamma! Blamma!</artist>
337
+ <artist>Eddie Halliwell</artist>
338
+ <artist>Gareth Wyn</artist>
339
+ <artist>Tom Staar</artist>
340
+ <artist>Stereo:Type</artist>
341
+ <artist>Sean Brosnan</artist>
342
+ <artist>I Am One</artist>
343
+ <artist>Union DJs</artist>
344
+ <artist>David Griffiths</artist>
345
+ <artist>Dom Chung</artist>
346
+ <artist>Jason Marx</artist>
347
+ <artist>Haran De Lucas</artist>
348
+ <headliner>Tiësto</headliner>
349
+ </artists>
350
+ <venue>
351
+ <id>8789850</id>
352
+ <name>Victoria Park</name>
353
+ <location>
354
+ <city>London</city>
355
+ <country>United Kingdom</country>
356
+ <street>Victoria Park</street>
357
+ <postalcode>E9</postalcode>
358
+ <geo:point>
359
+ <geo:lat>51.538271</geo:lat>
360
+ <geo:long>-0.043527</geo:long>
361
+ </geo:point>
362
+ </location>
363
+ <url>http://www.last.fm/venue/8789850+Victoria+Park</url>
364
+ <website></website>
365
+ <phonenumber></phonenumber>
366
+ <image size="small">http://userserve-ak.last.fm/serve/34/2612238.jpg</image>
367
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2612238.jpg</image>
368
+ <image size="large">http://userserve-ak.last.fm/serve/126/2612238.jpg</image>
369
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/2612238.jpg</image>
370
+ <image size="mega">http://userserve-ak.last.fm/serve/_/2612238/Victoria+Park+250pxVictoria_park_bathing_pon.jpg</image>
371
+ </venue> <startDate>Fri, 30 Jul 2010 14:00:00</startDate>
372
+ <description></description>
373
+ <image size="small">http://userserve-ak.last.fm/serve/34/30889989.jpg</image>
374
+ <image size="medium">http://userserve-ak.last.fm/serve/64/30889989.jpg</image>
375
+ <image size="large">http://userserve-ak.last.fm/serve/126/30889989.jpg</image>
376
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/30889989.jpg</image>
377
+ <attendance>52</attendance>
378
+ <reviews>0</reviews>
379
+ <tag>lastfm:event=1500159</tag>
380
+ <url>http://www.last.fm/event/1500159+Ti%C3%ABsto+at+Victoria+Park+on+30+July+2010</url>
381
+ <website></website>
382
+ <tickets>
383
+ </tickets>
384
+ <cancelled>0</cancelled>
385
+ <tags>
386
+ <tag>electronic</tag>
387
+ </tags>
388
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
389
+ <id>1587931</id>
390
+ <title>My First Failure</title>
391
+ <artists>
392
+ <artist>My First Failure</artist>
393
+ <artist>Staring At The Sun</artist>
394
+ <artist>Almost Home</artist>
395
+ <artist>The Cold Harbour</artist>
396
+ <artist>No Second Chance</artist>
397
+ <artist>Lives At Sea</artist>
398
+ <headliner>My First Failure</headliner>
399
+ </artists>
400
+ <venue>
401
+ <id>8780039</id>
402
+ <name>The Fighting Cocks</name>
403
+ <location>
404
+ <city>Kingston upon Thames</city>
405
+ <country>United Kingdom</country>
406
+ <street>56 Old London Road</street>
407
+ <postalcode>KT2 6QA</postalcode>
408
+ <geo:point>
409
+ <geo:lat>51.410603</geo:lat>
410
+ <geo:long>-0.298777</geo:long>
411
+ </geo:point>
412
+ </location>
413
+ <url>http://www.last.fm/venue/8780039+The+Fighting+Cocks</url>
414
+ <website>http://www.the-fighting-cocks.co.uk/</website>
415
+ <phonenumber></phonenumber>
416
+ <image size="small">http://userserve-ak.last.fm/serve/34/14432601.jpg</image>
417
+ <image size="medium">http://userserve-ak.last.fm/serve/64/14432601.jpg</image>
418
+ <image size="large">http://userserve-ak.last.fm/serve/126/14432601.jpg</image>
419
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/14432601.jpg</image>
420
+ <image size="mega">http://userserve-ak.last.fm/serve/_/14432601/The+Fighting+Cocks+fighting.jpg</image>
421
+ </venue> <startDate>Fri, 30 Jul 2010 15:09:01</startDate>
422
+ <description><![CDATA[<div class="bbcode">£5<br />
423
+ <br />
424
+ 18+</div>]]></description>
425
+ <image size="small">http://userserve-ak.last.fm/serve/34/29434395.jpg</image>
426
+ <image size="medium">http://userserve-ak.last.fm/serve/64/29434395.jpg</image>
427
+ <image size="large">http://userserve-ak.last.fm/serve/126/29434395.jpg</image>
428
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/29434395.jpg</image>
429
+ <attendance>6</attendance>
430
+ <reviews>0</reviews>
431
+ <tag>lastfm:event=1587931</tag>
432
+ <url>http://www.last.fm/event/1587931+My+First+Failure+at+The+Fighting+Cocks+on+30+July+2010</url>
433
+ <website></website>
434
+ <tickets>
435
+ </tickets>
436
+ <cancelled>0</cancelled>
437
+ <tags>
438
+ <tag>hardcore</tag>
439
+ <tag>melodic hardcore</tag>
440
+ <tag>ukhc</tag>
441
+ </tags>
442
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
443
+ <id>1559929</id>
444
+ <title>Ghamailo presents Virtuoso</title>
445
+ <artists>
446
+ <artist>Sweet Leaf</artist>
447
+ <artist>The Frayed Laces</artist>
448
+ <artist>Tora!</artist>
449
+ <artist>justice nowhere</artist>
450
+ <artist>Lemon Curse</artist>
451
+ <artist>Rubinger</artist>
452
+ <headliner>Sweet Leaf</headliner>
453
+ </artists>
454
+ <venue>
455
+ <id>8783683</id>
456
+ <name>The Grosvenor</name>
457
+ <location>
458
+ <city>London</city>
459
+ <country>United Kingdom</country>
460
+ <street>17 Sidney Road</street>
461
+ <postalcode>SW9 0TP</postalcode>
462
+ <geo:point>
463
+ <geo:lat>51.469971</geo:lat>
464
+ <geo:long>-0.117076</geo:long>
465
+ </geo:point>
466
+ </location>
467
+ <url>http://www.last.fm/venue/8783683+The+Grosvenor</url>
468
+ <website>http://www.thegrosvenorsw9.co.uk/</website>
469
+ <phonenumber></phonenumber>
470
+ <image size="small">http://userserve-ak.last.fm/serve/34/12447293.jpg</image>
471
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12447293.jpg</image>
472
+ <image size="large">http://userserve-ak.last.fm/serve/126/12447293.jpg</image>
473
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/12447293.jpg</image>
474
+ <image size="mega">http://userserve-ak.last.fm/serve/500/12447293/The+Grosvenor+DSC01246.jpg</image>
475
+ </venue> <startDate>Fri, 30 Jul 2010 18:00:00</startDate>
476
+ <description><![CDATA[<div class="bbcode">£5 / £3 for musicians</div>]]></description>
477
+ <image size="small">http://userserve-ak.last.fm/serve/34/26517541.jpg</image>
478
+ <image size="medium">http://userserve-ak.last.fm/serve/64/26517541.jpg</image>
479
+ <image size="large">http://userserve-ak.last.fm/serve/126/26517541.jpg</image>
480
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/26517541.jpg</image>
481
+ <attendance>4</attendance>
482
+ <reviews>0</reviews>
483
+ <tag>lastfm:event=1559929</tag>
484
+ <url>http://www.last.fm/event/1559929+Ghamailo+presents+Virtuoso</url>
485
+ <website></website>
486
+ <tickets>
487
+ </tickets>
488
+ <cancelled>0</cancelled>
489
+ </event> <event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" >
490
+ <id>1589514</id>
491
+ <title>Chris Salmon and Social residents</title>
492
+ <artists>
493
+ <artist>Chris Salmon and Social residents</artist>
494
+ <headliner>Chris Salmon and Social residents</headliner>
495
+ </artists>
496
+ <venue>
497
+ <id>8839034</id>
498
+ <name>The Social</name>
499
+ <location>
500
+ <city>London</city>
501
+ <country>United Kingdom</country>
502
+ <street>5 Little Portland Street</street>
503
+ <postalcode>W1W 7JD</postalcode>
504
+ <geo:point>
505
+ <geo:lat>51.51739</geo:lat>
506
+ <geo:long>-0.140834</geo:long>
507
+ </geo:point>
508
+ </location>
509
+ <url>http://www.last.fm/venue/8839034+The+Social</url>
510
+ <website>http://www.thesocial.com/</website>
511
+ <phonenumber></phonenumber>
512
+ <image size="small">http://userserve-ak.last.fm/serve/34/30588575.jpg</image>
513
+ <image size="medium">http://userserve-ak.last.fm/serve/64/30588575.jpg</image>
514
+ <image size="large">http://userserve-ak.last.fm/serve/126/30588575.jpg</image>
515
+ <image size="extralarge">http://userserve-ak.last.fm/serve/252/30588575.jpg</image>
516
+ <image size="mega">http://userserve-ak.last.fm/serve/_/30588575/The+Social+story.jpg</image>
517
+ </venue> <startDate>Fri, 30 Jul 2010 18:00:00</startDate>
518
+ <description><![CDATA[<div class="bbcode">BAGGY MONDAYS are fresh from another triumphant set at Glastonbury, the Social's legendary night returns for another night of Madchester mayhem.</div>]]></description>
519
+ <image size="small"></image>
520
+ <image size="medium"></image>
521
+ <image size="large"></image>
522
+ <image size="extralarge"></image>
523
+ <attendance>0</attendance>
524
+ <reviews>0</reviews>
525
+ <tag>lastfm:event=1589514</tag>
526
+ <url>http://www.last.fm/event/1589514+Chris+Salmon+and+Social+residents+at+The+Social+on+30+July+2010</url>
527
+ <website>http://Friday Social - Baggy Mondays Special</website>
528
+ <tickets>
529
+ </tickets>
530
+ <cancelled>0</cancelled>
531
+ </event></events></lfm>