<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Nick Allen - Tungle139</title>
	<atom:link href="http://tungle139.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tungle139.wordpress.com</link>
	<description>They are indeed different, but they are of the same kind, as there is no duality in Truth</description>
	<lastBuildDate>Thu, 14 May 2009 11:04:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tungle139.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/98d61de9e0449e0ee08dbea2ca59d14b?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Nick Allen - Tungle139</title>
		<link>http://tungle139.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tungle139.wordpress.com/osd.xml" title="Nick Allen - Tungle139" />
	<atom:link rel='hub' href='http://tungle139.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Creating a QueryString utility Class</title>
		<link>http://tungle139.wordpress.com/2009/05/14/creating-a-querystring-utility-class/</link>
		<comments>http://tungle139.wordpress.com/2009/05/14/creating-a-querystring-utility-class/#comments</comments>
		<pubDate>Thu, 14 May 2009 11:04:35 +0000</pubDate>
		<dc:creator>Nick Allen</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://tungle.co.uk/?p=33</guid>
		<description><![CDATA[Building up query strings is quite a common task in web development but there is currently no utility class in .Net that neatly facilitates this. So I thought I&#8217;d have a go at creating one that nicely encapsulates the build process and makes use of Generic Collections. And here is what I came up with! [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tungle139.wordpress.com&amp;blog=4806856&amp;post=33&amp;subd=tungle139&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Building up query strings is quite a common task in web development but there is currently no utility class in .Net that neatly facilitates this. So I thought I&#8217;d have a go at creating one that nicely encapsulates the build process and makes use of Generic Collections. And here is what I came up with!</p>
<pre>public class QueryString
{
    private Dictionary _Params = new Dictionary();

    public overide ToString()
    {
        List returnParams = new List();

        foreach (KeyValuePair param in _Params)
        {
            returnParams.Add(String.Format("{0}={1}", param.Key, param.Value));
        }

        return "?" + String.Join("&amp;", returnParams.ToArray());
    }

    public void Add(string key, string value)
    {
        _Params.Add(key, HttpUtility.UrlEncode(value));
    }
}</pre>
<p>This can be used like so</p>
<pre>QueryString query = new QueryString();

query.Add("param1", "value1");
query.Add("param2", "value2");

return query.ToString();</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tungle139.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tungle139.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tungle139.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tungle139.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tungle139.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tungle139.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tungle139.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tungle139.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tungle139.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tungle139.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tungle139.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tungle139.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tungle139.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tungle139.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tungle139.wordpress.com&amp;blog=4806856&amp;post=33&amp;subd=tungle139&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tungle139.wordpress.com/2009/05/14/creating-a-querystring-utility-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7ef213986105e6ad65cf2eb6560b535?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tungle139</media:title>
		</media:content>
	</item>
		<item>
		<title>Switching from XHTML to HTML</title>
		<link>http://tungle139.wordpress.com/2009/05/14/switching-from-xhtml-to-html/</link>
		<comments>http://tungle139.wordpress.com/2009/05/14/switching-from-xhtml-to-html/#comments</comments>
		<pubDate>Thu, 14 May 2009 10:30:19 +0000</pubDate>
		<dc:creator>Nick Allen</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Markup]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://tungle.co.uk/?p=29</guid>
		<description><![CDATA[There has been a noticeable shift of developers deciding to abandon the XHTML doctype due to the lack of movement in the delivery of XHTML 2.0 and the continued efforts of browser vendors to implement HTML 5 as the new standard and way forward. This to me makes sense so I have also decided to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tungle139.wordpress.com&amp;blog=4806856&amp;post=29&amp;subd=tungle139&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There has been a noticeable shift of developers deciding to <a href="http://www.webdesign.org/web/html-and-css/articles/why-you-shouldnt-be-using-xhtml.16591.html" target="_blank">abandon the XHTML doctype</a> due to the lack of movement in the delivery of XHTML 2.0 and the continued efforts of browser vendors to implement HTML 5 as the new standard and <a href="http://css-tricks.com/html-5-vs-xhtml-2-an-article-roundup-and-poll/" target="_blank">way forward</a>. This to me makes sense so I have also decided to down tools with XHTML and go back to a HTML 4 strict doctype for now until I make the move up to HTML5.</p>
<p>This may not be the easy ride I was hoping for and I get the feeling that years of XHTML tag mentality may make the switch a little trickier than I thought. Take the following example&#8230;</p>
<p>I published my first piece of work and ran it through the <a href="http://validator.w3.org/" target="_blank">W3C Validator</a> and to my surprise (as it is quite simple markup) it failed on 1 error but in several places. The reason at first was not obvious but after reading up on <a href="http://www.cs.tut.fi/~jkorpela/html/empty.html" target="_blank">empty elements</a> it turns out that in HTML I should not be using a forward slash in front of the closing greater than character in self closing tags</p>
<p>The browser will see</p>
<p>&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;style.css&#8221;<strong>/&gt;</strong></p>
<p>as</p>
<p>&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;style.css&#8221;<strong>&gt;&gt;</strong></p>
<p>A simple mistake to make and a simple mistake to rectify but I get the impression that this is the first in a long line of XHTML conventions I will need to, not shake off as I will still have XHTML projects to work on but retrain the mind on when working with HTML</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tungle139.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tungle139.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tungle139.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tungle139.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tungle139.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tungle139.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tungle139.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tungle139.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tungle139.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tungle139.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tungle139.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tungle139.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tungle139.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tungle139.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tungle139.wordpress.com&amp;blog=4806856&amp;post=29&amp;subd=tungle139&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tungle139.wordpress.com/2009/05/14/switching-from-xhtml-to-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7ef213986105e6ad65cf2eb6560b535?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tungle139</media:title>
		</media:content>
	</item>
		<item>
		<title>Postcode Lookup Usability Fail</title>
		<link>http://tungle139.wordpress.com/2009/02/01/postcode-lookup-usability-fail/</link>
		<comments>http://tungle139.wordpress.com/2009/02/01/postcode-lookup-usability-fail/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 12:05:02 +0000</pubDate>
		<dc:creator>Nick Allen</dc:creator>
				<category><![CDATA[User Experience]]></category>
		<category><![CDATA[On-line Forms]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://tungle.co.uk/?p=22</guid>
		<description><![CDATA[Postcode lookups have been done in a variety of ways to ease the process of filling out dreaded on-line forms, which I think web designers hate building as much as web users hate… using. Today I had to pay my water bill, cue web form, but this web form had probably the worst example of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tungle139.wordpress.com&amp;blog=4806856&amp;post=22&amp;subd=tungle139&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Postcode lookups have been done in a variety of ways to ease the process of filling out dreaded on-line forms, which I think web designers hate building as much as web users hate… using.</p>
<p>Today I had to pay my water bill, cue web form, but this web form had probably the worst example of postcode lookup I have come across. To highlight the positive elements it was very clear where I had to enter my postcode and the &#8216;Get Address&#8217; link was very clear. It was what came back afterwards that was the problem…</p>
<p style="text-align:center;"> </p>
<div id="attachment_24" class="wp-caption aligncenter" style="width: 333px"><img class="size-full wp-image-24" title="Thames Water Postcode Lookup" src="http://tungle139.files.wordpress.com/2009/02/thameswaterpostcodelookup.png?w=406" alt="Thames Water Postcode Lookup"   /><p class="wp-caption-text">Thames Water Postcode Lookup</p></div>
<p> </p>
<p> </p>
<p>This hurts my eyes and my brain. Surely a simple field sort on this data would not be a huge task?</p>
<p>I don&#8217;t know whether <a href="https://forms.thameswater.co.uk/make-payment">Thames Water</a> have built the functionality or if they are plugging on to a third party implementation (probably the latter) but I would urge them to fix this or get on to the third party to fix it and I would bet money that the conversion rate on this form would improve and if it didn&#8217;t improve well at least it would make the lives of thousands of people a little easier.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tungle139.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tungle139.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tungle139.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tungle139.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tungle139.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tungle139.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tungle139.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tungle139.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tungle139.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tungle139.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tungle139.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tungle139.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tungle139.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tungle139.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tungle139.wordpress.com&amp;blog=4806856&amp;post=22&amp;subd=tungle139&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tungle139.wordpress.com/2009/02/01/postcode-lookup-usability-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7ef213986105e6ad65cf2eb6560b535?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tungle139</media:title>
		</media:content>

		<media:content url="http://tungle139.files.wordpress.com/2009/02/thameswaterpostcodelookup.png" medium="image">
			<media:title type="html">Thames Water Postcode Lookup</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox shines again with 2 excellent add-ons</title>
		<link>http://tungle139.wordpress.com/2009/01/27/firefox-shines-again-with-2-excellent-add-ons/</link>
		<comments>http://tungle139.wordpress.com/2009/01/27/firefox-shines-again-with-2-excellent-add-ons/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 22:01:32 +0000</pubDate>
		<dc:creator>Nick Allen</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Add-Ons]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Peformance]]></category>
		<category><![CDATA[Reference]]></category>

		<guid isPermaLink="false">http://tungle139.wordpress.com/?p=5</guid>
		<description><![CDATA[Since the emergence of Google Chrome with WebKit's code inspector, I have to admit that I have been using Firefox less and less and if I do it's to check my designs for cross-browser compatability. Two recently discovered add-ons have changed all that!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tungle139.wordpress.com&amp;blog=4806856&amp;post=5&amp;subd=tungle139&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was going to do the it&#8217;s my first blog post thing hurrah! But i&#8217;ve decided against and will just get stuck in. Now you could argue that I&#8217;ve actually done the &#8220;it&#8217;s my first blog post thing&#8221; anyway, what the hell Hello World! Sorry</p>
<p>Since the emergence of Google Chrome with WebKit&#8217;s code inspector, I have to admit that I have been using Firefox less and less and if I do it&#8217;s to check my designs for cross-browser compatability. Two recently discovered add-ons have changed all that!</p>
<p>Recently I have been doing some work on optimizing a project for speed and after a little research came across an offering from the Yahoo Developer Network <a title="YSlow" href="http://developer.yahoo.com/yslow/" target="_self">YSlow</a>. YSlow is an extension add-on to the ever popular and extemely useful Firebug plugin (most developers will be familiar with <a title="Firebug" href="http://getfirebug.com/" target="_self">Firebug</a> by now but if not I would urge you to spend part of your day today taking a look at it).</p>
<p style="text-align:center;"> </p>
<div id="attachment_11" class="wp-caption aligncenter" style="width: 363px"><img class="size-full wp-image-11 " title="YSlow" src="http://tungle139.files.wordpress.com/2009/01/yslow.png?w=406" alt="Yahoo YSlow extension in Firebug"   /><p class="wp-caption-text">Yahoo YSlow extension in Firebug</p></div>
<p> </p>
<p>So why do I love YSlow? Well in my experience as a Web Developer performace optimization always seems to be that part of the project that you&#8217;ll get round to at the end, after all the fun stuff&#8217;s been done! Then of course during post-release you spend alot of time handling bugs and subtle (yet necessary) feature additions and before you know it you only get round to optimizing when it becomes a problem. YSlow gets you right into the source of your performance bottle necks quickly, tells you which areas are causing a problem and exactly which elements you need to concentrate on. It also provides details about areas of optimization that I certainly have never considered, for example adding expires headers to images (which takes a bit of work, if like me you don&#8217;t have access to IIS with your hosting company). If you don&#8217;t fully understand the concepts it suggests there are also links through to the YDN for fuller explanations.</p>
<p>So while I was in the Firefox add-on mood I noticed a tweet from <a title="Sitepoint on Twitter" href="http://twitter.com/sitepointdotcom" target="_self">Sitepoint</a> advertising a little Firebug extension add-on of their own, introducing <a title="FireScope" href="http://www.sitepoint.com/blogs/2009/01/27/introducing-firescope-the-sitepoint-reference-tool-for-firebug/" target="_self">FireScope</a>. Sitepoint have recently re-designed the <a title="Sitepoint html and css reference" href="http://reference.sitepoint.com/" target="_self">reference section</a> of their website and FireScope is an add-on that sits right in Firebug and allows you to pull in data from Sitepoint&#8217;s reference whilst you are using Firebug. Now I think this is great, because most of us are quite familiar with a wide range of HTML tags now and their semantic meaning but I think it&#8217;s always a good idea to look back at some of the more basic concepts and just make sure that you&#8217;ve really fully understood those semantics. It also handily provides you with browser compatability charts and code examples.</p>
<p style="text-align:center;"> </p>
<div id="attachment_13" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-13" title="Sitepoint's FireScope" src="http://tungle139.files.wordpress.com/2009/01/firescope.png?w=300&#038;h=110" alt="A HTML and CSS reference extension for Firebug" width="300" height="110" /><p class="wp-caption-text">A HTML and CSS reference extension for Firebug</p></div>
<p> </p>
<p>Firefox with Firebug, YSlow and FireScope has definately become my tool of choice for the moment, welcome home Firefox!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tungle139.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tungle139.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tungle139.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tungle139.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tungle139.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tungle139.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tungle139.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tungle139.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tungle139.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tungle139.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tungle139.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tungle139.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tungle139.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tungle139.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tungle139.wordpress.com&amp;blog=4806856&amp;post=5&amp;subd=tungle139&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tungle139.wordpress.com/2009/01/27/firefox-shines-again-with-2-excellent-add-ons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7ef213986105e6ad65cf2eb6560b535?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tungle139</media:title>
		</media:content>

		<media:content url="http://tungle139.files.wordpress.com/2009/01/yslow.png" medium="image">
			<media:title type="html">YSlow</media:title>
		</media:content>

		<media:content url="http://tungle139.files.wordpress.com/2009/01/firescope.png?w=300" medium="image">
			<media:title type="html">Sitepoint&#039;s FireScope</media:title>
		</media:content>
	</item>
	</channel>
</rss>
