<?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>the dream shed</title>
	<atom:link href="http://www.thedreamshed.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.thedreamshed.com</link>
	<description>Thoughts from Mick Hollins, Software Geek</description>
	<lastBuildDate>Mon, 31 Aug 2009 14:28:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Song Lyrics to Live By</title>
		<link>http://www.thedreamshed.com/?p=52</link>
		<comments>http://www.thedreamshed.com/?p=52#comments</comments>
		<pubDate>Mon, 31 Aug 2009 13:54:41 +0000</pubDate>
		<dc:creator>mick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thedreamshed.com/?p=52</guid>
		<description><![CDATA[	Every now and again I hear a song lyric that really resonates with me for some reason or another. In particular, for many years I&#8217;ve had a couple of lyrics that I&#8217;ve called my &#8220;life mottos&#8221;. The first one is from John Lennon:
Life is what happens to you while you&#8217;re busy making other plans.John Lennon, [...]]]></description>
			<content:encoded><![CDATA[	<p>Every now and again I hear a song lyric that really resonates with me for some reason or another. In particular, for many years I&#8217;ve had a couple of lyrics that I&#8217;ve called my &#8220;life mottos&#8221;. The first one is from John Lennon:</p>
<div class='quotation'><blockquote>Life is what happens to you while you&#8217;re busy making other plans.</blockquote><cite>John Lennon, from the song Beautiful Boy.</cite></div>
	<p>and the second from Stephen Stills:</p>
<div class='quotation'><blockquote>Love the one you&#8217;re with.</blockquote><cite> Stephen Stills, from the song of the same title.</cite></div>
	<p>A couple of years ago I heard a song that had a line that I just knew instantly I wanted to elevate into my &#8220;Song Lyrics to Live by&#8221; list. It&#8217;s not a recent song by any stretch, but I hadn&#8217;t heard it (or taken notice of it) before, and so it was new to me. Anyway, here&#8217;s the line from that song that has now made it into my list:</p>
<div class='quotation'><blockquote>Don&#8217;t confront me with my failures. I had not forgotten them.</blockquote><cite>Jackson Browne, from the song These Days.</cite></div>
	<p>None of these songs is one of my all time favourites, but the lyrics are my favourites of all time. Not necessarily the lyrics of the whole song either. Just the one liners that I&#8217;ve mentioned above.</p>
	<p>I was going to explain why they mean a lot to me, but then I got lazy, and anyway, life is happening to me while I spend time writing this post.</p>
	<p>So there you have it: Mick&#8217;s list of Song Lyrics to Live By.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://www.thedreamshed.com/?feed=rss2&amp;p=52</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Centering in IE7. Beware of quirks mode!</title>
		<link>http://www.thedreamshed.com/?p=29</link>
		<comments>http://www.thedreamshed.com/?p=29#comments</comments>
		<pubDate>Fri, 03 Jul 2009 13:26:25 +0000</pubDate>
		<dc:creator>mick</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.thedreamshed.com/?p=29</guid>
		<description><![CDATA[	I was scratching my head today (and doing a bit of swearing) when a web page that should have been centered no longer was on Internet Explorer. The page was still correctly centered in Safari and Firefox. The CSS for the centered element looked something like:
	
&#160; width: 960px;
&#160; margin: 0px auto;
&#160;
	It took me a while [...]]]></description>
			<content:encoded><![CDATA[	<p>I was scratching my head today (and doing a bit of swearing) when a web page that should have been centered no longer was on Internet Explorer. The page was still correctly centered in Safari and Firefox. The CSS for the centered element looked something like:</p>
	<div class="code css" style="font-family: monospace;"><br />
&nbsp; <span style="color: #000000; font-weight: bold;">width</span><span style="color: #66cc66;">:</span> <span style="color: #933;">960px</span><span style="color: #66cc66;">;</span><br />
&nbsp; <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #66cc66;">:</span> <span style="color: #933;">0px</span> <span style="color: #993333;">auto</span><span style="color: #66cc66;">;</span><br />
&nbsp;</div>
	<p>It took me a while to work out what was wrong. It turned out that my problem was that my html file had a comment before the !DOCTYPE element. That is, while the top of the file should have looked something like:</p>
<pre>
&lt;!DOCTYPE html PUBLIC
    "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
&gt;
</pre>
	<p>it actually looked like something like this:</p>
<pre>
&lt;!-- this comment mucks things up - - &gt;
&lt;!DOCTYPE html PUBLIC
    "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
&gt;
</pre>
	<p>The problem is that that innocent looking comment is enough to put the IE7 renderer into its backwards compatibility quirks mode. And in that mode, <code>margin: 0px auto</code> does not center things as planned.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://www.thedreamshed.com/?feed=rss2&amp;p=29</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a shadow with RMagick</title>
		<link>http://www.thedreamshed.com/?p=15</link>
		<comments>http://www.thedreamshed.com/?p=15#comments</comments>
		<pubDate>Fri, 26 Jun 2009 10:43:20 +0000</pubDate>
		<dc:creator>mick</dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.thedreamshed.com/?p=15</guid>
		<description><![CDATA[	RMagick is a ruby library for performing image manipulation. Whenever I use it I&#8217;m amazed at what can be achieved with just a few lines of code, so I thought I&#8217;d share my latest experience.
	The context was that I was working on the website for 2WayFitness and I wanted to have screenshots that had a [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://rmagick.rubyforge.org/">RMagick</a> is a ruby library for performing image manipulation. Whenever I use it I&#8217;m amazed at what can be achieved with just a few lines of code, so I thought I&#8217;d share my latest experience.</p>
	<p>The context was that I was working on the website for <a href="http://www.2wayfitness.com">2WayFitness</a> and I wanted to have screenshots that had a shadow effect behind them. For example, I wanted to turn the following:</p>
 <img src="http://www.thedreamshed.com/wp-content/uploads/2009/06/dashboard-8.png" alt="dashboard-8" title="dashboard-8" width="500" class="alignnone size-full wp-image-16" />
	<p>into this:</p>
	<p><img src="http://www.thedreamshed.com/wp-content/uploads/2009/06/dashboard-8-with-shadow.png" alt="dashboard-8-with-shadow" title="dashboard-8-with-shadow" width="500" class="alignnone size-full wp-image-17" /></p>
	<p>Turned out, that to do that all I needed was the following code:<br />
<div class="code ruby" style="font-family: monospace;"><br />
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#996600;">'rmagick'</span><br />
<span style="color:#9966CC; font-weight:bold;">include</span> Magick<br />
<br />
image = <span style="color:#6666ff; font-weight:bold;">Magick::Image</span>.<span style="color:#9900CC;">read</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;image.png&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">first</span><br />
<br />
shadow = image.<span style="color:#9900CC;">shadow</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">0</span>,<span style="color:#006666;">0</span>,<span style="color:#006666;">3.0</span><span style="color:#006600; font-weight:bold;">&#41;</span><br />
shadow = shadow.<span style="color:#9900CC;">colorize</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006666;">1</span>, <span style="color:#006666;">1</span>, <span style="color:#006666;">1</span>, <span style="color:#996600;">&quot;gray45&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span><br />
image = shadow.<span style="color:#9900CC;">composite</span><span style="color:#006600; font-weight:bold;">&#40;</span>image, <span style="color:#006666;">0</span>, <span style="color:#006666;">12</span>, <span style="color:#6666ff; font-weight:bold;">Magick::OverCompositeOp</span><span style="color:#006600; font-weight:bold;">&#41;</span><br />
<br />
image.<span style="color:#9900CC;">write</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">&quot;image-with-shadow.png&quot;</span><span style="color:#006600; font-weight:bold;">&#41;</span><br />
&nbsp;</div>
	<p>I think that&#8217;s pretty cool! Kudos to the RMagick guys and to the people who developed the ImageMagick and GraphicsMagick image processing libraries upon which RMagick is built.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://www.thedreamshed.com/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using url helpers in Rails functional tests</title>
		<link>http://www.thedreamshed.com/?p=12</link>
		<comments>http://www.thedreamshed.com/?p=12#comments</comments>
		<pubDate>Sat, 14 Mar 2009 00:53:36 +0000</pubDate>
		<dc:creator>mick</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.thedreamshed.com/?p=12</guid>
		<description><![CDATA[	Today I wrote a very simple functional test that had a line as follows:
	
&#160; &#160; assert_redirected_to new_session_url
&#160;
	When I ran it I got the following error:

Missing host to link to! Please provide :host parameter or set default_url_options[:host]
&#160;
	The fix was simple. Instead of using a url helper, I should have been using a path helper. 
	
&#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[	<p>Today I wrote a very simple functional test that had a line as follows:</p>
	<div class="code ruby" style="font-family: monospace;"><br />
&nbsp; &nbsp; assert_redirected_to new_session_url<br />
&nbsp;</div>
	<p>When I ran it I got the following error:<br />
<div class="code text" style="font-family: monospace;"><br />
Missing host to link to! Please provide :host parameter or set default_url_options[:host]<br />
&nbsp;</div>
	<p>The fix was simple. Instead of using a url helper, I should have been using a path helper. </p>
	<div class="code ruby" style="font-family: monospace;"><br />
&nbsp; &nbsp; assert_redirected_to new_session_path<br />
&nbsp;</div>
	<p>After this change, the test worked perfectly.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://www.thedreamshed.com/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Capistrano hanging on svn export</title>
		<link>http://www.thedreamshed.com/?p=11</link>
		<comments>http://www.thedreamshed.com/?p=11#comments</comments>
		<pubDate>Wed, 29 Oct 2008 12:39:09 +0000</pubDate>
		<dc:creator>mick</dc:creator>
				<category><![CDATA[Capistrano]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.thedreamshed.com/?p=11</guid>
		<description><![CDATA[	I&#8217;ve been running into a problem lately where my attempts to deploy new versions of my rail app were hanging. Specifically, when I ran:
	
cap deploy
&#160;
	Capistrano would hang executing the svn export command. It took me a while to work out what was happening, but it turned out that the ssh connection being used by Capistrano [...]]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;ve been running into a problem lately where my attempts to deploy new versions of my rail app were hanging. Specifically, when I ran:</p>
	<div class="code shell" style="font-family: monospace;"><br />
cap deploy<br />
&nbsp;</div>
	<p>Capistrano would hang executing the <code>svn export</code> command. It took me a while to work out what was happening, but it turned out that the ssh connection being used by Capistrano to connect to the server was timing out. To fix the problem you can edit the <code>~/.ssh/config</code> file on your client machine, and define values for the following settings:</p>
	<div class="code shell" style="font-family: monospace;"><br />
ServerAliveCountMax 30<br />
ServerAliveInterval 120<br />
&nbsp;</div>
	<p>On the server, edit the file <code>/etc/ssh/sshd_config</code> and define values for the following:<br />
<div class="code shell" style="font-family: monospace;"><br />
ClientAliveInterval 60<br />
ClientAliveCountMax 60<br />
&nbsp;</div>
	<p>and then restart the ssh daemon on the server:</p>
	<div class="code shell" style="font-family: monospace;"><br />
sudo /etc/init.d/ssh start<br />
&nbsp;</div>
	<p>The exact values to use for the various settings are up to you. For more info on how they work, you can consult the online doco on your client machine:</p>
	<div class="code shell" style="font-family: monospace;"><br />
man ssh_config<br />
&nbsp;</div>

 ]]></content:encoded>
			<wfw:commentRss>http://www.thedreamshed.com/?feed=rss2&amp;p=11</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails page.replace and Ext JS</title>
		<link>http://www.thedreamshed.com/?p=7</link>
		<comments>http://www.thedreamshed.com/?p=7#comments</comments>
		<pubDate>Sat, 21 Jun 2008 14:12:37 +0000</pubDate>
		<dc:creator>mick</dc:creator>
				<category><![CDATA[Ext]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.thedreamshed.com/?p=7</guid>
		<description><![CDATA[	I tore my hair out tracking down a problem last week and figured I should share my solution.
	I&#8217;m currently experimenting with using the Ext Javascript library to create much of the front end of a Ruby on Rails application. I hit a problem where using Rails&#8217; page.replace was failing on Firefox. Specifically any script tags [...]]]></description>
			<content:encoded><![CDATA[	<p>I tore my hair out tracking down a problem last week and figured I should share my solution.</p>
	<p>I&#8217;m currently experimenting with using the <a href="http://extjs.com">Ext Javascript library</a> to create much of the front end of a Ruby on Rails application. I hit a problem where using Rails&#8217; <code>page.replace</code> was failing on Firefox. Specifically any <code>script</code> tags embedded in the html were not being run.</p>
	<p>Turns out the problem is caused by both Ext and the <a href="http://www.prototypejs.org/">Prototype library</a> defining a <code>defer()</code> method, each with different parameters and semantics from the other. Due to the order I include things, the Ext version of <code>defer</code> wins, and is used everywhere. Rails&#8217; <code>page.replace</code> eventually causes defer() to be called, but it needs to call Prototype&#8217;s <code>defer</code> rather than Ext&#8217;s <code>defer</code>.</p>
	<p>The problem has been discovered by various people. For example, there have been some posts on the Ext  forum about it (<a href="http://extjs.com/forum/showthread.php?t=16736">here</a> and <a href="http://extjs.com/forum/showthread.php?p=184468">here</a>) and the rails community feel it <a href="http://dev.rubyonrails.org/ticket/11227">should be fixed in Ext</a>.</p>
	<h3>A solution</h3>
	<p>There are no doubt many ways to consider addressing this problem, but the simplest I can think of is to patch <code>/ext/adapter/prototype/ext-prototype-adapter.js</code> so that the Ext <code>defer</code> function changes from:</p>
	<div class="code javascript" style="font-family: monospace;"><br />
&nbsp; &nbsp; defer: <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>C, E, B, A<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> D = <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">createDelegate</span><span style="color: #66cc66;">&#40;</span>E, B, A<span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #66cc66;">&#40;</span>C<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">return</span> setTimeout<span style="color: #66cc66;">&#40;</span>D, C<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; D<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #CC0000;">0</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span>,<br />
&nbsp;</div>
	<p>to:</p>
	<div class="code javascript" style="font-family: monospace;"><br />
&nbsp; &nbsp; defer: <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>C, E, B, A<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span><span style="color: #66cc66;">&#40;</span>arguments.<span style="color: #006600;">length</span> == <span style="color: #CC0000;">0</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900; font-style: italic;">// this is for compatability with the Prototype</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900; font-style: italic;">// library which has a defer() function</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900; font-style: italic;">// that takes no parameters, and whose</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900; font-style: italic;">// meaning is the same as Ext's defer(10)</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C = <span style="color: #CC0000;">10</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> D = <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">createDelegate</span><span style="color: #66cc66;">&#40;</span>E, B, A<span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #66cc66;">&#40;</span>C<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">return</span> setTimeout<span style="color: #66cc66;">&#40;</span>D, C<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; D<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #CC0000;">0</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span>,<br />
&nbsp;</div>
	<p>That way the Ext <code>defer</code> provides the same semantics as the Prototype <code>defer</code> in the case where the caller provides no parameters. As such, it no longer matters that <code>page.replace</code> ends up calling Ext&#8217;s <code>defer</code> since Ext&#8217;s <code>defer</code> now does what <code>page.replace</code> expects.</p>
	<h3>Alternatively &#8230;</h3>
	<p>Another way around this problem is to stop using <code>page.replace</code> and to use Ext&#8217;s <code>Ext.Updater</code> facility instead. Converting an app from using <code>page.replace</code> to <code>Ext.Updater</code> is not a trivial exercise, however, and so I&#8217;d still suggest applying the above patch even if you do plan to convert across to <code>Ext.updater</code>, especially since the patch addresses the <code>defer</code> problem directly, and <code>defer</code> may be used by prototype (and Rails) in many places.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://www.thedreamshed.com/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://www.thedreamshed.com/?p=3</link>
		<comments>http://www.thedreamshed.com/?p=3#comments</comments>
		<pubDate>Fri, 04 Jan 2008 05:33:00 +0000</pubDate>
		<dc:creator>mick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dynamic languages]]></category>

		<guid isPermaLink="false">http://www.thedreamshed.com/?p=3</guid>
		<description><![CDATA[	This is a place to hold the musings of me, Mick Hollins.
	I&#8217;ve recently started my own company and so hopefully I&#8217;ll get some time to write about some of my experiences.
	I&#8217;m a software developer. I&#8217;ve spent most of my adult life coding in C++/Java, and could never understand how these dynamic language guys just &#8220;didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[	<p>This is a place to hold the musings of me, Mick Hollins.</p>
	<p>I&#8217;ve recently started my own <a href="http://www.dreamfolk.com" title="company">company</a> and so hopefully I&#8217;ll get some time to write about some of my experiences.</p>
	<p>I&#8217;m a software developer. I&#8217;ve spent most of my adult life coding in C++/Java, and could never understand how these dynamic language guys just &#8220;didn&#8217;t get it&#8221;. I&#8217;ve finally decided to get out from under the rug and give dynamic  languages a real go, and so far &#8230; I&#8217;m loving it. I will hopefully get to write more about my experiences with dynamic languages in the future. A <a href="http://www.alittlemadness.com" title="Jason Sankey">friend</a> suggested to me that I call my blog &#8220;Dynamic Eye for a Static Guy&#8221;. I just might do that &#8230;</p>

 ]]></content:encoded>
			<wfw:commentRss>http://www.thedreamshed.com/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
