Initial commit — AllMusicGuide scraper and music metadata tagger
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
using System;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Client;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Client
|
||||
{
|
||||
[TestFixture]
|
||||
public class WebXmlClientTests
|
||||
{
|
||||
[Test, Explicit]
|
||||
public void GetTestHtml()
|
||||
{
|
||||
var songClient = new SongClient();
|
||||
songClient.Read("hey-jude-mt0002046073").Save("Song-HeyJude.xml");
|
||||
|
||||
var albumClient = new AlbumClient();
|
||||
albumClient.Read("abbey-road-mw0000192938").Save("Album-AbbeyRoad.xml");
|
||||
albumClient.Read("girls-can-tell-mw0000624315").Save("Album-GirlsCanTell.xml");
|
||||
albumClient.Read("kill-the-moonlight-mw0000222379").Save("Album-KillTheMoonlight.xml");
|
||||
albumClient.Read("magnolia-original-motion-picture-score-mw0000605476").Save("Album-MagnoliaScore.xml");
|
||||
albumClient.Read("pulp-fiction-mw0000118528").Save("Album-PulpFiction.xml");
|
||||
albumClient.Read("re-ac-tor-mw0000717742").Save("Album-Reactor.xml");
|
||||
albumClient.Read("wipers-box-set-mw0000541566").Save("Album-WipersBoxSet.xml");
|
||||
albumClient.Read("miike-snow-mw0000818771").Save("Album-MiikeSnow.xml");
|
||||
albumClient.Read("superwolf-mw0000363531").Save("Album-Superwolf.xml");
|
||||
albumClient.Read("dark-was-the-night-red-hot-compilation-mw0000807845").Save("Album-DarkWasTheNight.xml");
|
||||
albumClient.Read("true-love-waits-christopher-oriley-plays-radiohead-mw0000631718").Save("Album-TrueLoveWaits.xml");
|
||||
|
||||
var albumResultClient = new AlbumResultPageClient();
|
||||
albumResultClient.Read("abbey road").Save("AlbumResults-AbbeyRoad.xml");
|
||||
|
||||
var artistClient = new ArtistClient();
|
||||
artistClient.Read("the-beatles-mn0000754032").Save("Artist-Beatles.xml");
|
||||
artistClient.Read("spoon-mn0000131038").Save("Artist-Spoon.xml");
|
||||
artistClient.Read("neil-young-mn0000379125").Save("Artist-NeilYoung.xml");
|
||||
artistClient.Read("wipers-mn0000485791").Save("Artist-Wipers.xml");
|
||||
artistClient.Read("bonnie-prince-billy-mn0000094764").Save("Artist-BonniePrinceBilly.xml");
|
||||
|
||||
var artistDiscographyAlbumPageClient = new ArtistDiscographyAlbumPageClient();
|
||||
artistDiscographyAlbumPageClient.Read("spoon-mn0000131038").Save("ArtistAlbums-Spoon.xml");
|
||||
|
||||
var artistDiscographyCompilationPageClient = new ArtistDiscographyCompilationPageClient();
|
||||
artistDiscographyCompilationPageClient.Read("the-beatles-mn0000754032").Save("ArtistCompilations-Beatles.xml");
|
||||
artistDiscographyCompilationPageClient.Read("wipers-mn0000485791").Save("ArtistCompilations-Wipers.xml");
|
||||
|
||||
var artistDiscographyEpSinglesPageClient = new ArtistDiscographyEpSinglesPageClient();
|
||||
artistDiscographyEpSinglesPageClient.Read("the-beatles-mn0000754032").Save("ArtistSingles-Beatles.xml");
|
||||
|
||||
var artistResultPageClient = new ArtistResultPageClient();
|
||||
artistResultPageClient.Read("spoon").Save("ArtistResults-Spoon.xml");
|
||||
|
||||
var songResultsPageClient = new SongResultPageClient();
|
||||
songResultsPageClient.Read("Hey, Snow White").Save("SongResults-HeySnowWhite.xml");
|
||||
}
|
||||
|
||||
[Test, Explicit]
|
||||
public void HtmlScraperTest()
|
||||
{
|
||||
var url = new Uri("http://www.google.com");
|
||||
var xml = WebXmlClient.GetHtmlXml(url);
|
||||
Assert.IsNotNull(xml);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
using System.Xml;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Client;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Client
|
||||
{
|
||||
public class GoogleXmlClient : XmlClientBase
|
||||
{
|
||||
public override XmlDocument Read(string criteria)
|
||||
{
|
||||
return ReadFromCriteria("http://google.com/?q={0}", criteria);
|
||||
}
|
||||
}
|
||||
|
||||
[TestFixture]
|
||||
public class XmlClientBaseTests
|
||||
{
|
||||
[Test, Explicit]
|
||||
public void ReadsDocument()
|
||||
{
|
||||
var client = new GoogleXmlClient();
|
||||
var xmlDocument = client.Read("banana");
|
||||
Assert.That(xmlDocument.InnerText.Contains("banana"));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
using System;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Scraper;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess
|
||||
{
|
||||
[TestFixture]
|
||||
public class MusicGuideScraperTests
|
||||
{
|
||||
private MusicGuideScraper _musicGuideScraper;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
_musicGuideScraper = new MusicGuideScraper(
|
||||
new AlbumScraper(), new AlbumResultPageScraper(),
|
||||
new ArtistScraper(), new ArtistResultPageScraper(), new ArtistDiscographyScraper(),
|
||||
new SongResultPageScraper(), new SongScraper());
|
||||
}
|
||||
|
||||
[Test, Explicit]
|
||||
public void SearchArtist_SmokeTest()
|
||||
{
|
||||
var artistResults = _musicGuideScraper.SearchArtist("Beech Boys");
|
||||
foreach (var artistResult in artistResults)
|
||||
{
|
||||
Console.WriteLine("{0}, {1}, {2}", artistResult.ArtistName, artistResult.ResultOrder, artistResult.YearsActive);
|
||||
}
|
||||
}
|
||||
|
||||
[Test, Explicit]
|
||||
public void SearchAlbum_SmokeTest()
|
||||
{
|
||||
var albumResults = _musicGuideScraper.SearchAlbum("smile sessions");
|
||||
foreach (var albumResult in albumResults)
|
||||
{
|
||||
Console.WriteLine("{0}, {1}, {2}", albumResult.ArtistName, albumResult.ResultOrder, albumResult.AlbumTitle);
|
||||
}
|
||||
}
|
||||
|
||||
[Test, Explicit]
|
||||
public void SearchSong_SmokeTest()
|
||||
{
|
||||
var albumResults = _musicGuideScraper.SearchSong("...and the World Laughs With You");
|
||||
foreach (var albumResult in albumResults)
|
||||
{
|
||||
Console.WriteLine("{0}, {1}, {2}", albumResult.ArtistName, albumResult.SongTitle, albumResult.ResultOrder);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,106 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Parser;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Parser
|
||||
{
|
||||
[TestFixture]
|
||||
public class AlbumParserTests
|
||||
{
|
||||
[Test]
|
||||
public void IsSoundtrack()
|
||||
{
|
||||
var pf = new XmlDocument();
|
||||
pf.Load("Album-PulpFiction.xml");
|
||||
var pulpFiction = new AlbumParser().Parse(pf);
|
||||
|
||||
Assert.IsTrue(pulpFiction.Soundtrack);
|
||||
Assert.That(pulpFiction.ArtistName, Is.EqualTo("Various Artists"));
|
||||
Assert.That(pulpFiction.ArtistId, Is.Null);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ParsesScore()
|
||||
{
|
||||
var mag = new XmlDocument();
|
||||
mag.Load("Album-MagnoliaScore.xml");
|
||||
var album = new AlbumParser().Parse(mag);
|
||||
Assert.IsNotNull(album);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ParsesMultipleArtists()
|
||||
{
|
||||
var xml = new XmlDocument();
|
||||
xml.Load("Album-Superwolf.xml");
|
||||
var superwolf = new AlbumParser().Parse(xml);
|
||||
|
||||
Assert.That(superwolf.ArtistName, Is.EqualTo("Bonnie \"Prince\" Billy"));
|
||||
Assert.That(superwolf.ArtistId, Is.EqualTo("mn0000094764"));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ParsesTrueLoveWaits()
|
||||
{
|
||||
var xml = new XmlDocument();
|
||||
xml.Load("Album-TrueLoveWaits.xml");
|
||||
var trueLoveWaits = new AlbumParser().Parse(xml);
|
||||
|
||||
Assert.That(trueLoveWaits.ArtistName, Is.EqualTo("Christopher O'Riley"));
|
||||
Assert.That(trueLoveWaits.ArtistId, Is.EqualTo("mn0000043765"));
|
||||
Assert.That(trueLoveWaits.Tracks.Count, Is.EqualTo(15));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void PopulateTest()
|
||||
{
|
||||
var ar = new XmlDocument();
|
||||
ar.Load("Album-AbbeyRoad.xml");
|
||||
var abbeyRoad = new AlbumParser().Parse(ar);
|
||||
|
||||
Assert.AreEqual("Abbey Road", abbeyRoad.Title);
|
||||
Assert.AreEqual("September 26, 1969", abbeyRoad.ReleaseDate);
|
||||
Assert.AreEqual("http://cps-static.rovicorp.com/3/JPG_250/MI0002/910/MI0002910443.jpg", abbeyRoad.CoverUrl);
|
||||
Assert.That(abbeyRoad.Styles.Count, Is.GreaterThan(1));
|
||||
Assert.IsTrue(abbeyRoad.Moods.Count > 0);
|
||||
Assert.IsTrue(abbeyRoad.Review.Length > 0);
|
||||
Assert.IsTrue(abbeyRoad.Themes.Count > 0);
|
||||
Assert.AreEqual("The Beatles", abbeyRoad.ArtistName);
|
||||
Assert.AreEqual("Richie Unterberger", abbeyRoad.Reviewer);
|
||||
Assert.AreEqual("mn0000754032", abbeyRoad.ArtistId);
|
||||
Assert.AreEqual("mw0000192938", abbeyRoad.AlbumId);
|
||||
Assert.AreEqual(10, abbeyRoad.Rating);
|
||||
Assert.Less(1, abbeyRoad.Review.Length);
|
||||
Assert.IsFalse(abbeyRoad.Soundtrack);
|
||||
|
||||
// track check
|
||||
Assert.That(abbeyRoad.Tracks.Count, Is.EqualTo(17));
|
||||
var firstTrack = abbeyRoad.Tracks[0];
|
||||
|
||||
Assert.AreEqual(1, firstTrack.TrackNumber);
|
||||
Assert.AreEqual("mt0010100291", firstTrack.TrackId);
|
||||
Assert.IsTrue(firstTrack.Pick);
|
||||
Assert.AreEqual(firstTrack.TrackLength, new TimeSpan(0, 4, 19));
|
||||
Assert.AreEqual(abbeyRoad.AlbumId, firstTrack.AlbumId);
|
||||
Assert.AreEqual("mn0000754032", firstTrack.PerformerIds[0]);
|
||||
|
||||
|
||||
var gct = new XmlDocument();
|
||||
gct.Load("Album-GirlsCanTell.xml");
|
||||
var girlsCanTell = new AlbumParser().Parse(gct);
|
||||
|
||||
Assert.IsTrue(girlsCanTell.Pick);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void SerializationTest()
|
||||
{
|
||||
var ar = new XmlDocument();
|
||||
ar.Load("Album-AbbeyRoad.xml");
|
||||
var abbeyRoad = new AlbumParser().Parse(ar);
|
||||
|
||||
SerializationTester.AssertBinarySerializable(abbeyRoad);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Xml;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Parser;
|
||||
using MusicMetaTagger.Core.Model;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Parser
|
||||
{
|
||||
[TestFixture]
|
||||
public class AlbumResultTests
|
||||
{
|
||||
private IList<AlbumResult> _albumResults;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
var doc = new XmlDocument();
|
||||
doc.Load("AlbumResults-AbbeyRoad.xml");
|
||||
_albumResults = new AlbumResultPageParser().Parse(doc);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void AlbumResultsTestSuite()
|
||||
{
|
||||
Assert.IsTrue(_albumResults.Count > 0);
|
||||
var resultInfo = _albumResults[0];
|
||||
Assert.AreEqual("The Beatles", resultInfo.ArtistName);
|
||||
Assert.AreEqual(1, resultInfo.ResultOrder);
|
||||
Assert.AreEqual("mw0000192938", resultInfo.AlbumId);
|
||||
Assert.AreEqual("Pop/Rock", resultInfo.Genre);
|
||||
Assert.AreEqual(1969, resultInfo.Year);
|
||||
Assert.AreEqual("Abbey Road", resultInfo.AlbumTitle);
|
||||
|
||||
Assert.AreNotEqual("The Beatles", _albumResults[1].ArtistName);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void AssertSerializableTest()
|
||||
{
|
||||
SerializationTester.AssertBinarySerializable(_albumResults);
|
||||
}
|
||||
}
|
||||
}
|
||||
+100
@@ -0,0 +1,100 @@
|
||||
using System.Xml;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Parser;
|
||||
using MusicMetaTagger.Core.Model;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Parser
|
||||
{
|
||||
[TestFixture]
|
||||
public class ArtistDiscographyPageParserTests
|
||||
{
|
||||
private XmlDocument _albumsDoc;
|
||||
private XmlDocument _compilationsDoc;
|
||||
private XmlDocument _singlesDoc;
|
||||
private ArtistDiscographyPageParser _parser;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
_albumsDoc = new XmlDocument();
|
||||
_albumsDoc.Load("ArtistAlbums-Spoon.xml");
|
||||
_compilationsDoc = new XmlDocument();
|
||||
_compilationsDoc.Load("ArtistCompilations-Beatles.xml");
|
||||
_singlesDoc = new XmlDocument();
|
||||
_singlesDoc.Load("ArtistSingles-Beatles.xml");
|
||||
_parser = new ArtistDiscographyPageParser();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Album_DiscographyTestSuite()
|
||||
{
|
||||
var discography = _parser.Parse(_albumsDoc);
|
||||
Assert.That(discography.Count, Is.EqualTo(8));
|
||||
|
||||
var seriesOfSneaks = discography.Find(a => a.AlbumTitle == "Series of Sneaks");
|
||||
var girlsCanTell = discography.Find(a => a.AlbumTitle == "Girls Can Tell");
|
||||
|
||||
// picks
|
||||
Assert.That(!seriesOfSneaks.Pick);
|
||||
Assert.That(girlsCanTell.Pick);
|
||||
|
||||
// rating
|
||||
Assert.That(seriesOfSneaks.Rating, Is.EqualTo(7));
|
||||
Assert.That(girlsCanTell.Rating, Is.EqualTo(8));
|
||||
|
||||
// id
|
||||
Assert.That(seriesOfSneaks.AlbumId, Is.EqualTo("mw0000226059"));
|
||||
Assert.That(girlsCanTell.AlbumId, Is.EqualTo("mw0000624315"));
|
||||
|
||||
// year
|
||||
Assert.That(seriesOfSneaks.Year, Is.EqualTo(1998));
|
||||
Assert.That(girlsCanTell.Year, Is.EqualTo(2001));
|
||||
|
||||
// type
|
||||
Assert.That(seriesOfSneaks.ReleaseType, Is.EqualTo(ReleaseType.Album));
|
||||
Assert.That(girlsCanTell.ReleaseType, Is.EqualTo(ReleaseType.Album));
|
||||
|
||||
// artist name
|
||||
Assert.That(seriesOfSneaks.ArtistName, Is.EqualTo("Spoon"));
|
||||
Assert.That(seriesOfSneaks.ArtistId, Is.EqualTo("mn0000131038"));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Singles_DiscographyTestSuite()
|
||||
{
|
||||
var discography = _parser.Parse(_singlesDoc);
|
||||
Assert.That(discography.Count, Is.EqualTo(52));
|
||||
|
||||
var allMyLoving = discography.Find(a => a.AlbumTitle.StartsWith("All My Loving"));
|
||||
var something = discography.Find(a => a.AlbumTitle == "Something");
|
||||
var yesterday = discography.Find(a => a.AlbumTitle == "Yesterday");
|
||||
|
||||
// Release Type
|
||||
Assert.That(allMyLoving.ReleaseType, Is.EqualTo(ReleaseType.EP));
|
||||
Assert.That(something.ReleaseType, Is.EqualTo(ReleaseType.Single));
|
||||
Assert.That(yesterday.ReleaseType, Is.EqualTo(ReleaseType.Single));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Compilations_DiscographyTestSuite()
|
||||
{
|
||||
var discography = _parser.Parse(_compilationsDoc);
|
||||
Assert.That(discography.Count, Is.EqualTo(197));
|
||||
|
||||
var theEarlyBeatles = discography.Find(a => a.AlbumTitle == "The Early Beatles");
|
||||
var pastMastersVol1 = discography.Find(a => a.AlbumTitle == "Past Masters, Vol. 1");
|
||||
var one = discography.Find(a => a.AlbumTitle == "1");
|
||||
var monoBoxSet = discography.Find(a => a.AlbumTitle == "The Beatles: Mono Box Set");
|
||||
|
||||
// Release Type
|
||||
Assert.That(theEarlyBeatles.ReleaseType, Is.EqualTo(ReleaseType.Compilation));
|
||||
Assert.That(pastMastersVol1.ReleaseType, Is.EqualTo(ReleaseType.Compilation));
|
||||
Assert.That(one.ReleaseType, Is.EqualTo(ReleaseType.Compilation));
|
||||
Assert.That(monoBoxSet.ReleaseType, Is.EqualTo(ReleaseType.BoxSet));
|
||||
|
||||
// Pick
|
||||
Assert.That(pastMastersVol1.Pick, Is.False);
|
||||
Assert.That(one.Pick, Is.True);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System.Xml;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Parser;
|
||||
using MusicMetaTagger.Core.Model;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Parser
|
||||
{
|
||||
[TestFixture]
|
||||
public class ArtistParserTests
|
||||
{
|
||||
private Artist _artist;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
var artistDoc = new XmlDocument();
|
||||
artistDoc.Load("Artist-Spoon.xml");
|
||||
|
||||
_artist = new ArtistParser().Parse(artistDoc);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ArtistInfoTestSuite()
|
||||
{
|
||||
Assert.AreEqual("mn0000131038", _artist.ArtistId);
|
||||
Assert.AreEqual("Pop/Rock", _artist.Genre);
|
||||
Assert.Less(1, _artist.Styles.Count);
|
||||
SerializationTester.AssertBinarySerializable(_artist);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Xml;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Parser;
|
||||
using MusicMetaTagger.Core.Model;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Parser
|
||||
{
|
||||
[TestFixture]
|
||||
public class ArtistResultTests
|
||||
{
|
||||
private List<ArtistResult> _artistResults;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
var doc = new XmlDocument();
|
||||
doc.Load("ArtistResults-Spoon.xml");
|
||||
var artistParser = new ArtistResultPageParser();
|
||||
_artistResults = artistParser.Parse(doc);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ArtistResultsTestSuite()
|
||||
{
|
||||
Assert.That(_artistResults.Count, Is.GreaterThan(1));
|
||||
|
||||
var artistResultInfo = _artistResults[0];
|
||||
Assert.AreEqual("Spoon", artistResultInfo.ArtistName);
|
||||
Assert.AreEqual(1, artistResultInfo.ResultOrder);
|
||||
Assert.AreEqual("Pop/Rock", artistResultInfo.Genre);
|
||||
Assert.AreEqual("1990s - 2010s", artistResultInfo.YearsActive);
|
||||
|
||||
Assert.That(_artistResults[2].Genre, Is.Not.StringContaining("Pop/Rock"));
|
||||
|
||||
SerializationTester.AssertBinarySerializable(_artistResults);
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
+1275
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+905
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+570
@@ -0,0 +1,570 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<html>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Abbey Road" href="/album/abbey-road-mw0000192938" data-tooltip="{&quot;id&quot;:&quot;MW0000192938&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0002/910/MI0002910443.jpg?partner=allrovi.com" style="left:-6px" width="114" height="102" alt="Abbey Road" data-debug="170x151 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/abbey-road-mw0000192938" data-tooltip="{&quot;id&quot;:&quot;MW0000192938&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Abbey Road</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/the-beatles-mn0000754032">The Beatles</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1969 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="The Other Side of Abbey Road" href="/album/the-other-side-of-abbey-road-mw0000187718" data-tooltip="{&quot;id&quot;:&quot;MW0000187718&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0002/245/MI0002245051.jpg?partner=allrovi.com" style="left:-0px" width="103" height="102" alt="The Other Side of Abbey Road" data-debug="170x168 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/the-other-side-of-abbey-road-mw0000187718" data-tooltip="{&quot;id&quot;:&quot;MW0000187718&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Other Side of Abbey Road</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/george-benson-mn0000201760">George Benson</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1970 <br />
|
||||
Jazz </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="The Abbey Road Sessions" href="/album/the-abbey-road-sessions-mw0002420710" data-tooltip="{&quot;id&quot;:&quot;MW0002420710&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0003/436/MI0003436996.jpg?partner=allrovi.com" style="" width="102" height="102" alt="The Abbey Road Sessions" data-debug="170x170 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/the-abbey-road-sessions-mw0002420710" data-tooltip="{&quot;id&quot;:&quot;MW0002420710&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Abbey Road Sessions</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/kylie-minogue-mn0000776093">Kylie Minogue</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2012 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="The Other Way of Crossing (Abbey Road Outtakes)" href="/album/the-other-way-of-crossing-abbey-road-outtakes-mw0001261742" data-tooltip="{&quot;id&quot;:&quot;MW0001261742&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/the-other-way-of-crossing-abbey-road-outtakes-mw0001261742" data-tooltip="{&quot;id&quot;:&quot;MW0001261742&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Other Way of Crossing (Abbey Road Outtakes)</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/the-beatles-mn0000754032">The Beatles</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2002 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="The Abbey Road EP" href="/album/the-abbey-road-ep-mw0000201264" data-tooltip="{&quot;id&quot;:&quot;MW0000201264&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0002/123/MI0002123554.jpg?partner=allrovi.com" style="left:-1px" width="104" height="102" alt="The Abbey Road EP" data-debug="170x166 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/the-abbey-road-ep-mw0000201264" data-tooltip="{&quot;id&quot;:&quot;MW0000201264&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Abbey Road EP</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/red-hot-chili-peppers-mn0000883318">Red Hot Chili Peppers</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1988 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Bossa Down Abbey Road" href="/album/bossa-down-abbey-road-mw0001280384" data-tooltip="{&quot;id&quot;:&quot;MW0001280384&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0003/344/MI0003344474.jpg?partner=allrovi.com" style="left:-7px" width="117" height="102" alt="Bossa Down Abbey Road" data-debug="170x148 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/bossa-down-abbey-road-mw0001280384" data-tooltip="{&quot;id&quot;:&quot;MW0001280384&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Bossa Down Abbey Road</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/john-lennon-mn0000232564">John Lennon</a> / <a href="http://www.allmusic.com/artist/the-bnb-mn0002101059">The BNB</a></div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2007 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Late Orchestration: Live at Abbey Road Studios" href="/album/late-orchestration-live-at-abbey-road-studios-mw0000554999" data-tooltip="{&quot;id&quot;:&quot;MW0000554999&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0002/202/MI0002202512.jpg?partner=allrovi.com" style="left:-0px" width="103" height="102" alt="Late Orchestration: Live at Abbey Road Studios" data-debug="170x167 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/late-orchestration-live-at-abbey-road-studios-mw0000554999" data-tooltip="{&quot;id&quot;:&quot;MW0000554999&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Late Orchestration: Live at Abbey Road Studios</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/kanye-west-mn0000361014">Kanye West</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2006 <br />
|
||||
Rap </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Richard Lush: An Inside Look at Recording at Abbey Road Studios" href="/album/richard-lush-an-inside-look-at-recording-at-abbey-road-studios-mw0001478750" data-tooltip="{&quot;id&quot;:&quot;MW0001478750&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/richard-lush-an-inside-look-at-recording-at-abbey-road-studios-mw0001478750" data-tooltip="{&quot;id&quot;:&quot;MW0001478750&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Richard Lush: An Inside Look at Recording at Abbey Road Studios</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/the-beatles-mn0000754032">The Beatles</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Missing Chapters, Vol. 5: The Complete Abbey Road Recordings" href="/album/missing-chapters-vol-5-the-complete-abbey-road-recordings-mw0000421992" data-tooltip="{&quot;id&quot;:&quot;MW0000421992&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0001/560/MI0001560747.jpg?partner=allrovi.com" style="left:-0px" width="102" height="102" alt="Missing Chapters, Vol. 5: The Complete Abbey Road Recordings" data-debug="170x169 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/missing-chapters-vol-5-the-complete-abbey-road-recordings-mw0000421992" data-tooltip="{&quot;id&quot;:&quot;MW0000421992&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Missing Chapters, Vol. 5: The Complete Abbey Road Recordings</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/glenn-miller-mn0000661172">Glenn Miller</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1995 <br />
|
||||
Jazz </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Gerry &amp; the Pacemakers at Abbey Road: 1963-1966" href="/album/gerry-the-pacemakers-at-abbey-road-1963-1966-mw0000738762" data-tooltip="{&quot;id&quot;:&quot;MW0000738762&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0002/803/MI0002803552.jpg?partner=allrovi.com" style="left:-0px" width="103" height="102" alt="Gerry &amp; the Pacemakers at Abbey Road: 1963-1966" data-debug="170x168 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/gerry-the-pacemakers-at-abbey-road-1963-1966-mw0000738762" data-tooltip="{&quot;id&quot;:&quot;MW0000738762&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Gerry &amp; the Pacemakers at Abbey Road: 1963-1966</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/gerry-the-pacemakers-mn0000541125">Gerry & the Pacemakers</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1997 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="At Abbey Road 1966-1970" href="/album/at-abbey-road-1966-1970-mw0000455400" data-tooltip="{&quot;id&quot;:&quot;MW0000455400&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0002/546/MI0002546919.jpg?partner=allrovi.com" style="left:-0px" width="103" height="102" alt="At Abbey Road 1966-1970" data-debug="170x168 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/at-abbey-road-1966-1970-mw0000455400" data-tooltip="{&quot;id&quot;:&quot;MW0000455400&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">At Abbey Road 1966-1970</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/the-hollies-mn0000087985">The Hollies</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1997 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="The Abbey Road Decade 1963-1973" href="/album/the-abbey-road-decade-1963-1973-mw0000340782" data-tooltip="{&quot;id&quot;:&quot;MW0000340782&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0000/740/MI0000740563.jpg?partner=allrovi.com" style="" width="102" height="102" alt="The Abbey Road Decade 1963-1973" data-debug="170x170 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/the-abbey-road-decade-1963-1973-mw0000340782" data-tooltip="{&quot;id&quot;:&quot;MW0000340782&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Abbey Road Decade 1963-1973</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/cilla-black-mn0000122023">Cilla Black</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1997 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Abbey Road Decade 1973-1989" href="/album/abbey-road-decade-1973-1989-mw0001039445" data-tooltip="{&quot;id&quot;:&quot;MW0001039445&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0002/062/MI0002062427.jpg?partner=allrovi.com" style="left:-0px" width="102" height="102" alt="Abbey Road Decade 1973-1989" data-debug="170x169 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/abbey-road-decade-1973-1989-mw0001039445" data-tooltip="{&quot;id&quot;:&quot;MW0001039445&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Abbey Road Decade 1973-1989</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/the-hollies-mn0000087985">The Hollies</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1998 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="The Shadows at Abbey Road: The Collectors Edition" href="/album/the-shadows-at-abbey-road-the-collectors-edition-mw0000465717" data-tooltip="{&quot;id&quot;:&quot;MW0000465717&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0002/303/MI0002303888.jpg?partner=allrovi.com" style="left:-1px" width="104" height="102" alt="The Shadows at Abbey Road: The Collectors Edition" data-debug="170x166 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/the-shadows-at-abbey-road-the-collectors-edition-mw0000465717" data-tooltip="{&quot;id&quot;:&quot;MW0000465717&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Shadows at Abbey Road: The Collectors Edition</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/the-shadows-mn0000496405">The Shadows</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2000 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="At Abbey Road 1963-1966/At Abbey Road 1966-1970/At Abbey Road 1973-1989" href="/album/at-abbey-road-1963-1966-at-abbey-road-1966-1970-at-abbey-road-1973-1989-mw0000461862" data-tooltip="{&quot;id&quot;:&quot;MW0000461862&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0001/980/MI0001980447.jpg?partner=allrovi.com" style="left:-8px" width="118" height="102" alt="At Abbey Road 1963-1966/At Abbey Road 1966-1970/At Abbey Road 1973-1989" data-debug="170x146 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/at-abbey-road-1963-1966-at-abbey-road-1966-1970-at-abbey-road-1973-1989-mw0000461862" data-tooltip="{&quot;id&quot;:&quot;MW0000461862&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">At Abbey Road 1963-1966/At Abbey Road 1966-1970/At Abbey Road 1973-1989</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/the-hollies-mn0000087985">The Hollies</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2000 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="The Seldom Seen Kid Live at Abbey Road" href="/album/the-seldom-seen-kid-live-at-abbey-road-mw0001345029" data-tooltip="{&quot;id&quot;:&quot;MW0001345029&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0003/286/MI0003286861.jpg?partner=allrovi.com" style="top:-1px;" width="102" height="104" alt="The Seldom Seen Kid Live at Abbey Road" data-debug="166x170 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/the-seldom-seen-kid-live-at-abbey-road-mw0001345029" data-tooltip="{&quot;id&quot;:&quot;MW0001345029&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Seldom Seen Kid Live at Abbey Road</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/elbow-mn0000134051">Elbow</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2009 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Manfred Mann at Abbey Road, 1963 to 1966" href="/album/manfred-mann-at-abbey-road-1963-to-1966-mw0000981387" data-tooltip="{&quot;id&quot;:&quot;MW0000981387&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/manfred-mann-at-abbey-road-1963-to-1966-mw0000981387" data-tooltip="{&quot;id&quot;:&quot;MW0000981387&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Manfred Mann at Abbey Road, 1963 to 1966</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/manfred-mann-mn0000674662">Manfred Mann</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1997 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Keep Them Freaks a Rollin': Live at Abbey Road" href="/album/keep-them-freaks-a-rollin-live-at-abbey-road-mw0000473211" data-tooltip="{&quot;id&quot;:&quot;MW0000473211&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0001/979/MI0001979245.jpg?partner=allrovi.com" style="left:-0px" width="102" height="102" alt="Keep Them Freaks a Rollin': Live at Abbey Road" data-debug="170x169 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/keep-them-freaks-a-rollin-live-at-abbey-road-mw0000473211" data-tooltip="{&quot;id&quot;:&quot;MW0000473211&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Keep Them Freaks a Rollin': Live at Abbey Road</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/edgar-broughton-band-mn0000797138">Edgar Broughton Band</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2004 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="The Abbey Road Sessions/The Walk" href="/album/the-abbey-road-sessions-the-walk-mw0000250477" data-tooltip="{&quot;id&quot;:&quot;MW0000250477&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0001/554/MI0001554869.jpg?partner=allrovi.com" style="left:-2px" width="106" height="102" alt="The Abbey Road Sessions/The Walk" data-debug="170x163 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/the-abbey-road-sessions-the-walk-mw0000250477" data-tooltip="{&quot;id&quot;:&quot;MW0000250477&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Abbey Road Sessions/The Walk</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/steven-curtis-chapman-mn0000044068">Steven Curtis Chapman</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
2005 <br />
|
||||
Religious, New Age </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result album">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm album">
|
||||
<a title="Abbey Road EP" href="/album/abbey-road-ep-mw0000042327" data-tooltip="{&quot;id&quot;:&quot;MW0000042327&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-album-new" title="album" />
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/album/abbey-road-ep-mw0000042327" data-tooltip="{&quot;id&quot;:&quot;MW0000042327&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Abbey Road EP</a>
|
||||
</div>
|
||||
<div class="artist">
|
||||
<a href="http://www.allmusic.com/artist/spiritualized-mn0000746731">Spiritualized</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info">
|
||||
1998 <br />
|
||||
Pop/Rock </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</html>
|
||||
File diff suppressed because one or more lines are too long
+1159
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+6618
File diff suppressed because one or more lines are too long
+619
File diff suppressed because one or more lines are too long
@@ -0,0 +1,441 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<html>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/spoon-mn0000131038" data-tooltip="{&quot;id&quot;:&quot;MN0000131038&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
<div class="cropped-image" style="width:102px;height:102px;">
|
||||
<img src="http://cps-static.rovicorp.com/3/JPG_170/MI0003/184/MI0003184837.jpg?partner=allrovi.com" style="left:-0px" width="102" height="102" alt="Spoon" data-debug="170x169 (63)" />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-mn0000131038" data-tooltip="{&quot;id&quot;:&quot;MN0000131038&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Pop/Rock
|
||||
<br />
|
||||
|
||||
1990s - 2010s
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/spoon-mn0001366192" data-tooltip="{&quot;id&quot;:&quot;MN0001366192&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-mn0001366192" data-tooltip="{&quot;id&quot;:&quot;MN0001366192&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Pop/Rock
|
||||
<br />
|
||||
|
||||
1990s
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/spoon-mn0001948972" data-tooltip="{&quot;id&quot;:&quot;MN0001948972&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-mn0001948972" data-tooltip="{&quot;id&quot;:&quot;MN0001948972&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Rap
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/spoon-mn0000989000" data-tooltip="{&quot;id&quot;:&quot;MN0000989000&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-mn0000989000" data-tooltip="{&quot;id&quot;:&quot;MN0000989000&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Rap
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/spoon-mn0002487567" data-tooltip="{&quot;id&quot;:&quot;MN0002487567&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-mn0002487567" data-tooltip="{&quot;id&quot;:&quot;MN0002487567&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Blues
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/spoon-mn0001899918" data-tooltip="{&quot;id&quot;:&quot;MN0001899918&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-mn0001899918" data-tooltip="{&quot;id&quot;:&quot;MN0001899918&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Electronic
|
||||
<br />
|
||||
|
||||
1990s
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/dj-spoon-mn0000518889" data-tooltip="{&quot;id&quot;:&quot;MN0000518889&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/dj-spoon-mn0000518889" data-tooltip="{&quot;id&quot;:&quot;MN0000518889&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">DJ Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/plate-fork-knife-spoon-mn0000247017" data-tooltip="{&quot;id&quot;:&quot;MN0000247017&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/plate-fork-knife-spoon-mn0000247017" data-tooltip="{&quot;id&quot;:&quot;MN0000247017&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Plate Fork Knife Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Rap
|
||||
<br />
|
||||
|
||||
2000s
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/the-bent-spoon-trio-mn0002068970" data-tooltip="{&quot;id&quot;:&quot;MN0002068970&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/the-bent-spoon-trio-mn0002068970" data-tooltip="{&quot;id&quot;:&quot;MN0002068970&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Bent Spoon Trio</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Pop/Rock
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/tong-amp-spoon-mn0001002429" data-tooltip="{&quot;id&quot;:&quot;MN0001002429&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/tong-amp-spoon-mn0001002429" data-tooltip="{&quot;id&quot;:&quot;MN0001002429&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Tong &amp; Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Electronic
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/ken-little-amp-the-spoon-river-band-mn0001335061" data-tooltip="{&quot;id&quot;:&quot;MN0001335061&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/ken-little-amp-the-spoon-river-band-mn0001335061" data-tooltip="{&quot;id&quot;:&quot;MN0001335061&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Ken Little &amp; The Spoon River Band</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Pop/Rock
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/wooden-spoon-mn0001180770" data-tooltip="{&quot;id&quot;:&quot;MN0001180770&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/wooden-spoon-mn0001180770" data-tooltip="{&quot;id&quot;:&quot;MN0001180770&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Wooden Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
International
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/spoon-harris-amp-obernik-mn0001032971" data-tooltip="{&quot;id&quot;:&quot;MN0001032971&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-harris-amp-obernik-mn0001032971" data-tooltip="{&quot;id&quot;:&quot;MN0001032971&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon, Harris &amp; Obernik</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Electronic
|
||||
<br />
|
||||
|
||||
2000s
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/billy-spoon-mn0001833920" data-tooltip="{&quot;id&quot;:&quot;MN0001833920&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/billy-spoon-mn0001833920" data-tooltip="{&quot;id&quot;:&quot;MN0001833920&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Billy Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Religious
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/spoon-jackson-mn0001713736" data-tooltip="{&quot;id&quot;:&quot;MN0001713736&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-jackson-mn0001713736" data-tooltip="{&quot;id&quot;:&quot;MN0001713736&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon Jackson</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm artist">
|
||||
<a href="/artist/sam-spoon-mn0000241584" data-tooltip="{&quot;id&quot;:&quot;MN0000241584&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/sam-spoon-mn0000241584" data-tooltip="{&quot;id&quot;:&quot;MN0000241584&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Sam Spoon</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/the-spoon-wizard-mn0000484283" data-tooltip="{&quot;id&quot;:&quot;MN0000484283&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/the-spoon-wizard-mn0000484283" data-tooltip="{&quot;id&quot;:&quot;MN0000484283&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Spoon Wizard</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/the-spoon-benders-mn0001456514" data-tooltip="{&quot;id&quot;:&quot;MN0001456514&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/the-spoon-benders-mn0001456514" data-tooltip="{&quot;id&quot;:&quot;MN0001456514&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">The Spoon Benders</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
Pop/Rock
|
||||
<br /></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/lord-spoon-amp-david-mn0000232230" data-tooltip="{&quot;id&quot;:&quot;MN0000232230&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/lord-spoon-amp-david-mn0000232230" data-tooltip="{&quot;id&quot;:&quot;MN0000232230&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Lord Spoon &amp; David</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result artist">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm group">
|
||||
<a href="/artist/spoon-bread-mn0000790575" data-tooltip="{&quot;id&quot;:&quot;MN0000790575&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-artist-new" title="artist" />
|
||||
</div>
|
||||
<div class="name">
|
||||
<a href="http://www.allmusic.com/artist/spoon-bread-mn0000790575" data-tooltip="{&quot;id&quot;:&quot;MN0000790575&quot;,&quot;thumbnail&quot;:true,&quot;position&quot;:{&quot;my&quot;:&quot;left center&quot;,&quot;at&quot;:&quot;middle right&quot;}}">Spoon Bread</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</html>
|
||||
+2517
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+453
@@ -0,0 +1,453 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<html>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Hey, Snow White by The New Pornographers" href="/song/hey-snow-white-mt0031275831">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<div class="ui360 icon-search-song-new">
|
||||
<a href="http://rovimusic.rovicorp.com/playback.mp3?c=RfSe5itQayF7azF__JToGvh0BJxFGWncDvRkmPV4knk=&f=J" title="play sample" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/hey-snow-white-mt0031275831">&quot;Hey, Snow White&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/the-new-pornographers-mn0000477787">The New Pornographers</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />Composed by <a href="http://www.allmusic.com/artist/daniel-bejar-mn0000786070">Daniel Bejar</a></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Hey, Snow White " href="/song/hey-snow-white-mt0009946885">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/hey-snow-white-mt0009946885">&quot;Hey, Snow White&quot;</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Hey, Snow White by Destroyer" href="/song/hey-snow-white-mt0006219769">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<div class="ui360 icon-search-song-new">
|
||||
<a href="http://rovimusic.rovicorp.com/playback.mp3?c=3BuZS-D2JPy8YF2iYUS_GTqpU4hxl5saPDaNIVORh-E=&f=J" title="play sample" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/hey-snow-white-mt0006219769">&quot;Hey, Snow White&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/destroyer-mn0000247065">Destroyer</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />Composed by <a href="http://www.allmusic.com/artist/destroyer-mn0000247065">Destroyer</a></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Hey Dante by Linda Draper" href="/song/hey-dante-mt0016101059">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/hey-dante-mt0016101059">&quot;Hey Dante&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/linda-draper-mn0000374418">Linda Draper</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Whistle While You Work (Snow White and the Seven Dwarfs) by Louis Armstrong" href="/song/whistle-while-you-work-snow-white-and-the-seven-dwarfs-mt0004060986">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/whistle-while-you-work-snow-white-and-the-seven-dwarfs-mt0004060986">&quot;Whistle While You Work (Snow White and the Seven Dwarfs)&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/louis-armstrong-mn0000234518">Louis Armstrong</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />Composed by <a href="http://www.allmusic.com/artist/frank-churchill-mn0000157215">Frank Churchill</a> / <a href="http://www.allmusic.com/artist/larry-morey-mn0000110108">Larry Morey</a></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="White Christmas/Whiter Than Snow by Twila Paris" href="/song/white-christmas-whiter-than-snow-mt0011666845">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<div class="ui360 icon-search-song-new">
|
||||
<a href="http://rovimusic.rovicorp.com/playback.mp3?c=Nfg1aTYVvTfwLisQvx56wvh0BJxFGWncDvRkmPV4knk=&f=I" title="play sample" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/white-christmas-whiter-than-snow-mt0011666845">&quot;White Christmas/Whiter Than Snow&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/twila-paris-mn0000803533">Twila Paris</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />Composed by <a href="http://www.allmusic.com/artist/irving-berlin-mn0000103748">Irving Berlin</a> / <a href="http://www.allmusic.com/artist/james-david-nicholson-mn0001213557">James David Nicholson</a></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White Medley: Someday My Prince Will Come/Whistle While You Work by Chris Calabrese" href="/song/snow-white-medley-someday-my-prince-will-come-whistle-while-you-work-mt0007930083">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<div class="ui360 icon-search-song-new">
|
||||
<a href="http://rovimusic.rovicorp.com/playback.mp3?c=IU40DuYY71JYYAfMpTEAzs2KXJKuJLE7UG4BJXcyKZ4=&f=J" title="play sample" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-medley-someday-my-prince-will-come-whistle-while-you-work-mt0007930083">&quot;Snow White Medley: Someday My Prince Will Come/Whistle While You Work&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/chris-calabrese-mn0000108062">Chris Calabrese</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />Composed by <a href="http://www.allmusic.com/artist/larry-morey-mn0000110108">Larry Morey</a></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White Medley: Whistle While You Work/I'm ... by Mike Curb CongregationMike Curb" href="/song/snow-white-medley-whistle-while-you-work-im--mt0006190157">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<div class="ui360 icon-search-song-new">
|
||||
<a href="http://rovimusic.rovicorp.com/playback.mp3?c=aqewkLT-agNyWzIse7yGXKwfpsQHuOlGC4-o-yXc8Os=&f=J" title="play sample" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-medley-whistle-while-you-work-im--mt0006190157">&quot;Snow White Medley: Whistle While You Work/I'm ...&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/mike-curb-congregation-mn0000477163">Mike Curb Congregation</a> / <a href="http://www.allmusic.com/artist/mike-curb-mn0000893135">Mike Curb</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />Composed by <a href="http://www.allmusic.com/artist/larry-morey-mn0000110108">Larry Morey</a></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Whistle While You Work (From Snow White and the by Adriana Caselotti" href="/song/whistle-while-you-work-from-snow-white-and-the-mt0041924984">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/whistle-while-you-work-from-snow-white-and-the-mt0041924984">&quot;Whistle While You Work (From Snow White and the&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/adriana-caselotti-mn0000499710">Adriana Caselotti</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Whistle While You Work- Snow White " href="/song/whistle-while-you-work-snow-white-mt0004567056">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<div class="ui360 icon-search-song-new">
|
||||
<a href="http://rovimusic.rovicorp.com/playback.mp3?c=a7XEW8Ero9YYyqH-746LvJjWf7KriH64XH0cLbjLrOY=&f=J" title="play sample" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/whistle-while-you-work-snow-white-mt0004567056">&quot;Whistle While You Work- Snow White&quot;</a>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White and the Seven Dwarfs Film Medley: Whistle While You Work/Someday My Prince Will Come/I'm Wishing by Reginald Foort" href="/song/snow-white-and-the-seven-dwarfs-film-medley-whistle-while-you-work-someday-my-prince-will-come-im-wishing-mt0009725790">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-and-the-seven-dwarfs-film-medley-whistle-while-you-work-someday-my-prince-will-come-im-wishing-mt0009725790">&quot;Snow White and the Seven Dwarfs Film Medley: Whistle While You Work/Someday My Prince Will Come/I'm Wishing&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/reginald-foort-mn0002172965">Reginald Foort</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White Selection: Some Day My Prince Will Come/Whistle While ... by Paul Roberts" href="/song/snow-white-selection-some-day-my-prince-will-come-whistle-while--mt0015118935">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-selection-some-day-my-prince-will-come-whistle-while--mt0015118935">&quot;Snow White Selection: Some Day My Prince Will Come/Whistle While ...&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/paul-roberts-mn0001528672">Paul Roberts</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White & The Seven Dwarfs: Whistle While You by Animation Soundtrack Ensemble" href="/song/snow-white-the-seven-dwarfs-whistle-while-you-mt0020382831">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-the-seven-dwarfs-whistle-while-you-mt0020382831">&quot;Snow White & The Seven Dwarfs: Whistle While You&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/animation-soundtrack-ensemble-mn0002127716">Animation Soundtrack Ensemble</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Whistle While You Work - Snow White by Matinee Sounds Unlimited" href="/song/whistle-while-you-work-snow-white-mt0046362862">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/whistle-while-you-work-snow-white-mt0046362862">&quot;Whistle While You Work - Snow White&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/matinee-sounds-unlimited-mn0003054056">Matinee Sounds Unlimited</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White & The Seven Dwarfs: Whistle While You Work by Animation Soundtrack Ensemble" href="/song/snow-white-the-seven-dwarfs-whistle-while-you-work-mt0020062343">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-the-seven-dwarfs-whistle-while-you-work-mt0020062343">&quot;Snow White & The Seven Dwarfs: Whistle While You Work&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/animation-soundtrack-ensemble-mn0002127716">Animation Soundtrack Ensemble</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White and the Seven Dwarfs: Whistle while you work by Arthur Fiedler" href="/song/snow-white-and-the-seven-dwarfs-whistle-while-you-work-mt0004900160">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-and-the-seven-dwarfs-whistle-while-you-work-mt0004900160">&quot;Snow White and the Seven Dwarfs: Whistle while you work&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/arthur-fiedler-mn0000932323">Arthur Fiedler</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White and the Seven Dwarfs: Whistle while you work by Boston Pops OrchestraArthur FiedlerJohn Williams" href="/song/snow-white-and-the-seven-dwarfs-whistle-while-you-work-mt0000078569">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-and-the-seven-dwarfs-whistle-while-you-work-mt0000078569">&quot;Snow White and the Seven Dwarfs: Whistle while you work&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/boston-pops-orchestra-mn0000813561">Boston Pops Orchestra</a> / <a href="http://www.allmusic.com/artist/arthur-fiedler-mn0000932323">Arthur Fiedler</a> / <a href="http://www.allmusic.com/artist/john-williams-mn0000232480">John Williams</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snowy White Snow and Jingle Bells [Remastered] by Vaughn Monroe & His Orchestra" href="/song/snowy-white-snow-and-jingle-bells-remastered-mt0046103875">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snowy-white-snow-and-jingle-bells-remastered-mt0046103875">&quot;Snowy White Snow and Jingle Bells [Remastered]&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/vaughn-monroe-his-orchestra-mn0000839634">Vaughn Monroe & His Orchestra</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
<br />Composed by <a href="http://www.allmusic.com/artist/billy-reid-mn0000076652">Billy Reid</a></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snow White Medley: Some Day My Prince Will Come/Whistle While You Wor by Sidney Torch" href="/song/snow-white-medley-some-day-my-prince-will-come-whistle-while-you-wor-mt0012079409">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<span class="sprite2 icon-search-song-new-none" title="no audio sample available" />
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snow-white-medley-some-day-my-prince-will-come-whistle-while-you-wor-mt0012079409">&quot;Snow White Medley: Some Day My Prince Will Come/Whistle While You Wor&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/sidney-torch-mn0000382463">Sidney Torch</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="search-result song">
|
||||
<td>
|
||||
<div class="image">
|
||||
<div class="thumbnail sm song">
|
||||
<a title="Snowy White Snow and Jingle Bells by Vaughn Monroe" href="/song/snowy-white-snow-and-jingle-bells-mt0027919514">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-of-image">
|
||||
<div class="type">
|
||||
<div class="ui360 icon-search-song-new">
|
||||
<a href="http://rovimusic.rovicorp.com/playback.mp3?c=bPpgbv6Yx1k794MNedtFXoapJnH0KBK7tayJ1L1z1aM=&f=J" title="play sample" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="title">
|
||||
<a href="http://www.allmusic.com/song/snowy-white-snow-and-jingle-bells-mt0027919514">&quot;Snowy White Snow and Jingle Bells&quot;</a>
|
||||
<br />
|
||||
<span class="performer">by <a href="http://www.allmusic.com/artist/vaughn-monroe-mn0000839335">Vaughn Monroe</a></span>
|
||||
</div>
|
||||
<div class="info">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Xml;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Parser;
|
||||
using MusicMetaTagger.Core.Model;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Parser
|
||||
{
|
||||
[TestFixture]
|
||||
public class SongResultTests
|
||||
{
|
||||
private IList<SongResult> _songResults;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
var doc = new XmlDocument();
|
||||
doc.Load("SongResults-HeySnowWhite.xml");
|
||||
_songResults = new SongResultPageParser().Parse(doc);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void SongResultsTestSuite()
|
||||
{
|
||||
Assert.IsTrue(_songResults.Count > 0);
|
||||
var resultInfo = _songResults[0];
|
||||
Assert.AreEqual("The New Pornographers", resultInfo.ArtistName);
|
||||
Assert.AreEqual(1, resultInfo.ResultOrder);
|
||||
Assert.AreEqual("mt0031275831", resultInfo.SongId);
|
||||
Assert.AreEqual("Hey, Snow White", resultInfo.SongTitle);
|
||||
|
||||
Assert.AreNotEqual("The New Pornographers", _songResults[1].ArtistName);
|
||||
Assert.AreEqual(2, _songResults[1].ResultOrder);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
using System.Xml;
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Parser;
|
||||
using MusicMetaTagger.Core.Model;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Parser
|
||||
{
|
||||
[TestFixture]
|
||||
public class SongTests
|
||||
{
|
||||
private Song _heyJude;
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
var doc = new XmlDocument();
|
||||
doc.Load("Song-HeyJude.xml");
|
||||
_heyJude = new SongParser().Parse(doc);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void SongTestSuite()
|
||||
{
|
||||
Assert.AreEqual("Hey Jude", _heyJude.SongTitle);
|
||||
Assert.AreEqual("mt0002046073", _heyJude.SongId);
|
||||
Assert.That(_heyJude.AppearsOnAlbum.Count, Is.GreaterThan(1));
|
||||
|
||||
var firstAlbum = _heyJude.AppearsOnAlbum[0];
|
||||
Assert.That(firstAlbum.AlbumTitle, Is.EqualTo("Hey Jude"));
|
||||
Assert.That(firstAlbum.ArtistName, Is.EqualTo("The Beatles"));
|
||||
Assert.That(firstAlbum.Year, Is.EqualTo(1970));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using MusicMetaTagger.Client.AllMusicGuide.RemoteDataAccess.Scraper;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace MusicMetaTagger.Client.AllMusicGuide.Tests.RemoteDataAccess.Scraper
|
||||
{
|
||||
[TestFixture]
|
||||
class AlbumScraperTests
|
||||
{
|
||||
[Test, Explicit]
|
||||
public void ScrapeTest()
|
||||
{
|
||||
var loadedAlbumInfo = new AlbumScraper().Scrape("r1525");
|
||||
|
||||
Assert.AreEqual("Abbey Road", loadedAlbumInfo.Title);
|
||||
Assert.AreEqual("September 26, 1969", loadedAlbumInfo.ReleaseDate);
|
||||
Assert.AreEqual("The Beatles", loadedAlbumInfo.ArtistName);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user