<?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>Veggerby : IBlog &#187; ASP.NET MVC</title>
	<atom:link href="http://blog.veggerby.dk/category/aspnet/aspnet-mvc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.veggerby.dk</link>
	<description>Low decoupling, highly incoherent</description>
	<lastBuildDate>Fri, 28 May 2010 19:47:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>ASP.NET MVC Gravatar HtmlHelper</title>
		<link>http://blog.veggerby.dk/2009/09/30/asp-net-mvc-gravatar-htmlhelper/</link>
		<comments>http://blog.veggerby.dk/2009/09/30/asp-net-mvc-gravatar-htmlhelper/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 19:08:00 +0000</pubDate>
		<dc:creator>nosey</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Extension Methods]]></category>
		<category><![CDATA[Gravatar]]></category>

		<guid isPermaLink="false">http://blog.veggerby.dk/2009/09/30/asp-net-mvc-gravatar-htmlhelper/</guid>
		<description><![CDATA[Here is a quick little URL Helper extension method to add Gravatar images/photos/avatars to your page: public static string GravatarUrl(this UrlHelper url, string email, int size) { string imageUrl = ConfigurationManager.AppSettings[&#34;DefaultGravatar&#34;]; if (imageUrl.StartsWith(&#34;~/&#34;)) { imageUrl = url.Absolute(imageUrl); } if (string.IsNullOrEmpty(email)) { return imageUrl; } string md5 = email.ToLowerInvariant().MD5(); return string.Format( &#34;http://www.gravatar.com/avatar/{0}.jpg?d={1}&#38;s={2}&#38;r=g&#34;, md5.ToLowerInvariant(), url.Encode(imageUrl), size); } [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick little <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.urlhelper.aspx">URL Helper</a> extension method to add <a href="http://gravatar.com/">Gravatar</a> images/photos/avatars to your page:</p>
<pre style="border-bottom: #cecece 1px solid; border-left: #cecece 1px solid; padding-bottom: 5px; background-color: #fbfbfb; min-height: 40px; padding-left: 5px; width: 100%; padding-right: 5px; overflow: auto; border-top: #cecece 1px solid; border-right: #cecece 1px solid; padding-top: 5px">
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px"><span style="color: #0000ff">public</span> <span style="color: #0000ff">static</span> <span style="color: #0000ff">string</span> GravatarUrl(<span style="color: #0000ff">this</span> UrlHelper url, <span style="color: #0000ff">string</span> email, <span style="color: #0000ff">int</span> size)
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">{
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    <span style="color: #0000ff">string</span> imageUrl = ConfigurationManager.AppSettings[&quot;<span style="color: #8b0000">DefaultGravatar</span>&quot;];
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    <span style="color: #0000ff">if</span> (imageUrl.StartsWith(&quot;<span style="color: #8b0000">~/</span>&quot;))
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    {
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">        imageUrl = url.Absolute(imageUrl);
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    }
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px"></pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    <span style="color: #0000ff">if</span> (<span style="color: #0000ff">string</span>.IsNullOrEmpty(email))
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    {
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">        <span style="color: #0000ff">return</span> imageUrl;
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    }
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px"></pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    <span style="color: #0000ff">string</span> md5 = email.ToLowerInvariant().MD5();
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    <span style="color: #0000ff">return</span> <span style="color: #0000ff">string</span>.Format(
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">        &quot;<span style="color: #8b0000">http://www.gravatar.com/avatar/{0}.jpg?d={1}&amp;s={2}&amp;r=g</span>&quot;,
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">        md5.ToLowerInvariant(),
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">        url.Encode(imageUrl),
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">        size);
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">}
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px"></pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px"><span style="color: #0000ff">public</span> <span style="color: #0000ff">static</span> <span style="color: #0000ff">string</span> GravatarUrl(<span style="color: #0000ff">this</span> UrlHelper url, <span style="color: #0000ff">string</span> email)
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">{
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    <span style="color: #0000ff">return</span> url.GravatarUrl(email, 32);
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">}</pre>
</pre>
<p>It uses another custom URL Helper extension method Absolute to generate an absolute URL to a default image (based on an application relative url).</p>
<p>The Absolute extension method is similar to the ActionAbsolute method <a href="http://blog.veggerby.dk/2009/01/13/getting-an-absolute-url-from-aspnet-mvc/">I posted earlier</a>:</p>
<pre style="border-bottom: #cecece 1px solid; border-left: #cecece 1px solid; padding-bottom: 5px; background-color: #fbfbfb; min-height: 40px; padding-left: 5px; width: 475px; padding-right: 5px; overflow: auto; border-top: #cecece 1px solid; border-right: #cecece 1px solid; padding-top: 5px">
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px"><span style="color: #0000ff">public</span> <span style="color: #0000ff">static</span> <span style="color: #0000ff">string</span> Absolute(<span style="color: #0000ff">this</span> UrlHelper url, <span style="color: #0000ff">string</span> contentUrl)
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">{
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">    <span style="color: #0000ff">return</span> <span style="color: #0000ff">new</span> Uri(GetBaseUrl(url), url.Content(contentUrl))
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">        .AbsoluteUri;
</pre>
<pre style="background-color: #fbfbfb; margin: 0em; width: 100%; font-family: consolas,&#39;Courier New&#39;,courier,monospace; font-size: 12px">}</pre>
</pre>
<p>And it also used the MD5 extension method <a href="http://blog.veggerby.dk/2009/09/29/md5-extension-method/">from yesterdays post</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veggerby.dk/2009/09/30/asp-net-mvc-gravatar-htmlhelper/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting an absolute URL from ASP.NET MVC</title>
		<link>http://blog.veggerby.dk/2009/01/13/getting-an-absolute-url-from-aspnet-mvc/</link>
		<comments>http://blog.veggerby.dk/2009/01/13/getting-an-absolute-url-from-aspnet-mvc/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 22:40:15 +0000</pubDate>
		<dc:creator>nosey</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://blog.veggerby.dk/2009/01/13/getting-an-absolute-url-from-aspnet-mvc/</guid>
		<description><![CDATA[I have been in situations where I need to generate an absolute URL to a specific action in an ASP.NET MVC application. The main problem mostly lies in getting the “domain” part of the URL. The only way to do this is to examine the request URL. I came across a very nice method of [...]]]></description>
			<content:encoded><![CDATA[<p>I have been in situations where I need to generate an <u>absolute</u> URL to a specific action in an <a href="http://asp.net/mvc">ASP.NET MVC</a> application. The main problem mostly lies in getting the “domain” part of the URL. The only way to do this is to examine the request URL. I came across a very nice method of doing this during an encounter with the <a href="http://code.google.com/p/dotnetopenid/">dotnetopenid</a>.&#160; </p>
<div class="vscode"><span style="color: #0000ff">public</span> <span style="color: #0000ff">static</span> <span style="color: #2b91af">Uri</span> GetBaseUrl(<span style="color: #0000ff">this</span> <span style="color: #2b91af">UrlHelper</span> url)    <br />{    <br />&#160;&#160;&#160; <span style="color: #2b91af">Uri</span> contextUri = <span style="color: #0000ff">new</span> <span style="color: #2b91af">Uri</span>(url.RequestContext.HttpContext.Request.Url, url.RequestContext.HttpContext.Request.RawUrl);    <br />&#160;&#160;&#160; <span style="color: #2b91af">UriBuilder</span> realmUri = <span style="color: #0000ff">new</span> <span style="color: #2b91af">UriBuilder</span>(contextUri) { Path = url.RequestContext.HttpContext.Request.ApplicationPath, Query = <span style="color: #0000ff">null</span>, Fragment = <span style="color: #0000ff">null</span> };    <br />&#160;&#160;&#160; <span style="color: #0000ff">return</span> realmUri.Uri;    <br />}    </p>
<p><span style="color: #0000ff">public</span> <span style="color: #0000ff">static</span> <span style="color: #0000ff">string</span> ActionAbsolute(<span style="color: #0000ff">this</span> <span style="color: #2b91af">UrlHelper</span> url, <span style="color: #0000ff">string</span> actionName, <span style="color: #0000ff">string</span> controllerName)    <br />{    <br />&#160;&#160;&#160; <span style="color: #0000ff">return</span> <span style="color: #0000ff">new</span> <span style="color: #2b91af">Uri</span>(GetBaseUrl(url), url.Action(actionName, controllerName)).AbsoluteUri;    <br />}</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.veggerby.dk/2009/01/13/getting-an-absolute-url-from-aspnet-mvc/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>jQuery and AJAX Tooltips</title>
		<link>http://blog.veggerby.dk/2009/01/01/jquery-and-ajax-tooltips/</link>
		<comments>http://blog.veggerby.dk/2009/01/01/jquery-and-ajax-tooltips/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 19:38:58 +0000</pubDate>
		<dc:creator>nosey</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[javascript jquery tooltip]]></category>

		<guid isPermaLink="false">http://blog.veggerby.dk/2009/01/01/jquery-and-ajax-tooltips/</guid>
		<description><![CDATA[So the day has dawned, very symbolic that this day happens to be the first of a new year… enough of that. The day has finally come where I post a JavaScript entry! Who would have thought that??? Over the last couple of months I have had a very passionate relationship with a new hottie [...]]]></description>
			<content:encoded><![CDATA[<p>So the day has dawned, very symbolic that this day happens to be the first of a new year… enough of that. The day has finally come where I post a JavaScript entry! Who would have thought that???</p>
<p>Over the last couple of months I have had a very passionate relationship with a new hottie I discovered. She is named <a href="http://jquery.com/">jQuery</a> and OMG can she do tricks… OK, stop this talk right now <img src='http://blog.veggerby.dk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Basically I have had my head in <a href="http://akax.asp.net/">AJAX for ASP.NET</a> doing what <a href="http://mattberseth.com/blog/2008/06/getting_jquery_goodness_into_a.html">others</a> <a href="http://mattberseth.com/blog/2008/06/getting_jquery_goodness_into_a_1.html">before</a> <a href="http://www.west-wind.com/WebLog/posts/400348.aspx">already</a> realized probably wasn’t the best approach. Finally I got around to have a look at jQuery and I must admit that (especially for my <a href="http://asp.net/mvc">ASP.NET MVC</a> project(s)) I haven’t looked back!!!</p>
<p>Today I had a little feature I wanted to solve with some AJAX:</p>
<p>I have a list of objects displayed in a certain view. One property on these objects is calculated and involved some semi-heavy database and calculation stuff and therefore requires both time and system resources to get. This value is not in particular important to the current view, but is a nice-to-have information. This means that the value as such does not need to appear in the view after rendering. I therefore figured it could be nice to have in a dynamic tooltip, i.e. “on tooltip hover, calculate/retrieve the value and display it as a tooltip”.</p>
<p>Having used other of <a href="http://bassistance.de/jquery-plugins/">Jörn Zafferer</a> jQuery plug-in’s previously (with great success) I turned my attention to his <a href="http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/">tooltip plugin</a>. </p>
<p>Having read the <a href="http://docs.jquery.com/Plugins/Tooltip">documentation</a> it is apparent that, while you can specify a callback function (namely the “bodyHandler” property) to determine which “value” to display in the tooltip, there is an issue with this: it is synchronous! And by <a href="http://en.wikipedia.org/wiki/AJAX">definition</a> AJAX is asynchronous. The problem here is that if you do a <a href="http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype">$.get()</a> call you the return value of the bodyHandler callback is “out of scope”, since it is first available once the AJAX call is completed, i.e.:</p>
<div class="vscode">$(<span style="color: #a31515">&quot;.tooltip-element&quot;</span>).tooltip({     <br />&#160;&#160;&#160; bodyHandler: <span style="color: #0000ff">function</span>() {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $.<span style="color: #0000ff">get</span>(<span style="color: #a31515">&quot;/MyController/MyAction&quot;</span>, { id : <span style="color: #a31515">&quot;myid&quot;</span> }, <span style="color: #0000ff">function</span>(data) { <span style="color: #008000">/* do what with &quot;data&quot;? */</span>; }, <span style="color: #a31515">&quot;html&quot;</span>);     <br />&#160;&#160;&#160; },     <br />&#160;&#160;&#160; showURL: <span style="color: #0000ff">false      <br /></span>});</div>
</p>
<p>My solution to this was the following:</p>
<div class="vscode">$(<span style="color: #a31515">&quot;.tooltip-element&quot;</span>).tooltip({     <br />&#160;&#160;&#160; bodyHandler: <span style="color: #0000ff">function</span>() {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color: #0000ff">var</span> result = $(<span style="color: #a31515">&quot;&lt;span/&gt;&quot;</span>).html(<span style="color: #a31515">&quot;some loading indicator&quot;</span>);     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; $.<span style="color: #0000ff">get</span>(<span style="color: #a31515">&quot;/MyController/MyAction&quot;</span>, { id: <span style="color: #a31515">&quot;myid&quot;</span> }, <span style="color: #0000ff">function</span>(data) { result.html(data); }, <span style="color: #a31515">&quot;html&quot;</span>);     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span style="color: #0000ff">return</span> result;     <br />&#160;&#160;&#160; },     <br />&#160;&#160;&#160; showURL: <span style="color: #0000ff">false      <br /></span>});</div>
<p>I think that is pretty nifty! Of course the “some loading indicator” can be tweaked (e.g. use a <a href="http://ajaxload.info/">AJAX load indicator</a>). And this is of course <u>not</u> specific to ASP.NET MVC!</p>
<p><strong>UPDATE:</strong></p>
<p>There is a problem with this approach! The jQuery tooltip plugin used seems to invoke the bodyHandler callback directly “on mouse over”, ie. not after the delay. This means that although the tooltip displays nicely after the specified delay, the Ajax call was performed at T=0. What this effectively means is that if you eg. have a table where all values in column 1 have this Ajax-tooltip-thingy. If you then move the mouse in over a couple of the values each time you the cursor is over the value an Ajax call is executed. Not so good unless you want to utilize all resources in your server <img src='http://blog.veggerby.dk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Back to the drawing board…</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veggerby.dk/2009/01/01/jquery-and-ajax-tooltips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC HtmlHelper methods and CSS class</title>
		<link>http://blog.veggerby.dk/2008/11/19/aspnet-mvc-htmlhelper-methods-and-css-class/</link>
		<comments>http://blog.veggerby.dk/2008/11/19/aspnet-mvc-htmlhelper-methods-and-css-class/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 14:07:25 +0000</pubDate>
		<dc:creator>nosey</dc:creator>
				<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[reference]]></category>

		<guid isPermaLink="false">http://blog.veggerby.dk/2008/11/19/aspnet-mvc-htmlhelper-methods-and-css-class/</guid>
		<description><![CDATA[If you in ASP.NET MVC use a Html helper method to render out e.g. an input box: &#60;% = Html.TextBox(&#34;name&#34;)&#160; %&#62; Sometimes you might need to add an CSS class attribute to your input box (this should be a fairly standard thing). For this there exist overload methods that takes a “htmlAttributes” parameter of type [...]]]></description>
			<content:encoded><![CDATA[<p>If you in <a href="http://www.asp.net/mvc/">ASP.NET MVC</a> use a Html helper method to render out e.g. an input box:</p>
<div class="vscode">&lt;% =</span> Html.TextBox(<span style="color: #a31515">&quot;name&quot;</span>)&#160; %&gt;</div>
</p>
<p>Sometimes you might need to add an CSS class attribute to your input box (this should be a fairly standard thing). For this there exist overload methods that takes a “htmlAttributes” parameter of type object. Now my experience with this is somewhat similar to <a href="http://ayende.com/Blog/archive/2008/11/12/what-i-am-posting-about.aspx">Ayende Rahien</a> experience – although I have not begun banging my head against the wall out of frustration. This is <u>not</u> a rant, I love ASP.NET MVC, I just had an experience with something simple that was hard to figure out because of some of the design decisions &#8211; not that they are bad, they can just be confusing – especially with the lack of documentation at the current stage (yes, I know it is just a beta). So if you try this:</p>
<div class="vscode">&lt;% =</span> Html.TextBox(<span style="color: #a31515">&quot;name&quot;</span>, <span style="color: #0000ff">null</span>, <span style="color: #0000ff">new</span>{ <span style="color: #0000ff">class</span> = <span style="color: #a31515">&quot;required&quot;</span>})&#160; %&gt;</div>
<p>You will (of course) get a compiler error, since “class” is a keyword and cannot be used like this. So how do you specify the class? Well, like this:</p>
<div class="vscode">&lt;% =</span> Html.TextBox(<span style="color: #a31515">&quot;name&quot;</span>, <span style="color: #0000ff">null</span>, <span style="color: #0000ff">new</span>{ @class = <span style="color: #a31515">&quot;required&quot;</span>})&#160; %&gt;</div>
<p>Just for future reference <img src='http://blog.veggerby.dk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.veggerby.dk/2008/11/19/aspnet-mvc-htmlhelper-methods-and-css-class/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
