﻿<?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>ButLife</title>
	<atom:link href="http://www.butlife.com/index.php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.butlife.com</link>
	<description>Beautiful Life &#124; A.Journey.of.Hope.&#38;.Healing</description>
	<lastBuildDate>Wed, 01 Sep 2010 15:40:43 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>拓展训练</title>
		<link>http://www.butlife.com/index.php/archives/1472</link>
		<comments>http://www.butlife.com/index.php/archives/1472#comments</comments>
		<pubDate>Wed, 01 Sep 2010 15:40:43 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1472</guid>
		<description><![CDATA[学着勇敢，勇敢地去生活。]]></description>
			<content:encoded><![CDATA[<p>在办公室里呆得久了就得出去转转。</p>
<p>上周公司把我们集体拉出去锻炼一下，于是就有了下边的这些照片。</p>
<p><div id="attachment_1476" class="wp-caption aligncenter" style="width: 460px"><a rel="shadowbox[ext]" href="http://www.butlife.com/wp-content/uploads/2010/09/12.jpg"><img class="size-medium wp-image-1476" title="天空" src="http://www.butlife.com/wp-content/uploads/2010/09/12-450x253.jpg" alt="天空" width="450" height="253" /></a><p class="wp-caption-text">天空</p></div>那天阳光有点耀眼。自己是第一次参加这样的活动。分组，起名字，写口号，写队歌，画队徽，比赛。每个人都参与进来，每个人都是快乐的。这样的感觉真好。</p>
<p>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1472">拓展训练</a> (21 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1472">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1472#comments">2 comments</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/photo" rel="tag">Photo</a>, <a href="http://www.butlife.com/index.php/archives/tag/travel" rel="tag">travel</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1472/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC &#8211; About Models</title>
		<link>http://www.butlife.com/index.php/archives/1442</link>
		<comments>http://www.butlife.com/index.php/archives/1442#comments</comments>
		<pubDate>Sun, 22 Aug 2010 16:34:02 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1442</guid>
		<description><![CDATA[In an ASP.NET MVC application, you pass data from a controller to a view by using view data. There are two ways that you can use view data. First, you can use view data as an untyped dictionary]]></description>
			<content:encoded><![CDATA[<p>刚刚开始学习ASP.NET MVC，的确很吸引人，但是身边没有熟悉这方面的人，学习起来有点苦闷，还好网上的教程挺多的。</p>
<p>这个是刚刚看到的，是一个系列里边的一篇，关于数据从Models传到Vew的，简单易懂。自己英文不好就不翻译了。</p>
<p>In an ASP.NET MVC application, you pass data from a controller to a view by using view data. There are two ways that you can use view data. First, you can use view data as an untyped dictionary. For example, the controller in Listing 1 returns a collection of products in its Index() action. And, the view in Listing 2 displays the collection by iterating through each item in the collection.</p>
<p><strong>Listing 1 – Controllers\ProductController.cs</strong></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
26
27
28
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Collections.Generic</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">System.Web.Mvc</span><span style="color: #008000;">;</span>
<span style="color: #0600FF;">using</span> <span style="color: #008080;">MvcApplication1.Models</span><span style="color: #008000;">;</span>   
&nbsp;
<span style="color: #0600FF;">namespace</span> MvcApplication1.<span style="color: #0000FF;">Controllers</span>
<span style="color: #000000;">&#123;</span>
    <span style="color: #0600FF;">public</span> <span style="color: #FF0000;">class</span> ProductController <span style="color: #008000;">:</span> Controller
    <span style="color: #000000;">&#123;</span>
        <span style="color: #008080; font-style: italic;">//</span>
        <span style="color: #008080; font-style: italic;">// GET: /Product/   </span>
&nbsp;
        <span style="color: #0600FF;">public</span> ActionResult Index<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #008080; font-style: italic;">// Create list of products</span>
           var products <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> List<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            products.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span><span style="color: #008000;">new</span> Product<span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Laptop computer&quot;</span>, 344.78m<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            products.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span><span style="color: #008000;">new</span> Product<span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Bubble gum&quot;</span>, 2.00m<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
            products.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span><span style="color: #008000;">new</span> Product<span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Toothpaste&quot;</span>, 6.99m<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>   
&nbsp;
            <span style="color: #008080; font-style: italic;">// Add products to view data</span>
            ViewData<span style="color: #000000;">&#91;</span><span style="color: #666666;">&quot;products&quot;</span><span style="color: #000000;">&#93;</span> <span style="color: #008000;">=</span> products<span style="color: #008000;">;</span>   
&nbsp;
            <span style="color: #008080; font-style: italic;">// Return view</span>
            <span style="color: #0600FF;">return</span> View<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
        <span style="color: #000000;">&#125;</span>   
&nbsp;
    <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1442">ASP.NET MVC &#8211; About Models</a> (732 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1442">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1442#comments">No comment</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/dotnet" rel="tag">.NET</a>, <a href="http://www.butlife.com/index.php/archives/tag/mvc" rel="tag">MVC</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1442/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>发现 &amp;&amp; 保存</title>
		<link>http://www.butlife.com/index.php/archives/1429</link>
		<comments>http://www.butlife.com/index.php/archives/1429#comments</comments>
		<pubDate>Sun, 22 Aug 2010 11:34:13 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1429</guid>
		<description><![CDATA[到外边去，生活是多彩的。]]></description>
			<content:encoded><![CDATA[<p>不想把自己困在一个地方走不出去。我相信，一直都相信，生活是美好的。</p>
<p>上午出去的时候偶尔还飘点小雨。在附近拍了一些照片，自我感觉还不错，偷笑一下。</p>
<p><div id="attachment_1432" class="wp-caption aligncenter" style="width: 460px"><a rel="shadowbox[restart]" href="http://www.butlife.com/wp-content/uploads/2010/08/bird.jpg"><img class="size-medium wp-image-1432" title="燕子" src="http://www.butlife.com/wp-content/uploads/2010/08/bird-450x253.jpg" alt="燕子" width="450" height="253" /></a><p class="wp-caption-text">燕子</p></div>用相机去捕捉美好的东西、挑选、编辑，这个行为本身就是快乐的。</p>
<p>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1429">发现 &#038;&#038; 保存</a> (33 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1429">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1429#comments">6 comments</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/photo" rel="tag">Photo</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1429/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>雨一直下</title>
		<link>http://www.butlife.com/index.php/archives/1426</link>
		<comments>http://www.butlife.com/index.php/archives/1426#comments</comments>
		<pubDate>Thu, 19 Aug 2010 15:32:48 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[音乐]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1426</guid>
		<description><![CDATA[初秋，雨跟着一起来，下得有点烦。]]></description>
			<content:encoded><![CDATA[<p>初秋，雨跟着一起来，下得有点烦。</p>
<div id="attachment_1427" class="wp-caption aligncenter" style="width: 235px"><a rel="shadowbox" href="http://www.butlife.com/wp-content/uploads/2010/08/rain.jpg"><img class="size-medium wp-image-1427" title="雨一直下" src="http://www.butlife.com/wp-content/uploads/2010/08/rain-225x300.jpg" alt="雨一直下" width="225" height="300" /></a><p class="wp-caption-text">雨一直下</p></div>
<p>近来心情也不怎么好，听一些老歌感觉挺好的。</p>
<p>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1426">雨一直下</a> (36 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1426">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1426#comments">No comment</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/music" rel="tag">音乐</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1426/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>听说</title>
		<link>http://www.butlife.com/index.php/archives/1419</link>
		<comments>http://www.butlife.com/index.php/archives/1419#comments</comments>
		<pubDate>Tue, 20 Jul 2010 16:19:04 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[心情]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1419</guid>
		<description><![CDATA[男孩大声告白：“水鸟有一天也可能会绝种，快把眼前这棵树搬回家养吧！”水鸟与大树，最后能够听见彼此的声音吗？]]></description>
			<content:encoded><![CDATA[<p>刚看的一部电影，感觉挺好的。</p>
<div id="attachment_1420" class="wp-caption aligncenter" style="width: 220px"><a rel="shadowbox[hearme]" href="http://www.butlife.com/wp-content/uploads/2010/07/hear-me.jpg"><img class="size-medium wp-image-1420 " title="听说" src="http://www.butlife.com/wp-content/uploads/2010/07/hear-me-210x300.jpg" alt="听说" width="210" height="300" /></a><p class="wp-caption-text">听说</p></div>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1419">听说</a> (12 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1419">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1419#comments">4 comments</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/mood" rel="tag">心情</a>, <a href="http://www.butlife.com/index.php/archives/tag/movie" rel="tag">电影</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1419/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>悲伤逆流成河。</title>
		<link>http://www.butlife.com/index.php/archives/1411</link>
		<comments>http://www.butlife.com/index.php/archives/1411#comments</comments>
		<pubDate>Sun, 04 Jul 2010 14:45:16 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[心情]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1411</guid>
		<description><![CDATA[领队的那只蚂蚁，爬到了心脏的最上面，然后把旗帜朝着脚下那柔软跳动的地方，用力的一插——哈，占领咯。]]></description>
			<content:encoded><![CDATA[<p>悲伤逆流成河。<br />
看到最终回的时候手机亮了。<br />
－睡觉了&#8230;..</p>
<p>我说我很喜欢它分段的写法。<br />
那是矫情。朋友这样说。</p>
<p>应该只是想看一本书。看到最后几千字的时候才觉得，要很小心，一个字一个字地去看。<br />
看得很潦草。 甚至男主角的名字都忘掉了。</p>
<p>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1411">悲伤逆流成河。</a> (21 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1411">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1411#comments">4 comments</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/mood" rel="tag">心情</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1411/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>短歌</title>
		<link>http://www.butlife.com/index.php/archives/1407</link>
		<comments>http://www.butlife.com/index.php/archives/1407#comments</comments>
		<pubDate>Sun, 13 Jun 2010 13:58:32 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[书摘]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1407</guid>
		<description><![CDATA[在每次想念你的淡墨色黄昏 在记忆与爱缓慢走失的灵魂 我念曾经光阴流转轻浮上升 花童与怀人 归墟与永恒 ]]></description>
			<content:encoded><![CDATA[<blockquote><p>《短歌》<br />
　　<br />
在光影幕布里等落幕的掌声<br />
在梦境破碎后有幻灭的凌晨<br />
有远方的歌情绪透露了风声<br />
天川与蝶吻 世俗与烟尘<br />
　　<br />
在每次想念你的淡墨色黄昏<br />
在记忆与爱缓慢走失的灵魂<br />
我念曾经光阴流转轻浮上升<br />
花童与怀人 归墟与永恒<br />
　　<br />
我们都是为爱而生<br />
我们终将为爱归尘<br />
手掌堆起的皱纹<br />
记忆渐渐失了温<br />
　　<br />
如烟雨朦胧的怨恨<br />
像夜色留下的淡痕<br />
尘世间淡淡的吻<br />
过往临摹失了真</p></blockquote>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1407">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1407#comments">11 comments</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/excerpt" rel="tag">书摘</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1407/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>男人三十</title>
		<link>http://www.butlife.com/index.php/archives/1401</link>
		<comments>http://www.butlife.com/index.php/archives/1401#comments</comments>
		<pubDate>Tue, 08 Jun 2010 15:05:31 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[心情]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1401</guid>
		<description><![CDATA[世界大着呢，孩子小着呢，事情多着呢，钞票少着呢，别人笑着呢，老婆骂着呢，日子长着呢，俺正忙着呢……]]></description>
			<content:encoded><![CDATA[<p>跟朋友吃饭的时候听他说到李宗盛和他的歌，回家下了李宗盛和周华健的《男人三十》。</p>
<div id="attachment_1402" class="wp-caption aligncenter" style="width: 410px"><a rel="shadowbox" href="http://www.butlife.com/wp-content/uploads/2010/06/thirty.jpg"><img class="size-full wp-image-1402" title="男人三十" src="http://www.butlife.com/wp-content/uploads/2010/06/thirty.jpg" alt="男人三十" width="400" height="288" /></a><p class="wp-caption-text">男人三十</p></div>
<p>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1401">男人三十</a> (4 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1401">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1401#comments">5 comments</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/mood" rel="tag">心情</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1401/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>分手信</title>
		<link>http://www.butlife.com/index.php/archives/1378</link>
		<comments>http://www.butlife.com/index.php/archives/1378#comments</comments>
		<pubDate>Sun, 30 May 2010 11:06:57 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1378</guid>
		<description><![CDATA[临了儿废话：John跟哥们儿谈论感情的态度我倍儿能接受。我觉得男的就该这样，闷头烧信，别人问起就说，没什么可说的。相比之下，Valentine’s Day里的男的都太絮叨了。 ]]></description>
			<content:encoded><![CDATA[<p>很温暖的一部电影。</p>
<p style="text-align: center;"><div id="attachment_1379" class="wp-caption aligncenter" style="width: 310px"><a rel="shadowbox[dear-john]" href="http://www.butlife.com/wp-content/uploads/2010/05/dear-john-1.jpg"><img class="size-medium wp-image-1379 " title="Dear John" src="http://www.butlife.com/wp-content/uploads/2010/05/dear-john-1.jpg" alt="Dear John" width="300" height="300" /></a><p class="wp-caption-text">Dear John</p></div>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1378">分手信</a> (97 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1378">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1378#comments">16 comments</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/movie" rel="tag">电影</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1378/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>和莎莫的500天</title>
		<link>http://www.butlife.com/index.php/archives/1367</link>
		<comments>http://www.butlife.com/index.php/archives/1367#comments</comments>
		<pubDate>Thu, 20 May 2010 15:30:08 +0000</pubDate>
		<dc:creator>butlife</dc:creator>
				<category><![CDATA[Beautiful Life]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://www.butlife.com/?p=1367</guid>
		<description><![CDATA[《和莎莫的500天》如同它的片名一样不俗，这部电影会令你欢笑，令你心碎，令你若有所思。]]></description>
			<content:encoded><![CDATA[<p>虽然看起来会有一点奇怪的感觉，但还是部不错的作品。它真的会令你欢笑，令你心碎，令你若有所思。</p>
<div id="attachment_1368" class="wp-caption aligncenter" style="width: 460px"><a rel="shadowbox[summer]" href="http://www.butlife.com/wp-content/uploads/2010/05/summer-1.jpg"><img class="size-full wp-image-1368" title="(500) Days of Summer" src="http://www.butlife.com/wp-content/uploads/2010/05/summer-1.jpg" alt="(500) Days of Summer" width="450" height="300" /></a><p class="wp-caption-text">(500) Days of Summer</p></div>(...)<br/>Read the rest of <a href="http://www.butlife.com/index.php/archives/1367">和莎莫的500天</a> (35 words)</p>
<hr />
<p><small>© butlife for <a href="http://www.butlife.com">ButLife</a>, 2010. |
<a href="http://www.butlife.com/index.php/archives/1367">Permalink</a> |
<a href="http://www.butlife.com/index.php/archives/1367#comments">14 comments</a> |
<br/>
Post tags: <a href="http://www.butlife.com/index.php/archives/tag/movie" rel="tag">电影</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.butlife.com/index.php/archives/1367/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
