<?xml version="1.0" encoding="UTF-8"?>
<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:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sébastien Barbieri's blog &#187; D&#8217;alpha du centaure</title>
	<atom:link href="http://blog.sbw.be/category/dalpha-du-centaure/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sbw.be</link>
	<description>My life, my work, my projects</description>
	<lastBuildDate>Sat, 24 Dec 2011 00:12:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Calling XmlRpc of WordPress with Zend Framework (Zend_XmlRpc_Client) and adding the default thumbnail to a post</title>
		<link>http://blog.sbw.be/2011/07/19/calling-xmlrpc-of-wordpress-with-zend-framework-zend_xmlrpc_client-and-adding-the-default-thumbnail-to-a-post/</link>
		<comments>http://blog.sbw.be/2011/07/19/calling-xmlrpc-of-wordpress-with-zend-framework-zend_xmlrpc_client-and-adding-the-default-thumbnail-to-a-post/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 19:13:44 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[D'alpha du centaure]]></category>
		<category><![CDATA[OpenDojo]]></category>
		<category><![CDATA[truc de g33k]]></category>
		<category><![CDATA[metaWeblog.newMediaObjec]]></category>
		<category><![CDATA[metaWeblog.newPost]]></category>
		<category><![CDATA[Zend_XmlRpc_Client]]></category>
		<category><![CDATA[Zend_XmlRpc_Value_Base64]]></category>
		<category><![CDATA[Zend_XmlRpc_Value_Struct]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/?p=504</guid>
		<description><![CDATA[This code is in 2 parts First part, we download an image somewhere using Zend_Http_Client Second part, we use xmlrpc to upload the image into wordpress as a media and to create a post using this media as featured image or default image of main thumbnail, whatever the name is Let&#8217;s have a look at [...]]]></description>
			<content:encoded><![CDATA[<p>This code is in 2 parts</p>
<p>First part, we download an image somewhere using Zend_Http_Client</p>
<p>Second part, we use xmlrpc to upload the image into wordpress as a media and to create a post using this media as featured image or default image of main thumbnail, whatever the name is</p>
<p>Let&#8217;s have a look at the first part:<br />
<strong>Downloading an image with Zend_Http_Client</strong><br />
this is quite simple</p>
<pre class="brush: php; title: ;">
				require_once 'Zend/Http/Client.php';
				$config=array(
					'adapter'=&gt;'Zend_Http_Client_Adapter_Curl'
				);
				$Zend_Http_Client = new Zend_Http_Client($imageUrl,$config);
				try{
					$result = $Zend_Http_Client-&gt;request('GET');
				}catch(Exception $e){
					print_r($e);
				}
				$data = $result-&gt;getBody();
				//file_put_contents('/tmp/test.jpg',$data); // this is just to test the image if you are unsure
</pre>
<p>second part, storing the image in wordpress and creating a post with custom field: <strong>_thumbnail_id</strong> set to this image</p>
<p>To store a media object we will use the <strong>metaWeblog.newMediaObject</strong> XmlRpc method</p>
<pre class="brush: php; title: ;">
				require_once 'Zend/XmlRpc/Client.php';
				require_once 'Zend/XmlRpc/Value/Base64.php';
				require_once 'Zend/XmlRpc/Value/Struct.php';
				require_once 'Zend/XmlRpc/Value/Array.php';
				$xmlRpcClient = new Zend_XmlRpc_Client('http://www.example.com/myblog/xmlrpc.php');
				try{
					$thumbnail = $xmlRpcClient-&gt;call(
						'metaWeblog.newMediaObject',
						array(0,
							'login',
							'pass',
							array(
								'name'=&gt;'test.jpg',
								'type'=&gt;'image/jpeg',
								'bits'=&gt;new Zend_XmlRpc_Value_Base64($data),
							)
						)
					);
// ...
</pre>
<p>in the thumbnail object we don&#8217;t get the id&#8230; because it&#8217;s not possible to get the id unless you hack wordpress</p>
<blockquote><p>
<strong>WP file</strong>: wp-include/class-wp-xml-rpc.php</p>
<p><strong>method</strong>: function mw_newMediaObject($args) {</p>
<p>modification: add the id in the return:</p>
<pre class="brush: php; title: ;">
return apply_filters(
	'wp_handle_upload',
	array( 'file' =&gt; $name, 'url' =&gt; $upload[ 'url' ], 'type' =&gt; $type )
	, 'upload'
	);
</pre>
<p>by:</p>
<pre class="brush: php; title: ;">
return apply_filters(
	'wp_handle_upload',
	array( 'file' =&gt; $name, 'url' =&gt; $upload[ 'url' ], 'type' =&gt; $type, 'id'=&gt;$id )
	, 'upload'
	);
</pre>
</blockquote>
<pre class="brush: php; title: ;">
// ...
		$struct = new Zend_XmlRpc_Value_Struct(
					array('key'=&gt;'_thumbnail_id', 'value'=&gt;$thumbnail['id'])
				);
		$result = $xmlRpcClient-&gt;call(
			'metaWeblog.newPost',
			array(0,
			'login',
			'pass',
			array(
				'post_type'=&gt;'post',
				'title'=&gt;'New article with thumb',
				'description'=&gt;'Article text',
				'custom_fields'=&gt;array($struct),
			),
			false)
		);
	}catch(Exception $e){
		print_r($e);
	}
</pre>
<p>Of course, this won&#8217;t work&#8230; because no one is allowed to access private custom_fields such as _thumbnail_id &#8230;</p>
<p>A second WP hack is necessary here:</p>
<p><strong>file</strong>: wp-includes/meta.php<br />
<strong>function</strong>: is_protected_meta</p>
<p>add an exception for _thumbnail_id</p>
<pre class="brush: php; title: ;">
function is_protected_meta( $meta_key, $meta_type = null ) {
        if($meta_key == '_thumbnail_id'){
                $protected=false;
        }else{
                $protected = (  '_' == $meta_key[0] );
        }
        return apply_filters( 'is_protected_meta', $protected, $meta_key, $meta_type );
}
</pre>
<p>Without a nice documentation that was the best I could do in few time.</p>
<p>Another approach could be to create a new XmlRpc method, which do both in once avoiding the weakness of reusing an internal id in a second call, but still XmlRpc use add_meta which is a really ugly way to add meta in a post as everything has to be put in $_POST &#8230; </p>
<p>If anyone has a better approach (using xmlrpc) feel free to submit the suggestion.</p>
<p>A third approach could be to write a plugin&#8230; that&#8217;s next step</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2011/07/19/calling-xmlrpc-of-wordpress-with-zend-framework-zend_xmlrpc_client-and-adding-the-default-thumbnail-to-a-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing tweet picts from space</title>
		<link>http://blog.sbw.be/2010/04/09/amazing-tweet-picts-from-space/</link>
		<comments>http://blog.sbw.be/2010/04/09/amazing-tweet-picts-from-space/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 06:17:42 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[D'alpha du centaure]]></category>
		<category><![CDATA[aurora]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[soyuz]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[space shuttle]]></category>
		<category><![CDATA[station]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/?p=393</guid>
		<description><![CDATA[Thanks to twitter &#038; a good internet connection on the space station, every day flows new amazing pictures&#8230; From Astro_Soichi And some ISS pictures from earth: http://ralfvandebergh.startje.be/vieuw.php?qid=328303]]></description>
			<content:encoded><![CDATA[<p>Thanks to twitter &#038; a good internet connection on the space station, every day flows new amazing pictures&#8230;</p>
<p><a href="http://twitpic.com/1dfw9y" title="Fly through Aurora at 28,000kmh. Happy 1,000 tweets :-) on Twitpic"><img src="http://twitpic.com/show/thumb/1dfw9y.jpg" width="150" height="150" alt="Fly through Aurora at 28,000kmh. Happy 1,000 tweets :-) on Twitpic"></a> <a href="http://twitpic.com/1dwswl" title="Space Shuttle Discovery arrived! on Twitpic"><img src="http://twitpic.com/show/thumb/1dwswl.jpg" width="150" height="150" alt="Space Shuttle Discovery arrived! on Twitpic"></a> <a href="http://twitpic.com/1d5h4v" title="Soyuz TMA-18 successfully docked to ISS. Welcome on board, Sa... on Twitpic"><img src="http://twitpic.com/show/thumb/1d5h4v.jpg" width="150" height="150" alt="Soyuz TMA-18 successfully docked to ISS. Welcome on board, Sa... on Twitpic"></a> <a href="http://twitpic.com/1do9r9" title="Aurora, Moon, and my home away from home. on Twitpic"><img src="http://twitpic.com/show/thumb/1do9r9.jpg" width="150" height="150" alt="Aurora, Moon, and my home away from home. on Twitpic"></a> <a href="http://twitpic.com/1cqife" title="Stars &quot;fall&quot; in love with Aurora in April. Priceless! on Twitpic"><img src="http://twitpic.com/show/thumb/1cqife.jpg" width="150" height="150" alt="Stars &quot;fall&quot; in love with Aurora in April. Priceless! on Twitpic"></a></p>
<p>From <a href="http://twitter.com/Astro_Soichi">Astro_Soichi</a></p>
<p>And some ISS pictures from earth: </p>
<p><a href="http://ralfvandebergh.startje.be/vieuw.php?qid=328303"><img src="http://img268.imageshack.us/img268/4200/titelpicnew.jpg" alt="" /></a><br />
<a href="http://ralfvandebergh.startje.be/vieuw.php?qid=328303">http://ralfvandebergh.startje.be/vieuw.php?qid=328303</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2010/04/09/amazing-tweet-picts-from-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ireland is good for you</title>
		<link>http://blog.sbw.be/2009/03/05/ireland-is-good-for-you/</link>
		<comments>http://blog.sbw.be/2009/03/05/ireland-is-good-for-you/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 11:06:48 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[D'alpha du centaure]]></category>
		<category><![CDATA[ireland]]></category>
		<category><![CDATA[voyage]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/2009/03/05/ireland-is-good-for-you/</guid>
		<description><![CDATA[http://picasaweb.google.com/sebastien.barbieri/Irlande2009?feat=directlink Rainbow is good for you With the music: http://www.deezer.com/track/132819]]></description>
			<content:encoded><![CDATA[<p><a href="http://picasaweb.google.com/sebastien.barbieri/Irlande2009?feat=directlink"> http://picasaweb.google.com/sebastien.barbieri/Irlande2009?feat=directlink<br />
<br/> <img width='600' height='480' src='http://blog.sbw.be/wp-content/uploads/2009/03/img_4876.JPG' title='Rainbow is good for you'>Rainbow is good for you</a><br/><br />
<a href="http://www.deezer.com/track/132819">With the music: http://www.deezer.com/track/132819</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2009/03/05/ireland-is-good-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google told me there are 1297 faces found in my pictures</title>
		<link>http://blog.sbw.be/2008/12/24/google-told-me-there-are-1297-faces-found-in-my-pictures/</link>
		<comments>http://blog.sbw.be/2008/12/24/google-told-me-there-are-1297-faces-found-in-my-pictures/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 01:45:01 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[D'alpha du centaure]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[picassa]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/2008/12/24/google-told-me-there-are-1297-faces-found-in-my-pictures/</guid>
		<description><![CDATA[And this is why i love picasa so much&#8230;]]></description>
			<content:encoded><![CDATA[<p>And this is why i love picasa so much&#8230;</p>
<p><img src='http://blog.sbw.be/wp-content/uploads/2008/12/picture-1.png' alt='Picasa faces count' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2008/12/24/google-told-me-there-are-1297-faces-found-in-my-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 tonnes de météorite s&#8217;écrase sur terre (Canada 20/11/2008)</title>
		<link>http://blog.sbw.be/2008/11/30/10-tonnes-de-meteorite-secrase-sur-terre-canada-20112008/</link>
		<comments>http://blog.sbw.be/2008/11/30/10-tonnes-de-meteorite-secrase-sur-terre-canada-20112008/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 12:26:18 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[D'alpha du centaure]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/2008/11/30/10-tonnes-de-meteorite-secrase-sur-terre-canada-20112008/</guid>
		<description><![CDATA[Site du crash: View Larger Map Last up to date story: http://www.ucalgary.ca/news/utoday/nov28-08/meteorite]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/8q3qWV4Ks3E&#038;hl=fr&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8q3qWV4Ks3E&#038;hl=fr&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Site du crash:</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=101407268858136267770.00045c7664e5121a35b7f&amp;ll=52.957946,-109.741573&amp;spn=1.111851,2.570801&amp;output=embed&amp;s=AARTsJp1PyNktICEhtaD46R6P-lE-VK3Pw"></iframe><br /><small><a href="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=101407268858136267770.00045c7664e5121a35b7f&amp;ll=52.957946,-109.741573&amp;spn=1.111851,2.570801&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>Last up to date story: <a href="http://www.ucalgary.ca/news/utoday/nov28-08/meteorite">http://www.ucalgary.ca/news/utoday/nov28-08/meteorite</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2008/11/30/10-tonnes-de-meteorite-secrase-sur-terre-canada-20112008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>en me baladant sur bash.fr</title>
		<link>http://blog.sbw.be/2008/11/16/en-me-baladant-sur-bashfr/</link>
		<comments>http://blog.sbw.be/2008/11/16/en-me-baladant-sur-bashfr/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 00:23:07 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[D'alpha du centaure]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/2008/11/16/en-me-baladant-sur-bashfr/</guid>
		<description><![CDATA[J&#8217;ai découvert: 3 slips. 3 slips est la société derrière bashFR. Et là paf, je tombe sur Encyclopenis, c&#8217;est le blog du penis, pris en main (facile je sais) par Maïa Mazaurette (Ecrivaine). Témoignages, photos, avis s&#8217;y étalent sans choquer.]]></description>
			<content:encoded><![CDATA[<p>J&#8217;ai découvert: <a href="http://3slips.fr/">3 slips</a>.</p>
<p><a href="http://3slips.fr/">3 slips</a> est la société derrière <a href="http://www.bashfr.org">bashFR</a>.</p>
<p>Et là paf, je tombe sur <a href="http://encyclopenis.net/">Encyclopenis</a>, c&#8217;est le blog du penis, pris en main (facile je sais) par <a href="http://fr.wikipedia.org/wiki/Ma%C3%AFa_Mazaurette">Maïa Mazaurette</a> (Ecrivaine). Témoignages, photos, avis s&#8217;y étalent sans choquer.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2008/11/16/en-me-baladant-sur-bashfr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Election en direct toute la nuit sur la RTBF</title>
		<link>http://blog.sbw.be/2008/11/05/election-en-direct-toute-la-nuit-sur-la-rtbf/</link>
		<comments>http://blog.sbw.be/2008/11/05/election-en-direct-toute-la-nuit-sur-la-rtbf/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 00:28:50 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[D'alpha du centaure]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/2008/11/05/election-en-direct-toute-la-nuit-sur-la-rtbf/</guid>
		<description><![CDATA[http://www.rtbf.be/info/usa-politique-suivre-les-elections-americaines-en-direct-sur-le-web Avec le stream TV5, cover-it live, bcp d&#8217;énergie, du courage&#8230; ils vont y passer toute la nuit! Courage!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rtbf.be/info/usa-politique-suivre-les-elections-americaines-en-direct-sur-le-web"><img src='http://blog.sbw.be/wp-content/uploads/2008/11/rtbfinfo_logo_usa2008.jpg' alt='rtbf info usa 2008' align="left"/></a><a href="http://www.rtbf.be/info/usa-politique-suivre-les-elections-americaines-en-direct-sur-le-web">http://www.rtbf.be/info/usa-politique-suivre-les-elections-americaines-en-direct-sur-le-web</a></p>
<p>Avec le stream TV5, cover-it live, bcp d&#8217;énergie, du courage&#8230; ils vont y passer toute la nuit!</p>
<p>Courage!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2008/11/05/election-en-direct-toute-la-nuit-sur-la-rtbf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good bye drink</title>
		<link>http://blog.sbw.be/2008/09/20/good-bye-drink/</link>
		<comments>http://blog.sbw.be/2008/09/20/good-bye-drink/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 10:17:41 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[cuisine]]></category>
		<category><![CDATA[D'alpha du centaure]]></category>
		<category><![CDATA[Mon blog]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/2008/09/20/good-bye-drink/</guid>
		<description><![CDATA[Recipe 42 green lemons cut in 8 1kg brown sugar 3L Havana Club Anejo Blanco: &#8220;El Ron De Cuba&#8221; 3L Cachaça 1kg of fresh Mentha 20kg of crushed ice 2 Chorizos 500gr Loncha de jamon iberico 1.2 kg of brown bread in small slices 500gr of Chorizos in slices 10L sparkling water more than 50+ [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Recipe</strong></p>
<p>42 green lemons cut in 8<br />
1kg brown sugar<br />
3L Havana Club Anejo Blanco: &#8220;El Ron De Cuba&#8221;<br />
3L Cachaça<br />
1kg of fresh Mentha<br />
20kg of crushed ice<br />
2 Chorizos<br />
500gr Loncha de jamon iberico<br />
1.2 kg of brown bread in small slices<br />
500gr of Chorizos in slices<br />
10L sparkling water<br />
more than 50+ friends<br />
deezer DJ<br />
Shining sun<br />
Humour<br />
Dream<br />
History<br />
Sadness<br />
Truth<br />
Pain<br />
Happiness</p>
<p>Relief</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2008/09/20/good-bye-drink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bork bork bork wtf?</title>
		<link>http://blog.sbw.be/2008/09/20/bork-bork-bork-wtf/</link>
		<comments>http://blog.sbw.be/2008/09/20/bork-bork-bork-wtf/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 09:59:07 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[8th chakra]]></category>
		<category><![CDATA[D'alpha du centaure]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/2008/09/20/bork-bork-bork-wtf/</guid>
		<description><![CDATA[What the hell is the bork bork bork! language in google preferences?]]></description>
			<content:encoded><![CDATA[<p>What the hell is the bork bork bork! language in google preferences?</p>
<p><a href='http://blog.sbw.be/wp-content/uploads/2008/09/google-prefferences-bork-bork-bork.jpg' title='Bork bork bork in google'><img src='http://blog.sbw.be/wp-content/uploads/2008/09/google-prefferences-bork-bork-bork.jpg' alt='Bork bork bork in google' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2008/09/20/bork-bork-bork-wtf/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>From Spain</title>
		<link>http://blog.sbw.be/2008/08/24/from-spain/</link>
		<comments>http://blog.sbw.be/2008/08/24/from-spain/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 18:26:45 +0000</pubDate>
		<dc:creator>Sébastien Barbieri</dc:creator>
				<category><![CDATA[D'alpha du centaure]]></category>

		<guid isPermaLink="false">http://blog.sbw.be/2008/08/24/from-spain/</guid>
		<description><![CDATA[&#8230; with love]]></description>
			<content:encoded><![CDATA[<p><img src='http://blog.sbw.be/wp-content/uploads/2008/08/spain_nous_deux.jpg' alt='From spain with love' /></p>
<p>&#8230; with love</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sbw.be/2008/08/24/from-spain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

