<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Use jQuery and ASP.NET AJAX to build a client side Repeater</title>
	<atom:link href="http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/feed/" rel="self" type="application/rss+xml" />
	<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/</link>
	<description>ASP.NET and AJAX code, ideas, and examples.</description>
	<lastBuildDate>Wed, 16 May 2012 23:02:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-62879</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Sat, 11 Feb 2012 17:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-62879</guid>
		<description>The LINQ stuff isn&#039;t necessary or related to getting jQuery to work with ASP.NET. Just do whatever server-side work you need to in the method, instead of using LINQ to XML.

If you&#039;re new to using jQuery with ASP.NET, go through this list of posts: http://encosia.com/jquery-for-the-asp-net-developer/</description>
		<content:encoded><![CDATA[<p>The LINQ stuff isn&#8217;t necessary or related to getting jQuery to work with ASP.NET. Just do whatever server-side work you need to in the method, instead of using LINQ to XML.</p>
<p>If you&#8217;re new to using jQuery with ASP.NET, go through this list of posts: <a href="http://encosia.com/jquery-for-the-asp-net-developer/" rel="nofollow">http://encosia.com/jquery-for-the-asp-net-developer/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashwani</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-62878</link>
		<dc:creator>Ashwani</dc:creator>
		<pubDate>Sat, 11 Feb 2012 17:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-62878</guid>
		<description>Thanks Dave for your reply.
I am very new to jquery so can you explain with a example to help me.</description>
		<content:encoded><![CDATA[<p>Thanks Dave for your reply.<br />
I am very new to jquery so can you explain with a example to help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-62871</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Sat, 11 Feb 2012 06:26:42 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-62871</guid>
		<description>LINQ isn&#039;t necessary for making the &lt;code&gt;$.ajax()&lt;/code&gt; call or for using jQuery with ASP.NET. It&#039;s only needed in this example because I&#039;m using LINQ to XML to parse data out of my blog&#039;s (XML) RSS feed.</description>
		<content:encoded><![CDATA[<p>LINQ isn&#8217;t necessary for making the <code>$.ajax()</code> call or for using jQuery with ASP.NET. It&#8217;s only needed in this example because I&#8217;m using LINQ to XML to parse data out of my blog&#8217;s (XML) RSS feed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-62870</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Sat, 11 Feb 2012 06:24:54 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-62870</guid>
		<description>You won&#039;t be able to render the server-side variable directly into the client-side template. They&#039;re being rendered at different times, so the best you would be able to do is render a single vendor name that would be used for every iteration on the client-side (which I don&#039;t think is what you want).

You should still be able to get this into the client-side data. Either try to pull it into your products collection, or render that collection into the page as JSON and then merge it into &quot;products&quot; before rendering the jTemplates template.</description>
		<content:encoded><![CDATA[<p>You won&#8217;t be able to render the server-side variable directly into the client-side template. They&#8217;re being rendered at different times, so the best you would be able to do is render a single vendor name that would be used for every iteration on the client-side (which I don&#8217;t think is what you want).</p>
<p>You should still be able to get this into the client-side data. Either try to pull it into your products collection, or render that collection into the page as JSON and then merge it into &#8220;products&#8221; before rendering the jTemplates template.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peak</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-62868</link>
		<dc:creator>Peak</dc:creator>
		<pubDate>Fri, 10 Feb 2012 18:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-62868</guid>
		<description>Hi Dave, I&#039;ve been using jTemplates for awhile, and trying to build a site completely with jQuery + jTemplates + Web Services. Things worked out really great until i stumbled upon a situation like this, where i need to add some server control or need to resolve some data from the code behind using code block  in the midst of template rendering. 

Consider the stripped down version of jTemplates below:

&lt;pre lang=&quot;asp&quot;&gt;
&lt;script type=&quot;text/html&quot; id=&quot;ContentTemplates&quot;&gt;
        {#template MAIN}
            {#foreach $T.Products as product}
                &lt;div id=&quot;div-product-{$T.product.Id}&quot; class=&quot;product-wrapper&quot;&gt;
                    {#include Content root=$T.product}
                &lt;/div&gt;
            {#/for}
        {#/template MAIN}

        {#template Content}
            &lt;div class=&quot;view-container&quot;&gt;
		&lt;p&gt;Id: {$T.Id}&lt;/p&gt;
		&lt;p&gt;Desc: {$T.Desc}&lt;/p&gt;
		&lt;p&gt;Vendor Id: {$T.VendorId}&lt;/p&gt;
		
		&lt;!-- Vendor name doesn&#039;t supplied by the web service, it needs to be resolved using ASP.NET server code
		&lt;p&gt;Vendor Name: &lt;%= GetVendorName({$T.VendorId}) %&gt;&lt;/p&gt;
		i was hoping to do something like this, but apparently it wouldn&#039;t work this way --&gt;
            &lt;/div&gt;
        {#/template Content}
&lt;/script&gt;
&lt;/pre&gt;

Now i&#039;m banging my head on the wall for failing to achieve something as easy as this.. is it something that I&#039;ve missed? or is it that jTemplates really should be used to render simple HTML layout only? Is the template engine capable of resolving server code blocks? Or am I simply just DOOMED? 

I&#039;m already started to convert my code from client-side to server-side now. Nonetheless, I hope there&#039;s good news from you, bcoz I really like to stick with current design and I think they&#039;re just COOL!</description>
		<content:encoded><![CDATA[<p>Hi Dave, I&#8217;ve been using jTemplates for awhile, and trying to build a site completely with jQuery + jTemplates + Web Services. Things worked out really great until i stumbled upon a situation like this, where i need to add some server control or need to resolve some data from the code behind using code block  in the midst of template rendering. </p>
<p>Consider the stripped down version of jTemplates below:</p>

<div class="wp_syntax"><div class="code"><pre class="asp" style="font-family:monospace;">&lt;script type=&quot;text/html&quot; id=&quot;ContentTemplates&quot;&gt;
        {#template MAIN}
            {#foreach $T.Products as product}
                &lt;div id=&quot;div-product-{$T.product.Id}&quot; class=&quot;product-wrapper&quot;&gt;
                    {#include Content root=$T.product}
                &lt;/div&gt;
            {#/for}
        {#/template MAIN}
&nbsp;
        {#template Content}
            &lt;div class=&quot;view-container&quot;&gt;
		&lt;p&gt;Id: {$T.Id}&lt;/p&gt;
		&lt;p&gt;Desc: {$T.Desc}&lt;/p&gt;
		&lt;p&gt;Vendor Id: {$T.VendorId}&lt;/p&gt;
&nbsp;
		<span style="color: #060; font-style: italic;">&lt;!-- Vendor name doesn't supplied by the web service, it needs to be resolved using ASP.NET server code</span>
		<span style="color: #060; font-weight: bold;">&lt;</span>p<span style="color: #060; font-weight: bold;">&gt;</span>Vendor Name<span style="color: #060; font-weight: bold;">:</span> <span style="color: #000; font-weight: bold;">&lt;%</span><span style="color: #060; font-weight: bold;">=</span> GetVendorName<span style="color: #060; font-weight:bold;">&#40;</span><span style="color: #060; font-weight:bold;">&#123;</span>$T.<span style="color: #90c;">VendorId</span><span style="color: #060; font-weight:bold;">&#125;</span><span style="color: #060; font-weight:bold;">&#41;</span> <span style="color: #000; font-weight: bold;">%&gt;</span><span style="color: #060; font-weight: bold;">&lt;/</span>p<span style="color: #060; font-weight: bold;">&gt;</span>
		i was hoping <span style="color: #909; font-weight: bold;">to</span> <span style="color: #909; font-weight: bold;">do</span> something like this, but apparently it wouldn<span style="color: #008000;">'t work this way --&gt;</span>
            &lt;/div&gt;
        {#/template Content}
&lt;/script&gt;</pre></div></div>

<p>Now i&#8217;m banging my head on the wall for failing to achieve something as easy as this.. is it something that I&#8217;ve missed? or is it that jTemplates really should be used to render simple HTML layout only? Is the template engine capable of resolving server code blocks? Or am I simply just DOOMED? </p>
<p>I&#8217;m already started to convert my code from client-side to server-side now. Nonetheless, I hope there&#8217;s good news from you, bcoz I really like to stick with current design and I think they&#8217;re just COOL!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashwani</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-62856</link>
		<dc:creator>Ashwani</dc:creator>
		<pubDate>Thu, 09 Feb 2012 11:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-62856</guid>
		<description>I am using .net 2.0 .How i can implement jquery in .net 2.0 as LINQ is not  a part of .net 2.0. Please help me.</description>
		<content:encoded><![CDATA[<p>I am using .net 2.0 .How i can implement jquery in .net 2.0 as LINQ is not  a part of .net 2.0. Please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-62437</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Tue, 24 Jan 2012 22:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-62437</guid>
		<description>Using a table isn&#039;t necessary. I only used one here because the end result I wanted was a table. You could definitely use a template to render the &lt;code&gt;&lt;div&gt;&lt;/code&gt; and &lt;code&gt;&lt;ul&gt;&lt;/code&gt; structure you&#039;re currently using.</description>
		<content:encoded><![CDATA[<p>Using a table isn&#8217;t necessary. I only used one here because the end result I wanted was a table. You could definitely use a template to render the <code>&lt;div></code> and <code>&lt;ul></code> structure you&#8217;re currently using.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pat</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-62431</link>
		<dc:creator>Pat</dc:creator>
		<pubDate>Tue, 24 Jan 2012 17:13:12 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-62431</guid>
		<description>Forgive me if I dont get it but it seems to me using a table is the desired means to create a template. I have an excisting template where a table is not being used. I will want to keep what I have for layout reasons is this going to possible.

&lt;pre lang=&quot;  
   &lt;div class=&quot;repFocus float_left &quot;&gt;
      &lt;div class=&quot;repImgContainer float_left&quot;&gt;
         &lt;asp:Image ID=&quot;Image1&quot; ImageUrl=&#039;&lt;%# Product.ImagePath %&gt;&#039; runat=&quot;server&quot; Height=&quot;&lt;%# Product.GetHeightByImageSize(EnumImageSize.Thumbnail, MaxImageHeight) %&gt;&quot;
            Width=&quot;&lt;%# Product.GetConstrainedWidthByImageSize(EnumImageSize.Thumbnail, MaxImageHeight) %&gt;&quot; /&gt;
      &lt;/div&gt;
      &lt;div class=&quot;repTxtContainer float_right&quot;&gt;

         &lt;ul&gt;
            &lt;li&gt;
               &lt;asp:Label ID=&quot;nameLabel&quot; CssClass=&quot;repName&quot; runat=&quot;server&quot; Text=&quot;&lt;%# Product.Name %&gt;&quot; /&gt;
            &lt;/li&gt;
            &lt;li&gt;
               &lt;asp:Label ID=&quot;Label2&quot; CssClass=&quot;replabelTxt&quot; runat=&quot;server&quot; Text=&quot;From  &quot;&gt;&lt;/asp:Label&gt;
               &lt;asp:Label ID=&quot;priceLabel&quot; CssClass=&quot;repPrice&quot; runat=&quot;server&quot; Text=&#039;&lt;%# String.Format(&quot;£{0:f2}&quot;, Product.Price) %&gt;&#039; /&gt;&lt;/li&gt;
            &lt;li&gt;
               &lt;asp:Label ID=&quot;sizeLabel&quot; CssClass=&quot;repSize&quot; runat=&quot;server&quot; Text=&quot;&lt;%# Product.Size %&gt;&quot; /&gt;
               &lt;asp:Label ID=&quot;Label1&quot; runat=&quot;server&quot; CssClass=&quot;replabelTxt&quot; Text=&quot; and Up&quot;&gt;&lt;/asp:Label&gt;&lt;/li&gt;
            
         &lt;/ul&gt;

      &lt;/div&gt;
   &lt;/div&gt;
&lt;/div&gt;
  &quot;&gt;code&lt;/pre&gt;



If I manage to get my head around to using your approach it will be great in the long run. 
Thanks!</description>
		<content:encoded><![CDATA[<p>Forgive me if I dont get it but it seems to me using a table is the desired means to create a template. I have an excisting template where a table is not being used. I will want to keep what I have for layout reasons is this going to possible.</p>
<p>&lt;pre lang=&quot;<br />
   &lt;div class=&quot;repFocus float_left &quot;&gt;<br />
      &lt;div class=&quot;repImgContainer float_left&quot;&gt;<br />
         &lt;asp:Image ID=&quot;Image1&quot; ImageUrl=&#039;&lt;%# Product.ImagePath %&gt;&#039; runat=&quot;server&quot; Height=&quot;&lt;%# Product.GetHeightByImageSize(EnumImageSize.Thumbnail, MaxImageHeight) %&gt;&quot;<br />
            Width=&quot;&lt;%# Product.GetConstrainedWidthByImageSize(EnumImageSize.Thumbnail, MaxImageHeight) %&gt;&quot; /&gt;<br />
      &lt;/div&gt;<br />
      &lt;div class=&quot;repTxtContainer float_right&quot;&gt;</p>
<p>         &lt;ul&gt;<br />
            &lt;li&gt;<br />
               &lt;asp:Label ID=&quot;nameLabel&quot; CssClass=&quot;repName&quot; runat=&quot;server&quot; Text=&quot;&lt;%# Product.Name %&gt;&quot; /&gt;<br />
            &lt;/li&gt;<br />
            &lt;li&gt;<br />
               &lt;asp:Label ID=&quot;Label2&quot; CssClass=&quot;replabelTxt&quot; runat=&quot;server&quot; Text=&quot;From  &quot;&gt;&lt;/asp:Label&gt;<br />
               &lt;asp:Label ID=&quot;priceLabel&quot; CssClass=&quot;repPrice&quot; runat=&quot;server&quot; Text=&#039;&lt;%# String.Format(&quot;£{0:f2}&quot;, Product.Price) %&gt;&#039; /&gt;&lt;/li&gt;<br />
            &lt;li&gt;<br />
               &lt;asp:Label ID=&quot;sizeLabel&quot; CssClass=&quot;repSize&quot; runat=&quot;server&quot; Text=&quot;&lt;%# Product.Size %&gt;&quot; /&gt;<br />
               &lt;asp:Label ID=&quot;Label1&quot; runat=&quot;server&quot; CssClass=&quot;replabelTxt&quot; Text=&quot; and Up&quot;&gt;&lt;/asp:Label&gt;&lt;/li&gt;</p>
<p>         &lt;/ul&gt;</p>
<p>      &lt;/div&gt;<br />
   &lt;/div&gt;<br />
&lt;/div&gt;<br />
  &quot;&gt;code</p>
<p>If I manage to get my head around to using your approach it will be great in the long run.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magnus</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-50101</link>
		<dc:creator>Magnus</dc:creator>
		<pubDate>Tue, 29 Nov 2011 15:48:09 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-50101</guid>
		<description>I had a lot of problems getting the service to crack out JSON objects. I found a solution http://encosia.com/using-jquery-to-directly-call-aspnet-ajax-page-methods/</description>
		<content:encoded><![CDATA[<p>I had a lot of problems getting the service to crack out JSON objects. I found a solution <a href="http://encosia.com/using-jquery-to-directly-call-aspnet-ajax-page-methods/" rel="nofollow">http://encosia.com/using-jquery-to-directly-call-aspnet-ajax-page-methods/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-45460</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Tue, 06 Sep 2011 00:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-45460</guid>
		<description>Make sure the URL in your &lt;code&gt;$.ajax()&lt;/code&gt; method is a relative URL (doesn&#039;t contain the HTTP://). Absolute URLs sometimes cause jQuery 1.5+ to treat them as cross-domain requests.</description>
		<content:encoded><![CDATA[<p>Make sure the URL in your <code>$.ajax()</code> method is a relative URL (doesn&#8217;t contain the HTTP://). Absolute URLs sometimes cause jQuery 1.5+ to treat them as cross-domain requests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omar</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-45209</link>
		<dc:creator>Omar</dc:creator>
		<pubDate>Wed, 31 Aug 2011 20:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-45209</guid>
		<description>Hi  everybody,

I am working with jquery and .net in scenarios similar to this example..  in my local development computer  all works fine..  but when i pusblish to the production web server the ajax doesn&#039;t work..  always get the error:  200 OK...   reading the documentation talks about of Cross domain policy...  but i dont call mathods out of domain... like this sample i call a method in my own  aspx page....   So i dont understand the problem....  

Do you know why i present this behavior?


Note: If i use cross domain calls the solcution is use jsonp or other weird things... but i dont want use this tecniques because is simple that i want to do....  :(</description>
		<content:encoded><![CDATA[<p>Hi  everybody,</p>
<p>I am working with jquery and .net in scenarios similar to this example..  in my local development computer  all works fine..  but when i pusblish to the production web server the ajax doesn&#8217;t work..  always get the error:  200 OK&#8230;   reading the documentation talks about of Cross domain policy&#8230;  but i dont call mathods out of domain&#8230; like this sample i call a method in my own  aspx page&#8230;.   So i dont understand the problem&#8230;.  </p>
<p>Do you know why i present this behavior?</p>
<p>Note: If i use cross domain calls the solcution is use jsonp or other weird things&#8230; but i dont want use this tecniques because is simple that i want to do&#8230;.  :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-43567</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Wed, 08 Jun 2011 20:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-43567</guid>
		<description>If there are no JavaScript errors in the console, the next step would be to use Firebug to set a breakpoint near where you think the problem might be.  When execution is paused there, you can take a look at what the variables actually are and make sure the values you expected are what comes back.  For example, in the code above, I&#039;d probably set a breakpoint in the &lt;code&gt;success&lt;/code&gt; handler and go from there.</description>
		<content:encoded><![CDATA[<p>If there are no JavaScript errors in the console, the next step would be to use Firebug to set a breakpoint near where you think the problem might be.  When execution is paused there, you can take a look at what the variables actually are and make sure the values you expected are what comes back.  For example, in the code above, I&#8217;d probably set a breakpoint in the <code>success</code> handler and go from there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jef</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-43561</link>
		<dc:creator>jef</dc:creator>
		<pubDate>Wed, 08 Jun 2011 15:24:17 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-43561</guid>
		<description>Sorry this was meant for the pagination topic, your sample works great, but my modified does not</description>
		<content:encoded><![CDATA[<p>Sorry this was meant for the pagination topic, your sample works great, but my modified does not</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jef</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-43560</link>
		<dc:creator>jef</dc:creator>
		<pubDate>Wed, 08 Jun 2011 15:14:23 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-43560</guid>
		<description>Great script, just stumbled across it

For some reason I can&#039;t get it to work on my Firefox4. It doesn&#039;t load the table, how do i backtrace to the error? no error are shown on my firebug, and it works great on my chrome</description>
		<content:encoded><![CDATA[<p>Great script, just stumbled across it</p>
<p>For some reason I can&#8217;t get it to work on my Firefox4. It doesn&#8217;t load the table, how do i backtrace to the error? no error are shown on my firebug, and it works great on my chrome</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parvinder</title>
		<link>http://encosia.com/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/#comment-43260</link>
		<dc:creator>Parvinder</dc:creator>
		<pubDate>Tue, 26 Apr 2011 18:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/?p=79#comment-43260</guid>
		<description>nice article buddy</description>
		<content:encoded><![CDATA[<p>nice article buddy</p>
]]></content:encoded>
	</item>
</channel>
</rss>

