<?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>Bolo的博客 &#187; JavaScript</title>
	<atom:link href="http://blog.imbolo.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.imbolo.com</link>
	<description>一个设计爱好者杂七杂八的博客</description>
	<lastBuildDate>Wed, 01 Sep 2010 04:34:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS 设置段落间距</title>
		<link>http://blog.imbolo.com/set-paragraph-spacing-with-css/</link>
		<comments>http://blog.imbolo.com/set-paragraph-spacing-with-css/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 07:10:24 +0000</pubDate>
		<dc:creator>bolo</dc:creator>
				<category><![CDATA[Develop]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.imbolo.com/?p=1650</guid>
		<description><![CDATA[段落间距网页设计里一个提升阅读体验的重要因素。但网页排版不想Word那样简单，你能否通过CSS有效率地设置段落间距呢？]]></description>
			<content:encoded><![CDATA[<p>段落间距网页设计里一个提升阅读体验的重要因素。但网页排版不想Word那样简单，你能否通过CSS有效率地设置段落间距呢？</p>
<h3>网页设计里的文字排版问题</h3>
<p>作为网页设计师，我们必须为文章的每个小标题和段落都预留一定的余量(在CSS通常使用margin)，但一个段落里所包含的元素（HTML标签）并不是一成不变的，这意味着你必须为这些可能存在的元素都设置一个明确的样式，避免产生多余的代码。</p>
<p>在逐步向W3C的标准过渡的前提下，目前设置段落间距的方法主要有两种：</p>
<h4>通过类（Class）</h4>
<p>为段落的第一个元素指定一个Class值，赋予margin-top:0。<span id="more-1650"></span></p>
<h6>HTML:</h6>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;articles&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;first&quot;</span>&gt;</span>Heading<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span>&gt;</span>Welcome to Bolo's blog...<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></td></tr></table></div>

<h6>CSS:</h6>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.first</span> <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>这种方法的缺点是：引入了一个新的Class，这意味着它会降低我们的效率。你可能需要修改以前写下的文章，而且也不利于文章内容的增减。</p>
<h4>通过CSS伪类</h4>
<p>CSS伪类已经逐渐被一些先进的浏览器支持。</p>
<h6>HTML：</h6>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;articles&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>Heading<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span>&gt;</span>Welcome to Bolo's blog...<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></td></tr></table></div>

<h6>CSS：</h6>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#articles</span> <span style="color: #00AA00;">&gt;</span>  <span style="color: #3333ff;">:first-child </span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>通过CSS伪类把margin-top:0赋予#articles的第一个子元素。这个方法不需要我们手动地引入一个多余的Class，因此你无需再去调整文章的代码。适应性非常强。</p>
<p>这种方法在CSS2标准里已经被承认，但一直得不到普及，原因就是IE6不支持（因此消灭IE6是所有Web Developer共同的责任&#8212;译者注）。</p>
<h4>你写的CSS对IE兼容吗？</h4>
<p><strong style="color:#FF0000;">此处开始是精华啊&#8212;译者注</strong></p>
<p>以上的内容只是对当前CSS可以实现的部分功能的简述，如何发挥CSS的威力靠的是网页设计师的使用方法。下面将介绍几个强大的工具，可是很方便地对IE浏览器进行最真实的兼容性测试，让你选择最好的CSS编写方案。</p>
<h5>ie7-js</h5>
<p><a href="http://code.google.com/p/ie7-js/" rel="nofollow external">ie7-js</a>是一个JavaScript库，它会使IE表现得像一个兼容W3C标准的浏览器，你可以在这个<a href="http://ie7-js.googlecode.com/svn/test/index.html" rel="nofollow external">测试页</a>查看某个版本的IE对这种CSS语法的兼容性，以及它们的兼容写法。</p>
<p>在“IE7 &#8211; js”项目有两个主要的JavaScript脚本：IE7.js和IE8.js。当你决定使用IE8-js时就不需要同时使用IE7-js，因为IE8-js已经包含了IE7-js的所有功能。你可以在<a href="http://code.google.com/p/ie7-js/" rel="nofollow external">这个页面</a>找到所有关于这个项目的说明。</p>
<h5>ie-css3.js</h5>
<p><a href="http://www.keithclark.co.uk/labs/ie-css3/" rel="nofollow external">IE-css3.js</a>可是令IE提供对CSS3规则的支持。但美中不足的是这个脚本并不可以令IE完全支持CSS3，而只能作为对IE的CSS引擎的扩展。毕竟CSS3还是一个未完成的标准。</p>
<h5>eCSStender</h5>
<p>这应该是目前最强大的JavaScript写的IE扩展了，它整合了上述两个扩展的一些突出功能，并添加了一些额外的支持。你可以在<a href="http://ecsstender.org/" rel="nofollow external">这个页面</a>查看关于这个库的详细说明。</p>
<h3>Bolo的看法</h3>
<p>无论消灭IE6呼声多么高，最好的办法还是尽量去兼容它，这才不至于令自己损失读者。因此在写浏览器端的代码时，都应该优先采用兼容性强的方法。实在不行了再去写hack吧。</p>
<p>对于本文推荐的几个JavaScript库，如果真的用在线上的网站的话，其缺点是非常致命的（浏览器禁用了JavaScript的情况下），而且容易引起其他的不兼容（主要是和其他JavaScript脚本冲突）。因此，我推荐大家用这些库来了解IE的性能，这才是一劳永逸的做法。</p>
<p>本文译自：<a href="http://blog.doliver.co.uk/2010/01/hacking-paragraph-spacing-with-css-despite-ie/" rel="external">Hacking ‘paragraph spacing’ with CSS (despite IE)</a>。内容有删改。</p>
<p  class="related_post_title">Related Posts</p><ul class="related_post"><li><a href="http://blog.imbolo.com/css-turn-off-webkit-browsers-input-highlight-and-textarea-resize/" title="CSS 屏蔽 Webkit 浏览器 input 高亮和 textarea 缩放">CSS 屏蔽 Webkit 浏览器 input 高亮和 textarea 缩放</a></li><li><a href="http://blog.imbolo.com/jquery-selectors/" title="jQuery选择器详解（一）">jQuery选择器详解（一）</a></li><li><a href="http://blog.imbolo.com/customizing-the-new-wordpress-3-0-custom-menus-adding-different-icons-to-each-link/" title="为 WordPress 3.0 的自定义菜单链接添加栏目图标">为 WordPress 3.0 的自定义菜单链接添加栏目图标</a></li><li><a href="http://blog.imbolo.com/center-multiple-divs-with-css/" title="CSS 多个子框架居中">CSS 多个子框架居中</a></li><li><a href="http://blog.imbolo.com/the-css3-flexible-box-model-2/" title="CSS3 灵活的盒子模型(Flexible Box Module) – 2">CSS3 灵活的盒子模型(Flexible Box Module) – 2</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.imbolo.com/set-paragraph-spacing-with-css/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>动态调整图片尺寸</title>
		<link>http://blog.imbolo.com/dynamic-image-resize-via-jquery-javascript/</link>
		<comments>http://blog.imbolo.com/dynamic-image-resize-via-jquery-javascript/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 10:23:19 +0000</pubDate>
		<dc:creator>bolo</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.imbolo.com/?p=1489</guid>
		<description><![CDATA[在自己的网站上更新文章时一个比较常见的问题是：文章插图太宽，使整个网页都变形了。如果对每个插图都先进行缩放再插入的话，太麻烦了。
我前段时间写的一篇文章就遇到过这种事情，后来用CSS的overflow和max-width属性暂时解决了页面变形的问题。这种方法好处是简单，但坏处是会破坏某些细节的效果。]]></description>
			<content:encoded><![CDATA[<p>在自己的网站上更新文章时一个比较常见的问题是：文章插图太宽，使整个网页都变形了。如果对每个插图都先进行缩放再插入的话，太麻烦了。<br />
我前段时间写的一篇文章就遇到过这种事情，后来用CSS的overflow和max-width属性暂时解决了页面变形的问题。这种方法好处是简单，但坏处是会破坏某些细节的效果。<span id="more-1489"></span><br />
如overflow：hidden，意思是当内部元素宽度大于父框架时隐藏超出宽度的部分。这样做可能会是一些内容突然截断，被隐藏了，很对不起观众。<br />
通过max-width属性限制文章插图最大宽度的话，需要考虑各浏览器的兼容性。IE6是不支持这个属性的，在我印象中，一些浏览器虽然支持这个属性，但图片不是等比缩放的（好像是Safari和Opera，记不清了），这样做的话对这些浏览器的用户很不公平。<br />
因此，我最终选择的是通过JavaScript动态改变图片尺寸。这种方法对各种浏览器兼容性良好（现在应该很少人会禁用JavaScript吧？），如果换主题的话，也可以灵活地改变文章插图的最大尺寸。<br />
方案有两个，由于我使用的主题是加载了jQuery库的，因此可以用以下代码实现：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.post img'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> maxWidth <span style="color: #339933;">=</span> <span style="color: #CC0000;">100</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// 图片最大宽度</span>
    <span style="color: #003366; font-weight: bold;">var</span> maxHeight <span style="color: #339933;">=</span> <span style="color: #CC0000;">100</span><span style="color: #339933;">;</span>    <span style="color: #006600; font-style: italic;">// 图片最大高度</span>
    <span style="color: #003366; font-weight: bold;">var</span> ratio <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>  <span style="color: #006600; font-style: italic;">// 缩放比例</span>
    <span style="color: #003366; font-weight: bold;">var</span> width <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">width</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>    <span style="color: #006600; font-style: italic;">// 图片实际宽度</span>
    <span style="color: #003366; font-weight: bold;">var</span> height <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #006600; font-style: italic;">// 图片实际高度</span>
&nbsp;
    <span style="color: #006600; font-style: italic;">// 检查图片是否超宽</span>
    <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>width <span style="color: #339933;">&gt;</span> maxWidth<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        ratio <span style="color: #339933;">=</span> maxWidth <span style="color: #339933;">/</span> width<span style="color: #339933;">;</span>   <span style="color: #006600; font-style: italic;">// 计算缩放比例</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;width&quot;</span><span style="color: #339933;">,</span> maxWidth<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// 设定实际显示宽度</span>
        height <span style="color: #339933;">=</span> height <span style="color: #339933;">*</span> ratio<span style="color: #339933;">;</span>    <span style="color: #006600; font-style: italic;">// 计算等比例缩放后的高度 </span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;height&quot;</span><span style="color: #339933;">,</span> height <span style="color: #339933;">*</span> ratio<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #006600; font-style: italic;">// 设定等比例缩放后的高度</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #006600; font-style: italic;">// 检查图片是否超高</span>
    <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>height <span style="color: #339933;">&gt;</span> maxHeight<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
        ratio <span style="color: #339933;">=</span> maxHeight <span style="color: #339933;">/</span> height<span style="color: #339933;">;</span> <span style="color: #006600; font-style: italic;">// 计算缩放比例</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;height&quot;</span><span style="color: #339933;">,</span> maxHeight<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>   <span style="color: #006600; font-style: italic;">// 设定实际显示高度</span>
        width <span style="color: #339933;">=</span> width <span style="color: #339933;">*</span> ratio<span style="color: #339933;">;</span>    <span style="color: #006600; font-style: italic;">// 计算等比例缩放后的高度</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;width&quot;</span><span style="color: #339933;">,</span> width <span style="color: #339933;">*</span> ratio<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>    <span style="color: #006600; font-style: italic;">// 设定等比例缩放后的高度</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>如果不想加载jQuery库，可以用以下代码：</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> ResizeImage<span style="color: #009900;">&#40;</span>image<span style="color: #339933;">,</span> 插图最大宽度<span style="color: #339933;">,</span> 插图最大高度<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>image.<span style="color: #660066;">className</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;Thumbnail&quot;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        w <span style="color: #339933;">=</span> image.<span style="color: #660066;">width</span><span style="color: #339933;">;</span>
        h <span style="color: #339933;">=</span> image.<span style="color: #660066;">height</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span> w <span style="color: #339933;">==</span> <span style="color: #CC0000;">0</span> <span style="color: #339933;">||</span> h <span style="color: #339933;">==</span> <span style="color: #CC0000;">0</span> <span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            image.<span style="color: #660066;">width</span> <span style="color: #339933;">=</span> maxwidth<span style="color: #339933;">;</span>
            image.<span style="color: #660066;">height</span> <span style="color: #339933;">=</span> maxheight<span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>w <span style="color: #339933;">&gt;</span> h<span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>w <span style="color: #339933;">&gt;</span> maxwidth<span style="color: #009900;">&#41;</span> image.<span style="color: #660066;">width</span> <span style="color: #339933;">=</span> maxwidth<span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #000066; font-weight: bold;">else</span>
        <span style="color: #009900;">&#123;</span>
            <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>h <span style="color: #339933;">&gt;</span> maxheight<span style="color: #009900;">&#41;</span> image.<span style="color: #660066;">height</span> <span style="color: #339933;">=</span> maxheight<span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        image.<span style="color: #660066;">className</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;ScaledThumbnail&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>采用纯JavaScript的话，麻烦点，需要手动为图片加上class=&#8221;Thumbnail&#8221;，但最终效果是一样的。</p>
<p  class="related_post_title">Related Posts</p><ul class="related_post"><li><a href="http://blog.imbolo.com/jquery-selectors/" title="jQuery选择器详解（一）">jQuery选择器详解（一）</a></li><li><a href="http://blog.imbolo.com/create-a-simple-ajax-rss-widget-with-jquery-and-yahoo-pipes/" title="利用 Yahoo Pipes 和 jQuery 做一个 RSS 挂件">利用 Yahoo Pipes 和 jQuery 做一个 RSS 挂件</a></li><li><a href="http://blog.imbolo.com/set-paragraph-spacing-with-css/" title="CSS 设置段落间距">CSS 设置段落间距</a></li><li><a href="http://blog.imbolo.com/jquery-jwtabs/" title="jQuery插件：jwTabs">jQuery插件：jwTabs</a></li><li><a href="http://blog.imbolo.com/make-a-jquery-style-switch/" title="用jQuery制作页面风格切换开关">用jQuery制作页面风格切换开关</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.imbolo.com/dynamic-image-resize-via-jquery-javascript/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>
