<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>Ruby 语言 思想驱动生活</title>
	<link>http://liubin.nanshapo.com</link>
	<description>Ruby,Rails,编程是一种乐趣。</description>
	<pubDate>Thu, 26 Jun 2008 09:19:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Php的错误捕捉</title>
		<link>http://liubin.nanshapo.com/2008/06/26/php_error_handler/</link>
		<comments>http://liubin.nanshapo.com/2008/06/26/php_error_handler/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 09:19:51 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[技术]]></category>
<category>php</category>
		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/06/26/php_error_handler/</guid>
		<description><![CDATA[当php程序出错了，默认的是显示一些错误到页面上的。我们当然希望捕捉到这些错误并处理了。Php提供了set_error_handler这个接口，但是她不是万能的。先看这个文件吧。
&#60;?
error_reporting(E_ALL);
ini_set('display_errors','0');
ini_set('log_errors','1');
ini_set('error_log','/home/liubin/aaaa.log');
ini_set('html_errors','0');
&#160;
set_error_handler('myHandler');
function&#160;myHandler($code, $msg, $file, $line) {
echo&#160;$code;
}
&#160;
echo&#160;$asdf;
method_aaa();
?&#62;
执行之后，页面显示8，即一个notice级别的错误，这是echo $asdf;的错误。myHandler得到了她，aaaa.log没有记录她。而调用不存在的方法的错误，myHandler则得不到。被记到了aaaa.log了。
看了一下手册，好像myHandler不能记录error等错误，详见
http://php.chinaunix.net/manual/zh/function.set-error-handler.php
这可如何是好呢。我要把error捕捉再转向到错误页面难道就没办法了？
]]></description>
			<content:encoded><![CDATA[<p>当php程序出错了，默认的是显示一些错误到页面上的。我们当然希望捕捉到这些错误并处理了。Php提供了set_error_handler这个接口，但是她不是万能的。先看这个文件吧。</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Blue;">&lt;?</span></li>
<li><span style="color: Blue;">error_reporting</span><span style="color: Olive;">(</span><span style="color: Blue;">E_ALL</span><span style="color: Olive;">)</span><span style="color: Gray;">;</span></li>
<li><span style="color: Blue;">ini_set</span><span style="color: Olive;">(</span><span style="color: #8b0000;">'</span><span style="color: Red;">display_errors</span><span style="color: #8b0000;">'</span><span style="color: Gray;">,</span><span style="color: #8b0000;">'</span><span style="color: Red;">0</span><span style="color: #8b0000;">'</span><span style="color: Olive;">)</span><span style="color: Gray;">;</span></li>
<li><span style="color: Blue;">ini_set</span><span style="color: Olive;">(</span><span style="color: #8b0000;">'</span><span style="color: Red;">log_errors</span><span style="color: #8b0000;">'</span><span style="color: Gray;">,</span><span style="color: #8b0000;">'</span><span style="color: Red;">1</span><span style="color: #8b0000;">'</span><span style="color: Olive;">)</span><span style="color: Gray;">;</span></li>
<li><span style="color: Blue;">ini_set</span><span style="color: Olive;">(</span><span style="color: #8b0000;">'</span><span style="color: Red;">error_log</span><span style="color: #8b0000;">'</span><span style="color: Gray;">,</span><span style="color: #8b0000;">'</span><span style="color: Red;">/home/liubin/aaaa.log</span><span style="color: #8b0000;">'</span><span style="color: Olive;">)</span><span style="color: Gray;">;</span></li>
<li><span style="color: Blue;">ini_set</span><span style="color: Olive;">(</span><span style="color: #8b0000;">'</span><span style="color: Red;">html_errors</span><span style="color: #8b0000;">'</span><span style="color: Gray;">,</span><span style="color: #8b0000;">'</span><span style="color: Red;">0</span><span style="color: #8b0000;">'</span><span style="color: Olive;">)</span><span style="color: Gray;">;</span></li>
<li><span style="color: Gray;">&nbsp;</span></li>
<li><span style="color: Blue;">set_error_handler</span><span style="color: Olive;">(</span><span style="color: #8b0000;">'</span><span style="color: Red;">myHandler</span><span style="color: #8b0000;">'</span><span style="color: Olive;">)</span><span style="color: Gray;">;</span></li>
<li><span style="color: Green;">function</span><span style="color: Gray;">&nbsp;</span><span style="color: Blue;">myHandler</span><span style="color: Olive;">(</span><span style="color: #00008b;">$code</span><span style="color: Gray;">, </span><span style="color: #00008b;">$msg</span><span style="color: Gray;">, </span><span style="color: #00008b;">$file</span><span style="color: Gray;">, </span><span style="color: #00008b;">$line</span><span style="color: Olive;">)</span><span style="color: Gray;"> </span><span style="color: Olive;">{</span></li>
<li><span style="color: Green;">echo</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">$code</span><span style="color: Gray;">;</span></li>
<li><span style="color: Olive;">}</span></li>
<li><span style="color: Gray;">&nbsp;</span></li>
<li><span style="color: Green;">echo</span><span style="color: Gray;">&nbsp;</span><span style="color: #00008b;">$asdf</span><span style="color: Gray;">;</span></li>
<li><span style="color: Blue;">method_aaa</span><span style="color: Olive;">()</span><span style="color: Gray;">;</span></li>
<li><span style="color: Blue;">?&gt;</span></li></ol></div>
<p>执行之后，页面显示8，即一个notice级别的错误，这是echo $asdf;的错误。myHandler得到了她，aaaa.log没有记录她。而调用不存在的方法的错误，myHandler则得不到。被记到了aaaa.log了。<br />
看了一下手册，好像myHandler不能记录error等错误，详见<br />
<a href="http://php.chinaunix.net/manual/zh/function.set-error-handler.php">http://php.chinaunix.net/manual/zh/function.set-error-handler.php</a></p>
<p>这可如何是好呢。我要把error捕捉再转向到错误页面难道就没办法了？</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/06/26/php_error_handler/feed/</wfw:commentRss>
		</item>
		<item>
		<title>放弃jquery了</title>
		<link>http://liubin.nanshapo.com/2008/06/19/%e6%94%be%e5%bc%83jquery%e4%ba%86/</link>
		<comments>http://liubin.nanshapo.com/2008/06/19/%e6%94%be%e5%bc%83jquery%e4%ba%86/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 02:30:58 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[技术]]></category>

		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/06/19/%e6%94%be%e5%bc%83jquery%e4%ba%86/</guid>
		<description><![CDATA[总感觉稍微慢了点。
可惜我已经写了好几个页面了。不过还是放弃了，打算用yahoo的yui
另一原因就是yui的东西比较全，包括颜色选择都有了，正好。希望她不要太慢了。
]]></description>
			<content:encoded><![CDATA[<p>总感觉稍微慢了点。</p>
<p>可惜我已经写了好几个页面了。不过还是放弃了，打算用yahoo的yui</p>
<p>另一原因就是yui的东西比较全，包括颜色选择都有了，正好。希望她不要太慢了。</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/06/19/%e6%94%be%e5%bc%83jquery%e4%ba%86/feed/</wfw:commentRss>
		</item>
		<item>
		<title>赞一下jquery</title>
		<link>http://liubin.nanshapo.com/2008/06/15/%e8%b5%9e%e4%b8%80%e4%b8%8bjquery/</link>
		<comments>http://liubin.nanshapo.com/2008/06/15/%e8%b5%9e%e4%b8%80%e4%b8%8bjquery/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 02:29:59 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[技术]]></category>
<category>javascript</category><category>jquery</category>
		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/06/19/%e8%b5%9e%e4%b8%80%e4%b8%8bjquery/</guid>
		<description><![CDATA[用ajax的时候
$.ajax({
type: &#8220;POST&#8221;,
url: &#8220;http://xxx.com/&#8220;,
data: &#8220;value=2a3jkf42saf3gas4aca423&#8243;,
success: function(msg){
this;
},
error:function(msg,status){
this;
}
});
文档是这么写的，但是如果想在success或error里做和上下文相关的处理
但是有不想记住全局唯一的id，想给这个ajax传个参数，还好jquery允许ajax方法
提供非标准参数，比如
$.ajax({
type: &#8220;POST&#8221;,
success: function(msg){
alert(this.oldval);
},
oldval:someVarFromCaller,
});
在调用$.ajax的时候，同时传个oldval过去，在失败的时候处理用。
]]></description>
			<content:encoded><![CDATA[<p>用ajax的时候</p>
<p>$.ajax({<br />
type: &#8220;POST&#8221;,<br />
url: &#8220;<a href="http://xxx.com/">http://xxx.com/</a>&#8220;,<br />
data: &#8220;value=2a3jkf42saf3gas4aca423&#8243;,<br />
success: function(msg){<br />
this;<br />
},<br />
error:function(msg,status){<br />
this;<br />
}<br />
});</p>
<p>文档是这么写的，但是如果想在success或error里做和上下文相关的处理</p>
<p>但是有不想记住全局唯一的id，想给这个ajax传个参数，还好jquery允许ajax方法</p>
<p>提供非标准参数，比如</p>
<p>$.ajax({<br />
type: &#8220;POST&#8221;,<br />
success: function(msg){<br />
alert(this.oldval);<br />
},<br />
oldval:someVarFromCaller,<br />
});<br />
在调用$.ajax的时候，同时传个oldval过去，在失败的时候处理用。</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/06/15/%e8%b5%9e%e4%b8%80%e4%b8%8bjquery/feed/</wfw:commentRss>
		</item>
		<item>
		<title>明天开始</title>
		<link>http://liubin.nanshapo.com/2008/05/31/%e6%98%8e%e5%a4%a9%e5%bc%80%e5%a7%8b/</link>
		<comments>http://liubin.nanshapo.com/2008/05/31/%e6%98%8e%e5%a4%a9%e5%bc%80%e5%a7%8b/#comments</comments>
		<pubDate>Fri, 30 May 2008 17:10:38 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[Ruby]]></category>
<category>php</category><category>smarty</category>
		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/05/31/%e6%98%8e%e5%a4%a9%e5%bc%80%e5%a7%8b/</guid>
		<description><![CDATA[这几天主要考察了一下，主要想的都差不多了。明天开始就可以编码了，应该。
今天装了PEAR：：Log
自己也想了2种多语言支持的方法，一个是用smarty的注册方法，一个是修饰子
注册方法的使用为：
{getMessage id=&#8221;some message&#8221;  name=&#8221;asdf &#8220;   mail= &#8220;hotmail&#8221;}
而语言定义文件为
&#8220;some message&#8221;=&#62; &#8220;hello {name}, mail to {hotmail}&#8221;
取出的字符串当然会被asdf等实际传递的字符串替换。
]]></description>
			<content:encoded><![CDATA[<p>这几天主要考察了一下，主要想的都差不多了。明天开始就可以编码了，应该。</p>
<p>今天装了PEAR：：Log</p>
<p>自己也想了2种多语言支持的方法，一个是用smarty的注册方法，一个是修饰子</p>
<p>注册方法的使用为：</p>
<p>{getMessage id=&#8221;some message&#8221;  name=&#8221;asdf &#8220;   mail= &#8220;hotmail&#8221;}</p>
<p>而语言定义文件为</p>
<p>&#8220;some message&#8221;=&gt; &#8220;hello {name}, mail to {hotmail}&#8221;</p>
<p>取出的字符串当然会被asdf等实际传递的字符串替换。</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/05/31/%e6%98%8e%e5%a4%a9%e5%bc%80%e5%a7%8b/feed/</wfw:commentRss>
		</item>
		<item>
		<title>睡眠不足，眼疼</title>
		<link>http://liubin.nanshapo.com/2008/05/28/%e7%9d%a1%e7%9c%a0%e4%b8%8d%e8%b6%b3%ef%bc%8c%e7%9c%bc%e7%96%bc/</link>
		<comments>http://liubin.nanshapo.com/2008/05/28/%e7%9d%a1%e7%9c%a0%e4%b8%8d%e8%b6%b3%ef%bc%8c%e7%9c%bc%e7%96%bc/#comments</comments>
		<pubDate>Wed, 28 May 2008 15:58:29 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[垃圾]]></category>

		<category><![CDATA[技术]]></category>

		<category><![CDATA[生活]]></category>
<category>困</category>
		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/05/28/%e7%9d%a1%e7%9c%a0%e4%b8%8d%e8%b6%b3%ef%bc%8c%e7%9c%bc%e7%96%bc/</guid>
		<description><![CDATA[每天1点多睡，16个小时都在看电脑。
jquery的$取得的原来不是dom对象，是jquery对象，要想调用dom的方法，先要转换为dom对象，比如$(&#8221;#divid&#8221;)[0]
另今天从他们网站下的ui的部分竟然很多不能用和例子里的文件名都不一样，不知道是不是我下的版本不同呢。
]]></description>
			<content:encoded><![CDATA[<p>每天1点多睡，16个小时都在看电脑。</p>
<p>jquery的$取得的原来不是dom对象，是jquery对象，要想调用dom的方法，先要转换为dom对象，比如$(&#8221;#divid&#8221;)[0]</p>
<p>另今天从他们网站下的ui的部分竟然很多不能用和例子里的文件名都不一样，不知道是不是我下的版本不同呢。</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/05/28/%e7%9d%a1%e7%9c%a0%e4%b8%8d%e8%b6%b3%ef%bc%8c%e7%9c%bc%e7%96%bc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>为四川地震的死难者默哀</title>
		<link>http://liubin.nanshapo.com/2008/05/12/%e4%b8%ba%e5%9b%9b%e5%b7%9d%e5%9c%b0%e9%9c%87%e7%9a%84%e6%ad%bb%e9%9a%be%e8%80%85%e9%bb%98%e5%93%80/</link>
		<comments>http://liubin.nanshapo.com/2008/05/12/%e4%b8%ba%e5%9b%9b%e5%b7%9d%e5%9c%b0%e9%9c%87%e7%9a%84%e6%ad%bb%e9%9a%be%e8%80%85%e9%bb%98%e5%93%80/#comments</comments>
		<pubDate>Mon, 12 May 2008 14:55:58 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[技术]]></category>

		<category><![CDATA[生活]]></category>
<category>php</category>
		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/05/12/%e4%b8%ba%e5%9b%9b%e5%b7%9d%e5%9c%b0%e9%9c%87%e7%9a%84%e6%ad%bb%e9%9a%be%e8%80%85%e9%bb%98%e5%93%80/</guid>
		<description><![CDATA[今天下午突然发生的大地震，目前已经夺去了7000多人的生命。
也许这个数字还会增加，不知又有多少人流离失所。
希望我们的政府真的尽到人民公仆的义务，不要再拿老百姓不当人。
默哀！！！！！！！！
=========================================
php.ini设置文件中：
display_errors = On
打开在页面显示错误信息。
Fatal error: require() [function.require]: Failed opening required &#8230;
]]></description>
			<content:encoded><![CDATA[<p>今天下午突然发生的大地震，目前已经夺去了7000多人的生命。<br />
也许这个数字还会增加，不知又有多少人流离失所。<br />
希望我们的政府真的尽到人民公仆的义务，不要再拿老百姓不当人。</p>
<p>默哀！！！！！！！！</p>
<p>=========================================<br />
php.ini设置文件中：<br />
display_errors = On<br />
打开在页面显示错误信息。<br />
Fatal error: require() [function.require]: Failed opening required &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/05/12/%e4%b8%ba%e5%9b%9b%e5%b7%9d%e5%9c%b0%e9%9c%87%e7%9a%84%e6%ad%bb%e9%9a%be%e8%80%85%e9%bb%98%e5%93%80/feed/</wfw:commentRss>
		</item>
		<item>
		<title>曼联夺冠</title>
		<link>http://liubin.nanshapo.com/2008/05/11/%e6%9b%bc%e8%81%94%e5%a4%ba%e5%86%a0/</link>
		<comments>http://liubin.nanshapo.com/2008/05/11/%e6%9b%bc%e8%81%94%e5%a4%ba%e5%86%a0/#comments</comments>
		<pubDate>Sun, 11 May 2008 15:50:38 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[Ruby]]></category>
<category>足球</category><category>曼联</category>
		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/05/11/%e6%9b%bc%e8%81%94%e5%a4%ba%e5%86%a0/</guid>
		<description><![CDATA[一边看一遍玩，竟然发现是英超最后一轮了。
曼联夺冠了。
昨天去踢球了，现在还是浑身疼痛，自行车都不能骑了。
]]></description>
			<content:encoded><![CDATA[<p>一边看一遍玩，竟然发现是英超最后一轮了。<br />
曼联夺冠了。<br />
昨天去踢球了，现在还是浑身疼痛，自行车都不能骑了。</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/05/11/%e6%9b%bc%e8%81%94%e5%a4%ba%e5%86%a0/feed/</wfw:commentRss>
		</item>
		<item>
		<title>开发日记</title>
		<link>http://liubin.nanshapo.com/2008/05/09/%e5%bc%80%e5%8f%91%e6%97%a5%e8%ae%b0/</link>
		<comments>http://liubin.nanshapo.com/2008/05/09/%e5%bc%80%e5%8f%91%e6%97%a5%e8%ae%b0/#comments</comments>
		<pubDate>Fri, 09 May 2008 15:24:29 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[技术]]></category>
<category>xxxxx</category>
		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/05/09/%e5%bc%80%e5%8f%91%e6%97%a5%e8%ae%b0/</guid>
		<description><![CDATA[决定自己做一个相册了，语言采用php，模板采用smarty。
今天开始用DBDesigner开始做db设计。
编辑器就用editplus了。
域名还没想好。
今天先想这么多，早点睡觉了。
]]></description>
			<content:encoded><![CDATA[<p>决定自己做一个相册了，语言采用php，模板采用smarty。<br />
今天开始用DBDesigner开始做db设计。<br />
编辑器就用editplus了。<br />
域名还没想好。<br />
今天先想这么多，早点睡觉了。</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/05/09/%e5%bc%80%e5%8f%91%e6%97%a5%e8%ae%b0/feed/</wfw:commentRss>
		</item>
		<item>
		<title>夏，5.8</title>
		<link>http://liubin.nanshapo.com/2008/05/07/%e5%a4%8f%ef%bc%8c58/</link>
		<comments>http://liubin.nanshapo.com/2008/05/07/%e5%a4%8f%ef%bc%8c58/#comments</comments>
		<pubDate>Wed, 07 May 2008 14:29:14 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[垃圾]]></category>
<category>夏</category>
		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/05/07/%e5%a4%8f%ef%bc%8c58/</guid>
		<description><![CDATA[夏天到了。
晚上睡觉出汗了，电车有空调了，办公室有空调了
5.8，忘了吗。tg也不争气，让人愤怒。
]]></description>
			<content:encoded><![CDATA[<p>夏天到了。<br />
晚上睡觉出汗了，电车有空调了，办公室有空调了<br />
5.8，忘了吗。tg也不争气，让人愤怒。</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/05/07/%e5%a4%8f%ef%bc%8c58/feed/</wfw:commentRss>
		</item>
		<item>
		<title>拒绝了一个订报纸的</title>
		<link>http://liubin.nanshapo.com/2008/04/19/%e6%8b%92%e7%bb%9d%e4%ba%86%e4%b8%80%e4%b8%aa%e8%ae%a2%e6%8a%a5%e7%ba%b8%e7%9a%84/</link>
		<comments>http://liubin.nanshapo.com/2008/04/19/%e6%8b%92%e7%bb%9d%e4%ba%86%e4%b8%80%e4%b8%aa%e8%ae%a2%e6%8a%a5%e7%ba%b8%e7%9a%84/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 09:53:11 +0000</pubDate>
		<dc:creator>liubin</dc:creator>
		
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://liubin.nanshapo.com/2008/04/19/%e6%8b%92%e7%bb%9d%e4%ba%86%e4%b8%80%e4%b8%aa%e8%ae%a2%e6%8a%a5%e7%ba%b8%e7%9a%84/</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160;刚才来了一个定报纸的，60岁左右，就是让我们定3个月的报纸。
&#160;&#160;&#160;&#160;开始时候就说不定了，那个人死缠不放，说了5，6分钟，最后说如果今天不定出去1份的话将会很难办，我当然不知道他怎么难办，也许失去工作？当时觉得那个人很可怜，而且最后他说只要半价也行。不过我实在没时间看那么多报纸，怎么都不行，最后还是拒绝了，虽然不是干净利落的。
&#160;&#160;&#160;&#160;拒绝人，需要勇气。
]]></description>
			<content:encoded><![CDATA[<p>&nbsp;&nbsp;&nbsp;&nbsp;刚才来了一个定报纸的，60岁左右，就是让我们定3个月的报纸。<br />
&nbsp;&nbsp;&nbsp;&nbsp;开始时候就说不定了，那个人死缠不放，说了5，6分钟，最后说如果今天不定出去1份的话将会很难办，我当然不知道他怎么难办，也许失去工作？当时觉得那个人很可怜，而且最后他说只要半价也行。不过我实在没时间看那么多报纸，怎么都不行，最后还是拒绝了，虽然不是干净利落的。<br />
&nbsp;&nbsp;&nbsp;&nbsp;拒绝人，需要勇气。</p>
]]></content:encoded>
			<wfw:commentRss>http://liubin.nanshapo.com/2008/04/19/%e6%8b%92%e7%bb%9d%e4%ba%86%e4%b8%80%e4%b8%aa%e8%ae%a2%e6%8a%a5%e7%ba%b8%e7%9a%84/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
