<?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: Adding autocomplete field for search in Wordpress</title>
	<atom:link href="http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/feed/" rel="self" type="application/rss+xml" />
	<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/</link>
	<description>Technical weblog for articles and titorials related to web development.</description>
	<lastBuildDate>Fri, 12 Mar 2010 18:19:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Missingtoof</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-5236</link>
		<dc:creator>Missingtoof</dc:creator>
		<pubDate>Tue, 29 Dec 2009 13:38:41 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-5236</guid>
		<description>Looks great, but doesn&#039;t seem to work for K2 out of the box. Heads up to anyone else building atop that.</description>
		<content:encoded><![CDATA[<p>Looks great, but doesn&#8217;t seem to work for K2 out of the box. Heads up to anyone else building atop that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-666</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Thu, 26 Feb 2009 21:04:01 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-666</guid>
		<description>Thank you:) it&#039;s very usefull code:P</description>
		<content:encoded><![CDATA[<p>Thank you:) it&#8217;s very usefull code:P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Streaming</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-529</link>
		<dc:creator>Streaming</dc:creator>
		<pubDate>Thu, 08 Jan 2009 03:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-529</guid>
		<description>Thank for this very usefull code!!!</description>
		<content:encoded><![CDATA[<p>Thank for this very usefull code!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: estetik cerrahi</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-425</link>
		<dc:creator>estetik cerrahi</dc:creator>
		<pubDate>Mon, 24 Nov 2008 14:26:19 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-425</guid>
		<description>This is an interesting and useful plugin. Is it compatible with wordpress 2.6.3?</description>
		<content:encoded><![CDATA[<p>This is an interesting and useful plugin. Is it compatible with wordpress 2.6.3?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: streaming</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-349</link>
		<dc:creator>streaming</dc:creator>
		<pubDate>Mon, 13 Oct 2008 23:58:43 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-349</guid>
		<description>thx for your blog

http://www.streaming-gratuit.net</description>
		<content:encoded><![CDATA[<p>thx for your blog</p>
<p><a href="http://www.streaming-gratuit.net" rel="nofollow">http://www.streaming-gratuit.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nik Chankov</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-348</link>
		<dc:creator>Nik Chankov</dc:creator>
		<pubDate>Sat, 11 Oct 2008 20:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-348</guid>
		<description>I think this is because I am using Scriptaculous rather than suggested in the original post. Anyway, this is the content of my php file:

&lt;code lang=&quot;php&quot;&gt;
&lt;?php
if (isset($_POST[&#039;s&#039;])) {
        $search = htmlentities($_POST[&#039;s&#039;]);
} else  $search =&#039;&#039;;
$db = mysql_connect(&#039;localhost&#039;,&#039;user&#039;,&#039;password&#039;); //Don&#039;t forget to change
mysql_select_db(&#039;database&#039;, $db);		     //theses parameters
$sql = &quot;SELECT name from wp_terms WHERE name LIKE &#039;$search%&#039;&quot;;
$req = mysql_query($sql) or die();
echo &#039;&lt;ul&gt;&#039;;
while ($data = mysql_fetch_array($req)){
        echo &#039;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&#039;.htmlentities($data[&#039;name&#039;]).&#039;&lt;/a&gt;&lt;/li&gt;&#039;;
}
echo &#039;&lt;/ul&gt;&#039;;
mysql_close();
?&gt;
&lt;/code&gt;

Hope this helps</description>
		<content:encoded><![CDATA[<p>I think this is because I am using Scriptaculous rather than suggested in the original post. Anyway, this is the content of my php file:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/isset"><span style="color: #990000;">isset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'s'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$search</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/htmlentities"><span style="color: #990000;">htmlentities</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'s'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> &nbsp;<span style="color: #000088;">$search</span> <span style="color: #339933;">=</span><span style="color: #0000ff;">''</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$db</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_connect"><span style="color: #990000;">mysql_connect</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'localhost'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'user'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'password'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//Don't forget to change</span><br />
<a href="http://www.php.net/mysql_select_db"><span style="color: #990000;">mysql_select_db</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'database'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$db</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #666666; font-style: italic;">//theses parameters</span><br />
<span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;SELECT name from wp_terms WHERE name LIKE '<span style="color: #006699; font-weight: bold;">$search</span>%'&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$req</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_query"><span style="color: #990000;">mysql_query</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sql</span><span style="color: #009900;">&#41;</span> or <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;ul&gt;'</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_fetch_array"><span style="color: #990000;">mysql_fetch_array</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$req</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;li&gt;&lt;a href=&quot;#&quot;&gt;'</span><span style="color: #339933;">.</span><a href="http://www.php.net/htmlentities"><span style="color: #990000;">htmlentities</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/ul&gt;'</span><span style="color: #339933;">;</span><br />
<a href="http://www.php.net/mysql_close"><span style="color: #990000;">mysql_close</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
<p>Hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Borans</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-347</link>
		<dc:creator>Borans</dc:creator>
		<pubDate>Sat, 11 Oct 2008 19:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-347</guid>
		<description>Thank you very much, one last question nik, there is a bug in the php file that the other guy&#039;s. for example if i write something in the input and delete it, it displays all the tags in the database. but in your site this bug is not exist. how you managed to do it?</description>
		<content:encoded><![CDATA[<p>Thank you very much, one last question nik, there is a bug in the php file that the other guy&#8217;s. for example if i write something in the input and delete it, it displays all the tags in the database. but in your site this bug is not exist. how you managed to do it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Borans</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-346</link>
		<dc:creator>Borans</dc:creator>
		<pubDate>Sat, 11 Oct 2008 18:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-346</guid>
		<description>Thank you very much Nik</description>
		<content:encoded><![CDATA[<p>Thank you very much Nik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nik Chankov</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-345</link>
		<dc:creator>Nik Chankov</dc:creator>
		<pubDate>Sat, 11 Oct 2008 18:10:28 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-345</guid>
		<description>ok, what I&#039;ve did:
1. Check if you have prototype included in your html, if not include it with

&lt;code lang=&quot;html&quot;&gt;&lt;script type=&#039;text/javascript&#039; src=&#039;/wp-includes/js/prototype.js?ver=1.6&#039;&gt;&lt;/script&gt;
&lt;/code&gt;

2. I added following code into the header.php:

&lt;code lang=&quot;javascript&quot;&gt;
&lt;script src=&quot;/wp-includes/js/scriptaculous/effects.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
  &lt;script src=&quot;/wp-includes/js/scriptaculous/dragdrop.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
  &lt;script src=&quot;/wp-includes/js/scriptaculous/controls.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;/code&gt;

3. I&#039;ve added this as well, because this is the colorization of the dropdown afterwards:

&lt;code lang=&quot;html&quot;&gt;
&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;/wp-content/themes/genkitheme-10/gettags.css&quot;  /&gt;
&lt;/code&gt;

4. and I&#039;ve added this javascript after the form:

&lt;code lang=&quot;html&quot;&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
//&lt;![CDATA[
var contact_name_auto_completer = new Ajax.Autocompleter(&#039;s&#039;, &#039;tag_update&#039;, &#039;/wp-content/themes/genkitheme-10/gettags.php&#039;, {})
//]]&gt;
&lt;/script&gt;
&lt;/code&gt;

Which doing the actual job. 

5. I also changed the second and the third line of the php file, because with scriptaculous the post param was $_POST[&#039;s&#039;].

so instead of:

&lt;code lang=&quot;php&quot;&gt;
if (isset($_POST[&#039;search&#039;])) {
        $search = htmlentities($_POST[&#039;search&#039;]);
&lt;/code&gt;

I have:

&lt;code lang=&quot;php&quot;&gt;
if (isset($_POST[&#039;s&#039;])) {
        $search = htmlentities($_POST[&#039;s&#039;]);
&lt;/code&gt;

6. if you copy and paste the form from the example above, remove onkeyup=&quot;request(this.value);&quot; callback, because with scriptaculous it&#039;s not needed.

Hope this is much clearer now.</description>
		<content:encoded><![CDATA[<p>ok, what I&#8217;ve did:<br />
1. Check if you have prototype included in your html, if not include it with</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">script</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'text/javascript'</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'/wp-includes/js/prototype.js?ver=1.6'</span>&gt;&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">script</span></a>&gt;</span></div></div>
<p>2. I added following code into the header.php:</p>
<div class="codecolorer-container javascript default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;/wp-includes/js/scriptaculous/effects.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span><br />
&nbsp; <span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;/wp-includes/js/scriptaculous/dragdrop.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span><br />
&nbsp; <span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;/wp-includes/js/scriptaculous/controls.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></div></div>
<p>3. I&#8217;ve added this as well, because this is the colorization of the dropdown afterwards:</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">link</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/css&quot;</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;stylesheet&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/wp-content/themes/genkitheme-10/gettags.css&quot;</span> &nbsp;<span style="color: #66cc66;">/</span>&gt;</span></div></div>
<p>4. and I&#8217;ve added this javascript after the form:</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">script</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span><br />
//<span style="color: #009900;">&lt;!<span style="color: #66cc66;">&#91;</span>CDATA<span style="color: #66cc66;">&#91;</span></span><br />
<span style="color: #009900;">var contact_name_auto_completer <span style="color: #66cc66;">=</span> new Ajax.Autocompleter<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'s'</span>, <span style="color: #ff0000;">'tag_update'</span>, <span style="color: #ff0000;">'/wp-content/themes/genkitheme-10/gettags.php'</span>, <span style="color: #66cc66;">&#123;</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span></span><br />
<span style="color: #009900;"><span style="color: #66cc66;">//</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">script</span></a>&gt;</span></div></div>
<p>Which doing the actual job. </p>
<p>5. I also changed the second and the third line of the php file, because with scriptaculous the post param was $_POST['s'].</p>
<p>so instead of:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/isset"><span style="color: #990000;">isset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'search'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$search</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/htmlentities"><span style="color: #990000;">htmlentities</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'search'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>I have:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/isset"><span style="color: #990000;">isset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'s'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000088;">$search</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/htmlentities"><span style="color: #990000;">htmlentities</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'s'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>6. if you copy and paste the form from the example above, remove onkeyup=&#8221;request(this.value);&#8221; callback, because with scriptaculous it&#8217;s not needed.</p>
<p>Hope this is much clearer now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Borans</title>
		<link>http://nik.chankov.net/2008/10/10/adding-autocomplete-on-search-box/comment-page-1/#comment-344</link>
		<dc:creator>Borans</dc:creator>
		<pubDate>Sat, 11 Oct 2008 17:58:57 +0000</pubDate>
		<guid isPermaLink="false">http://nik.chankov.net/?p=466#comment-344</guid>
		<description>can i look your js file? what is the name of it?</description>
		<content:encoded><![CDATA[<p>can i look your js file? what is the name of it?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
