summaryrefslogtreecommitdiffstats
path: root/vendor
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-21 13:53:36 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-21 13:53:47 +0100
commit8ddead06277f7c863fe048e9990d4c9ce0c24424 (patch)
tree699416065dcf10871bf416164f36f1d05a03a480 /vendor
parent3306d28e2d45fa03c2ca5b93de45ad59e7aad3f0 (diff)
fix #660
Diffstat (limited to 'vendor')
-rw-r--r--vendor/autoload.php2
-rw-r--r--vendor/composer/autoload_real.php10
-rw-r--r--vendor/composer/installed.json12
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php5
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php4
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php5
-rw-r--r--vendor/fguillot/picofeed/tests/fixtures/youtube.xml979
7 files changed, 1002 insertions, 15 deletions
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 @@
+<?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:media='http://search.yahoo.com/mrss/' xmlns:yt='http://gdata.youtube.com/schemas/2007' xmlns:gd='http://schemas.google.com/g/2005'><id>http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0</id><updated>2014-05-24T09:13:20.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#playlist'/><title type='text'>Liquid DnB Playlist</title><subtitle type='text'/><logo>http://www.gstatic.com/youtube/img/logo.png</logo><link rel='alternate' type='text/html' href='http://www.youtube.com/playlist?list=PLD50E7DEEB70F4CE0'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/batch'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0?start-index=1&amp;max-results=25'/><link rel='next' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0?start-index=26&amp;max-results=25'/><author><name>vGWKz</name><uri>http://gdata.youtube.com/feeds/api/users/vGWKz</uri></author><generator version='2.1' uri='http://gdata.youtube.com'>YouTube data API</generator><openSearch:totalResults>139</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><media:group><media:content url='http://www.youtube.com/p/PLD50E7DEEB70F4CE0' type='application/x-shockwave-flash' yt:format='5'/><media:thumbnail url='https://i.ytimg.com/vi/PKVE7HZX0-k/default.jpg' height='90' width='120' yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/PKVE7HZX0-k/mqdefault.jpg' height='180' width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/PKVE7HZX0-k/hqdefault.jpg' height='360' width='480' yt:name='hqdefault'/><media:title type='plain'>Liquid DnB Playlist</media:title></media:group><yt:playlistId>PLD50E7DEEB70F4CE0</yt:playlistId><entry><id>http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAirQeZjp907Md1oNURqyxGK</id><published>2012-05-12T12:22:22.000Z</published><updated>1970-01-01T00:00:00.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Music' label='Music'/><title type='text'>Breakshift - Before You Notice Her</title><content type='text'>New 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/</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=PKVE7HZX0-k&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/PKVE7HZX0-k/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=PKVE7HZX0-k'/><link rel='related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/PKVE7HZX0-k'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAirQeZjp907Md1oNURqyxGK'/><author><name>liquicity</name><uri>http://gdata.youtube.com/feeds/api/users/liquicity</uri></author><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' href='http://gdata.youtube.com/feeds/api/videos/PKVE7HZX0-k/comments' countHint='365'/></gd:comments><yt:hd/><media:group><media:category label='Music' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Music</media:category><media:content url='http://www.youtube.com/v/PKVE7HZX0-k?version=3&amp;f=playlists&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='324' yt:format='5'/><media:content url='rtsp://r2---sn-jc47eu76.c.youtube.com/CiULENy73wIaHAnp01d27ESlPBMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='324' yt:format='1'/><media:content url='rtsp://r2---sn-jc47eu76.c.youtube.com/CiULENy73wIaHAnp01d27ESlPBMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='324' yt:format='6'/><media:description type='plain'>New 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/</media:description><media:keywords/><media:player url='http://www.youtube.com/watch?v=PKVE7HZX0-k&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/PKVE7HZX0-k/0.jpg' height='360' width='480' time='00:02:42'/><media:thumbnail url='http://i.ytimg.com/vi/PKVE7HZX0-k/1.jpg' height='90' width='120' time='00:01:21'/><media:thumbnail url='http://i.ytimg.com/vi/PKVE7HZX0-k/2.jpg' height='90' width='120' time='00:02:42'/><media:thumbnail url='http://i.ytimg.com/vi/PKVE7HZX0-k/3.jpg' height='90' width='120' time='00:04:03'/><media:title type='plain'>Breakshift - Before You Notice Her</media:title><yt:duration seconds='324'/></media:group><gd:rating average='4.9607034' max='5' min='1' numRaters='1934' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='150739'/><yt:description>New 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/</yt:description><yt:position>1</yt:position></entry><entry><id>http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAgU28JMj24hRvbmlk6bSRiT</id><published>2012-05-12T12:22:22.000Z</published><updated>1970-01-01T00:00:00.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><title type='text'>Alexus - Mama Told Me</title><content type='text'>Summer 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 &amp; 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‬</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=x96Ifg4PZ0E&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/x96Ifg4PZ0E/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=x96Ifg4PZ0E'/><link rel='related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/x96Ifg4PZ0E'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAgU28JMj24hRvbmlk6bSRiT'/><author><name>liquicity</name><uri>http://gdata.youtube.com/feeds/api/users/liquicity</uri></author><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' href='http://gdata.youtube.com/feeds/api/videos/x96Ifg4PZ0E/comments' countHint='469'/></gd:comments><yt:hd/><media:group><media:category label='Entertainment' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Entertainment</media:category><media:content url='http://www.youtube.com/v/x96Ifg4PZ0E?version=3&amp;f=playlists&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='352' yt:format='5'/><media:content url='rtsp://r5---sn-jc47eu7l.c.youtube.com/CiULENy73wIaHAlBZw8OfojexxMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='352' yt:format='1'/><media:content url='rtsp://r5---sn-jc47eu7l.c.youtube.com/CiULENy73wIaHAlBZw8OfojexxMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='352' yt:format='6'/><media:description type='plain'>Summer 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 &amp; 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‬</media:description><media:keywords/><media:player url='http://www.youtube.com/watch?v=x96Ifg4PZ0E&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/x96Ifg4PZ0E/0.jpg' height='360' width='480' time='00:02:56'/><media:thumbnail url='http://i.ytimg.com/vi/x96Ifg4PZ0E/1.jpg' height='90' width='120' time='00:01:28'/><media:thumbnail url='http://i.ytimg.com/vi/x96Ifg4PZ0E/2.jpg' height='90' width='120' time='00:02:56'/><media:thumbnail url='http://i.ytimg.com/vi/x96Ifg4PZ0E/3.jpg' height='90' width='120' time='00:04:24'/><media:title type='plain'>Alexus - Mama Told Me</media:title><yt:duration seconds='352'/></media:group><gd:rating average='4.93527' max='5' min='1' numRaters='2410' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='134091'/><yt:description>Summer 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 &amp; 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‬</yt:description><yt:position>2</yt:position></entry><entry><id>http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAj_s-ckQCISdIl6vbAGiRUp</id><published>2012-05-12T12:22:22.000Z</published><updated>1970-01-01T00:00:00.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><title type='text'>Smooth - Shifting Sands feat. Shaz Sparks (part 2)</title><content type='text'>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/ViperChannel</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=ZQ0OUvvYJ0k&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/ZQ0OUvvYJ0k/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=ZQ0OUvvYJ0k'/><link rel='related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/ZQ0OUvvYJ0k'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAj_s-ckQCISdIl6vbAGiRUp'/><author><name>liquicity</name><uri>http://gdata.youtube.com/feeds/api/users/liquicity</uri></author><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' href='http://gdata.youtube.com/feeds/api/videos/ZQ0OUvvYJ0k/comments' countHint='287'/></gd:comments><yt:hd/><media:group><media:category label='Entertainment' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Entertainment</media:category><media:content url='http://www.youtube.com/v/ZQ0OUvvYJ0k?version=3&amp;f=playlists&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='245' yt:format='5'/><media:content url='rtsp://r5---sn-jc47eu7d.c.youtube.com/CiULENy73wIaHAlJJ9j7Ug4NZRMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='245' yt:format='1'/><media:content url='rtsp://r5---sn-jc47eu7d.c.youtube.com/CiULENy73wIaHAlJJ9j7Ug4NZRMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='245' yt:format='6'/><media:description type='plain'>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/ViperChannel</media:description><media:keywords/><media:player url='http://www.youtube.com/watch?v=ZQ0OUvvYJ0k&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/ZQ0OUvvYJ0k/0.jpg' height='360' width='480' time='00:02:02.500'/><media:thumbnail url='http://i.ytimg.com/vi/ZQ0OUvvYJ0k/1.jpg' height='90' width='120' time='00:01:01.250'/><media:thumbnail url='http://i.ytimg.com/vi/ZQ0OUvvYJ0k/2.jpg' height='90' width='120' time='00:02:02.500'/><media:thumbnail url='http://i.ytimg.com/vi/ZQ0OUvvYJ0k/3.jpg' height='90' width='120' time='00:03:03.750'/><media:title type='plain'>Smooth - Shifting Sands feat. Shaz Sparks (part 2)</media:title><yt:duration seconds='245'/></media:group><gd:rating average='4.9475985' max='5' min='1' numRaters='2290' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='175192'/><yt:description>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/ViperChannel</yt:description><yt:position>3</yt:position></entry><entry><id>http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAg_dlhcDkykYVJ0CTbxv-Xe</id><published>2012-05-12T12:22:22.000Z</published><updated>1970-01-01T00:00:00.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><title type='text'>Maduk - Take You There</title><content type='text'>Liquicity 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 &amp; 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 &amp; 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</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=0QZMAMl-O1Q&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/0QZMAMl-O1Q/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=0QZMAMl-O1Q'/><link rel='related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/0QZMAMl-O1Q'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAg_dlhcDkykYVJ0CTbxv-Xe'/><author><name>liquicity</name><uri>http://gdata.youtube.com/feeds/api/users/liquicity</uri></author><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' href='http://gdata.youtube.com/feeds/api/videos/0QZMAMl-O1Q/comments' countHint='665'/></gd:comments><yt:hd/><media:group><media:category label='Entertainment' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Entertainment</media:category><media:content url='http://www.youtube.com/v/0QZMAMl-O1Q?version=3&amp;f=playlists&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='253' yt:format='5'/><media:content url='rtsp://r6---sn-jc47eu7r.c.youtube.com/CiULENy73wIaHAlUO37JAEwG0RMYDSANFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='253' yt:format='1'/><media:content url='rtsp://r6---sn-jc47eu7r.c.youtube.com/CiULENy73wIaHAlUO37JAEwG0RMYESARFEgGUglwbGF5bGlzdHMM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='253' yt:format='6'/><media:description type='plain'>Liquicity 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 &amp; 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 &amp; 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</media:description><media:keywords/><media:player url='http://www.youtube.com/watch?v=0QZMAMl-O1Q&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/0QZMAMl-O1Q/0.jpg' height='360' width='480' time='00:02:06.500'/><media:thumbnail url='http://i.ytimg.com/vi/0QZMAMl-O1Q/1.jpg' height='90' width='120' time='00:01:03.250'/><media:thumbnail url='http://i.ytimg.com/vi/0QZMAMl-O1Q/2.jpg' height='90' width='120' time='00:02:06.500'/><media:thumbnail url='http://i.ytimg.com/vi/0QZMAMl-O1Q/3.jpg' height='90' width='120' time='00:03:09.750'/><media:title type='plain'>Maduk - Take You There</media:title><yt:duration seconds='253'/></media:group><gd:rating average='4.964258' max='5' min='1' numRaters='3917' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='312571'/><yt:description>Liquicity 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 &amp; 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 &amp; 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</yt:description><yt:position>4</yt:position></entry><entry><id>http://gdata.youtube.com/feeds/api/playlists/PLD50E7DEEB70F4CE0/PLJKY3jcJBwAjUd1meezgJQPfqoWgi-Lk2</id><published>2012-05-12T12:22:22.000Z</published><updated>1970-01-01T00:00:00.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><title type='text'>Maduk - Take You There</title><content type='text'>Liquicity 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 &amp; 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 &amp; 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</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=0QZMAMl-O1Q&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/0QZMAMl-O1Q/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://