<?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>perfume&#039;s space</title>
	<atom:link href="http://www.xsui.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xsui.com</link>
	<description>你爱再浓烈也是条抛物线</description>
	<lastBuildDate>Fri, 16 Jul 2010 19:03:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>16行jQuery代码实现锚点scoll效果的修正版本</title>
		<link>http://www.xsui.com/blog/20100717941</link>
		<comments>http://www.xsui.com/blog/20100717941#comments</comments>
		<pubDate>Fri, 16 Jul 2010 18:56:40 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[日志随笔]]></category>
		<category><![CDATA[模板插件]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.xsui.com/?p=941</guid>
		<description><![CDATA[网上流传的16行的jQuery 代码就可以实现全站的锚点滑动效果，一直都不支持opera浏览器，今天在赶工星座网的时候，准备为底部添加返回头部的效果，又想到了这个代码，于是乎试着修改，将之前的body和html改为一个webkit内核浏览器和ie以及其他浏览器的判断，现在在ie6、7、8，chrome、firefox、opera和safari测试通过，完全正常，详细情况见本站滑动效果

以下是代码



1

2

]]></description>
			<content:encoded><![CDATA[<p>网上流传的16行的jQuery 代码就可以实现全站的锚点滑动效果，一直都不支持opera浏览器，今天在赶工星座网的时候，准备为底部添加返回头部的效果，又想到了这个代码，于是乎试着修改，将之前的body和html改为一个webkit内核浏览器和ie以及其他浏览器的判断，现在在ie6、7、8，chrome、firefox、opera和safari测试通过，完全正常，详细情况见本站滑动效果<br />
以下是代码</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
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[href*=#]'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</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: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>location.<span style="color: #660066;">pathname</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/^\//</span><span style="color: #339933;">,</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">pathname</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/^\//</span><span style="color: #339933;">,</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span>
    <span style="color: #339933;">&amp;&amp;</span> location.<span style="color: #660066;">hostname</span> <span style="color: #339933;">==</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">hostname</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #003366; font-weight: bold;">var</span> $target <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">hash</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      $target <span style="color: #339933;">=</span> $target.<span style="color: #660066;">length</span> <span style="color: #339933;">&amp;&amp;</span> $target
      <span style="color: #339933;">||</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'[name='</span> <span style="color: #339933;">+</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">hash</span>.<span style="color: #660066;">slice</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span><span style="color: #3366CC;">']'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>$target.<span style="color: #660066;">length</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #003366; font-weight: bold;">var</span> targetOffset <span style="color: #339933;">=</span> $target.<span style="color: #660066;">offset</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">top</span><span style="color: #339933;">;</span>
		<span style="color: #003366; font-weight: bold;">var</span> obj <span style="color: #339933;">=</span> document.<span style="color: #660066;">documentElement</span><span style="color: #339933;">;</span> 
      <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>jQuery.<span style="color: #660066;">browser</span>.<span style="color: #660066;">safari</span><span style="color: #009900;">&#41;</span> 
            obj <span style="color: #339933;">=</span> document.<span style="color: #660066;">body</span>
     <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>jQuery.<span style="color: #660066;">browser</span>.<span style="color: #660066;">msie</span><span style="color: #009900;">&#41;</span> 
            obj <span style="color: #339933;">=</span> <span style="color: #3366CC;">'html'</span><span style="color: #339933;">;</span>
       $<span style="color: #009900;">&#40;</span>obj<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>scrollTop<span style="color: #339933;">:</span> targetOffset<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">1000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>哥也只是js小菜一个，高手勿笑，有什么不足的地方请指点 ^_^</p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100710907" title="wordpress免插件实现影音播放 2010.07.10">wordpress免插件实现影音播放</a>(14)</li>
<li><a href="http://www.xsui.com/blog/20100430750" title="最近折腾wordpress的一些小结 2010.04.30">最近折腾wordpress的一些小结</a>(17)</li>
<li><a href="http://www.xsui.com/blog/20091222654" title="小站升级到WordPress2.9 2009.12.22">小站升级到WordPress2.9</a>(19)</li>
<li><a href="http://www.xsui.com/blog/20091203493" title="打造简单的基于box.net的下载页面 2009.12.3">打造简单的基于box.net的下载页面</a>(10)</li>
<li><a href="http://www.xsui.com/blog/20091121312" title="三个WordPress静态加速插件比较 2009.11.21">三个WordPress静态加速插件比较</a>(6)</li>
<li><a href="http://www.xsui.com/blog/20100516764" title="测试离线发布相册功能 2010.05.16">测试离线发布相册功能</a>(0)</li>
</ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100717941#comment-765" title="View the entire comment by 香水" >$('#friends a , .post-list li').hover(function() {...</a></li>
<li><a class="commentor" href="http://您的主页地址（可选）" >deeplane</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100717941#comment-761" title="View the entire comment by deeplane" >右边链接的那种效果是用插件实现的？还是用什么方法，能说说吗，比较喜欢这样的效果，前面版本中好象你有到...</a></li>
<li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100717941#comment-759" title="View the entire comment by 香水" >不是，是底部top的效果</a></li>
<li><a class="commentor" href="http://www.bokeam.com" >BoKeam</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100717941#comment-758" title="View the entire comment by BoKeam" >右边链接那种效果嘛</a></li>
<li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100717941#comment-708" title="View the entire comment by 香水" >是平滑滚动，cookie是因为开了静态化失效，dh空间慢呢，现在的主题还有很多问题待解决</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100717941/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>我的模型收藏</title>
		<link>http://www.xsui.com/blog/20100716940</link>
		<comments>http://www.xsui.com/blog/20100716940#comments</comments>
		<pubDate>Thu, 15 Jul 2010 18:22:20 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[相册]]></category>
		<category><![CDATA[exia]]></category>
		<category><![CDATA[高达00]]></category>
		<category><![CDATA[能天使]]></category>
		<category><![CDATA[gundam00]]></category>
		<category><![CDATA[模型]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-07-16-940.html</guid>
		<description><![CDATA[我的mg exia，买了好几个，之前也入手过mg的自由和强袭自由，还有飞翼0以及V高达，但其实真正喜欢的还是exia，所以以后除非很喜欢的，就不会再入了                                

Related PostsMG雪崩的可能性与可行性(5)

gundam exia(0)

迷你四驱车(0)

我的怨念物(0)

]]></description>
			<content:encoded><![CDATA[<p>我的mg exia，买了好几个，之前也入手过mg的自由和强袭自由，还有飞翼0以及V高达，但其实真正喜欢的还是exia，所以以后除非很喜欢的，就不会再入了<img src="http://img.xsui.com/2010/07/DSC01735.jpg" alt="DSC01735.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01704.jpg" alt="DSC01704.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01705.jpg" alt="DSC01705.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01706.jpg" alt="DSC01706.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01707.jpg" alt="DSC01707.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01708.jpg" alt="DSC01708.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01709.jpg" alt="DSC01709.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01710.jpg" alt="DSC01710.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01711.jpg" alt="DSC01711.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01712.jpg" alt="DSC01712.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01713.jpg" alt="DSC01713.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01714.jpg" alt="DSC01714.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01715.jpg" alt="DSC01715.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01716.jpg" alt="DSC01716.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01717.jpg" alt="DSC01717.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01718.jpg" alt="DSC01718.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01719.jpg" alt="DSC01719.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01720.jpg" alt="DSC01720.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01721.jpg" alt="DSC01721.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01722.jpg" alt="DSC01722.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01723.jpg" alt="DSC01723.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01724.jpg" alt="DSC01724.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01725.jpg" alt="DSC01725.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01726.jpg" alt="DSC01726.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01727.jpg" alt="DSC01727.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01728.jpg" alt="DSC01728.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01729.jpg" alt="DSC01729.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01730.jpg" alt="DSC01730.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01731.jpg" alt="DSC01731.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01732.jpg" alt="DSC01732.JPG" height="2592" width="1944"/> <br/><img src="http://img.xsui.com/2010/07/DSC01733.jpg" alt="DSC01733.JPG" height="1944" width="2592"/> <br/><img src="http://img.xsui.com/2010/07/DSC01734.jpg" alt="DSC01734.JPG" height="1944" width="2592"/> <br/></p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100407721" title="MG雪崩的可能性与可行性 2010.04.7">MG雪崩的可能性与可行性</a>(5)</li>
<li><a href="http://www.xsui.com/blog/20100418739" title="gundam exia 2010.04.18">gundam exia</a>(0)</li>
<li><a href="http://www.xsui.com/blog/20091205522" title="迷你四驱车 2009.12.5">迷你四驱车</a>(0)</li>
<li><a href="http://www.xsui.com/blog/20091205516" title="我的怨念物 2009.12.5">我的怨念物</a>(0)</li>
</ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100716940/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress免插件实现影音播放</title>
		<link>http://www.xsui.com/blog/20100710907</link>
		<comments>http://www.xsui.com/blog/20100710907#comments</comments>
		<pubDate>Fri, 09 Jul 2010 18:24:14 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[模板插件]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[免插件]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[短代码]]></category>
		<category><![CDATA[非插件]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[模板]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-07-10-907.html</guid>
		<description><![CDATA[还记得wp以前有过的使用［flv］flv地址［/flv］的插件么？

相信现在也应该有不少朋友在用吧？

在这里共享一下免插件的实现方法，当然知道的朋友就不要笑话在下了

依托与wordpress强大的短代码功能，很容易就能实现很多实用的功能

那么先请出国产的伟大科幻巨作来演示

]]></description>
			<content:encoded><![CDATA[<p><img src="http://img.xsui.com/2010/07/xn___5_0m8dq5af09o.jpg" alt="未标题-5.jpg" height="120" width="600"/></p>
<p>还记得wp以前有过的使用［flv］flv地址［/flv］的插件么？</p>
<p>相信现在也应该有不少朋友在用吧？</p>
<p>在这里共享一下免插件的实现方法，当然知道的朋友就不要笑话在下了</p>
<p>依托与wordpress强大的短代码功能，很容易就能实现很多实用的功能</p>
<p>那么先请出国产的伟大科幻巨作来演示</p>
<span  class="flv"><object type="application/x-shockwave-flash" width="480" height="380"
 data="/wp-content/themes/xsui-v3/mediaplayer.swf?file=http://api.ning.com/files/G816-hZE1C0ihJg3biNKmNy3swnXBBxIGpZJfewcJzPXvdV5fDbwXsurfXGYnG9*c5twColeQFmA6tDIdoL*10OS9nGg-rz0/weida.flv"   >
       <param name="movie" value="/wp-content/themes/xsui-v3/mediaplayer.swf?file=http://api.ning.com/files/G816-hZE1C0ihJg3biNKmNy3swnXBBxIGpZJfewcJzPXvdV5fDbwXsurfXGYnG9*c5twColeQFmA6tDIdoL*10OS9nGg-rz0/weida.flv"  />
      <param name="allowfullscreen" value="true">
	  <param name="wmode" value="transparent">
<param name="allowscriptaccess" value="always">

</object></span>
<p>实现的方法很简单，以<a href="http://www.ruochi.com/main/2008/03/19/vcastr-30/" title="下载">vcastr3</a>播放器为例子（也可以直接查看我的页面的源代码，复制我所使用的代码）</p>
<p>在你所使用的主题里找到functions.php，没有的话可以建立一个</p>
<p>插入以下代码</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
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> myFlv<span style="color: #009900;">&#40;</span><span style="color: #000088;">$atts</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">'&lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;/vcastr3.swf&quot; width=&quot;480&quot; height=&quot;380&quot; id=&quot;vcastr3&quot;&gt;
			&lt;param name=&quot;movie&quot; value=&quot;/vcastr3.swf&quot;/&gt; 
			&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;
			&lt;param name=&quot;FlashVars&quot; value=&quot;xml=
				{vcastr}
					{channel}
						{item}
							{source}'</span><span style="color: #339933;">.</span><span style="color: #000088;">$content</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'{/source}
							{duration}{/duration}
							{title}{/title}
						{/item}
					{/channel}
					{config}
					{controlPanelMode}bottom{/controlPanelMode}
					{controlPanelBgColor}0xff0084{/controlPanelBgColor}
					{isAutoPlay}false{/isAutoPlay}
					{/config}
					{plugIns}{/plugIns}
				{/vcastr}&quot;/&gt;
		&lt;/object&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_shortcode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;flv&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;myFlv&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>以上代码无js且符合标准</p>
<p>撰写日志的时候使用［flv］flv地址［/flv］（不要复制前文里的，作为讲解我用了全角，请使用[ ]）</p>
<p>以上，上面那段代码，修改之后同样可以［mp3］mp3地址［/mp3］</p>
<p>调试的时候需要注意到的是播放器路径
<p>关于短代码更多的使用方法请自行google之</p>
<p>成功的演示：http://dujx.net<br />
一定要注意放的位置，多调试几次，熟悉的朋友一次性就能成功，记得下载播放器哈</p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100430750" title="最近折腾wordpress的一些小结 2010.04.30">最近折腾wordpress的一些小结</a>(17)</li>
<li><a href="http://www.xsui.com/blog/20091222654" title="小站升级到WordPress2.9 2009.12.22">小站升级到WordPress2.9</a>(19)</li>
<li><a href="http://www.xsui.com/blog/20100717941" title="16行jQuery代码实现锚点scoll效果的修正版本 2010.07.17">16行jQuery代码实现锚点scoll效果的修正版本</a>(6)</li>
<li><a href="http://www.xsui.com/blog/20100516764" title="测试离线发布相册功能 2010.05.16">测试离线发布相册功能</a>(0)</li>
<li><a href="http://www.xsui.com/blog/20091203493" title="打造简单的基于box.net的下载页面 2009.12.3">打造简单的基于box.net的下载页面</a>(10)</li>
<li><a href="http://www.xsui.com/blog/20100625813" title="PS设计一个漂亮的游戏网站 2010.06.25">PS设计一个漂亮的游戏网站</a>(5)</li>
<li><a href="http://www.xsui.com/blog/20091121312" title="三个WordPress静态加速插件比较 2009.11.21">三个WordPress静态加速插件比较</a>(6)</li>
</ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://upnewpower.cn/" >比度克</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100710907#comment-753" title="View the entire comment by 比度克" >国产的伟大科幻巨作 <img src='http://www.xsui.com/wp-includes/images/smilies/icon_question.gif' alt=':?:' class='wp-smiley' /> </a></li>
<li><a class="commentor" href="http://twiter.tk" >twiter</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100710907#comment-704" title="View the entire comment by twiter" > <img src='http://www.xsui.com/wp-includes/images/smilies/icon_twisted.gif' alt=':twisted:' class='wp-smiley' />   <img src='http://www.xsui.com/wp-includes/images/smilies/icon_confused.gif' alt=':???:' class='wp-smiley' />   <img src='http://www.xsui.com/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' />   <img src='http://www.xsui.com/wp-includes/images/smilies/icon_evil.gif' alt=':evil:' class='wp-smiley' />  
我勒个去，沙发来得太晚了，板凳也...</a></li>
<li><a class="commentor" href="http://www.liurongxing.com" >JavasBoy</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100710907#comment-701" title="View the entire comment by JavasBoy" >插图是电影《暮光之城》的主演</a></li>
<li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100710907#comment-698" title="View the entire comment by 香水" >这个得看播放器支持与否了！</a></li>
<li><a class="commentor" href="http://amangs.com" >阿邙</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100710907#comment-697" title="View the entire comment by 阿邙" >FLV的地址有的不固定   而且分段 不知道能兼容不</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100710907/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>好友寒的站开始更新了</title>
		<link>http://www.xsui.com/blog/20100702899</link>
		<comments>http://www.xsui.com/blog/20100702899#comments</comments>
		<pubDate>Thu, 01 Jul 2010 19:05:17 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[日志随笔]]></category>
		<category><![CDATA[开站]]></category>
		<category><![CDATA[设计]]></category>
		<category><![CDATA[软文]]></category>
		<category><![CDATA[闷骚的人]]></category>
		<category><![CDATA[新站]]></category>
		<category><![CDATA[更新]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-07-02-899.html</guid>
		<description><![CDATA[当初我们的WordPress群1218547里只有几个人,我、羊、午夜、莫良等等，寒好像也是那时候在里面认识的，还有尤儿、time、西瓜、文、废材、海海等等，几年来老的朋友消失（尤儿、酋长、大s），新的朋友进来，除了初中的同学群，这个群是我呆着最长的一个群了，没事聊聊哥你懂得，探讨下wordpress，氛围真的是很好，几年来都没有过冷场

寒也是群里消失的一份子，然后在今年的某一天突然出现在群里（当然后面复活的还有个尤儿，估计都是抗不住了改信春哥）

接着他消失了快一年多的站也终于在哥几个的催促下上线了

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cgrrr.com/" class="img"><img src="http://img.xsui.com/2010/07/xn___3_0m8dq5af09o_0001.jpg" alt="未标题-3.jpg" height="280" width="600"/></a></p>
<p>当初我们的WordPress群<sup>1218547</sup>里只有几个人,我、羊、午夜、莫良等等，寒好像也是那时候在里面认识的，还有尤儿、time、西瓜、文、废材、海海等等，几年来老的朋友消失（尤儿、酋长、大s），新的朋友进来，除了初中的同学群，这个群是我呆着最长的一个群了，没事聊聊哥你懂得，探讨下wordpress，氛围真的是很好，几年来都没有过冷场</p>
<p>寒也是群里消失的一份子，然后在今年的某一天突然出现在群里（当然后面复活的还有个尤儿，估计都是抗不住了改信春哥）</p>
<p>接着他消失了快一年多的站也终于在哥几个的催促下上线了</p>
<p>依然是那个有歧义的带着吐槽语气的cgrrr.com域名，这次放弃了wordpress，弄了个flash站点（其实哥怀疑他是忍受不住催促整了这份交差）</p>
<p>嗯，其实我是不会flash的~~所以我要带着酸酸的语气说一句：哥你out了，这都啥年代了还搞flash站</p>
<p>当然，寒的功底是不用说的，估计日后会再更新站点和功能</p>
<p>他以前的wp站没有截图了，找到一张以前在群里恶搞他的速绘</p>
<p><img src="http://img.xsui.com/2010/07/HAN.jpg" alt="HAN.jpg" height="735" width="500"/></p>
<p>-----------------------------------------------------------------</p>
<p>最近几天赶工，dedecms来着，没有找到开启全站伪静态的功能，改一下就得生成html，真累</p>
<p>最后说一句，这是软文</p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100625813" title="PS设计一个漂亮的游戏网站 2010.06.25">PS设计一个漂亮的游戏网站</a>(5)</li>
<li><a href="http://www.xsui.com/blog/20091205505" title="一些杂图 2009.12.5">一些杂图</a>(0)</li>
</ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.renniaofei.com" >任鸟飞</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100702899#comment-665" title="View the entire comment by 任鸟飞" >好漂亮啊，美工很厉害。</a></li>
<li><a class="commentor" href="http://www.henhaoqq.cn" >签名</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100702899#comment-650" title="View the entire comment by 签名" >第一次来  留个脚印  以后常来  呵呵</a></li>
<li><a class="commentor" href="http://amangs.com" >阿邙</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100702899#comment-637" title="View the entire comment by 阿邙" >的确很软 不过flash的确很不错的说。</a></li>
<li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100702899#comment-635" title="View the entire comment by 香水" >绝对是ak自动误判的，我没有把‘性’评论的关键字里，你小心啦~~~~~~</a></li>
<li><a class="commentor" href="http://www.wuyeah.com" >午夜</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100702899#comment-633" title="View the entire comment by 午夜" > <img src='http://www.xsui.com/wp-includes/images/smilies/icon_eek.gif' alt=':shock:' class='wp-smiley' />  我的评论被列入垃圾评论了？偶买噶，谁调戏我。 <img src='http://www.xsui.com/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100702899/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>PS设计一个漂亮的游戏网站</title>
		<link>http://www.xsui.com/blog/20100625813</link>
		<comments>http://www.xsui.com/blog/20100625813#comments</comments>
		<pubDate>Fri, 25 Jun 2010 11:41:10 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[模板插件]]></category>
		<category><![CDATA[转载收藏]]></category>
		<category><![CDATA[网页设计]]></category>
		<category><![CDATA[设计]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[ps]]></category>
		<category><![CDATA[模板]]></category>
		<category><![CDATA[教程]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-06-25-813.html</guid>
		<description><![CDATA[转载自http://www.pspsd.com 全球经典设计聚合网

翻译 全球经典设计聚合网

一个来自过www.grafpedia.com的高级网页设计教程，是游戏方面的，有兴趣的朋友有学习下，本人下方有查看原文，不懂的也可以在底部留言告诉我。

我将创建一个新文档与以下大小： 1000 x 1200 像素为单位）。 我将设置前景色为 # 1a1a1a，并使用 油漆桶工具，我将我的文档内单击一次。 以这种方式，我将创建网站的背景。 我将选择 圆角矩形工具 （设置为 6 像素半径），在下图中，我将创建 3 形状象。 这样就可以更好地看到我在做什么，我会用一个白色的颜色。 您必须创建此形状具有以下颜色： # 000000

]]></description>
			<content:encoded><![CDATA[<p>转载自<a href="http://www.pspsd.com">http://www.pspsd.com</a> 全球经典设计聚合网</p>
<p>翻译 全球经典设计聚合网</p>
<p>一个来自过<a href="http://www.grafpedia.com">www.grafpedia.com</a>的高级<a href="http://www.pspsd.com/" target="_blank" rel="external" title="全球教程聚合网">网页设计</a>教程，是游戏方面的，有兴趣的朋友有学习下，本人下方有查看原文，不懂的也可以在底部留言告诉我。</p>
<p>我将创建一个新文档与以下大小： 1000 x 1200 像素为单位）。 我将设置前景色为 # 1a1a1a，并使用 油漆桶工具，我将我的文档内单击一次。 以这种方式，我将创建网站的背景。 <br/>我将选择 圆角矩形工具 （设置为 6 像素半径），在下图中，我将创建 3 形状象。 这样就可以更好地看到我在做什么，我会用一个白色的颜色。 您必须创建此形状具有以下颜色： # 000000</p>
<p><img src="http://img.xsui.com/2010/06/1.jpg" title="1" height="720" width="600" alt="1" class="alignnone size-full wp-image-4975"/></p>
<p>我将选择上面的形状和我将去编辑 &gt; 变换 &gt; 和经纱会选择以下设置。</p>
<p><img src="http://img.xsui.com/2010/06/2.jpg" title="2" height="40" width="600" alt="2" class="alignnone size-full wp-image-4976"/> <br/>其他形状上，我将使用一个更多时间变形工具，但这次我会用另一个设置。</p>
<p><img src="http://img.xsui.com/2010/06/3.jpg" title="3" height="40" width="600" alt="3" class="alignnone size-full wp-image-4977"/></p>
<p>这是我的结果为止</p>
<p><img src="http://img.xsui.com/2010/06/4.jpg" title="4" height="720" width="600" alt="4" class="alignnone size-full wp-image-4978"/></p>
<p>现在我将用于所有形状添加同一图层样式。 请因为我们将在本教程中多次使用它，将此图层样式保存。 我将此图层样式 GP 类型的名称。</p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100710907" title="wordpress免插件实现影音播放 2010.07.10">wordpress免插件实现影音播放</a>(14)</li>
<li><a href="http://www.xsui.com/blog/20100702899" title="好友寒的站开始更新了 2010.07.2">好友寒的站开始更新了</a>(15)</li>
<li><a href="http://www.xsui.com/blog/20100430750" title="最近折腾wordpress的一些小结 2010.04.30">最近折腾wordpress的一些小结</a>(17)</li>
<li><a href="http://www.xsui.com/blog/20091222654" title="小站升级到WordPress2.9 2009.12.22">小站升级到WordPress2.9</a>(19)</li>
<li><a href="http://www.xsui.com/blog/20091205505" title="一些杂图 2009.12.5">一些杂图</a>(0)</li>
<li><a href="http://www.xsui.com/blog/20091203493" title="打造简单的基于box.net的下载页面 2009.12.3">打造简单的基于box.net的下载页面</a>(10)</li>
</ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100625813#comment-604" title="View the entire comment by 香水" >要的就是这种效果嘿嘿</a></li>
<li><a class="commentor" href="http://www.nexfr.com" >wahyle</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100625813#comment-603" title="View the entire comment by wahyle" >额。。咋一看确实以为进到谁的扣扣空间了 <img src='http://www.xsui.com/wp-includes/images/smilies/icon_arrow.gif' alt=':arrow:' class='wp-smiley' /> </a></li>
<li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100625813#comment-549" title="View the entire comment by 香水" >嗯，这是无耻的抄袭了QQ空间 <img src='http://www.xsui.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' /> </a></li>
<li><a class="commentor" href="http://www.underone.com" >underone</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100625813#comment-547" title="View the entire comment by underone" >这...</a></li>
<li><a class="commentor" href="" >sofast</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100625813#comment-536" title="View the entire comment by sofast" >竟然更新了.......软文么.....</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100625813/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>鸾鸟凤凰，日以远，燕雀乌鹊，巢堂檀。</title>
		<link>http://www.xsui.com/blog/20100528790</link>
		<comments>http://www.xsui.com/blog/20100528790#comments</comments>
		<pubDate>Fri, 28 May 2010 09:54:28 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[日志随笔]]></category>
		<category><![CDATA[天朝]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-05-28-790.html</guid>
		<description><![CDATA[祖国告诉我，我们是世界强国，要为中华民族伟大复兴而努力，但我的祖国但是世界强国？

祖国告诉我，我们的制度是社会主义，有着其他制度没有的优越性，但我的祖国制度有优越性？

祖国告诉我，我们每年的GDP都在增长，大好形势一片，稳定压倒一切，我的祖国形式大好？很稳定？

祖国在发展、祖国不富裕

祖国天灾人祸不断，但祖国有钱建迪斯尼，玩SB会、搞奥运，有钱搞豆腐渣工程，有胆玩弄平民百姓的人民，有权杀人放火，奸淫掳掠

]]></description>
			<content:encoded><![CDATA[<p>祖国告诉我，我们是世界强国，要为中华民族伟大复兴而努力，但我的祖国但是世界强国？</p>
<p><img src="http://img.xsui.com/2010/05/zrtn_002p135398e6_tn.jpg" style="WIDTH: 250px; DISPLAY: inline; FLOAT: right; HEIGHT: 242px" height="242" width="250"/>祖国告诉我，我们的制度是社会主义，有着其他制度没有的优越性，但我的祖国制度有优越性？</p>
<p>祖国告诉我，我们每年的GDP都在增长，大好形势一片，稳定压倒一切，我的祖国形式大好？很稳定？</p>
<p>祖国在发展、祖国不富裕</p>
<p>祖国天灾人祸不断，但祖国有钱建迪斯尼，玩SB会、搞奥运，有钱搞豆腐渣工程，有胆玩弄平民百姓的人民，有权杀人放火，奸淫掳掠</p>
<p>这天下还是不是共产党的天下？</p>
<p>上访女性被强奸，就在公安局对面</p>
<p>政府人员指使黑社会强制拆迁</p>
<p>城管暴力'执法'</p>
<p>撞死人赔钱就行</p>
<p>工厂死人政府急着隐瞒消息</p>
<p>不一而足</p>
<p>我对这个祖国彻底绝望了</p>
<p>我知道哪里都一样，国外也不是月亮就圆一些</p>
<p>但这是我的祖国，难道要我比上不足比下有余？</p>
<p>老外来中国是什么样？国人去国外是什么样？</p>
<p>我的祖国现在不是世界强国、顶多算一大国；没有什么社会主义优越性，就算有，也是当官的有优越性，有钱人有优越性，外国人有优越性</p>
<p>我的祖国每年GDP都在增长，但很多人都在温饱线上挣扎</p>
<p>是，我们现在的生活比起以前是好了无数倍，但这并不能否定祖国整天给西方人做最苦最累拿低工资的事实</p>
<p>没错，我的认识里，祖国就是一个包工头，人多、钱低、干事牢靠、人命不当回事，充充爆发户</p>
<p>哀莫大于心死，古人的文采就是好，我这个文笔差的人总是表达不出心中郁结之万一</p>
<p>我的共产党，我的中华人民共和国，你何时能挺直身子不在干贴钱卖肉的勾当？</p>
<p>最后一次写这种文字了，人生有大悲大喜，悲莫过于亡国灭族，亡国灭族不过眨眼之间，贴钱卖肉不以为耻，已经不是悲喜能形容了</p>
<p>只叹我敬爱的政府能蒙一时如何能骗万世，待的百年之后，必将留臭名于史书之上</p>
<p>鸾鸟凤凰，日以远，燕雀乌鹊，巢堂檀。</p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100521789" title="中国大陆最无耻的十大企业 2010.05.21">中国大陆最无耻的十大企业</a>(6)</li>
<li><a href="http://www.xsui.com/blog/20100417734" title="上海世博会严格检测食品中转基因成份和有毒有害物质 2010.04.17">上海世博会严格检测食品中转基因成份和有毒有害物质</a>(1)</li>
<li><a href="http://www.xsui.com/blog/20091219653" title="伟大的天朝万能的天朝 2009.12.19">伟大的天朝万能的天朝</a>(32)</li>
<li><a href="http://www.xsui.com/blog/20091117301" title="鲁迅终于滚蛋了!恳请大家转载 2009.11.17">鲁迅终于滚蛋了!恳请大家转载</a>(12)</li>
</ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://oblue.net/" >oblue</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100528790#comment-540" title="View the entire comment by oblue" >好优美的主题... <img src='http://www.xsui.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </a></li>
<li><a class="commentor" href="http://ggg.im" >三根</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100528790#comment-522" title="View the entire comment by 三根" > <img src='http://www.xsui.com/wp-includes/images/smilies/icon_eek.gif' alt=':shock:' class='wp-smiley' />  我喜欢这样的文字！</a></li>
<li><a class="commentor" href="http://twiter.tk" >twiter.tk</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100528790#comment-417" title="View the entire comment by twiter.tk" >  香水的茅头很锋利～～   我等贱民只能围观～～</a></li>
<li><a class="commentor" href="http://twiter.tk" >twiter.tk</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100528790#comment-416" title="View the entire comment by twiter.tk" > <img src='http://www.xsui.com/wp-includes/images/smilies/icon_twisted.gif' alt=':twisted:' class='wp-smiley' />  香水的茅头哼锋利～～ <img src='http://www.xsui.com/wp-includes/images/smilies/icon_question.gif' alt=':?:' class='wp-smiley' />  我等贱民只能围观～～</a></li>
<li><a class="commentor" href="http://xux.me" >xux</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100528790#comment-377" title="View the entire comment by xux" >这个人的广告泛滥了！！建议香水删除他的链接，我2个站都被他留言N多！</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100528790/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>中国大陆最无耻的十大企业</title>
		<link>http://www.xsui.com/blog/20100521789</link>
		<comments>http://www.xsui.com/blog/20100521789#comments</comments>
		<pubDate>Fri, 21 May 2010 13:53:30 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[日志随笔]]></category>
		<category><![CDATA[转载收藏]]></category>
		<category><![CDATA[天朝]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-05-21-789.html</guid>
		<description><![CDATA[《世界企业家》杂志(bossline.com)编制的2007年"中国大陆最无耻的十大企业"排行榜。　

　一，中国移动(国有完全垄断企业)　

　《世界企业家》杂志(bossline.com)认为：作为全球最赚钱的电信公司，中国移动绝对不是国人的骄傲，因为移动的钱不是赚的，他是从国人身上一刀一刀割的。从北美的洛杉矶打倒中国的上海，每60秒钟大约三美分，而从中国的北京打倒50公里外的廊坊，每60秒钟需要九毛钱。从美国的东海岸的纽约漫游到西海岸的旧金山，漫游费是0，而从中国的上海漫游到三十公里外的昆山，漫游费是一分钟一块三。堂堂十三亿人口的全球第一人口大国，因为行政垄断竟然仅仅只有两家移动公司，而另一家联通还是移动的同胞兄弟。所以移动公司只要紧紧握住"国有垄断"这把锋利的砍刀，无论我们多么愤慨和无奈也只能是垄断公司刀下待宰的羔羊。　

]]></description>
			<content:encoded><![CDATA[<p>《世界企业家》杂志(bossline.com)编制的2007年"中国大陆最无耻的十大企业"排行榜。　</p>
<p>　<img src="http://img.xsui.com/2010/05/2007741131109621.gif" style="DISPLAY: inline; FLOAT: right" height="124" width="110"/>一，中国移动(国有完全垄断企业)　</p>
<p>　《世界企业家》杂志(bossline.com)认为：作为全球最赚钱的电信公司，中国移动绝对不是国人的骄傲，因为移动的钱不是赚的，他是从国人身上一刀一刀割的。从北美的洛杉矶打倒中国的上海，每60秒钟大约三美分，而从中国的北京打倒50公里外的廊坊，每60秒钟需要九毛钱。从美国的东海岸的纽约漫游到西海岸的旧金山，漫游费是0，而从中国的上海漫游到三十公里外的昆山，漫游费是一分钟一块三。堂堂十三亿人口的全球第一人口大国，因为行政垄断竟然仅仅只有两家移动公司，而另一家联通还是移动的同胞兄弟。所以移动公司只要紧紧握住"国有垄断"这把锋利的砍刀，无论我们多么愤慨和无奈也只能是垄断公司刀下待宰的羔羊。　</p>
<p>　二，中国石油天然气集团(国有完全垄断企业)　</p>
<p>　中国石油终于超过了丰田汽车，荣赝亚洲最赚钱公司的桂冠。可是恐怕全世界没有一个人认为中石油可以和丰田相提并论。当丰田制造的汽车跑遍了中国大街小巷的时候，中石油在japan连一滴汽油也卖不出去。但是这并不妨碍中石油可以在国内呼风唤雨横行霸道。中石油从大庆开采的石油，每桶成本不到十美元。中石化从波斯湾进口的石油每桶大约六十美元，可是中石油竟然能够把从大庆开采的石油卖到和波斯湾进口的石油一样的价格。每升五块钱的汽油甚至比美国加了资源税和*的价格都高。看看一天天往上暴涨的油价，再看看中石油半年赚了一千亿的银子，除了苦笑和愤怒，我们也只能乖乖的给人家掏钱。谁教人家是国有的呢？　</p>
<p>　三，中国商(农业)银行(国有垄断企业)　</p>
<p>　服务是中国特色，收费和国际接轨，贷款利率是中国特色，存款利率和国际接轨，赔钱的时候告诉国人说，自己是全民所有制企业，财政部就手忙脚乱拿着纳税人的银子，给工商银行动辄几千亿的坏帐买单。赚钱的时候告诉国人说自己是海外上市企业，然后将大把大把从国人腰包里搜刮来的银子奉献给国外的同行。　</p>
<p>　四，一汽集团(国有垄断企业)　　</p>
<p>五十年前，一汽制造出第一辆解放卡车的时候，韩国人连手扶拖拉机也造不出来。五十年后，当韩国人的现代占领了整个首都机场的时候，一汽的红旗还在顶着奥迪几十年前那个老壳招摇撞骗。二十年前，国家为了迅速提高国产汽车的制造水平，本着"市场换技术"的战略，为一汽引进了大众和丰田等世界顶尖的汽车公司。二十年后，大众丰田叱咤风云横行中国的时候，这个不争气的败家子儿不但什么也没学会，还把自己的老本给丢了。甚至直到现在那个破破烂烂的红旗竟然用的还是日产的发动机。十年前的奇瑞和吉利还没有出生，一汽的红旗就是国人唯一的骄傲和希望。十年后的今天，奇瑞和吉利奋发图强茁壮成长。一个月的产量比红旗三年的产量加在一起都多。而那个破破烂烂的红旗早已经成了国人的耻辱。更加让人气愤的是，一汽为了敷衍国人对于自己不争的指责，把丰田皇冠的商标给拆了，告诉我们这是红旗3。给马自达6换一个外壳告诉我们这是奔腾。活脱脱一个败家子儿加大骗子。　</p>
<p>　五，中国人保集团(国有垄断企业)　　</p>
<p>人保公司一部普通五座汽车的强制险成本不到200元，一年的保费征收大约要1000元，人保交强险的毛利可以达到400%，人保公司一份航空意外险的成本不到一元，但是旅客的购买成本是20元，考虑到一些发行费用，人保的意外险净利可以达到700%，马克思曾经说过，"如果有100%的利润，资本家们会挺而走险；如果有200%的利润，资本家们会藐视法律；如果有300%的利润，那么资本家们便会践踏世间的一切"不知道这个口口声声代表国家利益和全民利益的人民保险公司为什么比"践踏世间一切"的资本家还要心狠手辣？</p>
<p>　　六，国家邮(国家完全垄断机构)　</p>
<p>　《世界企业家》杂志(bossline.com)一位读者曾经到邮局邮寄几本书，邮局的工作人员仔细的检查读者的书后，把一页夹在书中的信纸给抽出来，告诉他这一页纸不允许夹在书中，必须要通过信件才能寄出。读者问为什么，人家说是规定。读者再问，人家连理我都不理我。我还曾经到邮局寄过一些笔记本，当拜托工作人员用纸箱给我包装时，工作人员告诉我，笔记本不能寄包裹，只能当信件寄。我问为什么，人家说是规定。可怜我几十本的笔记要被按克数计费，而且每个"信件"还不能超过两公斤。每次和邮局打交道的过程都让人身心疲惫不堪回首，恶劣的服务态度，匪夷所思的内部规定，僵硬扭曲的教条主义。没办法，谁教人家头顶顶着"国家"两个字呢　</p>
<p>　七，华北高速公路(国有垄断企业)　　</p>
<p>海南的香蕉一毛五分钱一斤，烂在地里无人问津，北京的香蕉两块五一斤，昂贵的价格同样无人问津，昂贵的高速公路收费把海南和北京隔绝在了两个遥远的星球。事实上目前全世界90%的收费公路都在我国境内，而且收费的金额高到让人难以承受的地步。从北京到上海的过路费大约六七百元，基本和一张机票相当。要知道就是在比我们富裕的多的美国，从纽约到华盛顿的过路费也不到区区十个美元，而且美国的高路公路百分之九十都是完全免费。没办法，此路是我开，此站是我载，要想从此过，留下买路财！　　</p>
<p>八，东风汽车(国有垄断企业)　　</p>
<p>如果说一汽集团在委身大众的时候，还知道留下一个破破烂烂的红旗敷衍众口。那么东风在投靠日产的时候基本已经彻底的放弃了自己的责任。他的老直气壮的说，"中国汽车工业发展的最终方向，就是融入全球的六加三等九大集团"，在和日产全盘合资后，马上就停产了东风小王子，解散了东风研究院。辞退了研究开发人员，心甘情愿的做起了日产和标志的傀儡。带头开始了对民族汽车工业的绞杀。当东风卡车的装备的发动机已经全部变成了康明思和日产柴的时候，你还期望他能拥有一颗民族心吗？</p>
<p>九，国家电网　　</p>
<p>号称中国第一资本集团,一个电工 年薪就有上10万,赚了多少钱了,电费就没降过多少。"这一关系国计民生的巨额工程，并未纳入国家'十一五'规划纲要，但竟然越过国务院和全国人大的决策与监督，直接获得了国家发改委的批准。" 建国以来最大的电力建设项目，正身陷垄断之议! 国家电网公司和山西、河南、湖北同时召开晋东南－南阳－荆门1000千伏特高压交流试验示范工程建设誓师动员大会。而此时，以个性刚直敢言而被业内称为"电力斗士"的杨名舟再次上书国务院直指国家电网公司垄断，此前他曾上书国务院直言"电力改革基本不成功"。报告立即引起了国务院的关注。"推进派"和"反对派"围绕着"特高压电网上马与否"的一场激辩，正在成为这个秋冬之交最引人注目的电力事件。如果全国铺开特高压交流电网，全国一张网即宣告形成，垄断在技术上就形成了。这与"5号文件"确定的发展区域电网、实行输配分开的目标相悖。1000千伏的特高压会使目前区域电网的500千伏网架解列成为配电电网，从体制上、技术上彻底堵死了区域电网公司的发展之路，其最根本的目的是维护垄断管理体制。　　</p>
<p>十，中国各大学　　</p>
<p>为何把大学说成企业？因为中国的大学都是以赢利为目的的。国家每年投入多少钱,什么重大成果都没有! 大学学术却不仅仅是一个简单的道德问题，这些年学术的那么多，难道都是因为他们缺乏最基本的学术道德吗？问题往往没有那么简单，也许当许多人都存在某种道德沦丧的时候，我们就应该开始关心思考我们的制度了，因为制度比道德更有约束力和激励性。因此，谈到大学的学术，首先想到的应该是大学的制度问题而非学术本身。中国的教育体制独具特色，随着改革开放的深入，大学也进一步市场化和产业化了，但大学毕竟不是企业，大学的根本任务在于培养人才而不是生成物品，大学的产业化应该遵循何种模式进行必将成为问题的关键，或者说，一个不成熟的大学产业化方案本身也许已经给后来的学术埋下了伏笔。　　那么，我们今天的学术到底与高校产业化有无关系呢？显然有，因为学术在高校产业化后明显地严重了。其实道理很简单，大学产业化了，产业化了东西就必须有很好的量化方式，否则就无法按照比较优势的原则分配资源。如果说没有那么多论文发表，国家就不可能给那么多基金让你做研究，因为花钱是要有收益的，道理就那么简单。于是，大学就给自己的员工和学生定指标，员工和学生为了学校和自己的生存就必须迎合这种量化方式，一场以论文和专著数量为目标的学术竞赛便由此拉开，恶性竞争也由此形成。其实，几乎所有的人都明白，当然也包括搞学术的人本身都知道学术研究不是一个市场化过程，但学术研究本身却需要钱，这样一个内在矛盾便产生了，一个学术研究需要钱的过程转化为了一个为了钱而强行进行学术研究的过程，完全地本末倒置了，如果说学术研究本身具有一定规律性的话，那么把学术和挣钱联系在一起本身就是一个错误。　　但是，我们有更好的量化学术研究成果的标准吗？没有。我们的大学还能这样市场化下去吗？我想也不行，一个半企业化半行政化的高校再来一个不伦不类的产业化，我想本身就是一件遗憾的事情，更不必说学术这种小事了。因此，反对学术任重而道远，因为它只是高校产业化的一个副产品。</p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100528790" title="鸾鸟凤凰，日以远，燕雀乌鹊，巢堂檀。 2010.05.28">鸾鸟凤凰，日以远，燕雀乌鹊，巢堂檀。</a>(6)</li>
<li><a href="http://www.xsui.com/blog/20100417734" title="上海世博会严格检测食品中转基因成份和有毒有害物质 2010.04.17">上海世博会严格检测食品中转基因成份和有毒有害物质</a>(1)</li>
<li><a href="http://www.xsui.com/blog/20091219653" title="伟大的天朝万能的天朝 2009.12.19">伟大的天朝万能的天朝</a>(32)</li>
<li><a href="http://www.xsui.com/blog/20091117301" title="鲁迅终于滚蛋了!恳请大家转载 2009.11.17">鲁迅终于滚蛋了!恳请大家转载</a>(12)</li>
</ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100521789#comment-542" title="View the entire comment by 香水" >恩恩，还在修正中</a></li>
<li><a class="commentor" href="http://www.yzrsc.cn" >万艾可</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100521789#comment-541" title="View the entire comment by 万艾可" >移动现在没有温游了以，是以前的。</a></li>
<li><a class="commentor" href="http://www.crkmaya.com" >佐佐木</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100521789#comment-514" title="View the entire comment by 佐佐木" > <img src='http://www.xsui.com/wp-includes/images/smilies/icon_mad.gif' alt=':mad:' class='wp-smiley' />  很不习惯的风格。。。 既然点图片才能插入。具体日志</a></li>
<li><a class="commentor" href="" >skyey</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100521789#comment-475" title="View the entire comment by skyey" >移动垄断不敢苟同哦，如果移动能够垄断的话，电信和联通都要倒闭了。
应该说是国家工信部垄断，控制着这几...</a></li>
<li><a class="commentor" href="http://www.chaobing.org" >炒冰机</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100521789#comment-368" title="View the entire comment by 炒冰机" >就是这样无耻，我们小老百姓又能怎样？</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100521789/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>手机壁纸素材</title>
		<link>http://www.xsui.com/blog/20100516787</link>
		<comments>http://www.xsui.com/blog/20100516787#comments</comments>
		<pubDate>Sun, 16 May 2010 09:25:01 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[相册]]></category>
		<category><![CDATA[壁纸]]></category>
		<category><![CDATA[图片]]></category>
		<category><![CDATA[美图]]></category>
		<category><![CDATA[手机]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-05-16-787.html</guid>
		<description><![CDATA[收集的一些可以作为手机壁纸的图片，前部分图片可是流传了很广的哟

Related Posts一些杂图(0)

Recent Comments

]]></description>
			<content:encoded><![CDATA[<p><img src="http://img.xsui.com/2010/05/pinkpapaya_2006040817297.jpg" alt="pinkpapaya,2006040817297.jpg" height="530" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_2006040817305.jpg" alt="pinkpapaya,2006040817305.jpg" height="465" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_2006040817318.jpg" alt="pinkpapaya,2006040817318.jpg" height="504" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_2006040817374.jpg" alt="pinkpapaya,2006040817374.jpg" height="465" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408172935.jpg" alt="pinkpapaya,20060408172935.jpg" height="465" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408173019.jpg" alt="pinkpapaya,20060408173019.jpg" height="465" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408173132.jpg" alt="pinkpapaya,20060408173132.jpg" height="493" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408173156.jpg" alt="pinkpapaya,20060408173156.jpg" height="482" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408173220.jpg" alt="pinkpapaya,20060408173220.jpg" height="467" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408173239.jpg" alt="pinkpapaya,20060408173239.jpg" height="465" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408173332.jpg" alt="pinkpapaya,20060408173332.jpg" height="640" width="640"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408173359.jpg" alt="pinkpapaya,20060408173359.jpg" height="465" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408173434.jpg" alt="pinkpapaya,20060408173434.jpg" height="465" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408174725.jpg" alt="pinkpapaya,20060408174725.jpg" height="482" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408174817.jpg" alt="pinkpapaya,20060408174817.jpg" height="465" width="700"/> <br/><img src="http://img.xsui.com/2010/05/pinkpapaya_20060408174841.jpg" alt="pinkpapaya,20060408174841.jpg" height="535" width="800"/></p>
<p><img src="http://img.xsui.com/2010/05/Pepper_Robot_II_by_Artgerm.jpg" alt="Pepper_Robot_II_by_Artgerm.jpg" height="900" width="600"/></p>
<p><br/></p>
<p><img src="http://img.xsui.com/2010/05/4bb7eaf90bc3f7c626adb.jpg" alt="4bb7eaf90bc3f7c626adb.jpg" height="291" width="480"/> <br/><img src="http://img.xsui.com/2010/05/4bb7eaf93b93790a65d60.jpg" alt="4bb7eaf93b93790a65d60.jpg" height="319" width="480"/> <br/><img src="http://img.xsui.com/2010/05/4bb7eaf99d6399b9b815f_000.jpg" alt="4bb7eaf99d6399b9b815f&amp;000.jpg" height="480" width="722"/> <br/><img src="http://img.xsui.com/2010/05/4bb7eaf943f973afa93bb.jpg" alt="4bb7eaf943f973afa93bb.jpg" height="720" width="480"/> <br/><img src="http://img.xsui.com/2010/05/4bb7eaf952af53436a7fa.jpg" alt="4bb7eaf952af53436a7fa.jpg" height="334" width="500"/> <br/>收集的一些可以作为手机壁纸的图片，前部分图片可是流传了很广的哟</p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20091205505" title="一些杂图 2009.12.5">一些杂图</a>(0)</li>
</ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100516787/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>测试离线发布相册功能</title>
		<link>http://www.xsui.com/blog/20100516764</link>
		<comments>http://www.xsui.com/blog/20100516764#comments</comments>
		<pubDate>Sun, 16 May 2010 08:10:10 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[相册]]></category>
		<category><![CDATA[免插件]]></category>
		<category><![CDATA[非插件]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-05-16-764.html</guid>
		<description><![CDATA[测试，这个相册是基于wordpress的主题制作而来，不需要任何插件，文字内容作为封面的摘要，图片自动读取

Related Postswordpress免插件实现影音播放(14)

最近折腾wordpress的一些小结(17)

小站升级到WordPress2.9(19)

16行jQuery代码实现锚点scoll效果的修正版本(6)

]]></description>
			<content:encoded><![CDATA[<p><img src="http://img.xsui.com/2010/05/tamiya_super_tom_ghody.jpg" alt="tamiya_super_tom_ghody.jpg" height="290" width="470"/></p>
<p><img src="http://img.xsui.com/2010/05/tamiya_fully_bergkaiser.jpg" alt="tamiya_fully_bergkaiser.jpg" height="290" width="470"/> <br/><img src="http://img.xsui.com/2010/05/tamiya_fully_black_saber.jpg" alt="tamiya_fully_black_saber.jpg" height="290" width="470"/> <br/><img src="http://img.xsui.com/2010/05/tamiya_fully_brocken_gigant.jpg" alt="tamiya_fully_brocken_gigant.jpg" height="290" width="470"/> <br/><img src="http://img.xsui.com/2010/05/tamiya_fully_brocken_gigant_bs.jpg" alt="tamiya_fully_brocken_gigant_bs.jpg" height="290" width="470"/> <br/>测试，这个相册是基于wordpress的主题制作而来，不需要任何插件，文字内容作为封面的摘要，图片自动读取</p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100710907" title="wordpress免插件实现影音播放 2010.07.10">wordpress免插件实现影音播放</a>(14)</li>
<li><a href="http://www.xsui.com/blog/20100430750" title="最近折腾wordpress的一些小结 2010.04.30">最近折腾wordpress的一些小结</a>(17)</li>
<li><a href="http://www.xsui.com/blog/20091222654" title="小站升级到WordPress2.9 2009.12.22">小站升级到WordPress2.9</a>(19)</li>
<li><a href="http://www.xsui.com/blog/20100717941" title="16行jQuery代码实现锚点scoll效果的修正版本 2010.07.17">16行jQuery代码实现锚点scoll效果的修正版本</a>(6)</li>
<li><a href="http://www.xsui.com/blog/20091203493" title="打造简单的基于box.net的下载页面 2009.12.3">打造简单的基于box.net的下载页面</a>(10)</li>
<li><a href="http://www.xsui.com/blog/20091121312" title="三个WordPress静态加速插件比较 2009.11.21">三个WordPress静态加速插件比较</a>(6)</li>
</ul><h3>Recent Comments</h3><ul></ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100516764/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>最近折腾wordpress的一些小结</title>
		<link>http://www.xsui.com/blog/20100430750</link>
		<comments>http://www.xsui.com/blog/20100430750#comments</comments>
		<pubDate>Thu, 29 Apr 2010 16:33:00 +0000</pubDate>
		<dc:creator>香水</dc:creator>
				<category><![CDATA[日志随笔]]></category>
		<category><![CDATA[主题]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[免插件]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[短代码]]></category>
		<category><![CDATA[非插件]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[模板]]></category>

		<guid isPermaLink="false">http://www.xsui.com/blog/2010-04-30-750.html</guid>
		<description><![CDATA[上一版的主题制作失败了，越到后面越找不到方向，虽然当初只是想尝试一下不同的风格，但毕竟毫无头绪的开头不是那么容易找到应有的道路，不过也算是积累了一些东西 

总结这几个月来，最大的变化就是精简插件了，以前是插件不适合或者是太拖速度，在前年利用wp的主题功能制作了相册之后，也一直在往能不用插件就不用插件的方向上去，上一版的制作中，搜索到了很多利用代码替代插件的功能，比如非插件方式的分页、字符的处理、ajax的评论、视频和mp3的短代码、读者墙、文章缩略图、简单的统计、自动更新的共享下载以及音乐盒等等

]]></description>
			<content:encoded><![CDATA[<p>上一版的主题制作失败了，越到后面越找不到方向，虽然当初只是想尝试一下不同的风格，但毕竟毫无头绪的开头不是那么容易找到应有的道路，不过也算是积累了一些东西 <a href="http://img.xsui.com/2010/07/xn___1_0m8dq5af09o1.png" rel="lightbox"><img src="http://img.xsui.com/2010/07/zrtn_002n26539f68_tn1.jpg" style="WIDTH: 250px; DISPLAY: inline; FLOAT: right; HEIGHT: 233px" height="233" width="250"/></a></p>
<p>总结这几个月来，最大的变化就是精简插件了，以前是插件不适合或者是太拖速度，在前年利用wp的主题功能制作了相册之后，也一直在往能不用插件就不用插件的方向上去，上一版的制作中，搜索到了很多利用代码替代插件的功能，比如非插件方式的分页、字符的处理、ajax的评论、视频和mp3的短代码、读者墙、文章缩略图、简单的统计、自动更新的共享下载以及音乐盒等等</p>
<p>以下是我在制作主题过程中参考的一些网友共享出的代码，敬请围观</p>
<ul>
<li><a href="http://zww.me/archives/24671" title="用代码武装你的 wordpress">用代码武装你的wordpress [part 1]</a></li>
<li><a href="http://zww.me/archives/24672" title="用代码武装你的 wordpress">用代码武装你的wordpress [part 2]</a></li>
<li><a href="http://wange.im/paginate-comments-without-plugins-in-wordpress.html">WordPress 免插件实现评论分页导航</a></li>
<li><a href="http://wange.im/readerwall-on-sidebar-without-plugins.html" title="WordPress 免插件版侧边栏读者墙">《WordPress 免插件版侧边栏读者墙》</a></li>
<li><a href="http://immmmm.com/friend-links-add-favicon.html" target="_blank" title="给友情链接添个 Favicon 美化美化">《给友情链接添个 Favicon 美化美化》</a></li>
<li><a href="http://kan.willin.org/?p=1271">WordPress 內置嵌套評論專用 Ajax comments</a></li>
<li><a href="http://www.neoease.com/wordpress-thumb-trick/">巧用 WordPress 缩略图</a></li>
<li><a href="http://zou.lu/change-hosting-and-cache-gravatar/">更换空间 + 再次提速之 Gravatar 头像缓存</a></li>
<li><a href="http://paranimage.com/wordpress-shortcode/" rel="bookmark" title="精通WordPress短代码">精通WordPress短代码</a></li>
</ul>
<p>以上是印象最深刻的几个，还有很多，只是几次装系统忘了备份收藏，待日后添加，这些实用的修改都是可以直接应用到主题里的，比如缩略图，不仅仅是做首页的文章缩略图，对于修改wordpress主题制作而成的相册可以直接解决相册封面的问题</p>
<p>wordpress的短代码就更强大了，我依靠他搞定了需要插件才能使用的视频播放和MP3播放，并且使用的方法都一样，在文章内插入[<span style="COLOR: #fff">]</span>flv 地址]（[<span style="COLOR: #fff">]</span>mp3 地址]）</p>
<p>我准备在现在的主题完工后，再完整的整理一份可用的资料出来，毕竟拿人的手短嘛^_^</p>
<p><span style="COLOR: #fff">QQREADER817FFFA9CBB4B617</span></p>
<h3>Related Posts</h3><ul><li><a href="http://www.xsui.com/blog/20100710907" title="wordpress免插件实现影音播放 2010.07.10">wordpress免插件实现影音播放</a>(14)</li>
<li><a href="http://www.xsui.com/blog/20091222654" title="小站升级到WordPress2.9 2009.12.22">小站升级到WordPress2.9</a>(19)</li>
<li><a href="http://www.xsui.com/blog/20100717941" title="16行jQuery代码实现锚点scoll效果的修正版本 2010.07.17">16行jQuery代码实现锚点scoll效果的修正版本</a>(6)</li>
<li><a href="http://www.xsui.com/blog/20100516764" title="测试离线发布相册功能 2010.05.16">测试离线发布相册功能</a>(0)</li>
<li><a href="http://www.xsui.com/blog/20091203493" title="打造简单的基于box.net的下载页面 2009.12.3">打造简单的基于box.net的下载页面</a>(10)</li>
<li><a href="http://www.xsui.com/blog/20100625813" title="PS设计一个漂亮的游戏网站 2010.06.25">PS设计一个漂亮的游戏网站</a>(5)</li>
<li><a href="http://www.xsui.com/blog/20091121312" title="三个WordPress静态加速插件比较 2009.11.21">三个WordPress静态加速插件比较</a>(6)</li>
</ul><h3>Recent Comments</h3><ul><li><a class="commentor" href="http://www.ading123.com" >阿鼎</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100430750#comment-494" title="View the entire comment by 阿鼎" >博客特效很牛！</a></li>
<li><a class="commentor" href="http://www.underone.com" >underone</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100430750#comment-322" title="View the entire comment by underone" >持续关注香水的风格:)</a></li>
<li><a class="commentor" href="" >香水</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100430750#comment-315" title="View the entire comment by 香水" >本身不需要插件就可以嵌套回复的，参考默认的主题~~需要后台开启</a></li>
<li><a class="commentor" href="http://www.liurongxing.com" >JavasBoy</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100430750#comment-313" title="View the entire comment by JavasBoy" >香水大哥，我这几天在折腾主题，WP现在可以不用插件就有嵌套回复吗？</a></li>
<li><a class="commentor" href="" >马屁精</a> : <a class="comment_content" href="http://www.xsui.com/blog/20100430750#comment-241" title="View the entire comment by 马屁精" >[url l=http://www.xsui.com/blog/2010-04-30-750.htm...</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.xsui.com/blog/20100430750/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>
