summaryrefslogtreecommitdiffstats
path: root/vendor
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-12-17 09:01:54 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-12-17 09:02:13 +0100
commit867cb7dbf960dc0cfbf7e59d656d1337bb59c526 (patch)
tree5bbdf1eef51cd3747f55ef2c524364f9cd3bf029 /vendor
parenta813b535eeb517e0ccd69a90d0058756014a1e01 (diff)
update picofeed, fix #695
Diffstat (limited to 'vendor')
-rw-r--r--vendor/autoload.php2
-rw-r--r--vendor/composer/ClassLoader.php6
-rw-r--r--vendor/composer/autoload_real.php10
-rw-r--r--vendor/composer/installed.json10
-rw-r--r--vendor/fguillot/picofeed/README.markdown1
-rw-r--r--vendor/fguillot/picofeed/docs/config.markdown23
-rw-r--r--vendor/fguillot/picofeed/docs/favicon.markdown37
-rw-r--r--vendor/fguillot/picofeed/docs/feed-parsing.markdown13
-rw-r--r--vendor/fguillot/picofeed/docs/image-proxy.markdown66
-rw-r--r--vendor/fguillot/picofeed/example.php45
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php40
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Client/Url.php14
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Config/Config.php4
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Filter/Attribute.php75
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Filter/Filter.php32
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Filter/Html.php2
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php89
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Parser/Feed.php29
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php37
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php108
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php63
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Reader/Favicon.php (renamed from vendor/fguillot/picofeed/lib/PicoFeed/Client/Favicon.php)69
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php43
-rw-r--r--vendor/fguillot/picofeed/tests/Client/ClientTest.php20
-rw-r--r--vendor/fguillot/picofeed/tests/Filter/AttributeFilterTest.php49
-rw-r--r--vendor/fguillot/picofeed/tests/Filter/FilterTest.php35
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php29
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/ItemTest.php24
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/ParserTest.php11
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php11
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php21
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php5
-rw-r--r--vendor/fguillot/picofeed/tests/Parser/Rss92ParserTest.php5
-rw-r--r--vendor/fguillot/picofeed/tests/Reader/FaviconTest.php (renamed from vendor/fguillot/picofeed/tests/Client/FaviconTest.php)19
-rw-r--r--vendor/fguillot/picofeed/tests/Reader/ReaderTest.php11
-rw-r--r--vendor/fguillot/picofeed/tests/fixtures/podbean.xml1596
36 files changed, 2342 insertions, 312 deletions
diff --git a/vendor/autoload.php b/vendor/autoload.php
index 357c2c52a..f8495def9 100644
--- a/vendor/autoload.php
+++ b/vendor/autoload.php
@@ -4,4 +4,4 @@
require_once __DIR__ . '/composer' . '/autoload_real.php';
-return ComposerAutoloaderInit80e526884d05a69ec5f87ea0eadf0d03::getLoader();
+return ComposerAutoloaderInitb70f37963a41b6db289ef240676024ef::getLoader();
diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php
index 443364959..70d78bc3f 100644
--- a/vendor/composer/ClassLoader.php
+++ b/vendor/composer/ClassLoader.php
@@ -56,7 +56,11 @@ class ClassLoader
public function getPrefixes()
{
- return call_user_func_array('array_merge', $this->prefixesPsr0);
+ if (!empty($this->prefixesPsr0)) {
+ return call_user_func_array('array_merge', $this->prefixesPsr0);
+ }
+
+ return array();
}
public function getPrefixesPsr4()
diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php
index bc6f011c7..113cd5ee5 100644
--- a/vendor/composer/autoload_real.php
+++ b/vendor/composer/autoload_real.php
@@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
-class ComposerAutoloaderInit80e526884d05a69ec5f87ea0eadf0d03
+class ComposerAutoloaderInitb70f37963a41b6db289ef240676024ef
{
private static $loader;
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit80e526884d05a69ec5f87ea0eadf0d03
return self::$loader;
}
- spl_autoload_register(array('ComposerAutoloaderInit80e526884d05a69ec5f87ea0eadf0d03', 'loadClassLoader'), true, true);
+ spl_autoload_register(array('ComposerAutoloaderInitb70f37963a41b6db289ef240676024ef', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
- spl_autoload_unregister(array('ComposerAutoloaderInit80e526884d05a69ec5f87ea0eadf0d03', 'loadClassLoader'));
+ spl_autoload_unregister(array('ComposerAutoloaderInitb70f37963a41b6db289ef240676024ef', 'loadClassLoader'));
$includePaths = require __DIR__ . '/include_paths.php';
array_push($includePaths, get_include_path());
@@ -46,14 +46,14 @@ class ComposerAutoloaderInit80e526884d05a69ec5f87ea0eadf0d03
$includeFiles = require __DIR__ . '/autoload_files.php';
foreach ($includeFiles as $file) {
- composerRequire80e526884d05a69ec5f87ea0eadf0d03($file);
+ composerRequireb70f37963a41b6db289ef240676024ef($file);
}
return $loader;
}
}
-function composerRequire80e526884d05a69ec5f87ea0eadf0d03($file)
+function composerRequireb70f37963a41b6db289ef240676024ef($file)
{
require $file;
}
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index 7c9dac276..2a5124d70 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -119,20 +119,20 @@
"source": {
"type": "git",
"url": "https://github.com/fguillot/picoFeed.git",
- "reference": "687cc58b51d739f06bc1729d69280e5a867840dd"
+ "reference": "6485f32d62698be73c3f0456bb87d960fcae1586"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fguillot/picoFeed/zipball/687cc58b51d739f06bc1729d69280e5a867840dd",
- "reference": "687cc58b51d739f06bc1729d69280e5a867840dd",
+ "url": "https://api.github.com/repos/fguillot/picoFeed/zipball/6485f32d62698be73c3f0456bb87d960fcae1586",
+ "reference": "6485f32d62698be73c3f0456bb87d960fcae1586",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
- "time": "2014-11-25 23:40:52",
+ "time": "2014-12-16 23:53:59",
"type": "library",
- "installation-source": "source",
+ "installation-source": "dist",
"autoload": {
"psr-0": {
"PicoFeed": "lib/"
diff --git a/vendor/fguillot/picofeed/README.markdown b/vendor/fguillot/picofeed/README.markdown
index 868d532e9..a1e1e39c5 100644
--- a/vendor/fguillot/picofeed/README.markdown
+++ b/vendor/fguillot/picofeed/README.markdown
@@ -59,6 +59,7 @@ Documentation
- [Favicon fetcher](docs/favicon.markdown)
- [OPML file importation](docs/opml-import.markdown)
- [OPML file exportation](docs/opml-export.markdown)
+- [Image proxy](docs/image-proxy.markdown) (avoid SSL mixed content warnings)
- [Web scraping](docs/grabber.markdown)
- [Exceptions](docs/exceptions.markdown)
- [Debugging](docs/debugging.markdown)
diff --git a/vendor/fguillot/picofeed/docs/config.markdown b/vendor/fguillot/picofeed/docs/config.markdown
index 5e0dfea53..75546abd1 100644
--- a/vendor/fguillot/picofeed/docs/config.markdown
+++ b/vendor/fguillot/picofeed/docs/config.markdown
@@ -261,3 +261,26 @@ $config->setFilterSchemeWhitelist(['http://', 'ftp://']);
```php
$config->setFilterWhitelistedTags(['a' => ['href'], 'img' => ['src', 'title']]);
```
+
+### Define a image proxy url
+
+- Method name: `setFilterImageProxyUrl()`
+- Default value: Empty
+- Argument value: string
+
+```php
+$config->setFilterImageProxyUrl('http://myproxy.example.org/?url=%s');
+```
+
+### Define a image proxy callback
+
+- Method name: `setFilterImageProxyCallback()`
+- Default value: null
+- Argument value: Closure
+
+```php
+$config->setFilterImageProxyCallback(function ($image_url) {
+ $key = hash_hmac('sha1', $image_url, 'secret');
+ return 'https://mypublicproxy/'.$key.'/'.urlencode($image_url);
+});
+``` \ No newline at end of file
diff --git a/vendor/fguillot/picofeed/docs/favicon.markdown b/vendor/fguillot/picofeed/docs/favicon.markdown
index 14e25955d..1ac3ee1fc 100644
--- a/vendor/fguillot/picofeed/docs/favicon.markdown
+++ b/vendor/fguillot/picofeed/docs/favicon.markdown
@@ -5,7 +5,7 @@ Find and download the favicon
-----------------------------
```php
-use PicoFeed\Client\Favicon;
+use PicoFeed\Reader\Favicon;
$favicon = new Favicon;
@@ -21,11 +21,42 @@ PicoFeed will try first to find the favicon from the meta tags and fallback to t
When the HTML page is parsed, relative links and protocol relative links are converted to absolute url.
+Get Favicon file type
+---------------------
+
+It's possible to fetch the image type, this information come from the Content-Type HTTP header:
+
+```php
+$favicon = new Favicon;
+$favicon->find('http://example.net/');
+
+echo $favicon->getType();
+
+// Will output the content type, by example "image/png"
+```
+
+Get the Favicon as Data URI
+---------------------------
+
+You can also get the whole image as Data URI.
+It's useful if you want to store the icon in your database and avoid too many HTTP requests.
+
+```php
+$favicon = new Favicon;
+$favicon->find('http://example.net/');
+
+echo $favicon->getDataUri();
+
+// Output something like that: data:image/png;base64,iVBORw0KGgoAAAANSUh.....
+```
+
+See: http://en.wikipedia.org/wiki/Data_URI_scheme
+
Check if a favicon link exists
------------------------------
```php
-use PicoFeed\Client\Favicon;
+use PicoFeed\Reader\Favicon;
$favicon = new Favicon;
@@ -40,7 +71,7 @@ Like other classes, the Favicon class support the Config object as constructor a
```php
use PicoFeed\Config\Config;
-use PicoFeed\Client\Favicon;
+use PicoFeed\Reader\Favicon;
$config = new Config;
$config->setClientUserAgent('My RSS Reader');
diff --git a/vendor/fguillot/picofeed/docs/feed-parsing.markdown b/vendor/fguillot/picofeed/docs/feed-parsing.markdown
index df881400e..82d3703e9 100644
--- a/vendor/fguillot/picofeed/docs/feed-parsing.markdown
+++ b/vendor/fguillot/picofeed/docs/feed-parsing.markdown
@@ -43,7 +43,8 @@ Output:
```bash
Feed::id = tag:linuxfr.org,2005:/news
Feed::title = LinuxFr.org : les dépêches
-Feed::url = http://linuxfr.org/news
+Feed::feed_url = http://linuxfr.org/news.atom
+Feed::site_url = http://linuxfr.org/news
Feed::date = 1415138079
Feed::language = en-US
Feed::description =
@@ -58,6 +59,7 @@ Item::language = en-US
Item::author = Syvolc
Item::enclosure_url =
Item::enclosure_type =
+Item::isRTL() = false
Item::content = 18307 bytes
....
```
@@ -181,7 +183,8 @@ Feed and item properties
// Feed object
$feed->getId(); // Unique feed id
$feed->getTitle(); // Feed title
-$feed->getUrl(); // Website url
+$feed->getFeedUrl(); // Feed url
+$feed->getSiteUrl(); // Website url
$feed->getDate(); // Feed last updated date
$feed->getLanguage(); // Feed language
$feed->getDescription(); // Feed description
@@ -198,16 +201,16 @@ $feed->items[0]->getAuthor(); // Item author
$feed->items[0]->getEnclosureUrl(); // Enclosure url
$feed->items[0]->getEnclosureType(); // Enclosure mime-type (audio/mp3, image/png...)
$feed->items[0]->getContent(); // Item content (filtered or raw)
+$feed->items[0]->isRTL(); // Return true if the item language is Right-To-Left
```
RTL language detection
----------------------
-There is an utility method to determine if a language code is Right-To-Left or not:
+Use the method `Item::isRTL()` to test if an item is RTL or not:
```php
-// Return true if RTL
-Parser::isLanguageRTL($item->getLanguage());
+var_dump($item->isRTL()); // true or false
```
Known RTL languages are:
diff --git a/vendor/fguillot/picofeed/docs/image-proxy.markdown b/vendor/fguillot/picofeed/docs/image-proxy.markdown
new file mode 100644
index 000000000..74e10d0c6
--- /dev/null
+++ b/vendor/fguillot/picofeed/docs/image-proxy.markdown
@@ -0,0 +1,66 @@
+Image Proxy
+===========
+
+To prevent mixed content warnings on SSL pages served from your RSS reader you might want to use an assets proxy.
+
+Images url will be rewritten to be downloaded through the proxy.
+
+Example:
+
+```html
+<img src="http://example.org/image.png"/>
+```
+
+Can be rewritten like that:
+
+```html
+<img src="http://myproxy.example.org/?url=http%3A%2F%2Fexample.org%2Fimage.png"/>
+```
+
+Currently this feature is only compatible with images.
+
+There is several open source SSL image proxy available like [Camo](https://github.com/atmos/camo).
+You can also write your own proxy.
+
+Usage
+-----
+
+There two different ways to use this feature, define a proxy url or a callback.
+
+### Define a proxy url
+
+A proxy url must be defined with a placeholder `%s`.
+The placeholder will be replaced by the image source urlencoded.
+
+```php
+$config = new Config;
+$config->setFilterImageProxyUrl('http://myproxy.example.org/?url=%s');
+```
+
+Will rewrite the image source like that:
+
+```html
+<img src="http://myproxy.example.org/?url=http%3A%2F%2Fexample.org%2Fimage.png"/>
+```
+
+### Define a callback
+
+Your callback will be called each time an image url need to be rewritten.
+The first argument is the original image url and your function must returns the new image url.
+
+Here an example if your proxy need a shared secret key:
+
+```php
+$config = new Config;
+
+$config->setFilterImageProxyCallback(function ($image_url) {
+ $key = hash_hmac('sha1', $image_url, 'secret');
+ return 'https://mypublicproxy/'.$key.'/'.urlencode($image_url);
+});
+```
+
+Will generate an image url like that:
+
+```html
+<img src="https://mypublicproxy/4924964043f3119b3cf2b07b1922d491bcc20092/http%3A%2F%2Ffoo%2Fimage.png"/>
+```
diff --git a/vendor/fguillot/picofeed/example.php b/vendor/fguillot/picofeed/example.php
deleted file mode 100644
index 6bf9b6e20..000000000
--- a/vendor/fguillot/picofeed/example.php
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-require 'vendor/autoload.php';
-
-use PicoFeed\Reader\Reader;
-use PicoFeed\PicoFeedException;
-
-try {
-
- // Fetch from your database the previous values of the Etag and LastModified headers
- $etag = '...';
- $last_modified = '...';
-
- $reader = new Reader;
-
- // Provide those values to the download method
- $resource = $reader->download('http://linuxfr.org/news.atom', $last_modified, $etag);
-
- if ($resource->isModified()) {
-
- $parser = $reader->getParser(
- $resource->getUrl(),
- $resource->getContent(),
- $resource->getEncoding()
- );
-
- $feed = $parser->execute();
-
- // Save your feed in your database
- // ...
-
- // Store the Etag and the LastModified headers in your database
- $etag = $resource->getEtag();
- $last_modified = $resource->getLastModified();
-
- // ...
- }
- else {
-
- echo 'Not modified, nothing to do!';
- }
-}
-catch (PicoFeedException $e) {
- // Do something...
-}
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php
index e962ba4e8..c8c812c1a 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php
@@ -22,6 +22,14 @@ abstract class Client
private $is_modified = true;
/**
+ * HTTP Content-Type
+ *
+ * @access private
+ * @var string
+ */
+ private $content_type = '';
+
+ /**
* HTTP encoding
*
* @access private
@@ -231,7 +239,8 @@ abstract class Client
{
if ($response['status'] == 200) {
$this->content = $response['body'];
- $this->encoding = $this->findCharset($response);
+ $this->content_type = $this->findContentType($response);
+ $this->encoding = $this->findCharset();
}
}
@@ -249,14 +258,26 @@ abstract class Client
}
/**
- * Find charset from response headers
+ * Find content type from response headers
*
* @access public
* @param array $response Client response
+ * @return string
*/
- public function findCharset(array $response)
+ public function findContentType(array $response)
{
- $result = explode('charset=', strtolower($this->getHeader($response, 'Content-Type')));
+ return strtolower($this->getHeader($response, 'Content-Type'));
+ }
+
+ /**
+ * Find charset from response headers
+ *
+ * @access public
+ * @return string
+ */
+ public function findCharset()
+ {
+ $result = explode('charset=', $this->content_type);
return isset($result[1]) ? $result[1] : '';
}
@@ -390,6 +411,17 @@ abstract class Client
}
/**
+ * Get the content type value from HTTP headers
+ *
+ * @access public
+ * @return string
+ */
+ public function getContentType()
+ {
+ return $this->content_type;
+ }
+
+ /**
* Get the encoding value from HTTP headers
*
* @access public
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Url.php b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Url.php
index 90d7fb6f7..a74c23508 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Url.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Url.php
@@ -80,6 +80,20 @@ class Url
}
/**
+ * Shortcut method to get a base url
+ *
+ * @static
+ * @access public
+ * @param string $url
+ * @return string
+ */
+ public static function base($url)
+ {
+ $link = new Url($url);
+ return $link->getBaseUrl();
+ }
+
+ /**
* Get the base URL
*
* @access public
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Config/Config.php b/vendor/fguillot/picofeed/lib/PicoFeed/Config/Config.php
index 298b9a2d7..9a5381f0f 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Config/Config.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Config/Config.php
@@ -30,6 +30,8 @@ namespace PicoFeed\Config;
* @method \PicoFeed\Config\Config setFilterSchemeWhitelist(array $value)
* @method \PicoFeed\Config\Config setFilterWhitelistedTags(array $value)
* @method \PicoFeed\Config\Config setFilterBlacklistedTags(array $value)
+ * @method \PicoFeed\Config\Config setFilterImageProxyUrl($value)
+ * @method \PicoFeed\Config\Config setFilterImageProxyCallback($closure)
*
* @method integer getClientTimeout()
* @method string getClientUserAgent()
@@ -53,6 +55,8 @@ namespace PicoFeed\Config;
* @method array getFilterSchemeWhitelist(array $default_value)
* @method array getFilterWhitelistedTags(array $default_value)
* @method array getFilterBlacklistedTags(array $default_value)
+ * @method string getFilterImageProxyUrl($default_value)
+ * @method string getFilterImageProxyCallback($default_value)
*/
class Config
{
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Attribute.php b/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Attribute.php
index 23b1103ad..66b3470f8 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Attribute.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Attribute.php
@@ -13,6 +13,22 @@ use \PicoFeed\Client\Url;
class Attribute
{
/**
+ * Image proxy url
+ *
+ * @access private
+ * @var string
+ */
+ private $image_proxy_url = '';
+
+ /**
+ * Image proxy callback
+ *
+ * @access private
+ * @var \Closure|null
+ */
+ private $image_proxy_callback = null;
+
+ /**
* Tags and attribute whitelist
*
* @access private
@@ -204,10 +220,11 @@ class Attribute
'filterEmptyAttribute',
'filterAllowedAttribute',
'filterIntegerAttribute',
- 'filterAbsoluteUrlAttribute',
+ 'rewriteAbsoluteUrl',
'filterIframeAttribute',
'filterBlacklistResourceAttribute',
'filterProtocolUrlAttribute',
+ 'rewriteImageProxyUrl',
);
/**
@@ -349,7 +366,7 @@ class Attribute
* @param string $value Atttribute value
* @return boolean
*/
- public function filterAbsoluteUrlAttribute($tag, $attribute, &$value)
+ public function rewriteAbsoluteUrl($tag, $attribute, &$value)
{
if ($this->isResource($attribute)) {
$value = Url::resolve($value, $this->website);
@@ -359,6 +376,30 @@ class Attribute
}
/**
+ * Rewrite image url to use with a proxy
+ *
+ * @access public
+ * @param string $tag Tag name
+ * @param string $attribute Atttribute name
+ * @param string $value Atttribute value
+ * @return boolean
+ */
+ public function rewriteImageProxyUrl($tag, $attribute, &$value)
+ {
+ if ($tag === 'img' && $attribute === 'src') {
+
+ if ($this->image_proxy_url) {
+ $value = sprintf($this->image_proxy_url, urlencode($value));
+ }
+ else if (is_callable($this->image_proxy_callback)) {
+ $value = call_user_func($this->image_proxy_callback, $value);
+ }
+ }
+
+ return true;
+ }
+
+ /**
* Return true if the scheme is authorized
*
* @access public
@@ -484,7 +525,7 @@ class Attribute
}
/**
- * Set whitelisted tags adn attributes for each tag
+ * Set whitelisted tags and attributes for each tag
*
* @access public
* @param array $values List of tags: ['video' => ['src', 'cover'], 'img' => ['src']]
@@ -586,4 +627,32 @@ class Attribute
$this->iframe_whitelist = $values ?: $this->iframe_whitelist;
return $this;
}
+
+ /**
+ * Set image proxy URL
+ *
+ * The original image url will be urlencoded
+ *
+ * @access public
+ * @param string $url Proxy URL
+ * @return \PicoFeed\Filter\Filter
+ */
+ public function setImageProxyUrl($url)
+ {
+ $this->image_proxy_url = $url ?: $this->image_proxy_url;
+ return $this;
+ }
+
+ /**
+ * Set image proxy callback
+ *
+ * @access public
+ * @param \Closure $callback
+ * @return \PicoFeed\Filter\Filter
+ */
+ public function setImageProxyCallback($callback)
+ {
+ $this->image_proxy_callback = $callback ?: $this->image_proxy_callback;
+ return $this;
+ }
}
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Filter.php b/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Filter.php
index 0490e2f49..82289444b 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Filter.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Filter.php
@@ -2,6 +2,8 @@
namespace PicoFeed\Filter;
+use PicoFeed\Parser\XmlParser;
+
/**
* Filter class
*
@@ -137,34 +139,4 @@ class Filter
return $data;
}
-
- /**
- * Get the first XML tag
- *
- * @static
- * @access public
- * @param string $data Feed content
- * @return string
- */
- public static function getFirstTag($data)
- {
- // Strip HTML comments (max of 5,000 characters long to prevent crashing)
- $data = preg_replace('/<!--(.{0,5000}?)-->/Uis', '', $data);
-
- /* Strip Doctype:
- * Doctype needs to be within the first 100 characters. (Ideally the first!)
- * If it's not found by then, we need to stop looking to prevent PREG
- * from reaching max backtrack depth and crashing.
- */
- $data = preg_replace('/^.{0,100}<!DOCTYPE([^>]*)>/Uis', '', $data);
-
- // Strip <?xml version....
- $data = self::stripXmlTag($data);
-
- // Find the first tag
- $open_tag = strpos($data, '<');
- $close_tag = strpos($data, '>');
-
- return substr($data, $open_tag, $close_tag);
- }
}
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Html.php b/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Html.php
index d14d80907..f7816f1d2 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Html.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Filter/Html.php
@@ -96,6 +96,8 @@ class Html
$this->config = $config;
if ($this->config !== null) {
+ $this->attribute->setImageProxyCallback($this->config->getFilterImageProxyCallback());
+ $this->attribute->setImageProxyUrl($this->config->getFilterImageProxyUrl());
$this->attribute->setIframeWhitelist($this->config->getFilterIframeWhitelist(array()));
$this->attribute->setIntegerAttributes($this->config->getFilterIntegerAttributes(array()));
$this->attribute->setAttributeOverrides($this->config->getFilterAttributeOverrides(array()));
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php
index 1217bc4b0..5bb930b22 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Atom.php
@@ -30,19 +30,31 @@ class Atom extends Parser
* Find the feed url
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedUrl(SimpleXMLElement $xml, Feed $feed)
{
- $feed->url = $this->getLink($xml);
+ $feed->feed_url = $this->getUrl($xml, 'self');
+ }
+
+ /**
+ * Find the site url
+ *
+ * @access public
+ * @param SimpleXMLElement $xml Feed xml
+ * @param \PicoFeed\Parser\Feed $feed Feed object
+ */
+ public function findSiteUrl(SimpleXMLElement $xml, Feed $feed)
+ {
+ $feed->site_url = $this->getUrl($xml, 'alternate', true);
}
/**
* Find the feed description
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedDescription(SimpleXMLElement $xml, Feed $feed)
@@ -54,7 +66,7 @@ class Atom extends Parser
* Find the feed logo url
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedLogo(SimpleXMLElement $xml, Feed $feed)
@@ -66,19 +78,19 @@ class Atom extends Parser
* Find the feed title
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedTitle(SimpleXMLElement $xml, Feed $feed)
{
- $feed->title = Filter::stripWhiteSpace((string) $xml->title) ?: $feed->url;
+ $feed->title = Filter::stripWhiteSpace((string) $xml->title) ?: $feed->getSiteUrl();
}
/**
* Find the feed language
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedLanguage(SimpleXMLElement $xml, Feed $feed)
@@ -90,7 +102,7 @@ class Atom extends Parser
* Find the feed id
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedId(SimpleXMLElement $xml, Feed $feed)
@@ -102,7 +114,7 @@ class Atom extends Parser
* Find the feed date
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedDate(SimpleXMLElement $xml, Feed $feed)
@@ -115,7 +127,7 @@ class Atom extends Parser
*
* @access public
* @param SimpleXMLElement $entry Feed item
- * @param Item $item Item object
+ * @param Item $item Item object
*/
public function findItemDate(SimpleXMLElement $entry, Item $item)
{
@@ -145,8 +157,8 @@ class Atom extends Parser
* Find the item author
*
* @access public
- * @param SimpleXMLElement $xml Feed
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $xml Feed
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public function findItemAuthor(SimpleXMLElement $xml, SimpleXMLElement $entry, Item $item)
@@ -180,7 +192,7 @@ class Atom extends Parser
*/
public function findItemUrl(SimpleXMLElement $entry, Item $item)
{
- $item->url = $this->getLink($entry);
+ $item->url = $this->getUrl($entry, 'alternate');
}
/**
@@ -215,13 +227,11 @@ class Atom extends Parser
*/
public function findItemEnclosure(SimpleXMLElement $entry, Item $item, Feed $feed)
{
- foreach ($entry->link as $link) {
- if ((string) $link['rel'] === 'enclosure') {
+ $enclosure = $this->findLink($entry, 'enclosure');
- $item->enclosure_url = Url::resolve((string) $link['href'], $feed->url);
- $item->enclosure_type = (string) $link['type'];
- break;
- }
+ if ($enclosure) {
+ $item->enclosure_url = Url::resolve((string) $enclosure['href'], $feed->getSiteUrl());
+ $item->enclosure_type = (string) $enclosure['type'];
}
}
@@ -241,29 +251,54 @@ class Atom extends Parser
/**
* Get the URL from a link tag
*
- * @access public
- * @param SimpleXMLElement $xml XML tag
+ * @access private
+ * @param SimpleXMLElement $xml XML tag
+ * @param string $rel Link relationship: alternate, enclosure, related, self, via
* @return string
*/
- public function getLink(SimpleXMLElement $xml)
+ private function getUrl(SimpleXMLElement $xml, $rel, $fallback = false)
+ {
+ $link = $this->findLink($xml, $rel);
+
+ if ($link) {
+ return (string) $link['href'];
+ }
+
+ if ($fallback) {
+ $link = $this->findLink($xml, '');
+ return $link ? (string) $link['href'] : '';
+ }
+
+ return '';
+ }
+
+ /**
+ * Get a link tag that match a relationship
+ *
+ * @access private
+ * @param SimpleXMLElement $xml XML tag
+ * @param string $rel Link relationship: alternate, enclosure, related, self, via
+ * @return SimpleXMLElement|null
+ */
+ private function findLink(SimpleXMLElement $xml, $rel)
{
foreach ($xml->link as $link) {
- if ((string) $link['type'] === 'text/html' || (string) $link['type'] === 'application/xhtml+xml') {
- return (string) $link['href'];
+ if (empty($rel) || $rel === (string) $link['rel']) {
+ return $link;
}
}
- return (string) $xml->link['href'];
+ return null;
}
/**
* Get the entry content
*
- * @access public
+ * @access private
* @param SimpleXMLElement $entry XML Entry
* @return string
*/
- public function getContent(SimpleXMLElement $entry)
+ private function getContent(SimpleXMLElement $entry)
{
if (isset($entry->content) && ! empty($entry->content)) {
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Feed.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Feed.php
index 77a6f0c97..b8edbd6f8 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Feed.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Feed.php
@@ -48,7 +48,15 @@ class Feed
* @access public
* @var string
*/
- public $url = '';
+ public $feed_url = '';
+
+ /**
+ * Site url
+ *
+ * @access public
+ * @var string
+ */
+ public $site_url = '';
/**
* Feed date
@@ -84,7 +92,7 @@ class Feed
{
$output = '';
- foreach (array('id', 'title', 'url', 'date', 'language', 'description', 'logo') as $property) {
+ foreach (array('id', 'title', 'feed_url', 'site_url', 'date', 'language', 'description', 'logo') as $property) {
$output .= 'Feed::'.$property.' = '.$this->$property.PHP_EOL;
}
@@ -132,14 +140,25 @@ class Feed
}
/**
- * Get url
+ * Get feed url
+ *
+ * @access public
+ * $return string
+ */
+ public function getFeedUrl()
+ {
+ return $this->feed_url;
+ }
+
+ /**
+ * Get site url
*
* @access public
* $return string
*/
- public function getUrl()
+ public function getSiteUrl()
{
- return $this->url;
+ return $this->site_url;
}
/**
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php
index 1731f5a29..6b2864ba7 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Item.php
@@ -11,6 +11,23 @@ namespace PicoFeed\Parser;
class Item
{
/**
+ * List of known RTL languages
+ *
+ * @access public
+ * @var public
+ */
+ public $rtl = array(
+ 'ar', // Arabic (ar-**)
+ 'fa', // Farsi (fa-**)
+ 'ur', // Urdu (ur-**)
+ 'ps', // Pashtu (ps-**)
+ 'syr', // Syriac (syr-**)
+ 'dv', // Divehi (dv-**)
+ 'he', // Hebrew (he-**)
+ 'yi', // Yiddish (yi-**)
+ );
+
+ /**
* Item id
*
* @access public
@@ -96,6 +113,7 @@ class Item
$output .= 'Item::'.$property.' = '.$this->$property.PHP_EOL;
}
+ $output .= 'Item::isRTL() = '.($this->isRTL() ? 'true' : 'false').PHP_EOL;
$output .= 'Item::content = '.strlen($this->content).' bytes'.PHP_EOL;
return $output;
@@ -199,4 +217,23 @@ class Item
{
return $this->author;
}
+
+ /**
+ * Return true if the item is "Right to Left"
+ *
+ * @access public
+ * @return bool
+ */
+ public function isRTL()
+ {
+ $language = strtolower($this->language);
+
+ foreach ($this->rtl as $prefix) {
+ if (strpos($language, $prefix) === 0) {
+ return true;
+ }
+ }
+
+ return false;
+ }
}
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php
index 80e09e016..de73504e4 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Parser.php
@@ -141,6 +141,9 @@ abstract class Parser
$this->findFeedUrl($xml, $feed);
$this->checkFeedUrl($feed);
+ $this->findSiteUrl($xml, $feed);
+ $this->checkSiteUrl($feed);
+
$this->findFeedTitle($xml, $feed);
$this->findFeedDescription($xml, $feed);
$this->findFeedLanguage($xml, $feed);
@@ -185,10 +188,27 @@ abstract class Parser
*/
public function checkFeedUrl(Feed $feed)
{
- $url = new Url($feed->getUrl());
+ if ($feed->getFeedUrl() === '') {
+ $feed->feed_url = $this->fallback_url;
+ }
+ else {
+ $feed->feed_url = Url::resolve($feed->getFeedUrl(), $this->fallback_url);
+ }
+ }
- if ($url->isRelativeUrl()) {
- $feed->url = $this->fallback_url;
+ /**
+ * Check if the site url is correct
+ *
+ * @access public
+ * @param Feed $feed Feed object
+ */
+ public function checkSiteUrl(Feed $feed)
+ {
+ if ($feed->getSiteUrl() === '') {
+ $feed->site_url = Url::base($feed->getFeedUrl());
+ }
+ else {
+ $feed->site_url = Url::resolve($feed->getSiteUrl(), $this->fallback_url);
}
}
@@ -201,11 +221,7 @@ abstract class Parser
*/
public function checkItemUrl(Feed $feed, Item $item)
{
- $url = new Url($item->getUrl());
-
- if ($url->isRelativeUrl()) {
- $item->url = Url::resolve($item->getUrl(), $feed->getUrl());
- }
+ $item->url = Url::resolve($item->getUrl(), $feed->getSiteUrl());
}
/**
@@ -238,7 +254,7 @@ abstract class Parser
public function filterItemContent(Feed $feed, Item $item)
{
if ($this->isFilteringEnabled()) {
- $filter = Filter::html($item->getContent(), $feed->getUrl());
+ $filter = Filter::html($item->getContent(), $feed->getSiteUrl());
$filter->setConfig($this->config);
$item->content = $filter->execute();
}
@@ -283,6 +299,7 @@ abstract class Parser
'D, d M Y H:i:s' => 25,
'D, d M Y h:i:s' => 25,
'D M d Y H:i:s' => 24,
+ 'j M Y H:i:s' => 20,
'Y-m-d H:i:s' => 19,
'Y-m-d\TH:i:s' => 19,
'd/m/Y H:i:s' => 19,
@@ -340,38 +357,6 @@ abstract class Parser
}
/**
- * Return true if the given language is "Right to Left"
- *
- * @static
- * @access public
- * @param string $language Language: fr-FR, en-US
- * @return bool
- */
- public static function isLanguageRTL($language)
- {
- $language = strtolower($language);
-
- $rtl_languages = array(
- 'ar', // Arabic (ar-**)
- 'fa', // Farsi (fa-**)
- 'ur', // Urdu (ur-**)
- 'ps', // Pashtu (ps-**)
- 'syr', // Syriac (syr-**)
- 'dv', // Divehi (dv-**)
- 'he', // Hebrew (he-**)
- 'yi', // Yiddish (yi-**)
- );
-
- foreach ($rtl_languages as $prefix) {
- if (strpos($language, $prefix) === 0) {
- return true;
- }
- }
-
- return false;
- }
-
- /**
* Set Hash algorithm used for id generation
*
* @access public
@@ -464,16 +449,25 @@ abstract class Parser
* Find the feed url
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public abstract function findFeedUrl(SimpleXMLElement $xml, Feed $feed);
/**
+ * Find the site url
+ *
+ * @access public
+ * @param SimpleXMLElement $xml Feed xml
+ * @param \PicoFeed\Parser\Feed $feed Feed object
+ */
+ public abstract function findSiteUrl(SimpleXMLElement $xml, Feed $feed);
+
+ /**
* Find the feed title
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public abstract function findFeedTitle(SimpleXMLElement $xml, Feed $feed);
@@ -482,7 +476,7 @@ abstract class Parser
* Find the feed description
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public abstract function findFeedDescription(SimpleXMLElement $xml, Feed $feed);
@@ -491,7 +485,7 @@ abstract class Parser
* Find the feed language
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public abstract function findFeedLanguage(SimpleXMLElement $xml, Feed $feed);
@@ -500,7 +494,7 @@ abstract class Parser
* Find the feed id
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public abstract function findFeedId(SimpleXMLElement $xml, Feed $feed);
@@ -509,7 +503,7 @@ abstract class Parser
* Find the feed date
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public abstract function findFeedDate(SimpleXMLElement $xml, Feed $feed);
@@ -518,7 +512,7 @@ abstract class Parser
* Find the feed logo url
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public abstract function findFeedLogo(SimpleXMLElement $xml, Feed $feed);
@@ -536,8 +530,8 @@ abstract class Parser
* Find the item author
*
* @access public
- * @param SimpleXMLElement $xml Feed
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $xml Feed
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public abstract function findItemAuthor(SimpleXMLElement $xml, SimpleXMLElement $entry, Item $item);
@@ -546,7 +540,7 @@ abstract class Parser
* Find the item URL
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public abstract function findItemUrl(SimpleXMLElement $entry, Item $item);
@@ -555,7 +549,7 @@ abstract class Parser
* Find the item title
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public abstract function findItemTitle(SimpleXMLElement $entry, Item $item);
@@ -564,7 +558,7 @@ abstract class Parser
* Genereate the item id
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
@@ -574,7 +568,7 @@ abstract class Parser
* Find the item date
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public abstract function findItemDate(SimpleXMLElement $entry, Item $item);
@@ -583,7 +577,7 @@ abstract class Parser
* Find the item content
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public abstract function findItemContent(SimpleXMLElement $entry, Item $item);
@@ -592,7 +586,7 @@ abstract class Parser
* Find the item enclosure
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
@@ -602,7 +596,7 @@ abstract class Parser
* Find the item language
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php
index 80e65fab8..c0417f9ac 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Parser/Rss20.php
@@ -30,34 +30,31 @@ class Rss20 extends Parser
* Find the feed url
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedUrl(SimpleXMLElement $xml, Feed $feed)
{
- if ($xml->channel->link && $xml->channel->link->count() > 1) {
-
- foreach ($xml->channel->link as $xml_link) {
-
- $link = (string) $xml_link;
-
- if ($link !== '') {
- $feed->url = $link;
- break;
- }
- }
- }
- else {
+ $feed->feed_url = '';
+ }
- $feed->url = (string) $xml->channel->link;
- }
+ /**
+ * Find the site url
+ *
+ * @access public
+ * @param SimpleXMLElement $xml Feed xml
+ * @param \PicoFeed\Parser\Feed $feed Feed object
+ */
+ public function findSiteUrl(SimpleXMLElement $xml, Feed $feed)
+ {
+ $feed->site_url = (string) $xml->channel->link;
}
/**
* Find the feed description
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedDescription(SimpleXMLElement $xml, Feed $feed)
@@ -69,7 +66,7 @@ class Rss20 extends Parser
* Find the feed logo url
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedLogo(SimpleXMLElement $xml, Feed $feed)
@@ -83,19 +80,19 @@ class Rss20 extends Parser
* Find the feed title
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedTitle(SimpleXMLElement $xml, Feed $feed)
{
- $feed->title = Filter::stripWhiteSpace((string) $xml->channel->title) ?: $feed->url;
+ $feed->title = Filter::stripWhiteSpace((string) $xml->channel->title) ?: $feed->getSiteUrl();
}
/**
* Find the feed language
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedLanguage(SimpleXMLElement $xml, Feed $feed)
@@ -107,19 +104,19 @@ class Rss20 extends Parser
* Find the feed id
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedId(SimpleXMLElement $xml, Feed $feed)
{
- $feed->id = $feed->url;
+ $feed->id = $feed->getFeedUrl() ?: $feed->getSiteUrl();
}
/**
* Find the feed date
*
* @access public
- * @param SimpleXMLElement $xml Feed xml
+ * @param SimpleXMLElement $xml Feed xml
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
public function findFeedDate(SimpleXMLElement $xml, Feed $feed)
@@ -132,7 +129,7 @@ class Rss20 extends Parser
* Find the item date
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public function findItemDate(SimpleXMLElement $entry, Item $item)
@@ -154,7 +151,7 @@ class Rss20 extends Parser
* Find the item title
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public function findItemTitle(SimpleXMLElement $entry, Item $item)
@@ -170,8 +167,8 @@ class Rss20 extends Parser
* Find the item author
*
* @access public
- * @param SimpleXMLElement $xml Feed
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $xml Feed
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public function findItemAuthor(SimpleXMLElement $xml, SimpleXMLElement $entry, Item $item)
@@ -192,7 +189,7 @@ class Rss20 extends Parser
* Find the item content
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public function findItemContent(SimpleXMLElement $entry, Item $item)
@@ -210,7 +207,7 @@ class Rss20 extends Parser
* Find the item URL
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
*/
public function findItemUrl(SimpleXMLElement $entry, Item $item)
@@ -234,7 +231,7 @@ class Rss20 extends Parser
* Genereate the item id
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
@@ -256,7 +253,7 @@ class Rss20 extends Parser
* Find the item enclosure
*
* @access public
- * @param SimpleXMLElement $entry Feed item
+ * @param SimpleXMLElement $entry Feed item
* @param \PicoFeed\Parser\Item $item Item object
* @param \PicoFeed\Parser\Feed $feed Feed object
*/
@@ -271,7 +268,7 @@ class Rss20 extends Parser
}
$item->enclosure_type = isset($entry->enclosure['type']) ? (string) $entry->enclosure['type'] : '';
- $item->enclosure_url = Url::resolve($item->enclosure_url, $feed->url);
+ $item->enclosure_url = Url::resolve($item->enclosure_url, $feed->getSiteUrl());
}
}
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Favicon.php b/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Favicon.php
index 5b63cf044..f762c56b2 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Favicon.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Favicon.php
@@ -1,9 +1,12 @@
<?php
-namespace PicoFeed\Client;
+namespace PicoFeed\Reader;
use DOMXpath;
+use PicoFeed\Client\Client;
+use PicoFeed\Client\ClientException;
+use PicoFeed\Client\Url;
use PicoFeed\Config\Config;
use PicoFeed\Logging\Logger;
use PicoFeed\Parser\XmlParser;
@@ -14,7 +17,7 @@ use PicoFeed\Parser\XmlParser;
* https://en.wikipedia.org/wiki/Favicon
*
* @author Frederic Guillot
- * @package Client
+ * @package Reader
*/
class Favicon
{
@@ -27,7 +30,7 @@ class Favicon
private $config;
/**
- * Icon content
+ * Icon binary content
*
* @access private
* @var string
@@ -35,6 +38,14 @@ class Favicon
private $content = '';
/**
+ * Icon content type
+ *
+ * @access private
+ * @var string
+ */
+ private $content_type = '';
+
+ /**
* Constructor
*
* @access public
@@ -57,27 +68,53 @@ class Favicon
}
/**
+ * Get the icon file type (available only after the download)
+ *
+ * @access public
+ * @return string
+ */
+ public function getType()
+ {
+ return $this->content_type;
+ }
+
+ /**
+ * Get data URI (http://en.wikipedia.org/wiki/Data_URI_scheme)
+ *
+ * @access public
+ * @return string
+ */
+ public function getDataUri()
+ {
+ return sprintf(
+ 'data:%s;base64,%s',
+ $this->content_type,
+ base64_encode($this->content)
+ );
+ }
+
+ /**
* Download and check if a resource exists
*
* @access public
- * @param string $url URL
- * @return string Resource content
+ * @param string $url URL
+ * @return \PicoFeed\Client Client instance
*/
public function download($url)
{
- try {
+ $client = Client::getInstance();
+ $client->setConfig($this->config);
- Logger::setMessage(get_called_class().' Download => '.$url);
+ Logger::setMessage(get_called_class().' Download => '.$url);
- $client = Client::getInstance();
- $client->setConfig($this->config);
+ try {
$client->execute($url);
-
- return $client->getContent();
}
catch (ClientException $e) {
- return '';
+ Logger::setMessage(get_called_class().' Download Failed => '.$e->getMessage());
}
+
+ return $client;
}
/**
@@ -89,7 +126,7 @@ class Favicon
*/
public function exists($url)
{
- return $this->download($url) !== '';
+ return $this->download($url)->getContent() !== '';
}
/**
@@ -103,13 +140,15 @@ class Favicon
{
$website = new Url($website_link);
- $icons = $this->extract($this->download($website->getBaseUrl('/')));
+ $icons = $this->extract($this->download($website->getBaseUrl('/'))->getContent());
$icons[] = $website->getBaseUrl('/favicon.ico');
foreach ($icons as $icon_link) {
$icon_link = $this->convertLink($website, new Url($icon_link));
- $this->content = $this->download($icon_link);
+ $resource = $this->download($icon_link);
+ $this->content = $resource->getContent();
+ $this->content_type = $resource->getContentType();
if ($this->content !== '') {
return $icon_link;
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php b/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php
index a64eb139c..5b807e251 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Reader/Reader.php
@@ -26,11 +26,11 @@ class Reader
* @var array
*/
private $formats = array(
- 'Atom' => array('<feed'),
- 'Rss20' => array('<rss', '2.0'),
- 'Rss92' => array('<rss', '0.92'),
- 'Rss91' => array('<rss', '0.91'),
- 'Rss10' => array('<rdf:'),
+ 'Atom' => '//feed',
+ 'Rss20' => '//rss[@version="2.0"]',
+ 'Rss92' => '//rss[@version="0.92"]',
+ 'Rss91' => '//rss[@version="0.91"]',
+ 'Rss10' => '//rdf',
);
/**
@@ -87,7 +87,7 @@ class Reader
$client = $this->download($url, $last_modified, $etag);
// It's already a feed or the feed was not modified
- if (!$client->isModified() || $this->detectFormat($client->getContent())) {
+ if (! $client->isModified() || $this->detectFormat($client->getContent())) {
return $client;
}
@@ -181,14 +181,14 @@ class Reader
*/
public function detectFormat($content)
{
- $first_tag = Filter::getFirstTag($content);
-
- Logger::setMessage(get_called_class().': DetectFormat(): '.$first_tag);
+ $dom = XmlParser::getHtmlDocument($content);
+ $xpath = new DOMXPath($dom);
- foreach ($this->formats as $parser => $needles) {
+ foreach ($this->formats as $parser_name => $query) {
+ $nodes = $xpath->query($query);
- if ($this->contains($first_tag, $needles)) {
- return $parser;
+ if ($nodes->length === 1) {
+ return $parser_name;
}
}
@@ -196,25 +196,6 @@ class Reader
}
/**
- * Return true if all needles are found in the haystack
- *
- * @access private
- * @param string $haystack Haystack
- * @param string $needles Needles to find
- * @return boolean
- */
- private function contains($haystack, array $needles)
- {
- $results = array();
-
- foreach ($needles as $needle) {
- $results[] = strpos($haystack, $needle) !== false;
- }
-
- return ! in_array(false, $results, true);
- }
-
- /**
* Add the prefix "http://" if the end-user just enter a domain name
*
* @access public
diff --git a/vendor/fguillot/picofeed/tests/Client/ClientTest.php b/vendor/fguillot/picofeed/tests/Client/ClientTest.php
index 98a963644..0a480c5c0 100644
--- a/vendor/fguillot/picofeed/tests/Client/ClientTest.php
+++ b/vendor/fguillot/picofeed/tests/Client/ClientTest.php
@@ -1,9 +1,9 @@
<?php
+
namespace PicoFeed\Client;
use PHPUnit_Framework_TestCase;
-
class ClientTest extends PHPUnit_Framework_TestCase
{
public function testDownload()
@@ -18,7 +18,6 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->assertNotEmpty($client->getLastModified());
}
-
public function testCacheEtag()
{
$client = Client::getInstance();
@@ -34,7 +33,6 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->assertFalse($client->isModified());
}
-
public function testCacheLastModified()
{
$client = Client::getInstance();
@@ -50,7 +48,6 @@ class ClientTest extends PHPUnit_Framework_TestCase
$this->assertFalse($client->isModified());
}
-
public function testCacheBoth()
{
$client = Client::getInstance();
@@ -80,4 +77,17 @@ class ClientTest extends PHPUnit_Framework_TestCase
$client->execute();
$this->assertEquals('', $client->getEncoding());
}
-} \ No newline at end of file
+
+ public function testContentType()
+ {
+ $client = Client::getInstance();
+ $client->setUrl('http://miniflux.net/assets/img/favicon.png');
+ $client->execute();
+ $this->assertEquals('image/png', $client->getContentType());
+
+ $client = Client::getInstance();
+ $client->setUrl('http://miniflux.net/');
+ $client->execute();
+ $this->assertEquals('text/html; charset=utf-8', $client->getContentType());
+ }
+}
diff --git a/vendor/fguillot/picofeed/tests/Filter/AttributeFilterTest.php b/vendor/fguillot/picofeed/tests/Filter/AttributeFilterTest.php
index e4de74aaf..b0de530e7 100644
--- a/vendor/fguillot/picofeed/tests/Filter/AttributeFilterTest.php
+++ b/vendor/fguillot/picofeed/tests/Filter/AttributeFilterTest.php
@@ -43,35 +43,70 @@ class AttributeFilterTest extends PHPUnit_Framework_TestCase
$this->assertEquals(array('src' => 'http://www.youtube.com/test'), $filter->filter('iframe', array('width' => 'test', 'src' => 'http://www.youtube.com/test')));
}
- public function testFilterAbsoluteUrlAttribute()
+ public function testRewriteProxyImageUrl()
{
$filter = new Attribute(new Url('http://www.la-grange.net'));
$url = '/2014/08/03/4668-noisettes';
- $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
+ $this->assertTrue($filter->rewriteImageProxyUrl('a', 'href', $url));
+ $this->assertEquals('/2014/08/03/4668-noisettes', $url);
+
+ $filter = new Attribute(new Url('http://www.la-grange.net'));
+ $url = '/2014/08/03/4668-noisettes';
+ $this->assertTrue($filter->rewriteImageProxyUrl('img', 'alt', $url));
+ $this->assertEquals('/2014/08/03/4668-noisettes', $url);
+
+ $filter = new Attribute(new Url('http://www.la-grange.net'));
+ $url = '/2014/08/03/4668-noisettes';
+ $this->assertTrue($filter->rewriteImageProxyUrl('img', 'src', $url));
+ $this->assertEquals('/2014/08/03/4668-noisettes', $url);
+
+ $filter = new Attribute(new Url('http://www.la-grange.net'));
+ $filter->setImageProxyUrl('https://myproxy/?u=%s');
+ $url = 'http://example.net/image.png';
+ $this->assertTrue($filter->rewriteImageProxyUrl('img', 'src', $url));
+ $this->assertEquals('https://myproxy/?u='.urlencode('http://example.net/image.png'), $url);
+
+ $filter = new Attribute(new Url('http://www.la-grange.net'));
+
+ $filter->setImageProxyCallback(function ($image_url) {
+ $key = hash_hmac('sha1', $image_url, 'secret');
+ return 'https://mypublicproxy/'.$key.'/'.urlencode($image_url);
+ });
+
+ $url = 'http://example.net/image.png';
+ $this->assertTrue($filter->rewriteImageProxyUrl('img', 'src', $url));
+ $this->assertEquals('https://mypublicproxy/d9701029b054f6e178ef88fcd3c789365e52a26d/'.urlencode('http://example.net/image.png'), $url);
+ }
+
+ public function testRewriteAbsoluteUrl()
+ {
+ $filter = new Attribute(new Url('http://www.la-grange.net'));
+ $url = '/2014/08/03/4668-noisettes';
+ $this->assertTrue($filter->rewriteAbsoluteUrl('a', 'href', $url));
$this->assertEquals('http://www.la-grange.net/2014/08/03/4668-noisettes', $url);
$filter = new Attribute(new Url('http://google.com'));
$url = 'test';
- $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
+ $this->assertTrue($filter->rewriteAbsoluteUrl('a', 'href', $url));
$this->assertEquals('http://google.com/test', $url);
$url = 'http://127.0.0.1:8000/test';
- $this->assertTrue($filter->filterAbsoluteUrlAttribute('img', 'src', $url));
+ $this->assertTrue($filter->rewriteAbsoluteUrl('img', 'src', $url));
$this->assertEquals('http://127.0.0.1:8000/test', $url);
$url = '//example.com';
- $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
+ $this->assertTrue($filter->rewriteAbsoluteUrl('a', 'href', $url));
$this->assertEquals('http://example.com/', $url);
$filter = new Attribute(new Url('https://google.com'));
$url = '//example.com/?youpi';
- $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
+ $this->assertTrue($filter->rewriteAbsoluteUrl('a', 'href', $url));
$this->assertEquals('https://example.com/?youpi', $url);
$filter = new Attribute(new Url('https://127.0.0.1:8000/here/'));
$url = 'image.png?v=2';
- $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
+ $this->assertTrue($filter->rewriteAbsoluteUrl('a', 'href', $url));
$this->assertEquals('https://127.0.0.1:8000/here/image.png?v=2', $url);
$filter = new Attribute(new Url('https://truc/'));
diff --git a/vendor/fguillot/picofeed/tests/Filter/FilterTest.php b/vendor/fguillot/picofeed/tests/Filter/FilterTest.php
index f3b736dfb..8bbb2b97c 100644
--- a/vendor/fguillot/picofeed/tests/Filter/FilterTest.php
+++ b/vendor/fguillot/picofeed/tests/Filter/FilterTest.php
@@ -85,4 +85,39 @@ class FilterTest extends PHPUnit_Framework_TestCase
$f->setConfig($config);
$this->assertEquals('<p>Testboo</p>', $f->execute());
}
+
+ public function testImageProxy()
+ {
+ $f = Filter::html('<p>Image <img src="/image.png" alt="My Image"/></p>', 'http://foo');
+
+ $this->assertEquals(
+ '<p>Image <img src="http://foo/image.png" alt="My Image"/></p>',
+ $f->execute()
+ );
+
+ $config = new Config;
+ $config->setFilterImageProxyUrl('http://myproxy/?url=%s');
+
+ $f = Filter::html('<p>Image <img src="/image.png" alt="My Image"/></p>', 'http://foo');
+ $f->setConfig($config);
+
+ $this->assertEquals(
+ '<p>Image <img src="http://myproxy/?url='.urlencode('http://foo/image.png').'" alt="My Image"/></p>',
+ $f->execute()
+ );
+
+ $config = new Config;
+ $config->setFilterImageProxyCallback(function ($image_url) {
+ $key = hash_hmac('sha1', $image_url, 'secret');
+ return 'https://mypublicproxy/'.$key.'/'.urlencode($image_url);
+ });
+
+ $f = Filter::html('<p>Image <img src="/image.png" alt="My Image"/></p>', 'http://foo');
+ $f->setConfig($config);
+
+ $this->assertEquals(
+ '<p>Image <img src="https://mypublicproxy/4924964043f3119b3cf2b07b1922d491bcc20092/'.urlencode('http://foo/image.png').'" alt="My Image"/></p>',
+ $f->execute()
+ );
+ }
} \ No newline at end of file
diff --git a/vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php b/vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php
index b94f64b1d..394734ca1 100644
--- a/vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php
+++ b/vendor/fguillot/picofeed/tests/Parser/AtomParserTest.php
@@ -52,15 +52,38 @@ class AtomParserTest extends PHPUnit_Framework_TestCase
{
$parser = new Atom(file_get_contents('tests/fixtures/atom.xml'));
$feed = $parser->execute();
- $this->assertEquals('http://googleblog.blogspot.com/', $feed->getUrl());
+ $this->assertEquals('', $feed->getFeedUrl());
+
+ $parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml'), '', 'http://example.org/');
+ $feed = $parser->execute();
+ $this->assertEquals('http://example.org/', $feed->getFeedUrl());
+
+ $parser = new Atom(file_get_contents('tests/fixtures/lagrange.xml'));
+ $feed = $parser->execute();
+ $this->assertEquals('http://www.la-grange.net/feed.atom', $feed->getFeedUrl());
+
+ $parser = new Atom(file_get_contents('tests/fixtures/groovehq.xml'), '', 'http://groovehq.com/');
+ $feed = $parser->execute();
+ $this->assertEquals('http://groovehq.com/articles.xml', $feed->getFeedUrl());
+ }
+
+ public function testSiteUrl()
+ {
+ $parser = new Atom(file_get_contents('tests/fixtures/atom.xml'));
+ $feed = $parser->execute();
+ $this->assertEquals('http://googleblog.blogspot.com/', $feed->getSiteUrl());
$parser = new Atom(file_get_contents('tests/fixtures/atomsample.xml'));
$feed = $parser->execute();
- $this->assertEquals('http://example.org/', $feed->getUrl());
+ $this->assertEquals('http://example.org/', $feed->getSiteUrl());
$parser = new Atom(file_get_contents('tests/fixtures/lagrange.xml'));
$feed = $parser->execute();
- $this->assertEquals('http://www.la-grange.net/', $feed->getUrl());
+ $this->assertEquals('http://www.la-grange.net/', $feed->getSiteUrl());
+
+ $parser = new Atom(file_get_contents('tests/fixtures/groovehq.xml'));
+ $feed = $parser->execute();
+ $this->assertEquals('', $feed->getSiteUrl());
}
public function testFeedId()
diff --git a/vendor/fguillot/picofeed/tests/Parser/ItemTest.php b/vendor/fguillot/picofeed/tests/Parser/ItemTest.php
new file mode 100644
index 000000000..5254acc9a
--- /dev/null
+++ b/vendor/fguillot/picofeed/tests/Parser/ItemTest.php
@@ -0,0 +1,24 @@
+<?php
+
+namespace PicoFeed\Parser;
+
+use PHPUnit_Framework_TestCase;
+
+class ItemTest extends PHPUnit_Framework_TestCase
+{
+ public function testLangRTL()
+ {
+ $item = new Item;
+ $item->language = 'fr_FR';
+ $this->assertFalse($item->isRTL());
+
+ $item->language = 'ur';
+ $this->assertTrue($item->isRTL());
+
+ $item->language = 'syr-**';
+ $this->assertTrue($item->isRTL());
+
+ $item->language = 'ru';
+ $this->assertFalse($item->isRTL());
+ }
+}
diff --git a/vendor/fguillot/picofeed/tests/Parser/ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/ParserTest.php
index 3be864507..449e0c9ce 100644
--- a/vendor/fguillot/picofeed/tests/Parser/ParserTest.php
+++ b/vendor/fguillot/picofeed/tests/Parser/ParserTest.php
@@ -1,9 +1,9 @@
<?php
+
namespace PicoFeed\Parser;
use PHPUnit_Framework_TestCase;
-
class ParserTest extends PHPUnit_Framework_TestCase
{
public function testParseDate()
@@ -22,6 +22,7 @@ class ParserTest extends PHPUnit_Framework_TestCase
$this->assertEquals(1364234797, $parser->parseDate('Mon, 25 Mar 2013 19:06:37 +0100'));
$this->assertEquals(1360054941, $parser->parseDate('2013-02-05T09:02:21.880-08:00'));
$this->assertEquals(1286834400, $parser->parseDate('Tue, 12 Oct 2010 00:00:00 IST'));
+ $this->assertEquals('2014-12-15 19:49', date('Y-m-d H:i', $parser->parseDate('15 Dec 2014 19:49:07 +0100')));
$this->assertEquals('2012-05-15', date('Y-m-d', $parser->parseDate('Tue, 15 May 2012 24:05:00 UTC')));
$this->assertEquals('2013-09-12', date('Y-m-d', $parser->parseDate('Thu, 12 Sep 2013 7:00:00 UTC')));
$this->assertEquals('2012-01-31', date('Y-m-d', $parser->parseDate('01.31.2012')));
@@ -54,14 +55,6 @@ class ParserTest extends PHPUnit_Framework_TestCase
$this->assertEquals('da23614e02469a0d7c7bd1bdab5c9c474b1904dc', $parser->generateId('a', 'b'));
}
- public function testLangRTL()
- {
- $this->assertFalse(Parser::isLanguageRTL('fr-FR'));
- $this->assertTrue(Parser::isLanguageRTL('ur'));
- $this->assertTrue(Parser::isLanguageRTL('syr-**'));
- $this->assertFalse(Parser::isLanguageRTL('ru'));
- }
-
public function testNamespaceValue()
{
$xml = XmlParser::getSimpleXml(file_get_contents('tests/fixtures/rue89.xml'));
diff --git a/vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php
index bc0824502..f06ff3544 100644
--- a/vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php
+++ b/vendor/fguillot/picofeed/tests/Parser/Rss10ParserTest.php
@@ -26,14 +26,21 @@ class Rss10ParserTest extends PHPUnit_Framework_TestCase
{
$parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml'));
$feed = $parser->execute();
- $this->assertEquals('http://planete-jquery.fr', $feed->getUrl());
+ $this->assertEquals('', $feed->getFeedUrl());
+ }
+
+ public function testSiteUrl()
+ {
+ $parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml'));
+ $feed = $parser->execute();
+ $this->assertEquals('http://planete-jquery.fr/', $feed->getSiteUrl());
}
public function testFeedId()
{
$parser = new Rss10(file_get_contents('tests/fixtures/planete-jquery.xml'));
$feed = $parser->execute();
- $this->assertEquals('http://planete-jquery.fr', $feed->getId());
+ $this->assertEquals('http://planete-jquery.fr/', $feed->getId());
}
public function testFeedDate()
diff --git a/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php
index b06821c27..c282ad372 100644
--- a/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php
+++ b/vendor/fguillot/picofeed/tests/Parser/Rss20ParserTest.php
@@ -56,11 +56,26 @@ class Rss20ParserTest extends PHPUnit_Framework_TestCase
{
$parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml'));
$feed = $parser->execute();
- $this->assertEquals('http://wordpress.org/news', $feed->getUrl());
+ $this->assertEquals('', $feed->getFeedUrl());
+
+ $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml'), '', 'http://example.com/feed');
+ $feed = $parser->execute();
+ $this->assertEquals('http://example.com/feed', $feed->getFeedUrl());
+
+ $parser = new Rss20(file_get_contents('tests/fixtures/pcinpact.xml'));
+ $feed = $parser->execute();
+ $this->assertEquals('', $feed->getFeedUrl());
+ }
+
+ public function testSiteUrl()
+ {
+ $parser = new Rss20(file_get_contents('tests/fixtures/rss20.xml'));
+ $feed = $parser->execute();
+ $this->assertEquals('http://wordpress.org/news', $feed->getSiteUrl());
$parser = new Rss20(file_get_contents('tests/fixtures/pcinpact.xml'));
$feed = $parser->execute();
- $this->assertEquals('http://www.pcinpact.com/', $feed->getUrl());
+ $this->assertEquals('http://www.pcinpact.com/', $feed->getSiteUrl());
}
public function testFeedId()
@@ -231,7 +246,7 @@ class Rss20ParserTest extends PHPUnit_Framework_TestCase
$parser = new Rss20(file_get_contents('tests/fixtures/geekstammtisch.de_episodes.mp3.rss'));
$feed = $parser->execute();
$this->assertNotEmpty($feed->items);
- $this->assertEquals('http://geekstammtisch.de#GST001', $feed->items[1]->getUrl());
+ $this->assertEquals('http://geekstammtisch.de/#GST001', $feed->items[1]->getUrl());
$parser = new Rss20(file_get_contents('tests/fixtures/lincoln_loop.xml'));
$feed = $parser->execute();
diff --git a/vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php
index 8f10f2ea5..f84a0d0d0 100644
--- a/vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php
+++ b/vendor/fguillot/picofeed/tests/Parser/Rss91ParserTest.php
@@ -15,8 +15,9 @@ class Rss91ParserTest extends PHPUnit_Framework_TestCase
$this->assertNotEmpty($feed->items);
$this->assertEquals('WriteTheWeb', $feed->getTitle());
- $this->assertEquals('http://writetheweb.com', $feed->getUrl());
- $this->assertEquals('http://writetheweb.com', $feed->getId());
+ $this->assertEquals('', $feed->getFeedUrl());
+ $this->assertEquals('http://writetheweb.com/', $feed->getSiteUrl());
+ $this->assertEquals('http://writetheweb.com/', $feed->getId());
$this->assertEquals(time(), $feed->getDate());
$this->assertEquals(6, count($feed->items));
diff --git a/vendor/fguillot/picofeed/tests/Parser/Rss92ParserTest.php b/vendor/fguillot/picofeed/tests/Parser/Rss92ParserTest.php
index 1d67c2252..521cd7b05 100644
--- a/vendor/fguillot/picofeed/tests/Parser/Rss92ParserTest.php
+++ b/vendor/fguillot/picofeed/tests/Parser/Rss92ParserTest.php
@@ -15,8 +15,9 @@ class Rss92ParserTest extends PHPUnit_Framework_TestCase
$this->assertNotEmpty($feed->items);
$this->assertEquals('Univers Freebox', $feed->getTitle());
- $this->assertEquals('http://www.universfreebox.com', $feed->getUrl());
- $this->assertEquals('http://www.universfreebox.com', $feed->getId());
+ $this->assertEquals('', $feed->getFeedUrl());
+ $this->assertEquals('http://www.universfreebox.com/', $feed->getSiteUrl());
+ $this->assertEquals('http://www.universfreebox.com/', $feed->getId());
$this->assertEquals(time(), $feed->date);
$this->assertEquals(30, count($feed->items));
diff --git a/vendor/fguillot/picofeed/tests/Client/FaviconTest.php b/vendor/fguillot/picofeed/tests/Reader/FaviconTest.php
index c0ac11ac6..eaf701298 100644
--- a/vendor/fguillot/picofeed/tests/Client/FaviconTest.php
+++ b/vendor/fguillot/picofeed/tests/Reader/FaviconTest.php
@@ -1,8 +1,9 @@
<?php
-namespace PicoFeed\Client;
-use PHPUnit_Framework_TestCase;
+namespace PicoFeed\Reader;
+use PHPUnit_Framework_TestCase;
+use PicoFeed\Client\Url;
class FaviconTest extends PHPUnit_Framework_TestCase
{
@@ -140,4 +141,18 @@ class FaviconTest extends PHPUnit_Framework_TestCase
$this->assertEmpty($favicon->getContent());
}
+
+ public function testDataUri()
+ {
+ $favicon = new Favicon;
+
+ $this->assertEquals(
+ 'http://miniflux.net/assets/img/favicon.png',
+ $favicon->find('http://miniflux.net')
+ );
+
+ $expected = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAGJwAABicBTVTYxwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAALMSURBVHic7Zo7a1RRFIW/I8YXaBBEJRJEU8RqQBBBQRBEWxHBwlZUsLRWUFBsA4L4G4IY0TaF2PhEEQwmhuADJIkRUUOMr2RZ3Em8mcxkzrkPtjhnwS7msveadT/Ofc44SbSyllkHsFYEYB3AWhGAdQBrRQDWAawVAVgHsFYEYB3AWhGAdQBrLS/L2Dm3CdgFbK3WDPC6Wi8kjWX03QBUgG3AdmAN8LFaT4CnCnjEdbW9zrk+YL3n/AVJd2vmDwKngMNAW4O538BNoEfSfa+gzu0DzgBHl/AFGAN6gcuSPjQ1lrSggHFAnnUsNdcO3AiYnas7wNraHCnfLcC9DL6TwNlGvvP+RQAAdgIjGULO1XOgs06WQ8BEDl8BPVRXeikAgK4CQgp4B7SnchwnOW/k9RVwviwAp4HBgkIKuJ5aUd8K9P0JVMoA8LnAkAJmgSPA24J9BfTXA1DvKjAObOT/k4BuScPpjWXcCM0Co8CnErynSFbHTIZZB5xYtDXnIZCuCeAkqUsa0AlcyeiXrtvAnpTvamA/8CbQ50HR54C5egV0LHEtv5hj588t4dsBvA/wmgbaigbwneTYanyzkayELDvf2/RGBi4FelaKBnC1Wciq70Cg7y+gy8O3O9D3QHq+iJPgNc++R4G+/ZJGPPqGSU68vlqX/pAXwKCkl569XwK9b/k0SZoleRL0VaEAngX0TgZ6Pw7obf7U91cr0x/yAhgK6A0BIMB3ZUFyq5tJeQGELL2vAb1TkqYD+lcF9C5QXgAhO/WjJF/I8WYrL4CQnfoXfBep5V+KRgDWAawVAVgHsFYEYB3AWhGAdQBrRQDWAawVAVgHsFYEYB3AWi0PoN6Po3uBFZ7zA5ImvL7Iuc3ADk/faUkPPXtxzu0m+a+Qj4Ykjc7P1gJoNbX8IRABWAewVgRgHcBaEYB1AGtFANYBrBUBWAewVssD+AMBy6wzsaDiAwAAAABJRU5ErkJggg==';
+
+ $this->assertEquals($expected, $favicon->getDataUri());
+ }
}
diff --git a/vendor/fguillot/picofeed/tests/Reader/ReaderTest.php b/vendor/fguillot/picofeed/tests/Reader/ReaderTest.php
index c060de0aa..e9d1bb925 100644
--- a/vendor/fguillot/picofeed/tests/Reader/ReaderTest.php
+++ b/vendor/fguillot/picofeed/tests/Reader/ReaderTest.php
@@ -15,7 +15,6 @@ class ReaderTest extends PHPUnit_Framework_TestCase
$this->assertEquals('https://google.com', $reader->prependScheme('https://google.com'));
}
-
public function testDownload()
{
$reader = new Reader;
@@ -23,7 +22,6 @@ class ReaderTest extends PHPUnit_Framework_TestCase
$this->assertNotEmpty($feed);
}
-
public function testDownloadWithCache()
{
$reader = new Reader;
@@ -38,10 +36,12 @@ class ReaderTest extends PHPUnit_Framework_TestCase
$this->assertFalse($resource->isModified());
}
-
public function testDetectFormat()
{
$reader = new Reader;
+ $this->assertEquals('Rss20', $reader->detectFormat(file_get_contents('tests/fixtures/podbean.xml')));
+
+ $reader = new Reader;
$this->assertEquals('Rss20', $reader->detectFormat(file_get_contents('tests/fixtures/jeux-linux.fr.xml')));
$reader = new Reader;
@@ -78,7 +78,6 @@ class ReaderTest extends PHPUnit_Framework_TestCase
$this->assertEquals('Rss20', $reader->detectFormat($content));
}
-
public function testFind()
{
$reader = new Reader;
@@ -105,7 +104,6 @@ class ReaderTest extends PHPUnit_Framework_TestCase
$this->assertEquals('http://rss.cnn.com/rss/cnn_world.rss', $feeds[1]);
}
-
public function testDiscover()
{
$reader = new Reader;
@@ -128,7 +126,6 @@ class ReaderTest extends PHPUnit_Framework_TestCase
$this->assertInstanceOf('PicoFeed\Parser\Atom', $reader->getParser($client->getUrl(), $client->getContent(), $client->getEncoding()));
}
-
public function testFeedsReportedAsNotWorking()
{
$reader = new Reader;
@@ -149,7 +146,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase
$feed = $parser->execute();
$this->assertEquals('http://www.groovehq.com/blog/feed', $client->getUrl());
- $this->assertEquals('http://www.groovehq.com/blog/feed', $feed->getUrl());
+ $this->assertEquals('http://www.groovehq.com/blog/feed', $feed->getFeedUrl());
$this->assertNotEquals('http://www.groovehq.com/blog/feed', $feed->items[0]->getUrl());
$this->assertTrue(strpos($feed->items[0]->getUrl(), 'http://') === 0);
$this->assertTrue(strpos($feed->items[0]->getUrl(), 'feed') === false);
diff --git a/vendor/fguillot/picofeed/tests/fixtures/podbean.xml b/vendor/fguillot/picofeed/tests/fixtures/podbean.xml
new file mode 100644
index 000000000..057137d51
--- /dev/null
+++ b/vendor/fguillot/picofeed/tests/fixtures/podbean.xml
@@ -0,0 +1,1596 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- generator="podbean/3.2" -->
+<rss version="2.0"
+ xmlns:content="http://purl.org/rss/1.0/modules/content/"
+ xmlns:wfw="http://wellformedweb.org/CommentAPI/"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:atom="http://www.w3.org/2005/Atom"
+ xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
+ xmlns:media="http://search.yahoo.com/mrss/"
+>
+
+<channel>
+ <title>Around the Bloc</title>
+ <atom:link href="http://aroundthebloc.podbean.com/feed/" rel="self" type="application/rss+xml" />
+ <link>http://aroundthebloc.podbean.com</link>
+ <description>The Official Supporters Podcast of the Western Sydney Wanderers. www.aroundthebloc.com.au Now on iTunes - https://itunes.apple.com/au/podcast/around-the-bloc/id581817326</description>
+ <pubDate>Tue, 16 Dec 2014 12:56:02 +0000</pubDate>
+ <generator>http://podbean.com/?v=3.2</generator>
+ <language>en</language>
+ <!-- podcast_generator="Podbean Engine/5.0" -->
+ <copyright>Copyright 2012-2014 Around the Bloc. All rights reserved.</copyright>
+ <category>Sports &#x26; Recreation:Professional</category>
+ <ttl>1440</ttl>
+ <itunes:keywords>aleague,westernsydneywanderers</itunes:keywords>
+ <itunes:subtitle> </itunes:subtitle>
+ <itunes:summary>The Official Supporters Podcast of the Western Sydney Wanderers</itunes:summary>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:category text="Sports &amp; Recreation">
+ <itunes:category text="Professional"/>
+</itunes:category>
+ <itunes:owner>
+ <itunes:name>Around the Bloc</itunes:name>
+ <itunes:email>aroundthebloc1@gmail.com</itunes:email>
+ </itunes:owner>
+ <itunes:block>No</itunes:block>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:image href="http://imglogo.podbean.com/image-logo/586645/ATBLogo-BlackBackground.png" />
+ <image>
+ <url>http://imglogo.podbean.com/image-logo/586645/ATBLogo-BlackBackground.png</url>
+ <title>Around the Bloc</title>
+ <link>http://aroundthebloc.podbean.com</link>
+ <width>144</width>
+ <height>144</height>
+ </image>
+ <item>
+ <title>S03E11: Finding Nemo-rocco</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e11-finding-nemo-rocco/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e11-finding-nemo-rocco/#comments</comments>
+ <pubDate>Tue, 16 Dec 2014 12:56:02 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e11-finding-nemo-rocco/</guid>
+ <description><![CDATA[<div>The Wanderers this week played in the club world cup, where they came off the pitch squeaky clean due to the weather, but couldn’t keep their sheet in the same condition and missed out on their dream match with Real Madrid. The team now goes on to contest the fifth place playoff against Algerian team ES Setif, who we hope gets ES se-mashed.</div>
+<div></div>
+<div>With mostly away games coming up, we’ve got details of how the RBB will be getting behind Nato - flag making and waving extraordinaire - who’s having a rough time, as well as all the usual stuff as well.</div>
+<div></div>
+<div>This is Around the Bloc.</div>
+]]></description>
+ <content:encoded><![CDATA[<div>The Wanderers this week played in the club world cup, where they came off the pitch squeaky clean due to the weather, but couldn’t keep their sheet in the same condition and missed out on their dream match with Real Madrid. The team now goes on to contest the fifth place playoff against Algerian team ES Setif, who we hope gets ES se-mashed.</div>
+<div></div>
+<div>With mostly away games coming up, we’ve got details of how the RBB will be getting behind Nato - flag making and waving extraordinaire - who’s having a rough time, as well as all the usual stuff as well.</div>
+<div></div>
+<div>This is Around the Bloc.</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e11-finding-nemo-rocco/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/xb5pjd/S03E11_Around_the_Bloc_podcast.mp3" length="46318627" type="audio/mpeg"/>
+ <itunes:subtitle>The Wanderers this week played in the club world cup, where they came off the pitch squeaky clean due to the weather, but couldn't keep ...</itunes:subtitle>
+ <itunes:summary>The Wanderers this week played in the club world cup, where they came off the pitch squeaky clean due to the weather, but couldn't keep their sheet in the same condition and missed out on their dream match with Real Madrid. The team now goes on to contest the fifth place playoff against Algerian team ES Setif, who we hope gets ES se-mashed.With mostly away games coming up, we’ve got details of how the RBB will be getting behind Nato - flag making and waving extraordinaire - who’s having a rough time, as well as all the usual stuff as well.This is Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:50:05</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E11: Finding Nemo-rocco</media:title></media:content> </item>
+ <item>
+ <title>S03E10: No Money, Mo&#8217; Problems</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e10-no-money-mo-problems/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e10-no-money-mo-problems/#comments</comments>
+ <pubDate>Tue, 09 Dec 2014 13:20:39 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e10-no-money-mo-problems/</guid>
+ <description><![CDATA[<div>Well, the Wanderers lost two games in the last week, and to top it off, the players are having issues with the clubs owners about their bonuses for playing in the Club World Cup… That’s right, the Wanderers are playing in the Club World Cup! We start off against a Mexican team, once we Cruz through them, things will get Real… really Real. After we Bale them over, we’ve got one game to win before we’re champions of the world.</div>
+<div></div>
+<div>Easier said than won eh?</div>
+<div></div>
+<div>This is Around the Bloc.</div>
+]]></description>
+ <content:encoded><![CDATA[<div>Well, the Wanderers lost two games in the last week, and to top it off, the players are having issues with the clubs owners about their bonuses for playing in the Club World Cup… That’s right, the Wanderers are playing in the Club World Cup! We start off against a Mexican team, once we Cruz through them, things will get Real… really Real. After we Bale them over, we’ve got one game to win before we’re champions of the world.</div>
+<div></div>
+<div>Easier said than won eh?</div>
+<div></div>
+<div>This is Around the Bloc.</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e10-no-money-mo-problems/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/h6ifqz/S03E10_Around_the_Bloc_podcast.mp3" length="70387085" type="audio/mpeg"/>
+ <itunes:subtitle>Well, the Wanderers lost two games in the last week, and to top it off, the players are having issues with the clubs owners about ...</itunes:subtitle>
+ <itunes:summary>Well, the Wanderers lost two games in the last week, and to top it off, the players are having issues with the clubs owners about their bonuses for playing in the Club World Cup… That’s right, the Wanderers are playing in the Club World Cup! We start off against a Mexican team, once we Cruz through them, things will get Real… really Real. After we Bale them over, we've got one game to win before we’re champions of the world.Easier said than won eh?This is Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:47:25</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E10: No Money, Mo&#8217; Problems</media:title></media:content> </item>
+ <item>
+ <title>S03E09: K-Gate</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e09-k-gate/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e09-k-gate/#comments</comments>
+ <pubDate>Tue, 02 Dec 2014 13:47:31 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e09-k-gate/</guid>
+ <description><![CDATA[<p style="margin:0px 0px 6px;">The second derby of the season has come and gone, and the Cove and the RBB were both fans of the team that didn’t win. Tomi Gun’s goal was cancelled out by a screamer from Ibini, and the Wanderers winless and undefeated streaks continue.</p>
+<p style="margin:0px 0px 6px;"></p>
+<p style="margin:6px 0px;">The club did, however, perform well at the AFC Awards night, winning Club and Coach of the Year. We lost in the spelling bee, but we hope to continue this winning form on the pitch against Brisbane and Adelaide this week.</p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">This episode is brought to you by the Number 1 (in Asia), the number 10 (in the A-League), and the letter K. </p>
+<p style="margin:0px 0px 6px;"></p>
+<p style="margin:0px 0px 6px;">This is Around the Bloc.</p>
+</div>
+]]></description>
+ <content:encoded><![CDATA[<p style="margin:0px 0px 6px;">The second derby of the season has come and gone, and the Cove and the RBB were both fans of the team that didn’t win. Tomi Gun’s goal was cancelled out by a screamer from Ibini, and the Wanderers winless and undefeated streaks continue.</p>
+<p style="margin:0px 0px 6px;"></p>
+<p style="margin:6px 0px;">The club did, however, perform well at the AFC Awards night, winning Club and Coach of the Year. We lost in the spelling bee, but we hope to continue this winning form on the pitch against Brisbane and Adelaide this week.</p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">This episode is brought to you by the Number 1 (in Asia), the number 10 (in the A-League), and the letter K. </p>
+<p style="margin:0px 0px 6px;"></p>
+<p style="margin:0px 0px 6px;">This is Around the Bloc.</p>
+</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e09-k-gate/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/psub94/S03E09_Around_the_Bloc_podcast.mp3" length="62410809" type="audio/mpeg"/>
+ <itunes:subtitle>The second derby of the season has come and gone, and the Cove and the RBB were both fans of the team that didn't win. ...</itunes:subtitle>
+ <itunes:summary>The second derby of the season has come and gone, and the Cove and the RBB were both fans of the team that didn't win. Tomi Gun’s goal was cancelled out by a screamer from Ibini, and the Wanderers winless and undefeated streaks continue.The club did, however, perform well at the AFC Awards night, winning Club and Coach of the Year. We lost in the spelling bee, but we hope to continue this winning form on the pitch against Brisbane and Adelaide this week.This episode is brought to you by the Number 1 (in Asia), the number 10 (in the A-League), and the letter K. This is Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:28:27</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E09: K-Gate</media:title></media:content> </item>
+ <item>
+ <title>S03E8: There are no stupid questions&#8230;</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e8-there-are-no-stupid-questions/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e8-there-are-no-stupid-questions/#comments</comments>
+ <pubDate>Tue, 25 Nov 2014 14:26:59 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e8-there-are-no-stupid-questions/</guid>
+ <description><![CDATA[<div>The elusive Turner returns for a stint on the podcast that David Villa would be proud of, and with everyone else showing up for once, the team was 6 strong. 6 is also the number of games we’ve played in the A-League without a win, but despite what’s happening up in Brisbane, the Wanderers fans seem to be giving King Popa all their support, which they express in this weeks apparently silly ATBFeedback. The question of the week segment is back also, and is answered by Ivan.</div>
+<div></div>
+<div>On the bright side, we’re unbeaten in 2, and we cover both the Mariners and Newcastle games, as well as the upcoming Sydney Derby which is a must win for so many reasons - namely the bragging rights that come with it. It could be a first loss for Sydney and a first win for us, or it could potentially see both teams at completely opposite ends of the ladder if things go Sydneys way. Hopefully it’s the former.</div>
+<div></div>
+<div>This is Around the Bloc.</div>
+]]></description>
+ <content:encoded><![CDATA[<div>The elusive Turner returns for a stint on the podcast that David Villa would be proud of, and with everyone else showing up for once, the team was 6 strong. 6 is also the number of games we’ve played in the A-League without a win, but despite what’s happening up in Brisbane, the Wanderers fans seem to be giving King Popa all their support, which they express in this weeks apparently silly ATBFeedback. The question of the week segment is back also, and is answered by Ivan.</div>
+<div></div>
+<div>On the bright side, we’re unbeaten in 2, and we cover both the Mariners and Newcastle games, as well as the upcoming Sydney Derby which is a must win for so many reasons - namely the bragging rights that come with it. It could be a first loss for Sydney and a first win for us, or it could potentially see both teams at completely opposite ends of the ladder if things go Sydneys way. Hopefully it’s the former.</div>
+<div></div>
+<div>This is Around the Bloc.</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e8-there-are-no-stupid-questions/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/npwg6h/S03E08_Around_the_Bloc_podcast.mp3" length="67865155" type="audio/mpeg"/>
+ <itunes:subtitle>The elusive Turner returns for a stint on the podcast that David Villa would be proud of, and with everyone else showing up for once, ...</itunes:subtitle>
+ <itunes:summary>The elusive Turner returns for a stint on the podcast that David Villa would be proud of, and with everyone else showing up for once, the team was 6 strong. 6 is also the number of games we’ve played in the A-League without a win, but despite what’s happening up in Brisbane, the Wanderers fans seem to be giving King Popa all their support, which they express in this weeks apparently silly ATBFeedback. The question of the week segment is back also, and is answered by Ivan.On the bright side, we’re unbeaten in 2, and we cover both the Mariners and Newcastle games, as well as the upcoming Sydney Derby which is a must win for so many reasons - namely the bragging rights that come with it. It could be a first loss for Sydney and a first win for us, or it could potentially see both teams at completely opposite ends of the ladder if things go Sydneys way. Hopefully it’s the former.This is Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:21:16</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E8: There are no stupid questions&#8230;</media:title></media:content> </item>
+ <item>
+ <title>S03E07: Min. Power</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e07-min-power/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e07-min-power/#comments</comments>
+ <pubDate>Tue, 18 Nov 2014 12:51:04 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e07-min-power/</guid>
+ <description><![CDATA[<div>Well, the Wanderers lost again this week - but given the team line up, is there anything really to worry about? The attitudes of the team and fans alike are positive, but some improvement has to be on the cards.</div>
+<div></div>
+<div>We found that the podcast needed some improving too, so we introduce Question of the Week on this show, and I give a long, detailed history of podcasting which I’m sure is going to be as much fun for you to listen to as I had telling it, and I didn’t even insult anyone in the process. Well, I don’t think I did - I’ll keep an eye on twitter though. There’s that, W-League, Youth League, Nikminnit and all the other stuff on this weeks episode of Around the Bloc.</div>
+]]></description>
+ <content:encoded><![CDATA[<div>Well, the Wanderers lost again this week - but given the team line up, is there anything really to worry about? The attitudes of the team and fans alike are positive, but some improvement has to be on the cards.</div>
+<div></div>
+<div>We found that the podcast needed some improving too, so we introduce Question of the Week on this show, and I give a long, detailed history of podcasting which I’m sure is going to be as much fun for you to listen to as I had telling it, and I didn’t even insult anyone in the process. Well, I don’t think I did - I’ll keep an eye on twitter though. There’s that, W-League, Youth League, Nikminnit and all the other stuff on this weeks episode of Around the Bloc.</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e07-min-power/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/5xnk97/S03E07_Around_the_Bloc_podcast.mp3" length="46842633" type="audio/mpeg"/>
+ <itunes:subtitle>Well, the Wanderers lost again this week - but given the team line up, is there anything really to worry about? The attitudes of the ...</itunes:subtitle>
+ <itunes:summary>Well, the Wanderers lost again this week - but given the team line up, is there anything really to worry about? The attitudes of the team and fans alike are positive, but some improvement has to be on the cards.We found that the podcast needed some improving too, so we introduce Question of the Week on this show, and I give a long, detailed history of podcasting which I’m sure is going to be as much fun for you to listen to as I had telling it, and I didn't even insult anyone in the process. Well, I don’t think I did - I'll keep an eye on twitter though. There’s that, W-League, Youth League, Nikminnit and all the other stuff on this weeks episode of Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:37:30</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E07: Min. Power</media:title></media:content> </item>
+ <item>
+ <title>S03E06: The D</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e06-the-d/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e06-the-d/#comments</comments>
+ <pubDate>Tue, 11 Nov 2014 13:50:22 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e06-the-d/</guid>
+ <description><![CDATA[<div>The trilogy has ended and we are Alan-less this week, as well as Ivan-less and Turner-less, not to mention still win-less in the A-league and Santalab-less, because he is shoulder-less. We can’t do much about missing podcasters or the need for surgery, but, like Seyi Adeleke, the Wanderers need to turn around and head in the right direction, and they can begin in Perth where they play the Glory this weekend.</div>
+<div></div>
+<div>One thing we are not missing this week is Speccy, who has returned from Riyadh to tell us a few tales of the road, and why he thinks Qatar should retain World Cup Hosting rights, and if you haven’t already turned this off to log onto twitter and abuse him for it, thanks for staying tuned - this is Around The Bloc</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"></div>
+]]></description>
+ <content:encoded><![CDATA[<div>The trilogy has ended and we are Alan-less this week, as well as Ivan-less and Turner-less, not to mention still win-less in the A-league and Santalab-less, because he is shoulder-less. We can’t do much about missing podcasters or the need for surgery, but, like Seyi Adeleke, the Wanderers need to turn around and head in the right direction, and they can begin in Perth where they play the Glory this weekend.</div>
+<div></div>
+<div>One thing we are not missing this week is Speccy, who has returned from Riyadh to tell us a few tales of the road, and why he thinks Qatar should retain World Cup Hosting rights, and if you haven’t already turned this off to log onto twitter and abuse him for it, thanks for staying tuned - this is Around The Bloc</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e06-the-d/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/ekpz94/S03E06_Around_the_Bloc_podcast.mp3" length="64533704" type="audio/mpeg"/>
+ <itunes:subtitle>The trilogy has ended and we are Alan-less this week, as well as Ivan-less and Turner-less, not to mention still win-less in the A-league and ...</itunes:subtitle>
+ <itunes:summary>The trilogy has ended and we are Alan-less this week, as well as Ivan-less and Turner-less, not to mention still win-less in the A-league and Santalab-less, because he is shoulder-less. We can't do much about missing podcasters or the need for surgery, but, like Seyi Adeleke, the Wanderers need to turn around and head in the right direction, and they can begin in Perth where they play the Glory this weekend.One thing we are not missing this week is Speccy, who has returned from Riyadh to tell us a few tales of the road, and why he thinks Qatar should retain World Cup Hosting rights, and if you haven't already turned this off to log onto twitter and abuse him for it, thanks for staying tuned - this is Around The Bloc</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:14:22</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E06: The D</media:title></media:content> </item>
+ <item>
+ <title>S03E05: Got It!!</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e05-got-it/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e05-got-it/#comments</comments>
+ <pubDate>Tue, 04 Nov 2014 14:08:17 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e05-got-it/</guid>
+ <description><![CDATA[<div><font face="Arial, Verdana" size="2">2014 AFC Champions League winners!</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">Special Guest Alan Mtashar returns to complete the trilogy as we discuss the Wanderers’ historic victory in the AFC Champions League Final.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">There’s pride, tears, food, tangents and plenty of laughs. Pretty much everything you’d expect from another episode of Around The Bloc.</font></div>
+]]></description>
+ <content:encoded><![CDATA[<div><font face="Arial, Verdana" size="2">2014 AFC Champions League winners!</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">Special Guest Alan Mtashar returns to complete the trilogy as we discuss the Wanderers’ historic victory in the AFC Champions League Final.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">There’s pride, tears, food, tangents and plenty of laughs. Pretty much everything you’d expect from another episode of Around The Bloc.</font></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e05-got-it/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/siqdx3/S03E05_Around_the_Bloc_podcast.mp3" length="65136376" type="audio/mpeg"/>
+ <itunes:subtitle>2014 AFC Champions League winners!Special Guest Alan Mtashar returns to complete the trilogy as we discuss the Wanderers' historic victory in the AFC Champions League ...</itunes:subtitle>
+ <itunes:summary>2014 AFC Champions League winners!Special Guest Alan Mtashar returns to complete the trilogy as we discuss the Wanderers' historic victory in the AFC Champions League Final.There's pride, tears, food, tangents and plenty of laughs. Pretty much everything you'd expect from another episode of Around The Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:15:37</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E05: Got It!!</media:title></media:content> </item>
+ <item>
+ <title>S03E04: Lights! Camera! Asia!</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e04-lights-camera-asia/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e04-lights-camera-asia/#comments</comments>
+ <pubDate>Tue, 28 Oct 2014 13:58:53 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e04-lights-camera-asia/</guid>
+ <description><![CDATA[<div>With the spotlight on us, the crowd roared as we entered the arena and lined up on what was one of the biggest, most nerve wracking nights of our lives. The expectations were huge and the task ahead a gruelling one, but finally, after all the interviews were over, we readied ourselves and… we started recording the most important podcast of our lives. In front of ABC cameras no less.</div>
+<div></div>
+<div>Oh and the Wanderers are taking a 1-0 lead to Riyadh.</div>
+<div></div>
+<div>This is Around The Bloc.</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"></div>
+]]></description>
+ <content:encoded><![CDATA[<div>With the spotlight on us, the crowd roared as we entered the arena and lined up on what was one of the biggest, most nerve wracking nights of our lives. The expectations were huge and the task ahead a gruelling one, but finally, after all the interviews were over, we readied ourselves and… we started recording the most important podcast of our lives. In front of ABC cameras no less.</div>
+<div></div>
+<div>Oh and the Wanderers are taking a 1-0 lead to Riyadh.</div>
+<div></div>
+<div>This is Around The Bloc.</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e04-lights-camera-asia/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/j4g9ts/S03E04_Around_the_Bloc_podcast.mp3" length="66554286" type="audio/mpeg"/>
+ <itunes:subtitle>With the spotlight on us, the crowd roared as we entered the arena and lined up on what was one of the biggest, most nerve ...</itunes:subtitle>
+ <itunes:summary>With the spotlight on us, the crowd roared as we entered the arena and lined up on what was one of the biggest, most nerve wracking nights of our lives. The expectations were huge and the task ahead a gruelling one, but finally, after all the interviews were over, we readied ourselves and… we started recording the most important podcast of our lives. In front of ABC cameras no less.Oh and the Wanderers are taking a 1-0 lead to Riyadh.This is Around The Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:18:35</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E04: Lights! Camera! Asia!</media:title></media:content> </item>
+ <item>
+ <title>S03E03: Chuckin&#8217; A Tanty</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e03-chuckin-a-tanty/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e03-chuckin-a-tanty/#comments</comments>
+ <pubDate>Tue, 21 Oct 2014 13:03:11 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e03-chuckin-a-tanty/</guid>
+ <description><![CDATA[<div>Another bumper episode of Around the Bloc where we all have our turns at throwing a tantrum over the Derby D’Sydney result and officiating.</div>
+<div></div>
+<div>Most importantly though, special guest Alan Mtashar provides great insight into the world of Asian football and Al Hilal in particular, as we head towards the 1st leg of the 2014 Asian Champions League Final.</div>
+<div></div>
+<div>This is Around the Bloc.</div>
+]]></description>
+ <content:encoded><![CDATA[<div>Another bumper episode of Around the Bloc where we all have our turns at throwing a tantrum over the Derby D’Sydney result and officiating.</div>
+<div></div>
+<div>Most importantly though, special guest Alan Mtashar provides great insight into the world of Asian football and Al Hilal in particular, as we head towards the 1st leg of the 2014 Asian Champions League Final.</div>
+<div></div>
+<div>This is Around the Bloc.</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e03-chuckin-a-tanty/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/c5e7t3/S03E03_Around_the_Bloc_podcast.mp3" length="69713458" type="audio/mpeg"/>
+ <itunes:subtitle>Another bumper episode of Around the Bloc where we all have our turns at throwing a tantrum over the Derby D'Sydney result and officiating.Most importantly ...</itunes:subtitle>
+ <itunes:summary>Another bumper episode of Around the Bloc where we all have our turns at throwing a tantrum over the Derby D'Sydney result and officiating.Most importantly though, special guest Alan Mtashar provides great insight into the world of Asian football and Al Hilal in particular, as we head towards the 1st leg of the 2014 Asian Champions League Final.This is Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:25:10</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E03: Chuckin&#8217; A Tanty</media:title></media:content> </item>
+ <item>
+ <title>S03E02: Sincerely, Speccy</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e02-sincerely-speccy/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e02-sincerely-speccy/#comments</comments>
+ <pubDate>Tue, 14 Oct 2014 12:32:20 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e02-sincerely-speccy/</guid>
+ <description><![CDATA[<div>We lost to Melbourne on the weekend. Now, we’re not 1-4 negativity, but it was a pretty poor performance. It was, however, the first time we’ve actually conceded 4 goals but it didn’t seem to bother the 1,500 fans that travelled to see it.</div>
+<div></div>
+<div>In other news, the W-League team beat Brisbane at Brisbane which is something the A-League squad hasn’t done in a while, and the Youth League squad beat Sydney, which could be a good omen for this weekend’s Derby - the first of the season. The RBB will once again descend (or stumble) upon the SFS in the hopes of taking 3 points home with them in the 8th edition of Popa vs the Smurfs. Will we turn their little village into Gargamel’s lair? Only time will tell.</div>
+<div></div>
+<div>This is Around the Bloc</div>
+]]></description>
+ <content:encoded><![CDATA[<div>We lost to Melbourne on the weekend. Now, we’re not 1-4 negativity, but it was a pretty poor performance. It was, however, the first time we’ve actually conceded 4 goals but it didn’t seem to bother the 1,500 fans that travelled to see it.</div>
+<div></div>
+<div>In other news, the W-League team beat Brisbane at Brisbane which is something the A-League squad hasn’t done in a while, and the Youth League squad beat Sydney, which could be a good omen for this weekend’s Derby - the first of the season. The RBB will once again descend (or stumble) upon the SFS in the hopes of taking 3 points home with them in the 8th edition of Popa vs the Smurfs. Will we turn their little village into Gargamel’s lair? Only time will tell.</div>
+<div></div>
+<div>This is Around the Bloc</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e02-sincerely-speccy/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/d294ej/S03E02_Around_the_Bloc_podcast.mp3" length="57718132" type="audio/mpeg"/>
+ <itunes:subtitle>We lost to Melbourne on the weekend. Now, we're not 1-4 negativity, but it was a pretty poor performance. It was, however, the first time ...</itunes:subtitle>
+ <itunes:summary>We lost to Melbourne on the weekend. Now, we're not 1-4 negativity, but it was a pretty poor performance. It was, however, the first time we've actually conceded 4 goals but it didn't seem to bother the 1,500 fans that travelled to see it.In other news, the W-League team beat Brisbane at Brisbane which is something the A-League squad hasn't done in a while, and the Youth League squad beat Sydney, which could be a good omen for this weekend's Derby - the first of the season. The RBB will once again descend (or stumble) upon the SFS in the hopes of taking 3 points home with them in the 8th edition of Popa vs the Smurfs. Will we turn their little village into Gargamel's lair? Only time will tell.This is Around the Bloc</itunes:summary>
+ <itunes:keywords>A-League, Western Sydney Wanderers, football, soccer</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:00:11</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E02: Sincerely, Speccy</media:title></media:content> </item>
+ <item>
+ <title>S03E01: Two Stars, New Stars, Old Tricks</title>
+ <link>http://aroundthebloc.podbean.com/e/s03e01-2-stars-new-stars-old-tricks/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s03e01-2-stars-new-stars-old-tricks/#comments</comments>
+ <pubDate>Tue, 07 Oct 2014 13:06:49 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s03e01-2-stars-new-stars-old-tricks/</guid>
+ <description><![CDATA[<p style="margin:6px 0px;">We’re back for a third season, and hopefully a third star on our logo. It’s been a really successful off season for both the podcast and the team we podcast about - Around the Bloc has won some silverware, but can the Wanderers? Only time will tell as we enter the home stretch of the Asian Champions League campaign, as well as the beginning of another A-League season.</p>
+<p style="margin:6px 0px;">On the other hand, the FFA Cup was an FFFail, Speccy’s first attempt at<a class="_58cn" href="https://www.facebook.com/hashtag/atbbeers?source=feed_text&#38;story_id=376229905861058"><span class="_58cl">‪#‎</span><span class="_58cm">ATBBeers‬</span></a> do<span class="text_exposed_show">esn’t quite go to plan, and all those cryptic clues that we put out on twitter that noone even really bothered to mention? Well, you’ll find out about that within the first few minutes of the show.</span></p>
+<div class="text_exposed_show">
+<p></p></div>]]></description>
+ <content:encoded><![CDATA[<p style="margin:6px 0px;">We’re back for a third season, and hopefully a third star on our logo. It’s been a really successful off season for both the podcast and the team we podcast about - Around the Bloc has won some silverware, but can the Wanderers? Only time will tell as we enter the home stretch of the Asian Champions League campaign, as well as the beginning of another A-League season.</p>
+<p style="margin:6px 0px;">On the other hand, the FFA Cup was an FFFail, Speccy’s first attempt at<a class="_58cn" href="https://www.facebook.com/hashtag/atbbeers?source=feed_text&amp;story_id=376229905861058"><span class="_58cl">‪#‎</span><span class="_58cm">ATBBeers‬</span></a> do<span class="text_exposed_show">esn’t quite go to plan, and all those cryptic clues that we put out on twitter that noone even really bothered to mention? Well, you’ll find out about that within the first few minutes of the show.</span></p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">We promise you, it’s worth a listen. This is the new season of Around the Bloc.</p>
+</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s03e01-2-stars-new-stars-old-tricks/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/i8jpsr/S03E01_Around_the_Bloc_podcast.mp3" length="69915670" type="audio/mpeg"/>
+ <itunes:subtitle>We're back for a third season, and hopefully a third star on our logo. It's been a really successful off season for both the podcast ...</itunes:subtitle>
+ <itunes:summary>We're back for a third season, and hopefully a third star on our logo. It's been a really successful off season for both the podcast and the team we podcast about - Around the Bloc has won some silverware, but can the Wanderers? Only time will tell as we enter the home stretch of the Asian Champions League campaign, as well as the beginning of another A-League season.On the other hand, the FFA Cup was an FFFail, Speccy's first attempt at‪#‎ATBBeers‬ doesn't quite go to plan, and all those cryptic clues that we put out on twitter that noone even really bothered to mention? Well, you'll find out about that within the first few minutes of the show.We promise you, it's worth a listen. This is the new season of Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:25:39</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/28bcnk/ATBLogo-BlackBackground.png" medium="image">
+ <media:title type="html">S03E01: Two Stars, New Stars, Old Tricks</media:title></media:content> </item>
+ <item>
+ <title>S02E31: ENDS</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e31-ends/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e31-ends/#comments</comments>
+ <pubDate>Mon, 19 May 2014 01:22:03 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s02e31-ends/</guid>
+ <description><![CDATA[<div><span>That’s it, the end of the 2013-14 season. There were highs, lows, transfers and releases, and still some potential silverware - and thats just for the podcast. The Wanderers had what, in hindsight, was a pretty successful sophomore season and are still in the running for the biggest prize on the continent - the AFC Champions League. </span>
+<p><span>Thanks to everyone for listening this year. We’ll return next season with more puns, more laughs, more food talk and more </span><a class="_58cn" dir="ltr" href="https://www.facebook.com/hashtag/facts"><span class="_58cl">#</span><span class="_58cm">facts</span></a><span>. Cheers from everyone here at Around the Bloc.</span></p></div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></description>
+ <content:encoded><![CDATA[<div><span>That’s it, the end of the 2013-14 season. There were highs, lows, transfers and releases, and still some potential silverware - and thats just for the podcast. The Wanderers had what, in hindsight, was a pretty successful sophomore season and are still in the running for the biggest prize on the continent - the AFC Champions League. </span>
+<p><span>Thanks to everyone for listening this year. We’ll return next season with more puns, more laughs, more food talk and more </span><a class="_58cn" dir="ltr" href="https://www.facebook.com/hashtag/facts"><span class="_58cl">#</span><span class="_58cm">facts</span></a><span>. Cheers from everyone here at Around the Bloc.</span></p></div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e31-ends/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/sec79f/S02E31_Around_the_Bloc_podcast.mp3" length="45656505" type="audio/mpeg"/>
+ <itunes:subtitle>That's it, the end of the 2013-14 season. There were highs, lows, transfers and releases, and still some potential silverware - and thats just for ...</itunes:subtitle>
+ <itunes:summary>That's it, the end of the 2013-14 season. There were highs, lows, transfers and releases, and still some potential silverware - and thats just for the podcast. The Wanderers had what, in hindsight, was a pretty successful sophomore season and are still in the running for the biggest prize on the continent - the AFC Champions League. Thanks to everyone for listening this year. We'll return next season with more puns, more laughs, more food talk and more #facts. Cheers from everyone here at Around the Bloc.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:35:06</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E31: ENDS</media:title></media:content> </item>
+ <item>
+ <title>S02E30: &#8220;&#8230;&#8230;.&#8221;</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e30/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e30/#comments</comments>
+ <pubDate>Wed, 07 May 2014 01:24:31 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/e/s02e30/</guid>
+ <description><![CDATA[<div>….uuuugggghhhhhhh……</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></description>
+ <content:encoded><![CDATA[<div>….uuuugggghhhhhhh……</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e30/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/sbc8mh/S02E30_Around_the_Bloc_podcast.mp3" length="44422272" type="audio/mpeg"/>
+ <itunes:subtitle>....uuuugggghhhhhhh......Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:subtitle>
+ <itunes:summary>....uuuugggghhhhhhh......Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:32:32</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E30: &#8220;&#8230;&#8230;.&#8221;</media:title></media:content> </item>
+ <item>
+ <title>S02E29: Clown Car</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e29-clown-car/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e29-clown-car/#comments</comments>
+ <pubDate>Wed, 30 Apr 2014 01:20:12 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/04/30/s02e29-clown-car/</guid>
+ <description><![CDATA[<div>
+<p style="margin:0px 0px 6px;">We’re into the final! We’re going to Brisbane! We’re going to see JASON DERULO live! He’s going to say JASON DERULO heaps of times! I personally can’t wait, and the other 4,000 (and counting) Wanderers fans travelling up seem pretty keen as well.</p>
+<p style="margin:0px 0px 6px;"></p>
+<p style="margin:0px 0px 6px;">We got our Revenge on the Mariners, but it was anything but a Game of Thrones. We left them for Walking Dead, Breaking Bad through their defence and playing like Mad Men in order to come away with the 2-0 win. Brisbane will b<span class="text_exposed_show">e doing their very best to Curb our Enthusiasm, but the Workaholic nature of our play will make it a very tough match. Will the Wanderers Family Guys be strong enough to overcome Berisha, the Total Diva, and his League of Gentlemen? With any luck, come Monday, we’ll all be talking about Roar’s ludicrous display and how they always try to walk i [...]</span></p></div>]]></description>
+ <content:encoded><![CDATA[<div>
+<p style="margin:0px 0px 6px;">We’re into the final! We’re going to Brisbane! We’re going to see JASON DERULO live! He’s going to say JASON DERULO heaps of times! I personally can’t wait, and the other 4,000 (and counting) Wanderers fans travelling up seem pretty keen as well.</p>
+<p style="margin:0px 0px 6px;"></p>
+<p style="margin:0px 0px 6px;">We got our Revenge on the Mariners, but it was anything but a Game of Thrones. We left them for Walking Dead, Breaking Bad through their defence and playing like Mad Men in order to come away with the 2-0 win. Brisbane will b<span class="text_exposed_show">e doing their very best to Curb our Enthusiasm, but the Workaholic nature of our play will make it a very tough match. Will the Wanderers Family Guys be strong enough to overcome Berisha, the Total Diva, and his League of Gentlemen? With any luck, come Monday, we’ll all be talking about Roar’s ludicrous display and how they always try to walk it in.</span></p>
+<p style="margin:0px 0px 6px;"><span class="text_exposed_show"><br /></span></p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">You’re listening to the It Crowd, AKA Brendan, Steve and Ivan on Around the Bloc.</p>
+</div>
+</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e29-clown-car/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/npjzx2/S02E29_Around_the_Bloc_podcast.mp3" length="50685599" type="audio/mpeg"/>
+ <itunes:subtitle>We're into the final! We're going to Brisbane! We're going to see JASON DERULO live! He's going to say JASON DERULO heaps of times! I ...</itunes:subtitle>
+ <itunes:summary>The Official Supporters Podcast of the Western Sydney Wanderers</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:45:35</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E29: Clown Car</media:title></media:content> </item>
+ <item>
+ <title>S02E28: Big Trouble in Little China</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e28-big-trouble-in-little-china/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e28-big-trouble-in-little-china/#comments</comments>
+ <pubDate>Thu, 24 Apr 2014 00:05:08 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/04/24/s02e28-big-trouble-in-little-china/</guid>
+ <description><![CDATA[<div>
+<p style="margin:6px 0px;">2nd in the League, 1st in our group in Asia, 1st in the stands and only a win away from our second consecutive grand final appearance - That’s right, we are almost at the end of the Wanderers worst season on record. The rotation policy, the ‘we’re a squad, not a team’ mentality - it will all hopefully be out the window next year as we play in our second successive ACL campaign.</p>
+<p style="margin:6px 0px;"></p>
+<p style="margin:6px 0px;">In more positive news though, we finally got those 5 goals we were looking for against Guiz<span class="text_exposed_show">hou, people power prevailed in getting the semi-final kick-off moved to a more football-player-friendly time, and we give you the answer to the question that everyone is asking - is it OK to wear a beret in the RBB?</span></p>
+<p style="margin:6px 0px;"><span class="text_exposed_show"><br /></span></p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">Merci po [...]</p></div></div>]]></description>
+ <content:encoded><![CDATA[<div>
+<p style="margin:6px 0px;">2nd in the League, 1st in our group in Asia, 1st in the stands and only a win away from our second consecutive grand final appearance - That’s right, we are almost at the end of the Wanderers worst season on record. The rotation policy, the ‘we’re a squad, not a team’ mentality - it will all hopefully be out the window next year as we play in our second successive ACL campaign.</p>
+<p style="margin:6px 0px;"></p>
+<p style="margin:6px 0px;">In more positive news though, we finally got those 5 goals we were looking for against Guiz<span class="text_exposed_show">hou, people power prevailed in getting the semi-final kick-off moved to a more football-player-friendly time, and we give you the answer to the question that everyone is asking - is it OK to wear a beret in the RBB?</span></p>
+<p style="margin:6px 0px;"><span class="text_exposed_show"><br /></span></p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">Merci pour l’écoute, c’est Autour du Bloc</p>
+</div>
+</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e28-big-trouble-in-little-china/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/k8vfnj/S02E28_Around_the_Bloc_podcast.mp3" length="36584283" type="audio/mpeg"/>
+ <itunes:subtitle>2nd in the League, 1st in our group in Asia, 1st in the stands and only a win away from our second consecutive grand final ...</itunes:subtitle>
+ <itunes:summary>2nd in the League, 1st in our group in Asia, 1st in the stands and only a win away from our second consecutive grand final appearance - That's right, we are almost at the end of the Wanderers worst season on record. The rotation policy, the 'we're a squad, not a team' mentality - it will all hopefully be out the window next year as we play in our second successive ACL campaign.In more positive news though, we finally got those 5 goals we were looking for against Guizhou, people power prevailed in getting the semi-final kick-off moved to a more football-player-friendly time, and we give you the answer to the question that everyone is asking - is it OK to wear a beret in the RBB?Merci pour l'écoute, c'est Autour du BlocThanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:16:12</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E28: Big Trouble in Little China</media:title></media:content> </item>
+ <item>
+ <title>S02E27: Who Wears Black Shorts?</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e27-who-wears-black-shorts/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e27-who-wears-black-shorts/#comments</comments>
+ <pubDate>Wed, 16 Apr 2014 01:28:54 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/04/16/s02e27-who-wears-black-shorts/</guid>
+ <description><![CDATA[<div><font face="Arial, Verdana" size="2">Great Scott! The Wanderers took 3 points away from both Melbourne and Korea this week in two epic performances which had us podcasters travelling through space and time to talk about them, whilst the travelling RBB went for a McFly to either destination, and thankfully nobody had to see a Doc or got involved in any Biff. On the pitch, the team was good enough not to Fox things up, apart from Shinji Ono, who’s number you get if you add Tannen eleven, who had a minor issue with the crossbar.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">So with the team shoring up 2nd spot in the A-League, and one more round to go in the ACL, we would need some sort of sports almanac to predict what’s going to happen in the coming weeks. You’ll just have to stay tuned to Around the Bloc.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div>
+<div></div></div>]]></description>
+ <content:encoded><![CDATA[<div><font face="Arial, Verdana" size="2">Great Scott! The Wanderers took 3 points away from both Melbourne and Korea this week in two epic performances which had us podcasters travelling through space and time to talk about them, whilst the travelling RBB went for a McFly to either destination, and thankfully nobody had to see a Doc or got involved in any Biff. On the pitch, the team was good enough not to Fox things up, apart from Shinji Ono, who’s number you get if you add Tannen eleven, who had a minor issue with the crossbar.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">So with the team shoring up 2nd spot in the A-League, and one more round to go in the ACL, we would need some sort of sports almanac to predict what’s going to happen in the coming weeks. You’ll just have to stay tuned to Around the Bloc.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div>
+<div style="font-family:Arial, Verdana;font-size:13px;">Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div style="font-family:Arial, Verdana;font-size:13px;"><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e27-who-wears-black-shorts/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/5b4fdx/S02E27_Around_the_Bloc_podcast.mp3" length="43258255" type="audio/mpeg"/>
+ <itunes:subtitle>Great Scott! The Wanderers took 3 points away from both Melbourne and Korea this week in two epic performances which had us podcasters travelling through ...</itunes:subtitle>
+ <itunes:summary>Great Scott! The Wanderers took 3 points away from both Melbourne and Korea this week in two epic performances which had us podcasters travelling through space and time to talk about them, whilst the travelling RBB went for a McFly to either destination, and thankfully nobody had to see a Doc or got involved in any Biff. On the pitch, the team was good enough not to Fox things up, apart from Shinji Ono, who's number you get if you add Tannen eleven, who had a minor issue with the crossbar.So with the team shoring up 2nd spot in the A-League, and one more round to go in the ACL, we would need some sort of sports almanac to predict what's going to happen in the coming weeks. You'll just have to stay tuned to Around the Bloc.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:30:07</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E27: Who Wears Black Shorts?</media:title></media:content> </item>
+ <item>
+ <title>S02E26: Gold Edition</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e26-gold-edition/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e26-gold-edition/#comments</comments>
+ <pubDate>Wed, 09 Apr 2014 00:25:02 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/04/09/s02e26-gold-edition/</guid>
+ <description><![CDATA[<div>
+<p style="margin:6px 0px;">The Wanderers managed a 1-1 draw with the top of the table Brisbane Roar, but it was only an afterthought compared to the farewell given to Tensai by the RBB and the club. The fans chanted, made banners, and clapped along for our man, wh<span class="text_exposed_show">ilst the club held a pyro party in the sky in true Western Sydney form.</span></p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">Someone does some ranting this week, although we’re not going to give him any credit for it, and vaccinations affect my ability to pun throughout the intro. Speaking of diseases though, the Yellow Fever podcast is up for a gong at this years FFDU awards, along with the A-League Show and of course, carry-over champs, Around the Bloc - which is starting right now.</p>
+</div>
+</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencater%20%5B...%5D"></a></div>]]></description>
+ <content:encoded><![CDATA[<div>
+<p style="margin:6px 0px;">The Wanderers managed a 1-1 draw with the top of the table Brisbane Roar, but it was only an afterthought compared to the farewell given to Tensai by the RBB and the club. The fans chanted, made banners, and clapped along for our man, wh<span class="text_exposed_show">ilst the club held a pyro party in the sky in true Western Sydney form.</span></p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">Someone does some ranting this week, although we’re not going to give him any credit for it, and vaccinations affect my ability to pun throughout the intro. Speaking of diseases though, the Yellow Fever podcast is up for a gong at this years FFDU awards, along with the A-League Show and of course, carry-over champs, Around the Bloc - which is starting right now.</p>
+</div>
+</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e26-gold-edition/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/wzs7hr/S02E26_Around_the_Bloc_podcast.mp3" length="48672498" type="audio/mpeg"/>
+ <itunes:subtitle>The Wanderers managed a 1-1 draw with the top of the table Brisbane Roar, but it was only an afterthought compared to the farewell given ...</itunes:subtitle>
+ <itunes:summary>The Wanderers managed a 1-1 draw with the top of the table Brisbane Roar, but it was only an afterthought compared to the farewell given to Tensai by the RBB and the club. The fans chanted, made banners, and clapped along for our man, whilst the club held a pyro party in the sky in true Western Sydney form.Someone does some ranting this week, although we're not going to give him any credit for it, and vaccinations affect my ability to pun throughout the intro. Speaking of diseases though, the Yellow Fever podcast is up for a gong at this years FFDU awards, along with the A-League Show and of course, carry-over champs, Around the Bloc - which is starting right now.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:41:23</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E26: Gold Edition</media:title></media:content> </item>
+ <item>
+ <title>S02E25: Twist and Shout</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e25-twist-and-shout/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e25-twist-and-shout/#comments</comments>
+ <pubDate>Thu, 03 Apr 2014 01:40:34 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/04/03/s02e25-twist-and-shout/</guid>
+ <description><![CDATA[<div>
+<p style="margin:6px 0px;">I get by with a little help from my friend Ivan on this week’s podcast, as Steve is on his way back from the USSR… or Japan, and Turner’s off being a paperback writer or something.</p>
+<p style="margin:6px 0px;"></p>
+<p style="margin:6px 0px;">For starters, a huge shout out to the travelling RBB who went on a magical mystery tour to Japan. It made us all proud to see them standing there and we all wished we’d bought a ticket to ride</p>
+<p style="margin:6px 0px;"></p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">Unfortunately though, it’s been a couple of hard day’s nights for the Wanderers, who are gently weeping after two consecutive losses to late goals, and that has left some fans refusing to give them all their loving. The team won’t be able to buy their love though, so Sgt Popa’s Lonely Hearts Club Band will have to earn it back with a good performance against the Roar on the weeken [...]</p></div></div>]]></description>
+ <content:encoded><![CDATA[<div>
+<p style="margin:6px 0px;">I get by with a little help from my friend Ivan on this week’s podcast, as Steve is on his way back from the USSR… or Japan, and Turner’s off being a paperback writer or something.</p>
+<p style="margin:6px 0px;"></p>
+<p style="margin:6px 0px;">For starters, a huge shout out to the travelling RBB who went on a magical mystery tour to Japan. It made us all proud to see them standing there and we all wished we’d bought a ticket to ride</p>
+<p style="margin:6px 0px;"></p>
+<div class="text_exposed_show">
+<p style="margin:0px 0px 6px;">Unfortunately though, it’s been a couple of hard day’s nights for the Wanderers, who are gently weeping after two consecutive losses to late goals, and that has left some fans refusing to give them all their loving. The team won’t be able to buy their love though, so Sgt Popa’s Lonely Hearts Club Band will have to earn it back with a good performance against the Roar on the weekend.</p>
+<p style="margin:0px 0px 6px;"></p>
+<p style="margin:6px 0px;">We are the Walrus, and this is Around the Bloc</p>
+<p style="margin:6px 0px;"></p>
+</div>
+</div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e25-twist-and-shout/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/edwk8g/S02E25_Around_The_Bloc_podcast.mp3" length="33779232" type="audio/mpeg"/>
+ <itunes:subtitle>I get by with a little help from my friend Ivan on this week's podcast, as Steve is on his way back from the USSR... ...</itunes:subtitle>
+ <itunes:summary>I get by with a little help from my friend Ivan on this week's podcast, as Steve is on his way back from the USSR... or Japan, and Turner's off being a paperback writer or something.For starters, a huge shout out to the travelling RBB who went on a magical mystery tour to Japan. It made us all proud to see them standing there and we all wished we'd bought a ticket to rideUnfortunately though, it's been a couple of hard day's nights for the Wanderers, who are gently weeping after two consecutive losses to late goals, and that has left some fans refusing to give them all their loving. The team won't be able to buy their love though, so Sgt Popa's Lonely Hearts Club Band will have to earn it back with a good performance against the Roar on the weekend.We are the Walrus, and this is Around the BlocThanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:10:22</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E25: Twist and Shout</media:title></media:content> </item>
+ <item>
+ <title>S02E24: -title banned-</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e24/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e24/#comments</comments>
+ <pubDate>Wed, 26 Mar 2014 00:10:32 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/03/26/s02e24/</guid>
+ <description><![CDATA[<div>
+<p style="margin:6px 0px;">The Premiers Plate is firmly in the hands of the Brisbane Roar, but the Wanderers haven’t left the table just yet, and like a new vegan’s eggs, they’re unbeaten in recent times. The team will have to get their knife and fork into the upcoming fixtures against Mariners and Kawasaki, both of which will be tougher than a $2 steak. Only time will tell if they’re able to repeat history, score early and pork the bus.</p>
+<p style="margin:6px 0px;"><span style="font-size:10pt;">Speaking of pigs, Cop Watch makes an unwanted return this w</span><span class="text_exposed_show" style="font-size:10pt;">eek, as nobody’s scarf, shoes, socks, or 12 year old daughters are safe from the weekly pat-down that Western Sydney’s loyal football fans are subjected to.</span></p>
+<p style="margin:6px 0px;"><span style="font-size:10pt;">So sit in your allocated seat, refrain from talking or moving - you’re going to listen to this weeks A [...]</span></p></div>]]></description>
+ <content:encoded><![CDATA[<div>
+<p style="margin:6px 0px;">The Premiers Plate is firmly in the hands of the Brisbane Roar, but the Wanderers haven’t left the table just yet, and like a new vegan’s eggs, they’re unbeaten in recent times. The team will have to get their knife and fork into the upcoming fixtures against Mariners and Kawasaki, both of which will be tougher than a $2 steak. Only time will tell if they’re able to repeat history, score early and pork the bus.</p>
+<p style="margin:6px 0px;"><span style="font-size:10pt;">Speaking of pigs, Cop Watch makes an unwanted return this w</span><span class="text_exposed_show" style="font-size:10pt;">eek, as nobody’s scarf, shoes, socks, or 12 year old daughters are safe from the weekly pat-down that Western Sydney’s loyal football fans are subjected to.</span></p>
+<p style="margin:6px 0px;"><span style="font-size:10pt;">So sit in your allocated seat, refrain from talking or moving - you’re going to listen to this weeks Around the Bloc, whether you like it or not.</span></p>
+</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e24/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/fmhy3u/S02E24_Around_the_Bloc_podcast.mp3" length="49512387" type="audio/mpeg"/>
+ <itunes:subtitle>The Premiers Plate is firmly in the hands of the Brisbane Roar, but the Wanderers haven't left the table just yet, and like a new ...</itunes:subtitle>
+ <itunes:summary>The Premiers Plate is firmly in the hands of the Brisbane Roar, but the Wanderers haven't left the table just yet, and like a new vegan's eggs, they're unbeaten in recent times. The team will have to get their knife and fork into the upcoming fixtures against Mariners and Kawasaki, both of which will be tougher than a $2 steak. Only time will tell if they're able to repeat history, score early and pork the bus.Speaking of pigs, Cop Watch makes an unwanted return this week, as nobody's scarf, shoes, socks, or 12 year old daughters are safe from the weekly pat-down that Western Sydney's loyal football fans are subjected to.So sit in your allocated seat, refrain from talking or moving - you're going to listen to this weeks Around the Bloc, whether you like it or not.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:43:08</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E24: -title banned-</media:title></media:content> </item>
+ <item>
+ <title>S02E23: Shoot F*rken!</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e23-shoot-frken/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e23-shoot-frken/#comments</comments>
+ <pubDate>Tue, 18 Mar 2014 23:18:15 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/03/19/s02e23-shoot-frken/</guid>
+ <description><![CDATA[<div><span><span>Unlike Mebrahtu, the Wanderers are starting to look strong in the ACL, something I’m sure Golgol won’t find humerus. Ulna-ther news, the team is finding the A-League tough, but maybe they should listen to us when we keep patella-n t</span></span><span><span><span>hem to shoot. After all, some goals would’ve been nice as the RBB were going out and they were dancing in the storm, getting soaked to the bone in the process.</span>
+</span></span><p><span>There’s rants galore and much more, so skull your drink and get ready for Around the Bloc.</span></p></div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></description>
+ <content:encoded><![CDATA[<div><span><span>Unlike Mebrahtu, the Wanderers are starting to look strong in the ACL, something I’m sure Golgol won’t find humerus. Ulna-ther news, the team is finding the A-League tough, but maybe they should listen to us when we keep patella-n t</span></span><span><span><span>hem to shoot. After all, some goals would’ve been nice as the RBB were going out and they were dancing in the storm, getting soaked to the bone in the process.</span>
+</span></span><p><span>There’s rants galore and much more, so skull your drink and get ready for Around the Bloc.</span></p></div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e23-shoot-frken/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/kagis8/S02E23_Around_the_Bloc_podcast.mp3" length="39982291" type="audio/mpeg"/>
+ <itunes:subtitle>Unlike Mebrahtu, the Wanderers are starting to look strong in the ACL, something I'm sure Golgol won't find humerus. Ulna-ther news, the team is finding ...</itunes:subtitle>
+ <itunes:summary>Unlike Mebrahtu, the Wanderers are starting to look strong in the ACL, something I'm sure Golgol won't find humerus. Ulna-ther news, the team is finding the A-League tough, but maybe they should listen to us when we keep patella-n them to shoot. After all, some goals would've been nice as the RBB were going out and they were dancing in the storm, getting soaked to the bone in the process.There's rants galore and much more, so skull your drink and get ready for Around the Bloc.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:23:17</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E23: Shoot F*rken!</media:title></media:content> </item>
+ <item>
+ <title>S02E22: To Sydney, with love&#8230;</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e22-to-sydney-with-love/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e22-to-sydney-with-love/#comments</comments>
+ <pubDate>Tue, 11 Mar 2014 22:58:23 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/03/12/s02e22-to-sydney-with-love/</guid>
+ <description><![CDATA[<div>
+<div><font face="Arial, Verdana" size="2">Sydney FC won the third Sydney Derby of the season thanks to the Wanderers playing like d’apu-zzo they left Allianz Stadium with their tail between their legs, knowing they won’t go top-or close to it for at least another week. The atmosphere was, as the French say, La Rocca’n, and the 40,000 that packed the ground left the NRL journo’s saying ‘Ono!’, just like Meggsy said after that through ball to Garcia. It was a Bridge too far for the Wanderers though, and Santa came early for the Sky Blue side of Sydney.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">Finally, the Red and Black hoops are off to China to ask ‘Guizhou, where you goin’ with that gun in your hand?’ and then back to play Adelaide at Wanderland.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana"></font></div></div>]]></description>
+ <content:encoded><![CDATA[<div>
+<div><font face="Arial, Verdana" size="2">Sydney FC won the third Sydney Derby of the season thanks to the Wanderers playing like d’apu-zzo they left Allianz Stadium with their tail between their legs, knowing they won’t go top-or close to it for at least another week. The atmosphere was, as the French say, La Rocca’n, and the 40,000 that packed the ground left the NRL journo’s saying ‘Ono!’, just like Meggsy said after that through ball to Garcia. It was a Bridge too far for the Wanderers though, and Santa came early for the Sky Blue side of Sydney.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">Finally, the Red and Black hoops are off to China to ask ‘Guizhou, where you goin’ with that gun in your hand?’ and then back to play Adelaide at Wanderland.</font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">This is Around the Bloc.</font></div>
+</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"></div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;">Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e22-to-sydney-with-love/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/znutb3/S02E22_Around_the_Bloc_podcast.mp3" length="39093083" type="audio/mpeg"/>
+ <itunes:subtitle>Sydney FC won the third Sydney Derby of the season thanks to the Wanderers playing like d'apu-zzo they left Allianz Stadium with their tail between ...</itunes:subtitle>
+ <itunes:summary>Sydney FC won the third Sydney Derby of the season thanks to the Wanderers playing like d'apu-zzo they left Allianz Stadium with their tail between their legs, knowing they won't go top-or close to it for at least another week. The atmosphere was, as the French say, La Rocca'n, and the 40,000 that packed the ground left the NRL journo's saying 'Ono!', just like Meggsy said after that through ball to Garcia. It was a Bridge too far for the Wanderers though, and Santa came early for the Sky Blue side of Sydney.Finally, the Red and Black hoops are off to China to ask 'Guizhou, where you goin' with that gun in your hand?' and then back to play Adelaide at Wanderland.This is Around the Bloc.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:21:26</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E22: To Sydney, with love&#8230;</media:title></media:content> </item>
+ <item>
+ <title>S02E21: La Banda-ing Together</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e21-la-banda-ing-together/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e21-la-banda-ing-together/#comments</comments>
+ <pubDate>Wed, 05 Mar 2014 02:25:30 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/03/05/s02e21-la-banda-ing-together/</guid>
+ <description><![CDATA[<div>
+<div>A huge episode this week as two members of the RBB’s band, La Banda, join us to share their opinions on all the on and off the pitch happenings, which they drum into us, and are generally bass’d on their experiences in the RBB. Having been one of the cymbals of the active supporter group since day 1, they try not to repinique themselves as they recall how they formed, how the chants come together, and why they, for some reason, love Tom-Tomi Juric.</div>
+<div></div>
+<div>Also on the show……………………………………………….. thats right - the silent protest. We delve into the why, the who, what, when, the where and the how, as we were all grabbing our hair and tearing it out wondering what the hell was going on. </div>
+<div></div>
+<div>Sit back, relax and drop it like it’s hot - this is Around the Bloc</div>
+</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for [...]</div>]]></description>
+ <content:encoded><![CDATA[<div>
+<div>A huge episode this week as two members of the RBB’s band, La Banda, join us to share their opinions on all the on and off the pitch happenings, which they drum into us, and are generally bass’d on their experiences in the RBB. Having been one of the cymbals of the active supporter group since day 1, they try not to repinique themselves as they recall how they formed, how the chants come together, and why they, for some reason, love Tom-Tomi Juric.</div>
+<div></div>
+<div>Also on the show……………………………………………….. thats right - the silent protest. We delve into the why, the who, what, when, the where and the how, as we were all grabbing our hair and tearing it out wondering what the hell was going on. </div>
+<div></div>
+<div>Sit back, relax and drop it like it’s hot - this is Around the Bloc</div>
+</div>
+<div></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:</div>
+<div>
+<div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e21-la-banda-ing-together/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/4b9fyv/S02E21_Around_the_Bloc_podcast.mp3" length="62748110" type="audio/mpeg"/>
+ <itunes:subtitle>A huge episode this week as two members of the RBB's band, La Banda, join us to share their opinions on all the on and ...</itunes:subtitle>
+ <itunes:summary>A huge episode this week as two members of the RBB's band, La Banda, join us to share their opinions on all the on and off the pitch happenings, which they drum into us, and are generally bass'd on their experiences in the RBB. Having been one of the cymbals of the active supporter group since day 1, they try not to repinique themselves as they recall how they formed, how the chants come together, and why they, for some reason, love Tom-Tomi Juric.Also on the show........................................................ thats right - the silent protest. We delve into the why, the who, what, when, the where and the how, as we were all grabbing our hair and tearing it out wondering what the hell was going on. Sit back, relax and drop it like it's hot - this is Around the BlocThanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:10:43</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E21: La Banda-ing Together</media:title></media:content> </item>
+ <item>
+ <title>S02E20: Dynamic Duo</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e20-dynamic-duo/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e20-dynamic-duo/#comments</comments>
+ <pubDate>Wed, 26 Feb 2014 00:01:54 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/02/26/s02e20-dynamic-duo/</guid>
+ <description><![CDATA[<div>And then there were two. With most members of the team missing, the dynamic duo of Steve and Brendan bring you this week’s podcast which is more exciting than a backup goalie’s debut.</div>
+<div><br /></div>
+<div>It was a perfect start to a long run of games for the Wanderers, and with the ACL looming, we turn our attention to the failings of Brisbane Roar and William Gallas. We give credit where credit’s due, though, to everyone’s favourite Wanderers player, Jerrad Tyson (as quoted in The Guardian), and our resident Spanish commentator has something special for him too.</div>
+<div><br /></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:<br /><div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;"></div>]]></description>
+ <content:encoded><![CDATA[<div>And then there were two. With most members of the team missing, the dynamic duo of Steve and Brendan bring you this week’s podcast which is more exciting than a backup goalie’s debut.</div>
+<div><br /></div>
+<div>It was a perfect start to a long run of games for the Wanderers, and with the ACL looming, we turn our attention to the failings of Brisbane Roar and William Gallas. We give credit where credit’s due, though, to everyone’s favourite Wanderers player, Jerrad Tyson (as quoted in The Guardian), and our resident Spanish commentator has something special for him too.</div>
+<div><br /></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:<br /><div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"><br /></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e20-dynamic-duo/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/x52pk9/S02E20_Around_the_Bloc_podcast.mp3" length="43763986" type="audio/mpeg"/>
+ <itunes:subtitle>And then there were two. With most members of the team missing, the dynamic duo of Steve and Brendan bring you this week's podcast which ...</itunes:subtitle>
+ <itunes:summary>And then there were two. With most members of the team missing, the dynamic duo of Steve and Brendan bring you this week's podcast which is more exciting than a backup goalie's debut.It was a perfect start to a long run of games for the Wanderers, and with the ACL looming, we turn our attention to the failings of Brisbane Roar and William Gallas. We give credit where credit's due, though, to everyone's favourite Wanderers player, Jerrad Tyson (as quoted in The Guardian), and our resident Spanish commentator has something special for him too.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:31:10</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E20: Dynamic Duo</media:title></media:content> </item>
+ <item>
+ <title>S02E19: Nameless</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e19-nameless/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e19-nameless/#comments</comments>
+ <pubDate>Wed, 19 Feb 2014 01:22:59 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/02/19/s02e19-nameless/</guid>
+ <description><![CDATA[<p>With the Wanderers gameless, our podcast could’ve been aimless, if not for some questions which amazed us, sent through by listeners for a talkback segment that’s become famous, for rants and tangents and being totally outrageous and keeping Turner far from blameless. Our plugs are shameless, we hope listening will be painless as we try to offer you something different from the sameness and get to know you on a first name basis, and just like a really fat waitress we are Around the Bloc!
+</p><div><br /></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:<br /><div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+</div>
+]]></description>
+ <content:encoded><![CDATA[<p>With the Wanderers gameless, our podcast could’ve been aimless, if not for some questions which amazed us, sent through by listeners for a talkback segment that’s become famous, for rants and tangents and being totally outrageous and keeping Turner far from blameless. Our plugs are shameless, we hope listening will be painless as we try to offer you something different from the sameness and get to know you on a first name basis, and just like a really fat waitress we are Around the Bloc!
+</p><div><br /></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:<br /><div><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e19-nameless/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/hvru9y/S02E19_Around_the_Bloc_podcast.mp3" length="53332743" type="audio/mpeg"/>
+ <itunes:subtitle>With the Wanderers gameless, our podcast could've been aimless, if not for some questions which amazed us, sent through by listeners for a talkback segment ...</itunes:subtitle>
+ <itunes:summary>With the Wanderers gameless, our podcast could've been aimless, if not for some questions which amazed us, sent through by listeners for a talkback segment that's become famous, for rants and tangents and being totally outrageous and keeping Turner far from blameless. Our plugs are shameless, we hope listening will be painless as we try to offer you something different from the sameness and get to know you on a first name basis, and just like a really fat waitress we are Around the Bloc!Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:51:06</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E19: Nameless</media:title></media:content> </item>
+ <item>
+ <title>S02E18: En-Tyson</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e18-en-tyson/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e18-en-tyson/#comments</comments>
+ <pubDate>Wed, 12 Feb 2014 01:04:12 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/02/12/s02e18-en-tyson/</guid>
+ <description><![CDATA[<div>
+<div>Everyones favourite Wanderers player, Jerrad Tyson, joins the ATB team for this week, and is a really good sport about getting bombarded with questions until late on a school night. </div>
+<div><br /></div>
+<div>Berisha makes a nuisance of himself once again, so in the head to head between the Roar and the Wanderers this year, there’s been a 1-1, one team’s won one and one team’s won none. We find out who each podcasters mortal enemy is, Things We Could’ve Done Better Last Week almost makes a comeback, Jerrad offers some insight into the day to day dealings of a Wanderers player and has some handy hints for the relief of Fibromyalgia, whilst Turner, although you can’t hear it, does the exact opposite and polishes off an entire packet of chocolate snacks for the third week running. </div>
+<div><br /></div>
+<div>This is Around the Bloc.</div>
+</div>
+<div><br /></div>
+<p>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Chec [...]</p>]]></description>
+ <content:encoded><![CDATA[<div>
+<div>Everyones favourite Wanderers player, Jerrad Tyson, joins the ATB team for this week, and is a really good sport about getting bombarded with questions until late on a school night. </div>
+<div><br /></div>
+<div>Berisha makes a nuisance of himself once again, so in the head to head between the Roar and the Wanderers this year, there’s been a 1-1, one team’s won one and one team’s won none. We find out who each podcasters mortal enemy is, Things We Could’ve Done Better Last Week almost makes a comeback, Jerrad offers some insight into the day to day dealings of a Wanderers player and has some handy hints for the relief of Fibromyalgia, whilst Turner, although you can’t hear it, does the exact opposite and polishes off an entire packet of chocolate snacks for the third week running. </div>
+<div><br /></div>
+<div>This is Around the Bloc.</div>
+</div>
+<div><br /></div>
+<p>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:<br /></p><div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering" style="font-size:10pt;">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e18-en-tyson/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/miea9s/S02E18_Around_the_Bloc_podcast.mp3" length="54499476" type="audio/mpeg"/>
+ <itunes:subtitle>Everyones favourite Wanderers player, Jerrad Tyson, joins the ATB team for this week, and is a really good sport about getting bombarded with questions until ...</itunes:subtitle>
+ <itunes:summary>Everyones favourite Wanderers player, Jerrad Tyson, joins the ATB team for this week, and is a really good sport about getting bombarded with questions until late on a school night.Berisha makes a nuisance of himself once again, so in the head to head between the Roar and the Wanderers this year, there's been a 1-1, one team's won one and one team's won none. We find out who each podcasters mortal enemy is, Things We Could've Done Better Last Week almost makes a comeback, Jerrad offers some insight into the day to day dealings of a Wanderers player and has some handy hints for the relief of Fibromyalgia, whilst Turner, although you can't hear it, does the exact opposite and polishes off an entire packet of chocolate snacks for the third week running.This is Around the Bloc.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords>football, soccer, ALeague, Western Sydney Wanderers, Australia</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:53:32</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E18: En-Tyson</media:title></media:content> </item>
+ <item>
+ <title>S02E17: Mid-Air Collision</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e17-mid-air-collision/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e17-mid-air-collision/#comments</comments>
+ <pubDate>Wed, 05 Feb 2014 01:22:04 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/02/05/s02e17-mid-air-collision/</guid>
+ <description><![CDATA[<div>Unlike the FFA, Around the Bloc does actually appreciate it’s fans, and this week we’ve rectified our premature evacuation of the podcast studio from last week and we’re back to our regular episode length. </div>
+<div><br /></div>
+<div>The Wanderers went up the Freeway to Newcastle, and after 2 amazing strikes and 2 dubious goals, came away with a point from a 2-all draw. Feeling more blue than a speech from Joel Griffiths, the RBB travelled to the W-League and National Youth League double header in modest numbers and were unfortunate not to see a point from those games. </div>
+<div><br /></div>
+<div>The foreigners cop it in ATB Feedback this week, the ATB boys are left Mullen over the new signings, such as Antony Golec who is my new Wanderers brother, and Golgol who is Mehbratu.</div>
+<div><br /></div>
+<div>This is Around the Bloc.</div>
+<div><br /></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:<br /><a href=""></a></div>]]></description>
+ <content:encoded><![CDATA[<div>Unlike the FFA, Around the Bloc does actually appreciate it’s fans, and this week we’ve rectified our premature evacuation of the podcast studio from last week and we’re back to our regular episode length. </div>
+<div><br /></div>
+<div>The Wanderers went up the Freeway to Newcastle, and after 2 amazing strikes and 2 dubious goals, came away with a point from a 2-all draw. Feeling more blue than a speech from Joel Griffiths, the RBB travelled to the W-League and National Youth League double header in modest numbers and were unfortunate not to see a point from those games. </div>
+<div><br /></div>
+<div>The foreigners cop it in ATB Feedback this week, the ATB boys are left Mullen over the new signings, such as Antony Golec who is my new Wanderers brother, and Golgol who is Mehbratu.</div>
+<div><br /></div>
+<div>This is Around the Bloc.</div>
+<div><br /></div>
+<div>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:<br /><a href="http://www.facebook.com/cosykitchencatering" title="facebook.com/cosykitchencatering">facebook.com/cosykitchencatering</a></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e17-mid-air-collision/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/5cmzh/S02E17_Around_the_Bloc_podcast.mp3" length="50749965" type="audio/mpeg"/>
+ <itunes:subtitle>Unlike the FFA, Around the Bloc does actually appreciate it's fans, and this week we've rectified our premature evacuation of the podcast studio from last ...</itunes:subtitle>
+ <itunes:summary>Unlike the FFA, Around the Bloc does actually appreciate it's fans, and this week we've rectified our premature evacuation of the podcast studio from last week and we're back to our regular episode length.The Wanderers went up the Freeway to Newcastle, and after 2 amazing strikes and 2 dubious goals, came away with a point from a 2-all draw. Feeling more blue than a speech from Joel Griffiths, the RBB travelled to the W-League and National Youth League double header in modest numbers and were unfortunate not to see a point from those games.The foreigners cop it in ATB Feedback this week, the ATB boys are left Mullen over the new signings, such as Antony Golec who is my new Wanderers brother, and Golgol who is Mehbratu.This is Around the Bloc.Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at:facebook.com/cosykitchencatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:45:43</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E17: Mid-Air Collision</media:title></media:content> </item>
+ <item>
+ <title>S02E16: Ingloryous Wanderers</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e16-ingloryous-wanderers/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e16-ingloryous-wanderers/#comments</comments>
+ <pubDate>Wed, 29 Jan 2014 01:45:41 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/01/29/s02e16-ingloryous-wanderers/</guid>
+ <description><![CDATA[<p>Around the Bloc has a new sponsor this week in Cosy Kitchen Catering, but the feast they provided for us wasn’t the only one on offer as the Wanderers devoured Perth Glory in a 3-1 win at Parramatta Stadium. It was the Wanderers thyme to shine as they rocket-ed back into 2nd place, slowly eating away at the top spot. </p>
+<p>ATBFeedback had Speccy all heated up this week, as he struggled to digest some of the answers provided, the Youth league boys had a win but the Roar proved Toum much for the Wanderers ladies up in Queensland. </p>
+<p>You can have your cake and eat it too, on this weeks episode of Around the Bloc. </p>
+<p>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at http://www.facebook.com/CosyKitchenCatering
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>Around the Bloc has a new sponsor this week in Cosy Kitchen Catering, but the feast they provided for us wasn’t the only one on offer as the Wanderers devoured Perth Glory in a 3-1 win at Parramatta Stadium. It was the Wanderers thyme to shine as they rocket-ed back into 2nd place, slowly eating away at the top spot. </p>
+<p>ATBFeedback had Speccy all heated up this week, as he struggled to digest some of the answers provided, the Youth league boys had a win but the Roar proved Toum much for the Wanderers ladies up in Queensland. </p>
+<p>You can have your cake and eat it too, on this weeks episode of Around the Bloc. </p>
+<p>Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at http://www.facebook.com/CosyKitchenCatering
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e16-ingloryous-wanderers/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/rg46ga/S02E16_Around_the_Bloc_podcast.mp3" length="28714947" type="audio/mpeg"/>
+ <itunes:subtitle>Around the Bloc has a new sponsor this week in Cosy Kitchen Catering, but the feast they provided for us wasn't the only one on ...</itunes:subtitle>
+ <itunes:summary>Around the Bloc has a new sponsor this week in Cosy Kitchen Catering, but the feast they provided for us wasn't the only one on offer as the Wanderers devoured Perth Glory in a 3-1 win at Parramatta Stadium. It was the Wanderers thyme to shine as they rocket-ed back into 2nd place, slowly eating away at the top spot.
+
+ATBFeedback had Speccy all heated up this week, as he struggled to digest some of the answers provided, the Youth league boys had a win but the Roar proved Toum much for the Wanderers ladies up in Queensland.
+
+You can have your cake and eat it too, on this weeks episode of Around the Bloc.
+
+Thanks to Cosy Kitchen Catering for sponsoring this weeks podcast! Check them out at http://www.facebook.com/CosyKitchenCatering</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>00:59:49</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E16: Ingloryous Wanderers</media:title></media:content> </item>
+ <item>
+ <title>S02E15: Prodigal Podcast</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e15-prodigal-podcast/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e15-prodigal-podcast/#comments</comments>
+ <pubDate>Wed, 22 Jan 2014 00:49:59 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/01/22/s02e15-prodigal-podcast/</guid>
+ <description><![CDATA[<div>The Wanderers went to the City of Churches, praying for a win. Popa put a team on the pitch that had some fans asking ‘why have you forsaken me?’. And would you Adam-and-Eve it? We came away with another loss. It was the RBB’s tour of duty though, and the quality of the active support is a testament to the travelling fans. </div>
+<div><br /></div>
+<div>In other news, Shinji Ono is leaving the club, unlikely to return in 3 days, the W-League and Youth League teams struggle through their matches, although neither are crucified as much as Speccy is when we confront him about his ‘Prodigal Son’ call from last week. </div>
+<div><br /></div>
+<div>In the name of the Iván, the Turner, the Brendan and Steve, this is Around the Bloc.</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"><br /></div>
+]]></description>
+ <content:encoded><![CDATA[<div>The Wanderers went to the City of Churches, praying for a win. Popa put a team on the pitch that had some fans asking ‘why have you forsaken me?’. And would you Adam-and-Eve it? We came away with another loss. It was the RBB’s tour of duty though, and the quality of the active support is a testament to the travelling fans. </div>
+<div><br /></div>
+<div>In other news, Shinji Ono is leaving the club, unlikely to return in 3 days, the W-League and Youth League teams struggle through their matches, although neither are crucified as much as Speccy is when we confront him about his ‘Prodigal Son’ call from last week. </div>
+<div><br /></div>
+<div>In the name of the Iván, the Turner, the Brendan and Steve, this is Around the Bloc.</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"><br /></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e15-prodigal-podcast/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/udajt5/S02E15_Around_the_Bloc_podcast.mp3" length="37385093" type="audio/mpeg"/>
+ <itunes:subtitle>The Wanderers went to the City of Churches, praying for a win. Popa put a team on the pitch that had some fans asking 'why ...</itunes:subtitle>
+ <itunes:summary>The Wanderers went to the City of Churches, praying for a win. Popa put a team on the pitch that had some fans asking 'why have you forsaken me?'. And would you Adam-and-Eve it? We came away with another loss. It was the RBB's tour of duty though, and the quality of the active support is a testament to the travelling fans.In other news, Shinji Ono is leaving the club, unlikely to return in 3 days, the W-League and Youth League teams struggle through their matches, although neither are crucified as much as Speccy is when we confront him about his 'Prodigal Son' call from last week.In the name of the Iván, the Turner, the Brendan and Steve, this is Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:17:52</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E15: Prodigal Podcast</media:title></media:content> </item>
+ <item>
+ <title>S02E14: Two and a Half Men</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e14-two-and-a-half-men/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e14-two-and-a-half-men/#comments</comments>
+ <pubDate>Thu, 16 Jan 2014 02:33:42 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/01/16/s02e14-two-and-a-half-men/</guid>
+ <description><![CDATA[<div>Two and a half men present this week’s podcast, with a lineup more depleted than the Wanderers themselves, bringing you the mixed news from the last week. The Wanderers were the first team to win the Sydney Derby at home, but followed it up with a loss in Melbourne.</div>
+<div><br /></div>
+<div>ATBFeedback goes into overdrive, Speccy and JAR go overboard, transfer rumours are overhyped and we all get overtly stupid, in this week’s overtime Around The Bloc.</div>
+]]></description>
+ <content:encoded><![CDATA[<div>Two and a half men present this week’s podcast, with a lineup more depleted than the Wanderers themselves, bringing you the mixed news from the last week. The Wanderers were the first team to win the Sydney Derby at home, but followed it up with a loss in Melbourne.</div>
+<div><br /></div>
+<div>ATBFeedback goes into overdrive, Speccy and JAR go overboard, transfer rumours are overhyped and we all get overtly stupid, in this week’s overtime Around The Bloc.</div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e14-two-and-a-half-men/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/hywpi9/S02E14_Around_the_Bloc_podcast.mp3" length="60213605" type="audio/mpeg"/>
+ <itunes:subtitle>Two and a half men present this week's podcast, with a lineup more depleted than the Wanderers themselves, bringing you the mixed news from the ...</itunes:subtitle>
+ <itunes:summary>Two and a half men present this week's podcast, with a lineup more depleted than the Wanderers themselves, bringing you the mixed news from the last week. The Wanderers were the first team to win the Sydney Derby at home, but followed it up with a loss in Melbourne.ATBFeedback goes into overdrive, Speccy and JAR go overboard, transfer rumours are overhyped and we all get overtly stupid, in this week's overtime Around The Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:05:26</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E14: Two and a Half Men</media:title></media:content> </item>
+ <item>
+ <title>S02E13: Nightmare on Melbs Streets</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e13-nightmare-on-melbs-streets/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e13-nightmare-on-melbs-streets/#comments</comments>
+ <pubDate>Wed, 08 Jan 2014 00:46:26 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/01/08/s02e13-nightmare-on-melbs-streets/</guid>
+ <description><![CDATA[<div>On Around the Bloc this week - Club in crisis, as Wellington are the first team to defeat the Wanderers at Parramatta in almost a year, and have now 1-3 in a row. </div>
+<div><br /></div>
+<div>The pressing issue this week, though, is the suspended sentences placed on Western Sydney and the Melbourne Victory over the events that took place before and during their last game. The team discuss their views and one ATB member gets all ‘tin-foil-hat’ about it. </div>
+<div><br /></div>
+<div>We review the upcoming Sydney Derby, offer the worst football tips on the planet, and much more on this edition of Around the Bloc.</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"><br /></div>
+]]></description>
+ <content:encoded><![CDATA[<div>On Around the Bloc this week - Club in crisis, as Wellington are the first team to defeat the Wanderers at Parramatta in almost a year, and have now 1-3 in a row. </div>
+<div><br /></div>
+<div>The pressing issue this week, though, is the suspended sentences placed on Western Sydney and the Melbourne Victory over the events that took place before and during their last game. The team discuss their views and one ATB member gets all ‘tin-foil-hat’ about it. </div>
+<div><br /></div>
+<div>We review the upcoming Sydney Derby, offer the worst football tips on the planet, and much more on this edition of Around the Bloc.</div>
+<div style="font-family:Arial, Verdana;font-size:10pt;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;"><br /></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e13-nightmare-on-melbs-streets/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/dsye4n/S02E13_Around_the_Bloc_podcast.mp3" length="43588025" type="audio/mpeg"/>
+ <itunes:subtitle>On Around the Bloc this week - Club in crisis, as Wellington are the first team to defeat the Wanderers at Parramatta in almost a ...</itunes:subtitle>
+ <itunes:summary>On Around the Bloc this week - Club in crisis, as Wellington are the first team to defeat the Wanderers at Parramatta in almost a year, and have now 1-3 in a row.The pressing issue this week, though, is the suspended sentences placed on Western Sydney and the Melbourne Victory over the events that took place before and during their last game. The team discuss their views and one ATB member gets all 'tin-foil-hat' about it.We review the upcoming Sydney Derby, offer the worst football tips on the planet, and much more on this edition of Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:30:48</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E13: Nightmare on Melbs Streets</media:title></media:content> </item>
+ <item>
+ <title>S02E12: The Hangover</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e12-the-hangover/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e12-the-hangover/#comments</comments>
+ <pubDate>Thu, 02 Jan 2014 03:05:02 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2014/01/02/s02e12-the-hangover/</guid>
+ <description><![CDATA[<p class="MsoNormal" style="margin-bottom:.0001pt;">Fireworks, this week, as the ATB boys
+leave their luxurious holiday homes to once again bung on about the Wanderers
+in the first podcast of the new year. We showed sparkle and flare to beat the
+Mariners, were disappointed at what seemed like a minute after midnight in
+Melbourne, and Wellington were 2 hours AND 2 goals ahead of us, although we
+didn’t know that at the time of recording so you can still hear the gleeful
+optimism in our voices.</p>
+<p class="MsoNormal" style="margin-bottom:.0001pt;">#ATBFeedback goes live this week and we
+hear many different stories from Wanderers away trips, straight from the horse’s
+mouths, and all the usual stuff is in there too.</p>
+<p class="MsoNormal" style="margin-bottom:.0001pt;"></p><p></p>
+<p class="MsoNormal" style="margin-bottom:.0001pt;">Finally, Happy New Year to all of our
+listeners. This is Around The Bloc.</p>
+
+]]></description>
+ <content:encoded><![CDATA[<p class="MsoNormal" style="margin-bottom:.0001pt;">Fireworks, this week, as the ATB boys
+leave their luxurious holiday homes to once again bung on about the Wanderers
+in the first podcast of the new year. We showed sparkle and flare to beat the
+Mariners, were disappointed at what seemed like a minute after midnight in
+Melbourne, and Wellington were 2 hours AND 2 goals ahead of us, although we
+didn’t know that at the time of recording so you can still hear the gleeful
+optimism in our voices.</p>
+<p class="MsoNormal" style="margin-bottom:.0001pt;">#ATBFeedback goes live this week and we
+hear many different stories from Wanderers away trips, straight from the horse’s
+mouths, and all the usual stuff is in there too.</p>
+<p class="MsoNormal" style="margin-bottom:.0001pt;"></p><p></p>
+<p class="MsoNormal" style="margin-bottom:.0001pt;">Finally, Happy New Year to all of our
+listeners. This is Around The Bloc.</p>
+
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e12-the-hangover/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/673jx/Around_The_Bloc_podcast_S02E12.mp3" length="39616577" type="audio/mpeg"/>
+ <itunes:subtitle>Fireworks, this week, as the ATB boys
+leave their luxurious holiday homes to once again bung on about the Wanderers
+in the first podcast of the new ...</itunes:subtitle>
+ <itunes:summary>Fireworks, this week, as the ATB boys
+leave their luxurious holiday homes to once again bung on about the Wanderers
+in the first podcast of the new year. We showed sparkle and flare to beat the
+Mariners, were disappointed at what seemed like a minute after midnight in
+Melbourne, and Wellington were 2 hours AND 2 goals ahead of us, although we
+didn't know that at the time of recording so you can still hear the gleeful
+optimism in our voices.#ATBFeedback goes live this week and we
+hear many different stories from Wanderers away trips, straight from the horse’s
+mouths, and all the usual stuff is in there too.
+
+Finally, Happy New Year to all of our
+listeners. This is Around The Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:22:31</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E12: The Hangover</media:title></media:content> </item>
+ <item>
+ <title>S02E11: Three Wise Men</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e11-three-wise-men/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e11-three-wise-men/#comments</comments>
+ <pubDate>Wed, 18 Dec 2013 01:37:51 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/12/18/s02e11-three-wise-men/</guid>
+ <description><![CDATA[<div>The RBB followed their stars up the road for anything but a silent night in Newcastle. On this week’s podcast, three wise men discuss whether Mark Bridge’s goal was the result of a push in the back, or an immaculate deflection off Haliti’s head, if Birighitti should have been told ‘theres no more room at the inn’, and how the little drummer boy broke his instrument. </div>
+<div><br /></div>
+<div>In other news, Perth do away with their man(a)ger, ATBFeedback turns into a celebratory feast and the W-League team goes on their merry way to record a win against the Glory. All this and more on this weeks edition of Around the Bloc. </div>
+]]></description>
+ <content:encoded><![CDATA[<div>The RBB followed their stars up the road for anything but a silent night in Newcastle. On this week’s podcast, three wise men discuss whether Mark Bridge’s goal was the result of a push in the back, or an immaculate deflection off Haliti’s head, if Birighitti should have been told ‘theres no more room at the inn’, and how the little drummer boy broke his instrument. </div>
+<div><br /></div>
+<div>In other news, Perth do away with their man(a)ger, ATBFeedback turns into a celebratory feast and the W-League team goes on their merry way to record a win against the Glory. All this and more on this weeks edition of Around the Bloc. </div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e11-three-wise-men/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/ccb6x/S02E11_Around_the_Bloc_podcast.mp3" length="47449341" type="audio/mpeg"/>
+ <itunes:subtitle>The RBB followed their stars up the road for anything but a silent night in Newcastle. On this week's podcast, three wise men discuss whether ...</itunes:subtitle>
+ <itunes:summary>The RBB followed their stars up the road for anything but a silent night in Newcastle. On this week's podcast, three wise men discuss whether Mark Bridge's goal was the result of a push in the back, or an immaculate deflection off Haliti's head, if Birighitti should have been told 'theres no more room at the inn', and how the little drummer boy broke his instrument.In other news, Perth do away with their man(a)ger, ATBFeedback turns into a celebratory feast and the W-League team goes on their merry way to record a win against the Glory. All this and more on this weeks edition of Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:38:51</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E11: Three Wise Men</media:title></media:content> </item>
+ <item>
+ <title>S02E10: Drawn Together</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e10-drawn-together/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e10-drawn-together/#comments</comments>
+ <pubDate>Wed, 11 Dec 2013 01:23:28 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/12/11/s02e10-drawn-together/</guid>
+ <description><![CDATA[<div><font face="Arial, Verdana" size="2">This week - The Asian Champions League draw is announced, during which the Wanderers will be China win to progress through the group stages and create Korea highlights for themselves, and if they succeed, Japandamonium will ensue. </font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">In the meantime however, the club falls deeper into crisis as they go yet another game without a win and add another draw to their streak. Will they be able to break it against the relentlessness of the Newcastle Jets? </font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">All this and more on this edition of Around the Bloc</font></div>
+]]></description>
+ <content:encoded><![CDATA[<div><font face="Arial, Verdana" size="2">This week - The Asian Champions League draw is announced, during which the Wanderers will be China win to progress through the group stages and create Korea highlights for themselves, and if they succeed, Japandamonium will ensue. </font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">In the meantime however, the club falls deeper into crisis as they go yet another game without a win and add another draw to their streak. Will they be able to break it against the relentlessness of the Newcastle Jets? </font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">All this and more on this edition of Around the Bloc</font></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e10-drawn-together/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/7gn4p/S02E10_Around_the_Bloc_podcast.mp3" length="32754732" type="audio/mpeg"/>
+ <itunes:subtitle>This week - The Asian Champions League draw is announced, during which the Wanderers will be China win to progress through the group stages and ...</itunes:subtitle>
+ <itunes:summary>This week - The Asian Champions League draw is announced, during which the Wanderers will be China win to progress through the group stages and create Korea highlights for themselves, and if they succeed, Japandamonium will ensue.In the meantime however, the club falls deeper into crisis as they go yet another game without a win and add another draw to their streak. Will they be able to break it against the relentlessness of the Newcastle Jets?All this and more on this edition of Around the Bloc</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:08:14</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E10: Drawn Together</media:title></media:content> </item>
+ <item>
+ <title>S02E09: Club in Crisis!!</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e09-club-in-crisis/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e09-club-in-crisis/#comments</comments>
+ <pubDate>Wed, 04 Dec 2013 03:22:19 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/12/04/s02e09-club-in-crisis/</guid>
+ <description><![CDATA[<p>It’s episode 9 this week, and that means we’re one third of the way through the season. The Wanderers played a pretty boring nil-all draw on the weekend, and as a result, just like the team we’re playing next week, we all lose our Kewell. Our resident Spanish Commentator makes his return, but with nothing to commentate on we turn our attention to squad rotation and whether or not it’s a good thing. Speaking of going around in circles, the rest of the podcast includes W-League, Youth League, an “International wrap up”, and more. This is Around the Bloc. <br style="color:rgb(51,51,51);font-family:'lucida grande', tahoma, verdana, arial, sans-serif;line-height:17px;background-color:rgb(255,255,255);" /></p>
+]]></description>
+ <content:encoded><![CDATA[<p>It’s episode 9 this week, and that means we’re one third of the way through the season. The Wanderers played a pretty boring nil-all draw on the weekend, and as a result, just like the team we’re playing next week, we all lose our Kewell. Our resident Spanish Commentator makes his return, but with nothing to commentate on we turn our attention to squad rotation and whether or not it’s a good thing. Speaking of going around in circles, the rest of the podcast includes W-League, Youth League, an “International wrap up”, and more. This is Around the Bloc. <br style="color:rgb(51,51,51);font-family:'lucida grande', tahoma, verdana, arial, sans-serif;line-height:17px;background-color:rgb(255,255,255);" /></p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e09-club-in-crisis/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/g8hhht/S02E09_Around_the_Bloc_podcast.mp3" length="49874549" type="audio/mpeg"/>
+ <itunes:subtitle>It's episode 9 this week, and that means we're one third of the way through the season. The Wanderers played a pretty boring nil-all draw ...</itunes:subtitle>
+ <itunes:summary>It's episode 9 this week, and that means we're one third of the way through the season. The Wanderers played a pretty boring nil-all draw on the weekend, and as a result, just like the team we're playing next week, we all lose our Kewell. Our resident Spanish Commentator makes his return, but with nothing to commentate on we turn our attention to squad rotation and whether or not it's a good thing. Speaking of going around in circles, the rest of the podcast includes W-League, Youth League, an "International wrap up", and more. This is Around the Bloc. </itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:43:54</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E09: Club in Crisis!!</media:title></media:content> </item>
+ <item>
+ <title>S02E08: Scrappy Curtains with Pancakes</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e08-scrappy-curtains-with-pancakes/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e08-scrappy-curtains-with-pancakes/#comments</comments>
+ <pubDate>Wed, 27 Nov 2013 01:05:32 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/11/27/s02e08-scrappy-curtains-with-pancakes/</guid>
+ <description><![CDATA[<p>Around the Bloc returns for another week and, like Brisbane Roar, is only good for about 20 minutes, but still does enough to see out a full hour and a half. Turner, our resident caped crusader, tells us what he remembers of his antics from the away trip whilst Brendan makes one too many trips to Marconi. The boys finally get to dissect a loss but, with the help of <a class="_58cn" href="https://www.facebook.com/hashtag/atbfeedback">#ATBFeedback</a>, are able to see the positives. There’s good news for the Youth League, segues galore, and much much more on this edition of Around the Bloc.
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>Around the Bloc returns for another week and, like Brisbane Roar, is only good for about 20 minutes, but still does enough to see out a full hour and a half. Turner, our resident caped crusader, tells us what he remembers of his antics from the away trip whilst Brendan makes one too many trips to Marconi. The boys finally get to dissect a loss but, with the help of <a class="_58cn" href="https://www.facebook.com/hashtag/atbfeedback">#ATBFeedback</a>, are able to see the positives. There’s good news for the Youth League, segues galore, and much much more on this edition of Around the Bloc.
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e08-scrappy-curtains-with-pancakes/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/jjv4rf/S02E08_Around_the_Bloc_podcast.mp3" length="48431336" type="audio/mpeg"/>
+ <itunes:subtitle>Around the Bloc returns for another week and, like Brisbane Roar, is only good for about 20 minutes, but still does enough to see out ...</itunes:subtitle>
+ <itunes:summary>Around the Bloc returns for another week and, like Brisbane Roar, is only good for about 20 minutes, but still does enough to see out a full hour and a half. Turner, our resident caped crusader, tells us what he remembers of his antics from the away trip whilst Brendan makes one too many trips to Marconi. The boys finally get to dissect a loss but, with the help of#ATBFeedback, are able to see the positives. There's good news for the Youth League, segues galore, and much much more on this edition of Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:40:53</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E08: Scrappy Curtains with Pancakes</media:title></media:content> </item>
+ <item>
+ <title>S02E07: Reigning at the Top</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e07-reigning-at-the-top/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e07-reigning-at-the-top/#comments</comments>
+ <pubDate>Wed, 20 Nov 2013 00:45:16 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/11/20/s02e07-reigning-at-the-top/</guid>
+ <description><![CDATA[<p><span><span style="vertical-align:baseline;">It was wet, wet, wet in Parramatta on Saturday night, but the love was certainly not all around in the stadium, with the two arguably biggest and most passionate groups of fans in the A-League battling it out in the stands. It was 82 minutes before Mark Bridge put away the winner, and less than 24 hours later the Wanderers finished the round at the top of the table for the first time this season. The bliss turns to diss in ATBFeedback, the joy for the Wanderers unfortunately stopped short of the W-League and Youth League games, and the Newcastle Jets and Michael Turner both pull off upsets over their opponents in the same game. All this and much more on this edition of Around The Bloc. </span></span>
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p><span><span style="vertical-align:baseline;">It was wet, wet, wet in Parramatta on Saturday night, but the love was certainly not all around in the stadium, with the two arguably biggest and most passionate groups of fans in the A-League battling it out in the stands. It was 82 minutes before Mark Bridge put away the winner, and less than 24 hours later the Wanderers finished the round at the top of the table for the first time this season. The bliss turns to diss in ATBFeedback, the joy for the Wanderers unfortunately stopped short of the W-League and Youth League games, and the Newcastle Jets and Michael Turner both pull off upsets over their opponents in the same game. All this and much more on this edition of Around The Bloc. </span></span>
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e07-reigning-at-the-top/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/nnfgj8/S02E07_Around_the_Bloc_podcast.mp3" length="38095414" type="audio/mpeg"/>
+ <itunes:subtitle>It was wet, wet, wet in Parramatta on Saturday night, but the love was certainly not all around in the stadium, with the two arguably ...</itunes:subtitle>
+ <itunes:summary>It was wet, wet, wet in Parramatta on Saturday night, but the love was certainly not all around in the stadium, with the two arguably biggest and most passionate groups of fans in the A-League battling it out in the stands. It was 82 minutes before Mark Bridge put away the winner, and less than 24 hours later the Wanderers finished the round at the top of the table for the first time this season. The bliss turns to diss in ATBFeedback, the joy for the Wanderers unfortunately stopped short of the W-League and Youth League games, and the Newcastle Jets and Michael Turner both pull off upsets over their opponents in the same game. All this and much more on this edition of Around The Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:19:21</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E07: Reigning at the Top</media:title></media:content> </item>
+ <item>
+ <title>S02E06: Heartbeat</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e06-heartbeat/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e06-heartbeat/#comments</comments>
+ <pubDate>Wed, 13 Nov 2013 00:15:01 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/11/13/s02e06-heartbeat/</guid>
+ <description><![CDATA[<div><font face="Arial, Verdana" size="2">On the day Santalab showed his loyalty to the Wanderers like a Golden Lab to a blind man, the ATB boys are back with another episode more chockers than Parramatta Stadium will be on Saturday night. After a gritty 1-0 win where Cole scored in the cold, TomiGun should’ve kept the safety on and the team had the Heart beat, we look forward to victory over the Victory both on and off the pitch. Cop Watch returns in comical fashion, we report on the start of the W-League and the women and youth teams double header, which was the second one of the weekend after Seb Ryall’s goal from the Big Blue. All this and much more on this edition of Around The Bloc. </font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">Oh…and we interview Foxsport’s Adam Peacock.</font></div>
+]]></description>
+ <content:encoded><![CDATA[<div><font face="Arial, Verdana" size="2">On the day Santalab showed his loyalty to the Wanderers like a Golden Lab to a blind man, the ATB boys are back with another episode more chockers than Parramatta Stadium will be on Saturday night. After a gritty 1-0 win where Cole scored in the cold, TomiGun should’ve kept the safety on and the team had the Heart beat, we look forward to victory over the Victory both on and off the pitch. Cop Watch returns in comical fashion, we report on the start of the W-League and the women and youth teams double header, which was the second one of the weekend after Seb Ryall’s goal from the Big Blue. All this and much more on this edition of Around The Bloc. </font></div>
+<div><font face="Arial, Verdana" size="2"><br /></font></div>
+<div><font face="Arial, Verdana" size="2">Oh…and we interview Foxsport’s Adam Peacock.</font></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e06-heartbeat/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/w4vw3/S02E06_Around_the_Bloc_podcast.mp3" length="50199512" type="audio/mpeg"/>
+ <itunes:subtitle>On the day Santalab showed his loyalty to the Wanderers like a Golden Lab to a blind man, the ATB boys are back with another ...</itunes:subtitle>
+ <itunes:summary>On the day Santalab showed his loyalty to the Wanderers like a Golden Lab to a blind man, the ATB boys are back with another episode more chockers than Parramatta Stadium will be on Saturday night. After a gritty 1-0 win where Cole scored in the cold, TomiGun should’ve kept the safety on and the team had the Heart beat, we look forward to victory over the Victory both on and off the pitch. Cop Watch returns in comical fashion, we report on the start of the W-League and the women and youth teams double header, which was the second one of the weekend after Seb Ryall’s goal from the Big Blue. All this and much more on this edition of Around The Bloc.Oh...and we interview Foxsport's Adam Peacock.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:44:34</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E06: Heartbeat</media:title></media:content> </item>
+ <item>
+ <title>S02E05: Receipt, Deceit, but no Defeat</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e05-receipt-deceit-but-no-defeat/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e05-receipt-deceit-but-no-defeat/#comments</comments>
+ <pubDate>Wed, 06 Nov 2013 03:43:33 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/11/06/s02e05-receipt-deceit-but-no-defeat/</guid>
+ <description><![CDATA[<p>With Speccy benched, ATB is down to 4 men this week. TomiGun© put 2 away at home against the Reds whilst Polenz was lucky that only Adelaide’s secondary kit colour featured amongst the cards shown to him on Friday night. Cop Watch is back, unfortunately, due to fear of a receipt roll planet, and ATBTalkback reveals the pep talks that Wanderers fans would use to pump up the team. Finally, the W-League returns with a double header featuring the WanderWomen and the WanderKids of the National Youth League at Marconi, and the ATB tipping comp receives a shake up. All this and more, on this week’s edition of Around the Bloc.
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>With Speccy benched, ATB is down to 4 men this week. TomiGun© put 2 away at home against the Reds whilst Polenz was lucky that only Adelaide’s secondary kit colour featured amongst the cards shown to him on Friday night. Cop Watch is back, unfortunately, due to fear of a receipt roll planet, and ATBTalkback reveals the pep talks that Wanderers fans would use to pump up the team. Finally, the W-League returns with a double header featuring the WanderWomen and the WanderKids of the National Youth League at Marconi, and the ATB tipping comp receives a shake up. All this and more, on this week’s edition of Around the Bloc.
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e05-receipt-deceit-but-no-defeat/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/cxfuam/S02E05_Around_the_Bloc_podcast.mp3" length="34842020" type="audio/mpeg"/>
+ <itunes:subtitle>With Speccy benched, ATB is down to 4 men this week. TomiGun© put 2 away at home against the Reds whilst Polenz was lucky that ...</itunes:subtitle>
+ <itunes:summary>With Speccy benched, ATB is down to 4 men this week. TomiGun© put 2 away at home against the Reds whilst Polenz was lucky that only Adelaide's secondary kit colour featured amongst the cards shown to him on Friday night. Cop Watch is back, unfortunately, due to fear of a receipt roll planet, and ATBTalkback reveals the pep talks that Wanderers fans would use to pump up the team. Finally, the W-League returns with a double header featuring the WanderWomen and the WanderKids of the National Youth League at Marconi, and the ATB tipping comp receives a shake up. All this and more, on this week's edition of Around the Bloc.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:36:46</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E05: Receipt, Deceit, but no Defeat</media:title></media:content> </item>
+ <item>
+ <title>S02E04: A better love story than Twilight</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e04-a-better-love-story-than-twilight/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e04-a-better-love-story-than-twilight/#comments</comments>
+ <pubDate>Wed, 30 Oct 2013 01:04:54 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/10/30/s02e04-a-better-love-story-than-twilight/</guid>
+ <description><![CDATA[<p>Around the Bloc has a special announcement - this week, we talk about football! The beautiful game is back in the spotlight as the Wanderers defeat Sydney FC in the first Derby D’Sydney of the season. Speccy turned up, Brendan was there too but… also kind of wasn’t, Ivan revelled in the cool, fresh air (for most of the night), Turner made the papers again and Stephen got to make fun of everyone for all of the above. Aside from a few exceptions, the Police and media were generally well-behaved.<br /><br />We find out what rituals different Wanderers fans have pre-game in ATBTalkback and preview our first game to be aired live, on free-to-air TV against Adelaide United.
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>Around the Bloc has a special announcement - this week, we talk about football! The beautiful game is back in the spotlight as the Wanderers defeat Sydney FC in the first Derby D’Sydney of the season. Speccy turned up, Brendan was there too but… also kind of wasn’t, Ivan revelled in the cool, fresh air (for most of the night), Turner made the papers again and Stephen got to make fun of everyone for all of the above. Aside from a few exceptions, the Police and media were generally well-behaved.<br /><br />We find out what rituals different Wanderers fans have pre-game in ATBTalkback and preview our first game to be aired live, on free-to-air TV against Adelaide United.
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e04-a-better-love-story-than-twilight/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/wjeiq5/S02E04_Around_the_Bloc_podcast.mp3" length="28720433" type="audio/mpeg"/>
+ <itunes:subtitle>Around the Bloc has a special announcement - this week, we talk about football! The beautiful game is back in the spotlight as the Wanderers ...</itunes:subtitle>
+ <itunes:summary>Around the Bloc has a special announcement - this week, we talk about football! The beautiful game is back in the spotlight as the Wanderers defeat Sydney FC in the first Derby D'Sydney of the season. Speccy turned up, Brendan was there too but... also kind of wasn't, Ivan revelled in the cool, fresh air (for most of the night), Turner made the papers again and Stephen got to make fun of everyone for all of the above. Aside from a few exceptions, the Police and media were generally well-behaved.We find out what rituals different Wanderers fans have pre-game in ATBTalkback and preview our first game to be aired live, on free-to-air TV against Adelaide United.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:19:46</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E04: A better love story than Twilight</media:title></media:content> </item>
+ <item>
+ <title>S02E03: To the left, to the left</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e03-to-the-left-to-the-left/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e03-to-the-left-to-the-left/#comments</comments>
+ <pubDate>Wed, 23 Oct 2013 00:36:44 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/10/23/s02e03-to-the-left-to-the-left/</guid>
+ <description><![CDATA[<p style="margin:0px 0px 24px;">Football is, for once, the minor topic on this week’s podcast, as we are unfortunately forced to turn our attention to towards the over handed approach the authorities are taking towards Western Sydney’s football fans. Ivan interviews Chadi (a Defence Attorney), Danielle (whose relatives were victims of these tactics), and none other than Lyall Gorman, Wanderers CEO, to get their opinions on what is fast becoming the biggest issue we are facing when supporting our sport.</p>
+<p style="margin:0px 0px 24px;">On a lighter note, we DO actually talk about football, with the 1-1 against Wellington last week, and the Derby D’Sydney coming up, and Nick Nova’s ‘Do You Even Dale?’ makes its debut.</p>
+]]></description>
+ <content:encoded><![CDATA[<p style="margin:0px 0px 24px;">Football is, for once, the minor topic on this week’s podcast, as we are unfortunately forced to turn our attention to towards the over handed approach the authorities are taking towards Western Sydney’s football fans. Ivan interviews Chadi (a Defence Attorney), Danielle (whose relatives were victims of these tactics), and none other than Lyall Gorman, Wanderers CEO, to get their opinions on what is fast becoming the biggest issue we are facing when supporting our sport.</p>
+<p style="margin:0px 0px 24px;">On a lighter note, we DO actually talk about football, with the 1-1 against Wellington last week, and the Derby D’Sydney coming up, and Nick Nova’s ‘Do You Even Dale?’ makes its debut.</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e03-to-the-left-to-the-left/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/vqtbpc/S02E03_Around_the_Bloc_podcast.mp3" length="34373384" type="audio/mpeg"/>
+ <itunes:subtitle>Football is, for once, the minor topic on this week’s podcast, as we are unfortunately forced to turn our attention to towards the over handed ...</itunes:subtitle>
+ <itunes:summary>Football is, for once, the minor topic on this week’s podcast, as we are unfortunately forced to turn our attention to towards the over handed approach the authorities are taking towards Western Sydney’s football fans. Ivan interviews Chadi (a Defence Attorney), Danielle (whose relatives were victims of these tactics), and none other than Lyall Gorman, Wanderers CEO, to get their opinions on what is fast becoming the biggest issue we are facing when supporting our sport.On a lighter note, we DO actually talk about football, with the 1-1 against Wellington last week, and the Derby D’Sydney coming up, and Nick Nova’s ‘Do You Even Dale?’ makes its debut.</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:35:28</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E03: To the left, to the left</media:title></media:content> </item>
+ <item>
+ <title>S02E02: Say Cheese!</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e02-say-cheese/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e02-say-cheese/#comments</comments>
+ <pubDate>Wed, 16 Oct 2013 01:19:39 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/10/16/s02e02-say-cheese/</guid>
+ <description><![CDATA[<p><span></span>
+</p><p dir="ltr" style="line-height:1.15;margin-top:0pt;margin-bottom:0pt;"><span style="font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;">The team get together this week and discuss issues such as the RBB becoming the new stars of ‘Australia’s funniest home surveillance videos’, all the news from the latest Wanderers fan forum, a preview of our first home game of the season and much more, on this edition of Around the Bloc…</span></p>
+<div><span style="font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;"><br /></span></div>
+]]></description>
+ <content:encoded><![CDATA[<p><span></span>
+</p><p dir="ltr" style="line-height:1.15;margin-top:0pt;margin-bottom:0pt;"><span style="font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;">The team get together this week and discuss issues such as the RBB becoming the new stars of ‘Australia’s funniest home surveillance videos’, all the news from the latest Wanderers fan forum, a preview of our first home game of the season and much more, on this edition of Around the Bloc…</span></p>
+<div><span style="font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;"><br /></span></div>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e02-say-cheese/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/ncxtdb/S02E02_Around_the_Bloc_podcast.mp3" length="31226621" type="audio/mpeg"/>
+ <itunes:subtitle>The team get together this week and discuss issues such as the RBB becoming the new stars of ‘Australia’s funniest home surveillance videos’, all the ...</itunes:subtitle>
+ <itunes:summary>The team get together this week and discuss issues such as the RBB becoming the new stars of ‘Australia’s funniest home surveillance videos’, all the news from the latest Wanderers fan forum, a preview of our first home game of the season and much more, on this edition of Around the Bloc...</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:26:44</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E02: Say Cheese!</media:title></media:content> </item>
+ <item>
+ <title>S02E01: The Difficult Second Season</title>
+ <link>http://aroundthebloc.podbean.com/e/s02e01-the-difficult-second-season/</link>
+ <comments>http://aroundthebloc.podbean.com/e/s02e01-the-difficult-second-season/#comments</comments>
+ <pubDate>Wed, 09 Oct 2013 05:23:27 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/10/09/s02e01-the-difficult-second-season/</guid>
+ <description><![CDATA[<p><span></span>
+</p><p dir="ltr" style="line-height:1.15;margin-top:0pt;margin-bottom:0pt;"><span style="font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;">The Around the Bloc team take our seats once more for another exciting year of banter as we attempt to defend our Podcast D’Or award.</span></p>
+<p dir="ltr" style="line-height:1.15;margin-top:0pt;margin-bottom:0pt;"><span style="line-height:normal;font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;">On this weeks episode we talk A-League, W-League, Youth League and Powerchair League, get an update on </span><span style="line-height:normal;font-size:15px;font-family:Arial;font-style:italic;vertical-align:baseline;white-space:pre-wrap;">those</span><span style="line-height:normal;font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;"> schnitzel rolls from [...]</span></p>]]></description>
+ <content:encoded><![CDATA[<p><span></span>
+</p><p dir="ltr" style="line-height:1.15;margin-top:0pt;margin-bottom:0pt;"><span style="font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;">The Around the Bloc team take our seats once more for another exciting year of banter as we attempt to defend our Podcast D’Or award.</span></p>
+<p dir="ltr" style="line-height:1.15;margin-top:0pt;margin-bottom:0pt;"><span style="line-height:normal;font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;">On this weeks episode we talk A-League, W-League, Youth League and Powerchair League, get an update on </span><span style="line-height:normal;font-size:15px;font-family:Arial;font-style:italic;vertical-align:baseline;white-space:pre-wrap;">those</span><span style="line-height:normal;font-size:15px;font-family:Arial;vertical-align:baseline;white-space:pre-wrap;"> schnitzel rolls from Campbelltown Stadium, discuss the ins, outs, ups and downs of the off season and much much more… </span></p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/s02e01-the-difficult-second-season/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/hjuu3c/S02E01_Around_the_Bloc_podcast.mp3" length="44325096" type="audio/mpeg"/>
+ <itunes:subtitle>The Around the Bloc team take our seats once more for another exciting year of banter as we attempt to defend our Podcast D'Or award.On ...</itunes:subtitle>
+ <itunes:summary>The Around the Bloc team take our seats once more for another exciting year of banter as we attempt to defend our Podcast D'Or award.On this weeks episode we talk A-League, W-League, Youth League and Powerchair League, get an update on those schnitzel rolls from Campbelltown Stadium, discuss the ins, outs, ups and downs of the off season and much much more...</itunes:summary>
+ <itunes:keywords /> <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>02:03:07</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/bqvk38/ATBLogo.jpg" medium="image">
+ <media:title type="html">S02E01: The Difficult Second Season</media:title></media:content> </item>
+ <item>
+ <title>Episode 24: Grand Final relapse</title>
+ <link>http://aroundthebloc.podbean.com/e/episode-24-grand-final-relapse/</link>
+ <comments>http://aroundthebloc.podbean.com/e/episode-24-grand-final-relapse/#comments</comments>
+ <pubDate>Thu, 25 Apr 2013 08:54:57 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/04/25/episode-24-grand-final-relapse/</guid>
+ <description><![CDATA[<p>In the season finale JAR, Speccy, Turner &#38; Erebus grieve together over the grand final loss but fondly look back at the Wanderers’ very successful first season. We discuss season highlights in #ATBTalkback and recap the parade in Parramatta and the WSW awards night. Thanks to all our listeners and contributors over the season and we’ll be back next season bigger and better! Check us out on twitter - <a href="http://twitter.com/ATBWSW">@ATBWSW</a> - or <a href="http://www.facebook.com/AroundTheBloc">facebook.com/AroundTheBloc</a>
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>In the season finale JAR, Speccy, Turner &amp; Erebus grieve together over the grand final loss but fondly look back at the Wanderers’ very successful first season. We discuss season highlights in #ATBTalkback and recap the parade in Parramatta and the WSW awards night. Thanks to all our listeners and contributors over the season and we’ll be back next season bigger and better! Check us out on twitter - <a href="http://twitter.com/ATBWSW">@ATBWSW</a> - or <a href="http://www.facebook.com/AroundTheBloc">facebook.com/AroundTheBloc</a>
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/episode-24-grand-final-relapse/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/z5umt/Around_the_Bloc_podcast_ep024.mp3" length="22339608" type="audio/mpeg"/>
+ <itunes:subtitle>In the season finale JAR, Speccy, Turner Erebus grieve together over the grand final loss but fondly look back at the Wanderers' very successful ...</itunes:subtitle>
+ <itunes:summary>In the season finale JAR, Speccy, Turner Erebus grieve together over the grand final loss but fondly look back at the Wanderers' very successful first season. We discuss season highlights in #ATBTalkback and recap the parade in Parramatta and the WSW awards night. Thanks to all our listeners and contributors over the season and we'll be back next season bigger and better! Check us out on twitter - @ATBWSW - or facebook.com/AroundTheBloc</itunes:summary>
+ <itunes:keywords>a-league, western sydney wanderers, football, australia, soccer</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/dvxajq/LOGO.jpg" medium="image">
+ <media:title type="html">Episode 24: Grand Final relapse</media:title></media:content> </item>
+ <item>
+ <title>Episode 23: Stadium Wide Pozcast</title>
+ <link>http://aroundthebloc.podbean.com/e/episode-23-stadium-wide-pozcast/</link>
+ <comments>http://aroundthebloc.podbean.com/e/episode-23-stadium-wide-pozcast/#comments</comments>
+ <pubDate>Thu, 18 Apr 2013 02:27:18 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/04/17/episode-23-stadium-wide-pozcast/</guid>
+ <description><![CDATA[<p>JAR, Speccy, Turner &#38; Erebus talk about two of the most important games in our clubs history - the Semi Final against Brisbane Roar, and the impending Grand Final against Central Coast Mariners. #ATBTalkback returns and actually kind of works this time. Check us out on twitter - @ATBWSW - or facebook.com/AroundTheBloc
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>JAR, Speccy, Turner &amp; Erebus talk about two of the most important games in our clubs history - the Semi Final against Brisbane Roar, and the impending Grand Final against Central Coast Mariners. #ATBTalkback returns and actually kind of works this time. Check us out on twitter - @ATBWSW - or facebook.com/AroundTheBloc
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/episode-23-stadium-wide-pozcast/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/5u3u83/Around_the_bloc_podcast_ep023.mp3" length="20898171" type="audio/mpeg"/>
+ <itunes:subtitle>JAR, Speccy, Turner Erebus talk about two of the most important games in our clubs history - the Semi Final against Brisbane Roar, and ...</itunes:subtitle>
+ <itunes:summary>JAR, Speccy, Turner Erebus talk about two of the most important games in our clubs history - the Semi Final against Brisbane Roar, and the impending Grand Final against Central Coast Mariners. #ATBTalkback returns and actually kind of works this time. Check us out on twitter - @ATBWSW - or facebook.com/AroundTheBloc</itunes:summary>
+ <itunes:keywords>around the bloc, western sydney wanders, rbb, football, soccer, aleague, wsw rbb</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/dvxajq/LOGO.jpg" medium="image">
+ <media:title type="html">Episode 23: Stadium Wide Pozcast</media:title></media:content> </item>
+ <item>
+ <title>Episode 22: Wait a minute? You Guys didn&#8217;t play?!?!</title>
+ <link>http://aroundthebloc.podbean.com/e/episode-22-wait-a-minute-you-guys-didnt-play/</link>
+ <comments>http://aroundthebloc.podbean.com/e/episode-22-wait-a-minute-you-guys-didnt-play/#comments</comments>
+ <pubDate>Thu, 11 Apr 2013 01:18:29 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/04/10/episode-22-wait-a-minute-you-guys-didnt-play/</guid>
+ <description><![CDATA[<p>FFDU Nominated Finalist; Around the Bloc are joined by Erebus, JAR, Turner &#38; Speccy as they smash through a quick episode (for our standards) discussing the sudden death finals that have happened over the weekend, the upcoming semi final against Brisbane which has got everyone talking! Listen in for details regarding the march, our predictions, Speccy finally winning ‘guess a player’ segment to bring Erebus’ winning streak to an end and our resident Latin correspondent; Pistola giving us an indepth interview! Follow us on twitter ‘@ATBWSW’, like us on Facebook; ‘Around the Bloc’ and subscribe via iTunes!
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>FFDU Nominated Finalist; Around the Bloc are joined by Erebus, JAR, Turner &amp; Speccy as they smash through a quick episode (for our standards) discussing the sudden death finals that have happened over the weekend, the upcoming semi final against Brisbane which has got everyone talking! Listen in for details regarding the march, our predictions, Speccy finally winning ‘guess a player’ segment to bring Erebus’ winning streak to an end and our resident Latin correspondent; Pistola giving us an indepth interview! Follow us on twitter ‘@ATBWSW’, like us on Facebook; ‘Around the Bloc’ and subscribe via iTunes!
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/episode-22-wait-a-minute-you-guys-didnt-play/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/n3dme/Around_the_bloc_podcast_ep022.mp3" length="15142455" type="audio/mpeg"/>
+ <itunes:subtitle>FFDU Nominated Finalist; Around the Bloc are joined by Erebus, JAR, Turner Speccy as they smash through a quick episode (for our standards) discussing ...</itunes:subtitle>
+ <itunes:summary>FFDU Nominated Finalist; Around the Bloc are joined by Erebus, JAR, Turner Speccy as they smash through a quick episode (for our standards) discussing the sudden death finals that have happened over the weekend, the upcoming semi final against Brisbane which has got everyone talking! Listen in for details regarding the march, our predictions, Speccy finally winning 'guess a player' segment to bring Erebus' winning streak to an end and our resident Latin correspondent; Pistola giving us an indepth interview! Follow us on twitter '@ATBWSW', like us on Facebook; 'Around the Bloc' and subscribe via iTunes!</itunes:summary>
+ <itunes:keywords>aleague ffa westernsydneywanderers rbb football australia</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/vda4xf/twitterlogo.png" medium="image">
+ <media:title type="html">Episode 22: Wait a minute? You Guys didn&#8217;t play?!?!</media:title></media:content> </item>
+ <item>
+ <title>Episode 21: Campeone, Campeone, Ole, Ole, Ole!</title>
+ <link>http://aroundthebloc.podbean.com/e/episode-21-campeone-campeone-ole-ole-ole/</link>
+ <comments>http://aroundthebloc.podbean.com/e/episode-21-campeone-campeone-ole-ole-ole/#comments</comments>
+ <pubDate>Thu, 04 Apr 2013 03:27:32 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/04/03/episode-21-campeone-campeone-ole-ole-ole/</guid>
+ <description><![CDATA[<p>Speccy returns and joins JAR, Erebus and a slightly inebriated Turner to discuss and celebrate the Wanderers winning the premiership in their first year as a football club. The release date of this podcast, April 4th, 2013, also happens to be the Wanderers first birthday (i.e. 1 year since the PM announced that it would be happening). A lot has happened since then, but despite the length of the podcast, not all of it is discussed as we stick to the most important parts of the last week. The team recorded on the day of the Newcastle game and that audio is included too. Also: ATB Talkback, Spanish Commentary from Pistola and more. Check us out on twitter @ATBWSW.
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>Speccy returns and joins JAR, Erebus and a slightly inebriated Turner to discuss and celebrate the Wanderers winning the premiership in their first year as a football club. The release date of this podcast, April 4th, 2013, also happens to be the Wanderers first birthday (i.e. 1 year since the PM announced that it would be happening). A lot has happened since then, but despite the length of the podcast, not all of it is discussed as we stick to the most important parts of the last week. The team recorded on the day of the Newcastle game and that audio is included too. Also: ATB Talkback, Spanish Commentary from Pistola and more. Check us out on twitter @ATBWSW.
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/episode-21-campeone-campeone-ole-ole-ole/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/ypjrdm/Around_the_bloc_podcast_ep021.mp3" length="25034922" type="audio/mpeg"/>
+ <itunes:subtitle>Speccy returns and joins JAR, Erebus and a slightly inebriated Turner to discuss and celebrate the Wanderers winning the premiership in their first year as ...</itunes:subtitle>
+ <itunes:summary>Speccy returns and joins JAR, Erebus and a slightly inebriated Turner to discuss and celebrate the Wanderers winning the premiership in their first year as a football club. The release date of this podcast, April 4th, 2013, also happens to be the Wanderers first birthday (i.e. 1 year since the PM announced that it would be happening). A lot has happened since then, but despite the length of the podcast, not all of it is discussed as we stick to the most important parts of the last week. The team recorded on the day of the Newcastle game and that audio is included too. Also: ATB Talkback, Spanish Commentary from Pistola and more. Check us out on twitter @ATBWSW.</itunes:summary>
+ <itunes:keywords>around the bloc, western sydney wanders, rbb, football, soccer, aleague, wsw rbb</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/dvxajq/LOGO.jpg" medium="image">
+ <media:title type="html">Episode 21: Campeone, Campeone, Ole, Ole, Ole!</media:title></media:content> </item>
+ <item>
+ <title>Episode 20: Milestone</title>
+ <link>http://aroundthebloc.podbean.com/e/episode-20-milestone/</link>
+ <comments>http://aroundthebloc.podbean.com/e/episode-20-milestone/#comments</comments>
+ <pubDate>Thu, 28 Mar 2013 01:41:45 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/03/27/episode-20-milestone/</guid>
+ <description><![CDATA[<p>In the absence of Speccy once again, JAR, Erebus and Turner discuss football, and realise they are the only ‘media’ outlet in Sydney doing so this week. The actual match that was played between the Wanderers and Sydney FC is discussed, as opposed to off-field incident’s which everyone is sick of hearing about, along with everyones chances of making the finals (which admittedly gets a bit confusing), the transport and the RBBQ before the last regular season game in Newcastle, and turners infamous ‘Who Am I?’ segment gets another run. TWCDBLW possibly meets it’s untimely demise too. Check out www.twitter.com/ATBWSW for more.
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>In the absence of Speccy once again, JAR, Erebus and Turner discuss football, and realise they are the only ‘media’ outlet in Sydney doing so this week. The actual match that was played between the Wanderers and Sydney FC is discussed, as opposed to off-field incident’s which everyone is sick of hearing about, along with everyones chances of making the finals (which admittedly gets a bit confusing), the transport and the RBBQ before the last regular season game in Newcastle, and turners infamous ‘Who Am I?’ segment gets another run. TWCDBLW possibly meets it’s untimely demise too. Check out www.twitter.com/ATBWSW for more.
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/episode-20-milestone/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/x2bb3k/Around_the_bloc_podcast_ep020.mp3" length="21393766" type="audio/mpeg"/>
+ <itunes:subtitle>In the absence of Speccy once again, JAR, Erebus and Turner discuss football, and realise they are the only 'media' outlet in Sydney doing so ...</itunes:subtitle>
+ <itunes:summary>In the absence of Speccy once again, JAR, Erebus and Turner discuss football, and realise they are the only 'media' outlet in Sydney doing so this week. The actual match that was played between the Wanderers and Sydney FC is discussed, as opposed to off-field incident's which everyone is sick of hearing about, along with everyones chances of making the finals (which admittedly gets a bit confusing), the transport and the RBBQ before the last regular season game in Newcastle, and turners infamous 'Who Am I?' segment gets another run. TWCDBLW possibly meets it's untimely demise too. Check out www.twitter.com/ATBWSW for more.</itunes:summary>
+ <itunes:keywords>around the bloc, western sydney wanders, rbb, football, soccer, aleague, wsw rbb</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/dvxajq/LOGO.jpg" medium="image">
+ <media:title type="html">Episode 20: Milestone</media:title></media:content> </item>
+ <item>
+ <title>Episode 19: And Then There Were Two&#8230;</title>
+ <link>http://aroundthebloc.podbean.com/e/episode-19-and-then-there-were-two/</link>
+ <comments>http://aroundthebloc.podbean.com/e/episode-19-and-then-there-were-two/#comments</comments>
+ <pubDate>Thu, 21 Mar 2013 03:52:37 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/03/20/episode-19-and-then-there-were-two/</guid>
+ <description><![CDATA[<p>JAR and Turner are left to their own devices by an absent Speccy and Erebus and quite frankly, they control the ship just nicely. The dynamic duo cut a boosegump inducing promo for the upcoming derby, discuss the Heart game and the infamous ‘incident’ that occurred. Dicko has his say about that too. Details for the FFDU awards, the Newcastle RBBBBBQB and #ATBTalkback also feature in this episode. Check out www.westsydneyfootball.com for more.
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>JAR and Turner are left to their own devices by an absent Speccy and Erebus and quite frankly, they control the ship just nicely. The dynamic duo cut a boosegump inducing promo for the upcoming derby, discuss the Heart game and the infamous ‘incident’ that occurred. Dicko has his say about that too. Details for the FFDU awards, the Newcastle RBBBBBQB and #ATBTalkback also feature in this episode. Check out www.westsydneyfootball.com for more.
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/episode-19-and-then-there-were-two/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/w8qsxz/Around_the_bloc_podcast_ep019.mp3" length="25989958" type="audio/mpeg"/>
+ <itunes:subtitle>JAR and Turner are left to their own devices by an absent Speccy and Erebus and quite frankly, they control the ship just nicely. The ...</itunes:subtitle>
+ <itunes:summary>JAR and Turner are left to their own devices by an absent Speccy and Erebus and quite frankly, they control the ship just nicely. The dynamic duo cut a boosegump inducing promo for the upcoming derby, discuss the Heart game and the infamous 'incident' that occurred. Dicko has his say about that too. Details for the FFDU awards, the Newcastle RBBBBBQB and #ATBTalkback also feature in this episode. Check out www.westsydneyfootball.com for more.</itunes:summary>
+ <itunes:keywords>around the bloc, western sydney wanders, rbb, football, soccer, aleague, wsw rbb</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <itunes:duration>01:48:17</itunes:duration>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/dvxajq/LOGO.jpg" medium="image">
+ <media:title type="html">Episode 19: And Then There Were Two&#8230;</media:title></media:content> </item>
+ <item>
+ <title>Episode 18: Seriously this time&#8230; Back to our Roots</title>
+ <link>http://aroundthebloc.podbean.com/e/episode-18-seriously-this-time-back-to-our-roots/</link>
+ <comments>http://aroundthebloc.podbean.com/e/episode-18-seriously-this-time-back-to-our-roots/#comments</comments>
+ <pubDate>Thu, 14 Mar 2013 05:30:11 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/03/13/episode-18-seriously-this-time-back-to-our-roots/</guid>
+ <description><![CDATA[<p>JAR, Speccy, Turner and Erebus grab the constructive criticism received through the week by the horns and go back to what they do best. The infamous silent protest is covered along with the game against Wellington, the upcoming game against Heart, the tickets given to underprivileged kids and much more. Check out www.westsydneyfootball.com for more.
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>JAR, Speccy, Turner and Erebus grab the constructive criticism received through the week by the horns and go back to what they do best. The infamous silent protest is covered along with the game against Wellington, the upcoming game against Heart, the tickets given to underprivileged kids and much more. Check out www.westsydneyfootball.com for more.
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/episode-18-seriously-this-time-back-to-our-roots/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/4thrnf/Around_the_bloc_podcast_ep018.mp3" length="26424114" type="audio/mpeg"/>
+ <itunes:subtitle>JAR, Speccy, Turner and Erebus grab the constructive criticism received through the week by the horns and go back to what they do best. The ...</itunes:subtitle>
+ <itunes:summary>JAR, Speccy, Turner and Erebus grab the constructive criticism received through the week by the horns and go back to what they do best. The infamous silent protest is covered along with the game against Wellington, the upcoming game against Heart, the tickets given to underprivileged kids and much more. Check out www.westsydneyfootball.com for more.</itunes:summary>
+ <itunes:keywords>around the bloc, western sydney wanders, rbb, football, soccer, aleague, wsw rbb</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/dvxajq/LOGO.jpg" medium="image">
+ <media:title type="html">Episode 18: Seriously this time&#8230; Back to our Roots</media:title></media:content> </item>
+ <item>
+ <title>Episode 17: Live From the JERRcave</title>
+ <link>http://aroundthebloc.podbean.com/e/episode-17-live-from-the-jerrcave/</link>
+ <comments>http://aroundthebloc.podbean.com/e/episode-17-live-from-the-jerrcave/#comments</comments>
+ <pubDate>Thu, 07 Mar 2013 04:57:39 +0000</pubDate>
+ <dc:creator>aroundthebloc</dc:creator>
+
+ <category>Uncategorized</category>
+ <guid isPermaLink="false">http://aroundthebloc.podbean.com/2013/03/06/episode-17-live-from-the-jerrcave/</guid>
+ <description><![CDATA[<p>JAR, Speccy, Turner and Erebus rock up to Jerrad, Joey and Tahj’s pad for a game of UNO and a podcast ensues. The Wanderers winning against Mariners and going top of the league, the upcoming game against Wellington, an ‘in-the-making’ documentary about the Wanderers and the RBB and the recent charity work that has seen some underprivileged community groups receive tickets to the Nix game are all discussed. As it stands, JJ &#38; T are up 2-0 in the FIFA 13 stakes, comfortably defeating the team of JAR and two blokes who don’t know how to play FIFA in two games. Follow us on twitter @ABTWSF or www.facebook.com/aroundthebloc . Also check out www.westsydneyfootball.com for more.
+</p>
+]]></description>
+ <content:encoded><![CDATA[<p>JAR, Speccy, Turner and Erebus rock up to Jerrad, Joey and Tahj’s pad for a game of UNO and a podcast ensues. The Wanderers winning against Mariners and going top of the league, the upcoming game against Wellington, an ‘in-the-making’ documentary about the Wanderers and the RBB and the recent charity work that has seen some underprivileged community groups receive tickets to the Nix game are all discussed. As it stands, JJ &amp; T are up 2-0 in the FIFA 13 stakes, comfortably defeating the team of JAR and two blokes who don’t know how to play FIFA in two games. Follow us on twitter @ABTWSF or www.facebook.com/aroundthebloc . Also check out www.westsydneyfootball.com for more.
+</p>
+]]></content:encoded>
+ <wfw:commentRss>http://aroundthebloc.podbean.com/e/episode-17-live-from-the-jerrcave/feed/</wfw:commentRss>
+ <enclosure url="http://aroundthebloc.podbean.com/mf/feed/tynye6/Around_the_bloc_podcast_ep017.mp3" length="17787196" type="audio/mpeg"/>
+ <itunes:subtitle>JAR, Speccy, Turner and Erebus rock up to Jerrad, Joey and Tahj's pad for a game of UNO and a podcast ensues. The Wanderers winning ...</itunes:subtitle>
+ <itunes:summary>JAR, Speccy, Turner and Erebus rock up to Jerrad, Joey and Tahj's pad for a game of UNO and a podcast ensues. The Wanderers winning against Mariners and going top of the league, the upcoming game against Wellington, an 'in-the-making' documentary about the Wanderers and the RBB and the recent charity work that has seen some underprivileged community groups receive tickets to the Nix game are all discussed. As it stands, JJ T are up 2-0 in the FIFA 13 stakes, comfortably defeating the team of JAR and two blokes who don't know how to play FIFA in two games. Follow us on twitter @ABTWSF or www.facebook.com/aroundthebloc . Also check out www.westsydneyfootball.com for more.</itunes:summary>
+ <itunes:keywords>rbb around the bloc westsydneyfootball aleague western sydney wanderers</itunes:keywords>
+ <itunes:author>Around the Bloc</itunes:author>
+ <itunes:explicit>No</itunes:explicit>
+ <itunes:block>No</itunes:block>
+ <media:content url="http://aroundthebloc.podbean.com/mf/web/dvxajq/LOGO.jpg" medium="image">
+ <media:title type="html">Episode 17: Live From the JERRcave</media:title></media:content> </item>
+ </channel>
+</rss>