<?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>#raynix# &#187; css</title>
	<atom:link href="http://raynix.info/archives/tag/css/feed" rel="self" type="application/rss+xml" />
	<link>http://raynix.info</link>
	<description>These are just quotes, don't be serious.</description>
	<lastBuildDate>Sat, 04 Sep 2010 07:51:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>带着小抄去上班</title>
		<link>http://raynix.info/archives/458</link>
		<comments>http://raynix.info/archives/458#comments</comments>
		<pubDate>Mon, 09 Mar 2009 07:34:30 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">http://raynix.cn/?p=458</guid>
		<description><![CDATA[你上考场那年带小抄了么？带了也别说，那是作弊。不过上班跟考试不同，你要尽可能的用上一切能方便工作的工具。下面是我最近喜欢的几张小抄： 以上小抄来自 http://www.addedbytes.com/cheat-sheets Thanks Dave! © raynix for #raynix#, 2009. &#124; Permalink &#124; 唉, 一个评论都没 &#124; Add to del.icio.us Post tags: css, Python, regex Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p>你上考场那年带小抄了么？带了也别说，那是作弊。不过上班跟考试不同，你要尽可能的用上一切能方便工作的工具。下面是我最近喜欢的几张小抄：</p>

<a href='http://raynix.info/archives/458/css-cheat-sheet-v2' title='css-cheat-sheet-v2'><img width="150" height="150" src="http://raynix.info/wp-content/uploads/2009/03/css-cheat-sheet-v2-150x150.png" class="attachment-thumbnail" alt="css-cheat-sheet-v2" title="css-cheat-sheet-v2" /></a>
<a href='http://raynix.info/archives/458/python-cheat-sheet-v1' title='python-cheat-sheet-v1'><img width="150" height="150" src="http://raynix.info/wp-content/uploads/2009/03/python-cheat-sheet-v1-150x150.png" class="attachment-thumbnail" alt="python-cheat-sheet-v1" title="python-cheat-sheet-v1" /></a>
<a href='http://raynix.info/archives/458/regular-expressions-cheat-sheet-v2' title='regular-expressions-cheat-sheet-v2'><img width="150" height="150" src="http://raynix.info/wp-content/uploads/2009/03/regular-expressions-cheat-sheet-v2-150x150.png" class="attachment-thumbnail" alt="regular-expressions-cheat-sheet-v2" title="regular-expressions-cheat-sheet-v2" /></a>

<p>以上小抄来自<a href="http://www.addedbytes.com/cheat-sheets" target="_blank"> http://www.addedbytes.com/cheat-sheets</a> Thanks Dave!</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2009. |
<a href="http://raynix.info/archives/458">Permalink</a> |
<a href="http://raynix.info/archives/458#comments">唉, 一个评论都没</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/458&title=带着小抄去上班">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/css" rel="tag">css</a>, <a href="http://raynix.info/archives/tag/python" rel="tag">Python</a>, <a href="http://raynix.info/archives/tag/regex" rel="tag">regex</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/458/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>为IE6捉虫的一个小技巧</title>
		<link>http://raynix.info/archives/362</link>
		<comments>http://raynix.info/archives/362#comments</comments>
		<pubDate>Fri, 24 Oct 2008 06:11:21 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://raynix.cn/?p=362</guid>
		<description><![CDATA[按照设计稿做好了CSS，但是唯独在IE6里面有着意外的表现：左栏和中栏之间的宽度比设计中指定值要大。是什么原因呢？我一时没想明白。于是我根据经验把可能影响到宽度的那个div的背景色改为红色，这样一看就明显了： CSS里的设定是{padding:0; margin: 7px 0 0 10px;}，就是说上面留白7px，右和下不留，左边留白10px。根据经验，我怀疑是那个10px导致，于是为IE6单独写了ie6sux.css，并在里面补上{padding:0; margin: 7px -10px 0 10px;}，在右边给出-10px作为补偿。问题解决。 分析：IE6对留白（margin）的处理与众不同，留白的宽度似乎没有受到总宽度的限制，因此导致了右边超长出来。这应该算是个加减法级别的bug了。好在IE6用户会逐步转移到IE7，以后应该不必受此bug讨扰。 © raynix for #raynix#, 2008. &#124; Permalink &#124; 唉, 一个评论都没 &#124; Add to del.icio.us Post tags: css, IE Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p>按照设计稿做好了CSS，但是唯独在IE6里面有着意外的表现：左栏和中栏之间的宽度比设计中指定值要大。是什么原因呢？我一时没想明白。于是我根据经验把可能影响到宽度的那个div的背景色改为红色，这样一看就明显了：</p>
<p><a href="http://picasaweb.google.com/lh/photo/bBjAsVlQzZCnvLFngC8rHw"><img src="http://lh5.ggpht.com/raynix/SQFiNX9-KoI/AAAAAAAAAs8/-1aleZr2z1w/s144/ie6-margin-bug.png" alt="" /></a></p>
<p>CSS里的设定是{padding:0; margin: 7px 0 0 10px;}，就是说上面留白7px，右和下不留，左边留白10px。根据经验，我怀疑是那个10px导致，于是为IE6单独写了ie6sux.css，并在里面补上{padding:0; margin: 7px -10px 0 10px;}，在右边给出-10px作为补偿。问题解决。</p>
<p>分析：IE6对留白（margin）的处理与众不同，留白的宽度似乎没有受到总宽度的限制，因此导致了右边超长出来。这应该算是个加减法级别的bug了。好在IE6用户会逐步转移到IE7，以后应该不必受此bug讨扰。</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2008. |
<a href="http://raynix.info/archives/362">Permalink</a> |
<a href="http://raynix.info/archives/362#comments">唉, 一个评论都没</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/362&title=为IE6捉虫的一个小技巧">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/css" rel="tag">css</a>, <a href="http://raynix.info/archives/tag/ie" rel="tag">IE</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/362/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>论坛上图片的自动等比缩小</title>
		<link>http://raynix.info/archives/290</link>
		<comments>http://raynix.info/archives/290#comments</comments>
		<pubDate>Thu, 12 Jun 2008 09:06:07 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://raynix.cn/?p=290</guid>
		<description><![CDATA[现在一张照片真的可以要多大有多大。特别感谢各DC制造厂家。 参考HTML Image Auto Resize, HTML图片大小自动调整 对于我的情况，帖子的css class是content，所以如下写即可： .content img { max-height:600px; max-width:600px; width:expression( (this.width &#62; 600 &#38;&#38; this.width &#62; this.height) ? '600px': this.width+'px'); height:expression( (this.height &#62; 600 &#38;&#38; this.height &#62; this.width) ? '600px': this.height+'px'); } 其中max-height/max-weight是标准css元素，可以被遵循标准的各个浏览器支持，IE7也可以。expression是IE6的私家菜:) © raynix for #raynix#, 2008. &#124; Permalink &#124; 有且只有一条评论 &#124; Add to del.icio.us Post tags: css Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p>现在一张照片真的可以要多大有多大。特别感谢各DC制造厂家。</p>
<p>参考<a href="http://blog.csdn.net/bruni/archive/2007/04/28/1588093.aspx">HTML Image Auto Resize, HTML图片大小自动调整</a></p>
<p>对于我的情况，帖子的css class是content，所以如下写即可：</p>
<blockquote><p><span id="_12_284_Open_Text" style="display: inline;"><span style="color: #ff0000;">.content img {</span></span><br />
<span id="_12_284_Open_Text" style="display: inline;"><span style="color: #ff0000;">max-height</span><span style="color: #000000;">:</span><span style="color: #0000ff;">600px</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
max-width</span><span style="color: #000000;">:<span style="color: #0000ff;">6</span></span><span style="color: #0000ff;">00px</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
width</span><span style="color: #000000;">:</span><span style="color: #0000ff;">expression( (this.width &gt; 600 &amp;&amp; this.width &gt; this.height) ? '600px': this.width+'px')</span><span style="color: #000000;">;</span><span style="color: #ff0000;"><br />
height</span><span style="color: #000000;">:</span><span style="color: #0000ff;">expression( (this.height &gt; 600 &amp;&amp; this.height &gt; this.width) ? '600px': this.height+'px')</span><span style="color: #000000;">;<br />
}</span></span></p></blockquote>
<p>其中max-height/max-weight是标准css元素，可以被遵循标准的各个浏览器支持，IE7也可以。expression是IE6的私家菜:)</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2008. |
<a href="http://raynix.info/archives/290">Permalink</a> |
<a href="http://raynix.info/archives/290#comments">有且只有一条评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/290&title=论坛上图片的自动等比缩小">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/css" rel="tag">css</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/290/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>习惯的力量：table VS div</title>
		<link>http://raynix.info/archives/91</link>
		<comments>http://raynix.info/archives/91#comments</comments>
		<pubDate>Thu, 10 May 2007 13:54:03 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Just a thought]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://raynix.bjqnc.com/archives/91</guid>
		<description><![CDATA[记得我当初学习制作网页时，刚刚学会了用table，相当的有成就感，貌似已经没有我做不出来的页面布局了。后来，饭碗被fireworks这类页面“切割”软件给抢了，fireworks切一张设计图，也就几分钟的事。于是之后再说做网页，无非是用fireworks切方块了。 最近这几年，由于工作的原因，我的时间基本上都放在linux、mysql和ruby on rails上了，用进废退，“Web design”技能我差不多都还给教材了。这几天晚上没事给这小博改版，才发现世道已经变了，HTML被XHTML取代，CSS被CSS2取代，更要命的是布景模版里一个table都没有，全是div了。难怪老人家说逆水行舟，不进则退。这回我退的可以了，赶紧恶补吧。不过习惯的力量真是强大的，一边是熟悉但乏味的旧方法，一边是陌生但精彩的新方法，脑子里却总是不自觉的用旧方法思考起来……慢慢来吧。 Div也是方块，但是div的方块比起table的方块来，的确灵活多了（table指老式HTML+CSS页面布局，div指XHTML+CSS2布局，不过HTML+CSS应该也可以用div布局）： table是顺序的，下一个td永远在上一个td的右面，而且水平一致；而下一个div可以在上一个div的任何方向上。 table是平面的，一个table不可能遮住另一个table；而div虽然不是3D的，但是是有层次的，一个div可以部分或全部遮住另一个div。 table定位永远是从上堆到下，从左堆到右；而div定位可以也是这样的常规顺序定位，也可以是相对定位（{posion: relative; float:right; top: +10px}这样一个定义就是说此div相对当前行居右对齐，并且顶部比当前行的顶部低10象素。页眉上的抓虾按钮就是采用类似方式定位的），还可以是绝对定位（{posion: absolute; left:...; top: ...;}以left,top的座标形式定位当前div），更可以是固定定位（{position:fixed;....}定位在屏幕上某点）。 另外XHTML相对HTML变化也很大，虽然我们习惯了一些不规范的写法，而浏览器也牵就我们，能把一些不规范的页面正常的显示出来，但是规范毕竟是大趋势。经过我的一番努力，本站已经通过了W3C的XHTML1.0 CSS2.0规范检查，链接在页脚上。你也可以用此工具检查一下你的网页是否已经XHTML了。 © raynix for #raynix#, 2007. &#124; Permalink &#124; 2 条评论 &#124; Add to del.icio.us Post tags: css, html Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p>记得我当初学习制作网页时，刚刚学会了用table，相当的有成就感，貌似已经没有我做不出来的页面布局了。后来，饭碗被fireworks这类页面“切割”软件给抢了，fireworks切一张设计图，也就几分钟的事。于是之后再说做网页，无非是用fireworks切方块了。</p>
<p>最近这几年，由于工作的原因，我的时间基本上都放在linux、mysql和ruby on rails上了，用进废退，“Web design”技能我差不多都还给教材了。这几天晚上没事给这小博改版，才发现世道已经变了，HTML被XHTML取代，CSS被CSS2取代，更要命的是布景模版里一个table都没有，全是div了。难怪老人家说逆水行舟，不进则退。这回我退的可以了，赶紧恶补吧。不过习惯的力量真是强大的，一边是熟悉但乏味的旧方法，一边是陌生但精彩的新方法，脑子里却总是不自觉的用旧方法思考起来……慢慢来吧。</p>
<p>Div也是方块，但是div的方块比起table的方块来，的确灵活多了（table指老式HTML+CSS页面布局，div指XHTML+CSS2布局，不过HTML+CSS应该也可以用div布局）：</p>
<ul>
<li>table是顺序的，下一个td永远在上一个td的右面，而且水平一致；而下一个div可以在上一个div的任何方向上。</li>
<li>table是平面的，一个table不可能遮住另一个table；而div虽然不是3D的，但是是有层次的，一个div可以部分或全部遮住另一个div。</li>
<li> table定位永远是从上堆到下，从左堆到右；而div定位可以也是这样的常规顺序定位，也可以是相对定位（{posion: relative; float:right; top: +10px}这样一个定义就是说此div相对当前行居右对齐，并且顶部比当前行的顶部低10象素。页眉上的抓虾按钮就是采用类似方式定位的），还可以是绝对定位（{posion: absolute; left:...; top: ...;}以left,top的座标形式定位当前div），更可以是固定定位（{position:fixed;....}定位在屏幕上某点）。</li>
</ul>
<p>另外XHTML相对HTML变化也很大，虽然我们习惯了一些不规范的写法，而浏览器也牵就我们，能把一些不规范的页面正常的显示出来，但是规范毕竟是大趋势。经过我的一番努力，本站已经通过了W3C的XHTML1.0 CSS2.0规范检查，链接在页脚上。你也可以用此工具检查一下你的网页是否已经XHTML了。</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2007. |
<a href="http://raynix.info/archives/91">Permalink</a> |
<a href="http://raynix.info/archives/91#comments">2 条评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/91&title=习惯的力量：table VS div">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/css" rel="tag">css</a>, <a href="http://raynix.info/archives/tag/html" rel="tag">html</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/91/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress改版手记</title>
		<link>http://raynix.info/archives/70</link>
		<comments>http://raynix.info/archives/70#comments</comments>
		<pubDate>Sat, 05 May 2007 17:01:37 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Opensource]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://raynix.bjqnc.com/archives/70</guid>
		<description><![CDATA[今天很有成就感，我把内森忽悠的也来玩Wordpress了。比起blogger、sina、sohu等现成的blog套餐，Wordpress就是个性DIY了。这里不谈Wordpress的安装等问题，只说说如何改版。 首先，虽然是DIY，但是我们没必要重新发明轮子，去WordPress官方布景站去搜一个合个性的布景吧。 下载以后，把这个.zip文件解压缩到你的Wordpress布景文件夹，wp-content/themes下面，例如wp-content/themes/mytheme。Linux主机的话要记得chmod一下，使mytheme文件夹可写，这样以后你只需要wp-admin就可以修改布景了。 然后进入wp-admin，点开presentation-&#62;themes，如果文件夹没放错地方，那么这里应该出现你刚才上传的新布景了，一般还有预览图片呢。点击新布景，再看看你的WP站，已经旧貌换新颜了。接下来是一些DIY了。 布景DIY其实就是编辑HTML、CSS，有一定PHP基础的你可以做更进一步的定制，显示一些原来模版上没有的东西。具体如何修改HTML、CSS，这个就不是几句话说得清楚了，我这简单说说WP布景各部分的功能： Stylesheet就是CSS了，现在绝大多数风格，例如背景色、前景色、字号、间距等等都在CSS 里做了 sidebar是右侧栏模版，一般显示blog分类、日历、归档等等 main index就是首页的模版 archives：归档页面模版 comments：评论模版 footer：页脚模版，一般是版权信息等等，powered by wordpress！ functions.php：这个是布景调用的php函数，轻易不要动 single post：点击一篇文章进入的单页的模版，类似main index，只是少了一层循环 404：页面未找到错误的页面模版 search results：搜索结果页面模版 page template：自定义页面，例如about，的模版，也类似single post header：页首模版，一般是标题、导航所在 好了，最后记得在开始修改之前把原来模版内容先复制到本地，例如notepad里面，以防不测哦。 © raynix for #raynix#, 2007. &#124; Permalink &#124; 唉, 一个评论都没 &#124; Add to del.icio.us Post tags: css, html, wordpress Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p><a href="http://raynix.bjqnc.com/wp-content/uploads/2007/05/wp-1.jpg" title="wp-1.jpg"><img src="http://raynix.bjqnc.com/wp-content/uploads/2007/05/wp-1.thumbnail.jpg" alt="wp-1.jpg" style="padding: 5px" align="left" /></a>今天很有成就感，我把内森忽悠的也来玩Wordpress了。比起blogger、sina、sohu等现成的blog套餐，Wordpress就是个性DIY了。这里不谈Wordpress的安装等问题，只说说如何改版。</p>
<p>首先，虽然是DIY，但是我们没必要重新发明轮子，去<a href="http://themes.wordpress.net/" target="_blank">WordPress官方布景站</a>去搜一个合个性的布景吧。 下载以后，把这个.zip文件解压缩到你的Wordpress布景文件夹，wp-content/themes下面，例如wp-content/themes/mytheme。Linux主机的话要记得chmod一下，使mytheme文件夹可写，这样以后你只需要wp-admin就可以修改布景了。</p>
<p>然后进入wp-admin，点开presentation-&gt;themes，如果文件夹没放错地方，那么这里应该出现你刚才上传的新布景了，一般还有预览图片呢。点击新布景，再看看你的WP站，已经旧貌换新颜了。接下来是一些DIY了。</p>
<p>布景DIY其实就是编辑HTML、CSS，有一定PHP基础的你可以做更进一步的定制，显示一些原来模版上没有的东西。具体如何修改HTML、CSS，这个就不是几句话说得清楚了，我这简单说说WP布景各部分的功能：</p>
<ul>
<li>Stylesheet就是CSS了，现在绝大多数风格，例如背景色、前景色、字号、间距等等都在CSS 里做了</li>
<li>sidebar是右侧栏模版，一般显示blog分类、日历、归档等等</li>
<li>main index就是首页的模版</li>
<li>archives：归档页面模版</li>
<li>comments：评论模版</li>
<li>footer：页脚模版，一般是版权信息等等，powered by wordpress！</li>
<li>functions.php：这个是布景调用的php函数，轻易不要动</li>
<li>single post：点击一篇文章进入的单页的模版，类似main index，只是少了一层循环</li>
<li>404：页面未找到错误的页面模版</li>
<li>search results：搜索结果页面模版</li>
<li>page template：自定义页面，例如about，的模版，也类似single post</li>
<li>header：页首模版，一般是标题、导航所在</li>
</ul>
<p>好了，最后记得在开始修改之前把原来模版内容先复制到本地，例如notepad里面，以防不测哦。</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2007. |
<a href="http://raynix.info/archives/70">Permalink</a> |
<a href="http://raynix.info/archives/70#comments">唉, 一个评论都没</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/70&title=WordPress改版手记">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/css" rel="tag">css</a>, <a href="http://raynix.info/archives/tag/html" rel="tag">html</a>, <a href="http://raynix.info/archives/tag/wordpress" rel="tag">wordpress</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/70/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
