From 8ddead06277f7c863fe048e9990d4c9ce0c24424 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 21 Nov 2014 13:53:36 +0100 Subject: fix #660 --- vendor/autoload.php | 2 +- vendor/composer/autoload_real.php | 10 +- vendor/composer/installed.json | 12 +- .../fguillot/picofeed/lib/PicoFeed/Parser/Atom.php | 5 +- .../picofeed/lib/PicoFeed/Reader/Reader.php | 4 +- .../picofeed/tests/Parser/AtomParserTest.php | 5 + .../fguillot/picofeed/tests/fixtures/youtube.xml | 979 +++++++++++++++++++++ 7 files changed, 1002 insertions(+), 15 deletions(-) create mode 100644 vendor/fguillot/picofeed/tests/fixtures/youtube.xml (limited to 'vendor') diff --git a/vendor/autoload.php b/vendor/autoload.php index bf039c269..92a69093b 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer' . '/autoload_real.php'; -return ComposerAutoloaderInit1a5ae2c0139f33f17ed4df8077538870::getLoader(); +return ComposerAutoloaderInita9c752e6b95fa896aa77ade3ff1d23dd::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index c601c9c64..63a364702 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit1a5ae2c0139f33f17ed4df8077538870 +class ComposerAutoloaderInita9c752e6b95fa896aa77ade3ff1d23dd { private static $loader; @@ -19,9 +19,9 @@ class ComposerAutoloaderInit1a5ae2c0139f33f17ed4df8077538870 return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit1a5ae2c0139f33f17ed4df8077538870', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInita9c752e6b95fa896aa77ade3ff1d23dd', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit1a5ae2c0139f33f17ed4df8077538870', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInita9c752e6b95fa896aa77ade3ff1d23dd', 'loadClassLoader')); $includePaths = require __DIR__ . '/include_paths.php'; array_push($includePaths, get_include_path()); @@ -46,14 +46,14 @@ class ComposerAutoloaderInit1a5ae2c0139f33f17ed4df8077538870 $includeFiles = require __DIR__ . '/autoload_files.php'; foreach ($includeFiles as $file) { - composerRequire1a5ae2c0139f33f17ed4df8077538870($file); + composerRequirea9c752e6b95fa896aa77ade3ff1d23dd($file); } return $loader; } } -function composerRequire1a5ae2c0139f33f17ed4df8077538870($file) +function composerRequirea9c752e6b95fa896aa77ade3ff1d23dd($file) { require $file; } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index f3aa9a500..5fc9e6df0 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -114,23 +114,23 @@ }, { "name": "fguillot/picofeed", - "version": "v0.1.0", - "version_normalized": "0.1.0.0", + "version": "dev-master", + "version_normalized": "9999999-dev", "source": { "type": "git", "url": "https://github.com/fguillot/picoFeed.git", - "reference": "d36a878e912a04c15f49da97e8d627280ae6918c" + "reference": "e3e5bb1b09eaf8799761128bcf4f31e06f5bd432" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fguillot/picoFeed/zipball/d36a878e912a04c15f49da97e8d627280ae6918c", - "reference": "d36a878e912a04c15f49da97e8d627280ae6918c", + "url": "https://api.github.com/repos/fguillot/picoFeed/zipball/e3e5bb1b09eaf8799761128bcf4f31e06f5bd432", + "reference": "e3e5bb1b09eaf8799761128bcf4f31e06f5bd432", "shasum": "" }, "require": { "php": ">=5.3.0" }, - "time": "2014-11-08 14:43:27", + "time": "2014-11-21 00:59:35", "type": "library", "installation-source": "source", "autoload": { diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php index 5c7068760..1217bc4b0 100644 --- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php +++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php @@ -119,7 +119,10 @@ class Atom extends Parser */ public function findItemDate(SimpleXMLElement $entry, Item $item) { - $item->date = $this->parseDate((string) $entry->updated); + $published = isset($entry->published) ? $this->parseDate((string) $entry->published) : 0; + $updated = isset($entry->updated) ? $this->parseDate((string) $entry->updated) : 0; + + $item->date = max($published, $updated) ?: time(); } /** diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php b/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php index f54062f40..a64eb139c 100644 --- a/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php +++ b/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php @@ -86,8 +86,8 @@ class Reader { $client = $this->download($url, $last_modified, $etag); - // It's already a feed - if ($this->detectFormat($client->getContent())) { + // It's already a feed or the feed was not modified + if (!$client->isModified() || $this->detectFormat($client->getContent())) { return $client; } diff --git a/vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php b/vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php index 491c7e3e0..b94f64b1d 100644 --- a/vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php +++ b/vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php @@ -140,6 +140,11 @@ class AtomParserTest extends PHPUnit_Framework_TestCase $feed = $parser->execute(); $this->assertNotEmpty($feed->items); $this->assertEquals(1071340202, $feed->items[0]->getDate()); + + $parser = new Atom(file_get_contents('tests/fixtures/youtube.xml')); + $feed = $parser->execute(); + $this->assertNotEmpty($feed->items); + $this->assertEquals(1336825342, $feed->items[1]->getDate()); // Should return the published date } public function testItemLanguage() diff --git a/vendor/fguillot/picofeed/tests/fixtures/youtube.xml b/vendor/fguillot/picofeed/tests/fixtures/youtube.xml new file mode 100644 index 000000000..c78347c83 --- /dev/null +++ b/vendor/fguillot/picofeed/tests/fixtures/youtube.xml @@ -0,0 +1,979 @@ +http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE02014-05-24T09:13:20.000ZLiquid DnB Playlisthttp://www.gstatic.com/youtube/img/logo.pngvGWKzhttp://gdata.youtube.com/feeds/api/users/vGWKzYouTube data API139125Liquid DnB PlaylistPLD50E7DEEB70F4CE0http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAirQeZjp907Md1oNURqyxGK2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZBreakshift - Before You Notice HerNew guys in the scene! This will be on their forthcoming album that launches the 28th of September! + +Sharelink: +http://tinyurl.com/5tb32h8 + +Check them out: +http://soundcloud.com/breakshiftdnb + +Recordlabel: +http://www.96khz-productions.com/liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicNew guys in the scene! This will be on their forthcoming album that launches the 28th of September! + +Sharelink: +http://tinyurl.com/5tb32h8 + +Check them out: +http://soundcloud.com/breakshiftdnb + +Recordlabel: +http://www.96khz-productions.com/Breakshift - Before You Notice HerNew guys in the scene! This will be on their forthcoming album that launches the 28th of September! + +Sharelink: +http://tinyurl.com/5tb32h8 + +Check them out: +http://soundcloud.com/breakshiftdnb + +Recordlabel: +http://www.96khz-productions.com/1http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAgU28JMj24hRvbmlk6bSRiT2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZAlexus - Mama Told MeSummer is here. Whether it would be outside or in your mind. It is here. +Original Artwork: http://tinyurl.com/cbpc8e8 +Share on Facebook: http://tinyurl.com/6nn82m6 + +Alexus: +http://soundcloud.com/alexusdnb +http://www.facebook.com/alexusmusic +http://www.myspace.com/alexusdnb + +Join Liquicity Records Soundcloud & Beatport! +http://soundcloud.com/liquicityrecords +http://beatport.com/label/liquicity-records/25942 + +[Liquicity Merchandise:] +EU: ‪http://liquicity.spreadshirt.nl/‬ +USA ‪http://liquicity.spreadshirt.com‬ + +Liquicity Facebook: +‪http://www.facebook.com/OfficialLiquicity‬liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentSummer is here. Whether it would be outside or in your mind. It is here. +Original Artwork: http://tinyurl.com/cbpc8e8 +Share on Facebook: http://tinyurl.com/6nn82m6 + +Alexus: +http://soundcloud.com/alexusdnb +http://www.facebook.com/alexusmusic +http://www.myspace.com/alexusdnb + +Join Liquicity Records Soundcloud & Beatport! +http://soundcloud.com/liquicityrecords +http://beatport.com/label/liquicity-records/25942 + +[Liquicity Merchandise:] +EU: ‪http://liquicity.spreadshirt.nl/‬ +USA ‪http://liquicity.spreadshirt.com‬ + +Liquicity Facebook: +‪http://www.facebook.com/OfficialLiquicity‬Alexus - Mama Told MeSummer is here. Whether it would be outside or in your mind. It is here. +Original Artwork: http://tinyurl.com/cbpc8e8 +Share on Facebook: http://tinyurl.com/6nn82m6 + +Alexus: +http://soundcloud.com/alexusdnb +http://www.facebook.com/alexusmusic +http://www.myspace.com/alexusdnb + +Join Liquicity Records Soundcloud & Beatport! +http://soundcloud.com/liquicityrecords +http://beatport.com/label/liquicity-records/25942 + +[Liquicity Merchandise:] +EU: ‪http://liquicity.spreadshirt.nl/‬ +USA ‪http://liquicity.spreadshirt.com‬ + +Liquicity Facebook: +‪http://www.facebook.com/OfficialLiquicity‬2http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAj_s-ckQCISdIl6vbAGiRUp2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZSmooth - Shifting Sands feat. Shaz Sparks (part 2)Mindblowingly beautiful. + +OUT ON VIPER RECORDINGS + +Share on facebook! +http://tinyurl.com/8xks9pq + +BUY HERE: +Viper: http://bit.ly/A5ClWr +Beatport: http://bit.ly/xjwFW4 +Junodownload: http://bit.ly/zHj00e +Trackitdown: http://bit.ly/zXyNY8 +iTunes: http://bit.ly/xjs6OM + +SMOOTH LINKS +http://www.facebook.com/lukasmooth +http://www.soundcloud.com/lukasmooth +http://www.myspace.com/lukaakasmooth + +VIPER RECORDINGS +http://www.viperrecordings.co.uk +https://www.facebook.com/viperrecordings +http://www.soundcloud.com/viperrecordings +http://www.twitter.com/ViperRecordings +http://www.youtube.com/ViperChannelliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentMindblowingly beautiful. + +OUT ON VIPER RECORDINGS + +Share on facebook! +http://tinyurl.com/8xks9pq + +BUY HERE: +Viper: http://bit.ly/A5ClWr +Beatport: http://bit.ly/xjwFW4 +Junodownload: http://bit.ly/zHj00e +Trackitdown: http://bit.ly/zXyNY8 +iTunes: http://bit.ly/xjs6OM + +SMOOTH LINKS +http://www.facebook.com/lukasmooth +http://www.soundcloud.com/lukasmooth +http://www.myspace.com/lukaakasmooth + +VIPER RECORDINGS +http://www.viperrecordings.co.uk +https://www.facebook.com/viperrecordings +http://www.soundcloud.com/viperrecordings +http://www.twitter.com/ViperRecordings +http://www.youtube.com/ViperChannelSmooth - Shifting Sands feat. Shaz Sparks (part 2)Mindblowingly beautiful. + +OUT ON VIPER RECORDINGS + +Share on facebook! +http://tinyurl.com/8xks9pq + +BUY HERE: +Viper: http://bit.ly/A5ClWr +Beatport: http://bit.ly/xjwFW4 +Junodownload: http://bit.ly/zHj00e +Trackitdown: http://bit.ly/zXyNY8 +iTunes: http://bit.ly/xjs6OM + +SMOOTH LINKS +http://www.facebook.com/lukasmooth +http://www.soundcloud.com/lukasmooth +http://www.myspace.com/lukaakasmooth + +VIPER RECORDINGS +http://www.viperrecordings.co.uk +https://www.facebook.com/viperrecordings +http://www.soundcloud.com/viperrecordings +http://www.twitter.com/ViperRecordings +http://www.youtube.com/ViperChannel3http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAg_dlhcDkykYVJ0CTbxv-Xe2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZMaduk - Take You ThereLiquicity proudly presents it's 5th release. Out now on Liquicity Records! + +Buy the full EP here: http://tinyurl.com/cynvpl5 + +Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. + +Maduk links: +http://soundcloud.com/madukdnb +http://facebook.com/madukdnb + +Join Liquicity Records Soundcloud & Beatport!
 +http://soundcloud.com/liquicityrecords +
http://beatport.com/label/liquicity-records/25942 + +

[Liquicity Merchandise:]
 +EU: http://liquicity.spreadshirt.nl/ +
USA http://liquicity.spreadshirt.com

 + +Liquicity Facebook: +
http://www.facebook.com/OfficialLiquicityliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentLiquicity proudly presents it's 5th release. Out now on Liquicity Records! + +Buy the full EP here: http://tinyurl.com/cynvpl5 + +Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. + +Maduk links: +http://soundcloud.com/madukdnb +http://facebook.com/madukdnb + +Join Liquicity Records Soundcloud & Beatport!
 +http://soundcloud.com/liquicityrecords +
http://beatport.com/label/liquicity-records/25942 + +

[Liquicity Merchandise:]
 +EU: http://liquicity.spreadshirt.nl/ +
USA http://liquicity.spreadshirt.com

 + +Liquicity Facebook: +
http://www.facebook.com/OfficialLiquicityMaduk - Take You ThereLiquicity proudly presents it's 5th release. Out now on Liquicity Records! + +Buy the full EP here: http://tinyurl.com/cynvpl5 + +Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. + +Maduk links: +http://soundcloud.com/madukdnb +http://facebook.com/madukdnb + +Join Liquicity Records Soundcloud & Beatport!
 +http://soundcloud.com/liquicityrecords +
http://beatport.com/label/liquicity-records/25942 + +

[Liquicity Merchandise:]
 +EU: http://liquicity.spreadshirt.nl/ +
USA http://liquicity.spreadshirt.com

 + +Liquicity Facebook: +
http://www.facebook.com/OfficialLiquicity4http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAjUd1meezgJQPfqoWgi-Lk22012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZMaduk - Take You ThereLiquicity proudly presents it's 5th release. Out now on Liquicity Records! + +Buy the full EP here: http://tinyurl.com/cynvpl5 + +Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. + +Maduk links: +http://soundcloud.com/madukdnb +http://facebook.com/madukdnb + +Join Liquicity Records Soundcloud & Beatport!
 +http://soundcloud.com/liquicityrecords +
http://beatport.com/label/liquicity-records/25942 + +

[Liquicity Merchandise:]
 +EU: http://liquicity.spreadshirt.nl/ +
USA http://liquicity.spreadshirt.com

 + +Liquicity Facebook: +
http://www.facebook.com/OfficialLiquicityliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentLiquicity proudly presents it's 5th release. Out now on Liquicity Records! + +Buy the full EP here: http://tinyurl.com/cynvpl5 + +Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. + +Maduk links: +http://soundcloud.com/madukdnb +http://facebook.com/madukdnb + +Join Liquicity Records Soundcloud & Beatport!
 +http://soundcloud.com/liquicityrecords +
http://beatport.com/label/liquicity-records/25942 + +

[Liquicity Merchandise:]
 +EU: http://liquicity.spreadshirt.nl/ +
USA http://liquicity.spreadshirt.com

 + +Liquicity Facebook: +
http://www.facebook.com/OfficialLiquicityMaduk - Take You ThereLiquicity proudly presents it's 5th release. Out now on Liquicity Records! + +Buy the full EP here: http://tinyurl.com/cynvpl5 + +Maduk strikes again with his forthcoming single called "Take You There & Good Lovin EP" With this EP, Maduk combines both ingredients of chilled piano play with the fiery fury of oldskool organs to make the perfect Drum and Bass explosive. + +Maduk links: +http://soundcloud.com/madukdnb +http://facebook.com/madukdnb + +Join Liquicity Records Soundcloud & Beatport!
 +http://soundcloud.com/liquicityrecords +
http://beatport.com/label/liquicity-records/25942 + +

[Liquicity Merchandise:]
 +EU: http://liquicity.spreadshirt.nl/ +
USA http://liquicity.spreadshirt.com

 + +Liquicity Facebook: +
http://www.facebook.com/OfficialLiquicity5http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAijsc34j-QThSw4mflhBtC52012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZLoz Contreras - Sarajevo (Hosta Remix)[↓ SHARE on facebook! ↓] +http://tinyurl.com/3lyff9l + +Out on mrsuicidesheep's new label called "Seeking Blue"! + +Almost as good as the original. Wonderful piece of music! + +[LOZ CONTRERAS] +http://www.facebook.com/lozcontrerasuk +http://soundcloud.com/lozcontreras + +[HOSTA] +http://soundcloud.com/hosta +http://facebook.com/hostaUK + +[Seeking Blue links] +http://soundcloud.com/seeking-blue +http://www.facebook.com/SeekingBlueliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusic[↓ SHARE on facebook! ↓] +http://tinyurl.com/3lyff9l + +Out on mrsuicidesheep's new label called "Seeking Blue"! + +Almost as good as the original. Wonderful piece of music! + +[LOZ CONTRERAS] +http://www.facebook.com/lozcontrerasuk +http://soundcloud.com/lozcontreras + +[HOSTA] +http://soundcloud.com/hosta +http://facebook.com/hostaUK + +[Seeking Blue links] +http://soundcloud.com/seeking-blue +http://www.facebook.com/SeekingBlueLoz Contreras - Sarajevo (Hosta Remix)[↓ SHARE on facebook! ↓] +http://tinyurl.com/3lyff9l + +Out on mrsuicidesheep's new label called "Seeking Blue"! + +Almost as good as the original. Wonderful piece of music! + +[LOZ CONTRERAS] +http://www.facebook.com/lozcontrerasuk +http://soundcloud.com/lozcontreras + +[HOSTA] +http://soundcloud.com/hosta +http://facebook.com/hostaUK + +[Seeking Blue links] +http://soundcloud.com/seeking-blue +http://www.facebook.com/SeekingBlue6http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAi9VdJuAmY1nqzSDzTz8wP02012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZImogen Heap - Headlock (High Contrast Remix)A High Contrast remix of the song headlock, produced by Imogen Heap. + +Brought you by Liquicity.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicA High Contrast remix of the song headlock, produced by Imogen Heap. + +Brought you by Liquicity.Imogen Heap - Headlock (High Contrast Remix)A High Contrast remix of the song headlock, produced by Imogen Heap. + +Brought you by Liquicity.7http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAgmnru8BE0EEnUngjSggztO2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZSnakehips - The Years (Loz Contreras Remix)Purified love. + +Share it on your facebook wall: +http://tinyurl.com/77lq22b + +Loz Contreras: +http://Facebook.com/lozcontrerasuk +http://Soundcloud.com/lozcontreras + +Snakehips: +http://soundcloud.com/snakehips-1liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentPurified love. + +Share it on your facebook wall: +http://tinyurl.com/77lq22b + +Loz Contreras: +http://Facebook.com/lozcontrerasuk +http://Soundcloud.com/lozcontreras + +Snakehips: +http://soundcloud.com/snakehips-1Snakehips - The Years (Loz Contreras Remix)Purified love. + +Share it on your facebook wall: +http://tinyurl.com/77lq22b + +Loz Contreras: +http://Facebook.com/lozcontrerasuk +http://Soundcloud.com/lozcontreras + +Snakehips: +http://soundcloud.com/snakehips-18http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAhQS7wUsKf5kFe1ckRNcG_52012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZStan SB - Tears in rainGrabs you and throws you up in the air at the speed of light.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicGrabs you and throws you up in the air at the speed of light.Stan SB - Tears in rainGrabs you and throws you up in the air at the speed of light.9http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAi02PAGANFuRZDTSAr3PVtr2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZWillem de Roo - Morning WalkStunningly beautiful liquid music, by a dutch artist. + +Artist information: +http://www.youtube.com/XciterMusic +http://www.myspace.com/willemderoo +willem.de.roo@home.nl (email/msn) + +Liquicity is supporting "EURAYKA". It's is an innovation platform for all styles of music. Not just new songs, but new concepts. They bring you new sounds, create genres & open new doors. Invent new music. + +Make sure you subscribe. It's a project that will take music to a new level.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicStunningly beautiful liquid music, by a dutch artist. + +Artist information: +http://www.youtube.com/XciterMusic +http://www.myspace.com/willemderoo +willem.de.roo@home.nl (email/msn) + +Liquicity is supporting "EURAYKA". It's is an innovation platform for all styles of music. Not just new songs, but new concepts. They bring you new sounds, create genres & open new doors. Invent new music. + +Make sure you subscribe. It's a project that will take music to a new level.Willem de Roo - Morning WalkStunningly beautiful liquid music, by a dutch artist. + +Artist information: +http://www.youtube.com/XciterMusic +http://www.myspace.com/willemderoo +willem.de.roo@home.nl (email/msn) + +Liquicity is supporting "EURAYKA". It's is an innovation platform for all styles of music. Not just new songs, but new concepts. They bring you new sounds, create genres & open new doors. Invent new music. + +Make sure you subscribe. It's a project that will take music to a new level.10http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAhfrzPsfzHG6bOdCbMWHmp12012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZBass Tikal & Mex-E - The MusicLove instruments and mc fits pretty good into it too. Bass Tikal is just Talented as hell.liquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusicLove instruments and mc fits pretty good into it too. Bass Tikal is just Talented as hell.Bass Tikal & Mex-E - The MusicLove instruments and mc fits pretty good into it too. Bass Tikal is just Talented as hell.11http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAiaJ4VYu4zNvyviDJaK83cH2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZBcee - Count the stars (Joe Syntax Remix)Magical! - Shared on Facebook in 1 second: +http://tinyurl.com/7r4tnp9 + +Forthcoming end of March! I'll keep you up to date. + +Joe syntax +http://www.facebook.com/joesyntax?ref=ts +http://www.medschoolmusic.com/artists/joesyntax/ + +Bcee +http://www.facebook.com/pages/BCee/74619557919 +http://twitter.com/#!/stevebcee + +Spearhead Records +http://www.facebook.com/pages/Spearhead-Records/10011018134 +http://soundcloud.com/spearheadrecords +http://www.spearheadrecords.co.uk/ +http://www.myspace.com/spearheadrecords + +[Liquicity Merchandise:] +EU: http://liquicity.spreadshirt.nl/ +USA http://liquicity.spreadshirt.com + +Liquicity Facebook: +http://www.facebook.com/OfficialLiquicityliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityEntertainmentMagical! - Shared on Facebook in 1 second: +http://tinyurl.com/7r4tnp9 + +Forthcoming end of March! I'll keep you up to date. + +Joe syntax +http://www.facebook.com/joesyntax?ref=ts +http://www.medschoolmusic.com/artists/joesyntax/ + +Bcee +http://www.facebook.com/pages/BCee/74619557919 +http://twitter.com/#!/stevebcee + +Spearhead Records +http://www.facebook.com/pages/Spearhead-Records/10011018134 +http://soundcloud.com/spearheadrecords +http://www.spearheadrecords.co.uk/ +http://www.myspace.com/spearheadrecords + +[Liquicity Merchandise:] +EU: http://liquicity.spreadshirt.nl/ +USA http://liquicity.spreadshirt.com + +Liquicity Facebook: +http://www.facebook.com/OfficialLiquicityBcee - Count the stars (Joe Syntax Remix)Magical! - Shared on Facebook in 1 second: +http://tinyurl.com/7r4tnp9 + +Forthcoming end of March! I'll keep you up to date. + +Joe syntax +http://www.facebook.com/joesyntax?ref=ts +http://www.medschoolmusic.com/artists/joesyntax/ + +Bcee +http://www.facebook.com/pages/BCee/74619557919 +http://twitter.com/#!/stevebcee + +Spearhead Records +http://www.facebook.com/pages/Spearhead-Records/10011018134 +http://soundcloud.com/spearheadrecords +http://www.spearheadrecords.co.uk/ +http://www.myspace.com/spearheadrecords + +[Liquicity Merchandise:] +EU: http://liquicity.spreadshirt.nl/ +USA http://liquicity.spreadshirt.com + +Liquicity Facebook: +http://www.facebook.com/OfficialLiquicity12http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAjA-xSrMMdD3Q8Q-sC4FctI2012-05-12T12:22:22.000Z1970-01-01T00:00:00.000ZMEMRO - HOMECOMING (OUT NOW)Talented young dnb producer Will a.k.a. Memro has his first release out on Liquicity records! This is the second release on Liquicity records with more to come! + +Buy now! (Available in more stores this week!) + +NU URBAN SHOP: +http://nu-urbanmusic.co.uk/drum_and_bass/shop/advanced_search_result.php?search_in_description=0&keywords=LIQ002 + +DIGITAL-TUNES.NET +http://digital-tunes.net/releases/homecoming___trick_of_the_tail + +JUNO +http://juno.co.uk/artists/Memro/download/ +http://junodownload.com/artists/Memro/releases/ + +BEATPORT +https://www.beatport.com/en-US/html...EntityId=142446 + +TRACKITDOWN +http://www.trackitdown.net/search/keyword?q=memro + +ITUNES +http://itunes.apple.com/gb/album/homecoming/id373056576?i=373056583 + +MEMRO'S YOUTUBE: +http://youtube.com/user/MemroMusicliquicityhttp://gdata.youtube.com/feeds/api/users/liquicityMusic