<?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>xslidian 的博客</title>
	<atom:link href="http://lidian.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://lidian.info</link>
	<description>又一个 WordPress 博客</description>
	<lastBuildDate>Tue, 08 Jun 2010 05:07:15 +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>译：css3 太阳系模拟</title>
		<link>http://lidian.info/2010/06/our-solar-system-in-css3/</link>
		<comments>http://lidian.info/2010/06/our-solar-system-in-css3/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 05:05:33 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=99</guid>
		<description><![CDATA[利用 CSS3 的圆角、变换和动画功能绘制太阳系。效果非常惊人有趣。]]></description>
			<content:encoded><![CDATA[<p><em>原文：</em><a class="vt-p" href="http://neography.com/journal/our-solar-system-in-css3/" target="_blank"><em>CSS3 模拟我们的太阳系</em></a><em> by Alex Girón<br />
日期：2010年5月18日</em></p>
<p><em>利用 CSS3 的圆角、变换和动画功能绘制太阳系。效果非常惊人有趣。</em></p>
<p>我研究了几个月的 CSS3，了解其新功能，并体验了各浏览器的支持程度。几周前我放出了第一个实验，是关于 @font-face 和变换功能的。这次呢，我进行的圆角矩形实验，原以为会有些无聊，结果非常有意思。</p>
<h2>主流浏览器中的太阳系</h2>
<div id="attachment_101" class="wp-caption aligncenter" style="width: 630px"><a class="vt-p" href="http://lidian.info/media/solarsystem/" target="_blank"><img class="size-full wp-image-101" title="solar_system" src="http://lidian.info/wp-content/uploads/2010/06/solar_system.jpg" alt="" width="620" height="625" /></a><p class="wp-caption-text">主流浏览器中的太阳系</p></div>
<p><a class="vt-p" href="http://lidian.info/media/solarsystem/" target="_blank">亲自体验下</a>，我只用了 CSS 和 HTML 就完成了太阳系的简单模拟。</p>
<p>要获得最佳体验请使用 Safari 浏览，chrome 中动画有点卡。</p>
<h2>细节</h2>
<p>轨道和行星都是通过 border-radius 生成的，而动画是通过 –webkit animation 动画属性和变换功能实现的。以下是所用代码的示例：</p>
<h3>圆角边框</h3>
<p><code> </code></p>
<p><code> </code></p>
<p><code></p>
<pre>ul.solarsystem li.sun {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}</pre>
<p></code></p>
<h3>动画 与变换</h3>
<p><code> </code></p>
<p><code> </code></p>
<p><code></p>
<pre>ul.solarsystem li {
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:orbit;
}
ul.solarsystem li.earth span {
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -webkit-animation-name:moon;
}
ul.solarsystem li.mercury {-webkit-animation-duration:5s;}
ul.solarsystem li.venus {-webkit-animation-duration:8s;}
ul.solarsystem li.earth {-webkit-animation-duration:12s;}
ul.solarsystem li.earth span {-webkit-animation-duration:2s;}
ul.solarsystem li.mars {-webkit-animation-duration:20s;}
ul.solarsystem li.asteroids_meteorids {-webkit-animation-duration:50s;}
ul.solarsystem li.jupiter {-webkit-animation-duration:30s;}
ul.solarsystem li.saturn {-webkit-animation-duration:60s;}
ul.solarsystem li.uranus {-webkit-animation-duration:70s;}
ul.solarsystem li.neptune {-webkit-animation-duration:100s;}
ul.solarsystem li.pluto {-webkit-animation-duration:120s;}

@-webkit-keyframes orbit {
from { -webkit-transform:rotate(0deg) }
to { -webkit-transform:rotate(360deg) } }</pre>
<p></code><br />
动画和变换功能目前只在 –webkit 浏览器中有效，其他主流浏览器——当然 IE 除外——只显示通过 border-radius 渲染的静态版本太阳系。</p>
<h2>Internet Explorer 的平行扁宇宙：</h2>
<div id="attachment_100" class="wp-caption aligncenter" style="width: 630px"><a class="vt-p" href="http://lidian.info/wp-content/uploads/2010/06/solar_system_ie.jpg"><img class="size-full wp-image-100" title="solar_system_ie" src="http://lidian.info/wp-content/uploads/2010/06/solar_system_ie.jpg" alt="" width="620" height="623" /></a><p class="wp-caption-text">IE 中的太阳系</p></div>
<p>嗯，Internet Explorer 眼里我们的宇宙无聊得欠扁。</p>
<p>如您所见，现在几行 CSS 就可以实现令人印象灰常深刻的效果。</p>
<p>哦，我承认……我把冥王星留下来了 <img src='http://lidian.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/06/our-solar-system-in-css3/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>+S 扩展：让 Chrome 一键切换到 https 连接</title>
		<link>http://lidian.info/2010/05/add-s-extension-for-chrome/</link>
		<comments>http://lidian.info/2010/05/add-s-extension-for-chrome/#comments</comments>
		<pubDate>Wed, 26 May 2010 06:08:04 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[开发]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chrome 扩展]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=89</guid>
		<description><![CDATA[要问 http 和 https 在浏览者使用方面有何差别，恐怕只是地址栏中有没有“s”的关系了。
可是自从 Chrome 坚决改换 GTK+ UI 之后，“http://”也随之被隐藏，因此，当您打算切换到 https 连接时，需要手动把“https://”完整输入，再按下回车，才能达到目的——好麻烦的说！
于是偶写了这个简单的 Chrome 扩展。安装后，如果您浏览的是 http 页面，地址栏中会出现“+s”按钮。点击就可以切换到 https 连接了！~
特定地区的用户请注意，虽然偶添加了 www.google.com.hk 转向 www.google.com 的功能，但如果您没有“禁用地区转向”（NCR）的 Cookies，还是会被重定向到地区站的主页，并丢失当前的搜索关键词！所以使用前请务必先访问 https://www.google.com/ncr 获取该 Cookies 记忆，一劳永逸！
扩展库下载 本地下载
注：写这个扩展的目的不是为了进行自动转向（而且页面动作扩展也不大适合那样做）。如果您需要自动转向功能，可以尝试内容脚本扩展。（参阅 Ray Chow 的博文）
]]></description>
			<content:encoded><![CDATA[<p>要问 http 和 http<strong>s</strong> 在浏览者使用方面有何差别，恐怕只是地址栏中有没有“s”的关系了。<br />
可是自从 Chrome <a class="vt-p" href="http://www.google.org.cn/posts/chrome-dev-503960-20100506.html" target="_blank">坚决改换 GTK+ UI</a> 之后，“http://”也随之被隐藏，因此，当您打算切换到 https 连接时，需要<strong>手动把“https://”完整输入，再按下回车</strong>，才能达到目的——好麻烦的说！</p>
<p>于是偶写了这个简单的 Chrome 扩展。安装后，如果您浏览的是 http 页面，地址栏中会出现“+s”按钮。点击就可以切换到 https 连接了！~</p>
<div id="attachment_90" class="wp-caption aligncenter" style="width: 404px"><a class="vt-p" href="http://lidian.info/wp-content/uploads/2010/05/adds.jpg"><img class="size-full wp-image-90" title="“+s”扩展显示效果" src="http://lidian.info/wp-content/uploads/2010/05/adds.jpg" alt="" width="394" height="63" /></a><p class="wp-caption-text">“+s”扩展的显示效果</p></div>
<p>特定地区的用户请注意，虽然偶添加了 www.google.com.hk 转向 www.google.com 的功能，但如果您没有“禁用地区转向”（NCR）的 Cookies，还是会被重定向到地区站的主页，并<strong>丢失当前的搜索关键词</strong>！所以使用前请务必先访问 <a class="vt-p" href="https://www.google.com/ncr" target="_blank">https://www.google.com/ncr</a> 获取该 Cookies 记忆，一劳永逸！</p>
<p><big><a class="vt-p" href="http://2.xslidian.sinaapp.com/adds.crx" target="_blank">扩展库下载</a> <a class="vt-p" href="http://2.xslidian.sinaapp.com/adds_extension_0_3.crx">本地下载</a></big></p>
<p>注：写这个扩展的目的不是为了进行自动转向（而且页面动作扩展也不大适合那样做）。如果您需要自动转向功能，可以尝试<a class="vt-p" href="http://2.xslidian.sinaapp.com/72944.user.js">内容脚本扩展</a>。（参阅 <a class="vt-p" title="Ray Chow：自动使用 Google SSL 加密搜索" href="http://raychow.info/2010/automatically-use-ssl-encryption-search-of-goo-gle.html" target="_blank">Ray Chow 的博文</a>）</p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/05/add-s-extension-for-chrome/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Chrome 扩展在线本地化工具</title>
		<link>http://lidian.info/2010/03/google-chrome-extensions-localizer/</link>
		<comments>http://lidian.info/2010/03/google-chrome-extensions-localizer/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 13:26:15 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[开发]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chrome 扩展]]></category>
		<category><![CDATA[汉化]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=79</guid>
		<description><![CDATA[点击打开：Google Chrome 扩展在线本地化工具
将插件自带的原文 messages.json 复制到框中，下方“Translate from:”选择 English，“Translate into:”选择 Chinese_Simp(zh_CN)，点击“Translate”开始翻译。
该工具会自动调用 Google Translate 进行预翻译，人工校对下即可。
支持存储到 Chrome 的 local storage 中，再次访问时可以在 Project 中调出。
]]></description>
			<content:encoded><![CDATA[<p>点击打开：<a href="http://www.mixesoft.com/localizer.html">Google Chrome 扩展在线本地化工具</a></p>
<p>将插件自带的原文 messages.json 复制到框中，下方“Translate from:”选择 English，“Translate into:”选择 Chinese_Simp(zh_CN)，点击“Translate”开始翻译。</p>
<p>该工具会自动调用 Google Translate 进行预翻译，人工校对下即可。</p>
<p>支持存储到 Chrome 的 local storage 中，再次访问时可以在 Project 中调出。</p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/03/google-chrome-extensions-localizer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Buzz ER：Wordpress 上的 Google Buzz！</title>
		<link>http://lidian.info/2010/02/google-buzz-er-chs-for-wordpress/</link>
		<comments>http://lidian.info/2010/02/google-buzz-er-chs-for-wordpress/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 11:22:56 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Buzz ER]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[SAE]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[开发]]></category>
		<category><![CDATA[挂件]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=47</guid>
		<description><![CDATA[昨天 Google 宣布了一项新服务，Google Buzz，分享更新、照片、视频，加入感兴趣的话题等等的新方式。今天您可以把 Google Buzz 上的帖子放在 WordPress 站点上了。
Google Buzz Er 是用来显示指定 Google 帐号的公共 Buzz 帖子的 Wordpress 插件，由 Lazarevic Ivan 开发，遵循 GPL 协议分发。
您要做的只是设置 Google 帐号用户名，也可以选择要显示的帖数。
点击进入：演示页 原版下载 （以上介绍 via）
简体中文版：google-buzz-er-1.3-chs.zip（已更新至 1.3 版）
SAE 版内嵌版演示：xslidian.sinaapp.com
SAE 版框架版演示：xslidian.sinaapp.com/buzzer.php?u=xslidian
SAE 版源码：buzzer-for-sae-1.3.zip（框架版可用于非 SAE 博客；内嵌版只需在模板中添加样式表并 include；更新至 1.3 版，允许的参数为 u、no、img、w、title 及 ptitle）
]]></description>
			<content:encoded><![CDATA[<p>昨天 Google 宣布了一项新服务，<a href="http://www.google.com/buzz" target="_blank">Google Buzz</a>，分享更新、照片、视频，加入感兴趣的话题等等的新方式。今天您可以把 Google Buzz 上的帖子放在 WordPress 站点上了。</p>
<p><a href="http://workshop.rs/2010/02/google-buzz-er-google-buzz-for-wordpress/" target="_blank">Google Buzz Er</a> 是用来显示指定 Google 帐号的公共 Buzz 帖子的 <a href="http://wordpress.org/" target="_blank">Wordpress</a> 插件，由 <a href="http://workshop.rs/" target="_blank">Lazarevic Ivan</a> 开发，遵循 GPL 协议分发。<br />
您要做的只是设置 Google 帐号用户名，也可以选择要显示的帖数。</p>
<p>点击进入：<a href="http://workshop.rs/" target="_blank">演示页</a> <a href="http://wordpress.org/extend/plugins/google-buzz-er/" target="_blank">原版下载</a> （以上介绍 <a href="http://workshop.rs/2010/02/google-buzz-er-google-buzz-for-wordpress/" target="_blank">via</a>）</p>
<p>简体中文版：<a href="http://lidian.info/wp-content/uploads/2010/02/google-buzz-er-1.3-chs.zip">google-buzz-er-1.3-chs.zip</a>（<span style="color: #ff0000;">已更新至 1.3 版</span>）</p>
<p>SAE 版内嵌版演示：<a href="http://xslidian.sinaapp.com/">xslidian.sinaapp.com</a><br />
SAE 版框架版演示：<a href="http://xslidian.sinaapp.com/buzzer.php?u=xslidian">xslidian.sinaapp.com/buzzer.php?u=xslidian</a><br />
SAE 版源码：<a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-for-sae-1.3.zip">buzzer-for-sae-1.3.zip</a>（框架版可用于非 SAE 博客；内嵌版只需在模板中添加样式表并 include；<span style="color: #ff0000;">更新至 1.3 版，允许的参数为 u、no、img、w、title 及 ptitle</span>）</p>
<div id="attachment_59" class="wp-caption aligncenter" style="width: 198px"><a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-1-chs.png"><img class="size-full wp-image-59" title="buzzer-screenshot-1-chs.png" src="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-1-chs.png" alt="" width="188" height="325" /></a><p class="wp-caption-text">Google Buzz ER 插件使用效果</p></div>
<div id="attachment_60" class="wp-caption aligncenter" style="width: 562px"><a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-2-chs.png"><img class="size-full wp-image-60" title="buzzer-screenshot-2-chs.png" src="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-2-chs.png" alt="" width="552" height="393" /></a><p class="wp-caption-text">Google Buzz ER 插件设置页面</p></div>
<div id="attachment_72" class="wp-caption aligncenter" style="width: 306px"><a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-3-chs.png"><img class="size-full wp-image-72" title="buzzer-screenshot-3-chs.png" src="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-3-chs.png" alt="" width="296" height="353" /></a><p class="wp-caption-text">边栏小工具设置页面</p></div>
<div id="attachment_76" class="wp-caption aligncenter" style="width: 316px"><a href="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-4-chs.png"><img class="size-full wp-image-76" title="buzzer-screenshot-4-chs.png" src="http://lidian.info/wp-content/uploads/2010/02/buzzer-screenshot-4-chs.png" alt="" width="306" height="356" /></a><p class="wp-caption-text">自定义标题文字以及帖中图像</p></div>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/google-buzz-er-chs-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MKVToolNix 使用手册 简体中文版</title>
		<link>http://lidian.info/2010/02/mkvtoolnix-manual/</link>
		<comments>http://lidian.info/2010/02/mkvtoolnix-manual/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 01:37:29 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[Matroska]]></category>
		<category><![CDATA[MKVToolNix]]></category>
		<category><![CDATA[多媒体]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=39</guid>
		<description><![CDATA[Matroska 意在成为新的标准容器格式。由 Moritz Bunkus 开发的 MkvToolNix 包含了可以处理 Matroska 文件的一些小工具：
mkvmerge 可创建 Matroska 文件；
 mkvextract 可从 Matroska 文件中提取各类数据；
 mkvpropedit 可直接对 Matroska 文件内部的各类属性（头部字段）进行修改；
 mkvinfo 可列出此类文件的信息；
 mmg 是非常好用的 mkvmerge 的 GUI 版本。
它们与 Matroska 的关系就像是 ogmtools 与 OGM 文件的关系一样。
这是刚刚完成翻译的简体中文版使用手册（配 3.2 版本，以后可以在软件的 doc/zh_CN 目录中找到最新版本，此处的压缩包不保持更新），欢迎指正：
mkvtoolnix-man-chs.zip（DocBook 格式）
mkvtoolnix-man-chs-html.zip（标准 html 格式）
]]></description>
			<content:encoded><![CDATA[<p><a class="vt-p" href="http://www.matroska.org/" target="_blank">Matroska</a> 意在成为新的标准容器格式。由 <a class="vt-p" href="http://www.bunkus.org/" target="_blank">Moritz Bunkus</a> 开发的 <a class="vt-p" href="http://www.bunkus.org/videotools/mkvtoolnix/index.html">MkvToolNix</a> 包含了可以处理 Matroska 文件的一些小工具：</p>
<p><a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mkvmerge.html" target="_blank"><strong>mkvmerge</strong></a> 可创建 Matroska 文件；<br />
<a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mkvextract.html" target="_blank"><strong> mkvextract</strong></a> 可从 Matroska 文件中提取各类数据；<br />
<a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mkvpropedit.html" target="_blank"><strong> mkvpropedit</strong></a> 可直接对 Matroska 文件内部的各类属性（头部字段）进行修改；<br />
<a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mkvinfo.html" target="_blank"><strong> mkvinfo</strong></a> 可列出此类文件的信息；<br />
<a class="vt-p" href="http://greatdreamers.cn/projects/mkvtoolnix/doc/mmg.html" target="_blank"><strong> mmg</strong></a> 是非常好用的 mkvmerge 的 GUI 版本。</p>
<p>它们与 Matroska 的关系就像是 ogmtools 与 OGM 文件的关系一样。</p>
<p>这是刚刚完成翻译的简体中文版使用手册（配 3.2 版本，以后可以在软件的 doc/zh_CN 目录中找到最新版本，此处的压缩包<strong><span style="color: #ff0000;">不</span></strong><span style="color: #ff0000;">保持更新</span>），欢迎指正：<br />
<a class="vt-p" href="http://lidian.info/wp-content/uploads/2010/02/mkvtoolnix-man-chs.zip">mkvtoolnix-man-chs.zip</a>（<a class="vt-p" href="http://sourceforge.net/projects/docbook/" target="_blank">DocBook</a> 格式）<br />
<a class="vt-p" href="http://lidian.info/wp-content/uploads/2010/02/mkvtoolnix-man-chs-html.zip">mkvtoolnix-man-chs-html.zip</a>（标准 html 格式）</p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/mkvtoolnix-manual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pathauto 模块的简体中文语言文件</title>
		<link>http://lidian.info/2010/02/pathauto-chs-for-drupal/</link>
		<comments>http://lidian.info/2010/02/pathauto-chs-for-drupal/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 06:07:50 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Drupal 模块]]></category>
		<category><![CDATA[pathauto]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=35</guid>
		<description><![CDATA[Pathauto 模块的简体中文语言文件。]]></description>
			<content:encoded><![CDATA[<p><a href="http://drupal.org/project/pathauto">Pathauto</a> 是一个 <a href="http://drupal.org/">Drupal</a> 模块，可自动为各种内容创建 URL 别名（URL alias），无须用户手工逐条创建。<br />
可自定义用来创建别名的匹配模式（pattern）系统。</p>
<p>原作者为 <a href="http://drupal.org/user/4420">mikeryan</a>。<br />
目前该项目由 <a href="http://drupal.org/user/27504">Frederik &#8216;Freso&#8217; S. Olesen</a> 与 <a href="http://drupal.org/user/36762">Greg Knaddison (greggles)</a> 共同维护。</p>
<p>这是它的简体中文语言文件：<a href="http://lidian.info/wp-content/uploads/2010/02/pathauto-zh-hans.zip">pathauto-zh-hans.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/pathauto-chs-for-drupal/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>新浪微博框架式挂件跳转器</title>
		<link>http://lidian.info/2010/02/sina-tblog-frame-widget-redirector/</link>
		<comments>http://lidian.info/2010/02/sina-tblog-frame-widget-redirector/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 05:34:17 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[开发]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[挂件]]></category>
		<category><![CDATA[新浪微博]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=30</guid>
		<description><![CDATA[使新浪微博框架式挂件的 url 更为友好。]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #ff0000;">更新：猛然想起&#8230; 建议大家使用微博的短网址服务，比这个稳定多了~</span></strong></p>
<p>微博挂件真得很好用，不过对于不仅不喜欢 Flash，而且追求绿色结果的 <a href="http://validator.w3.org/" target="_blank">W3C Validator</a> 的同学来说，带问号的 url 实在碍眼。</p>
<p>这时就该考虑跳转了。先看示例代码：</p>
<pre>&lt;iframe id="sina_widget_1052580175" style="width:100%; height:500px;"
frameborder="0" scrolling="no" src="<span style="color: #ff0000;">/~redir/vtsina</span>" /&gt;</pre>
<p>这样实施后 W3C Validator 就不再啰嗦了。先看看示例的认证结果吧。</p>
<p>以偶的微博为例（用户编号为 1052580175），可用的框架地址有（大家也可以根据需要修改 <code>.htaccess</code> 文件）：</p>
<pre style="padding-left: 30px;">/~redir/vtsina
/~redir/vtsina/1052580175
/~redir/vtsina/1052580175/500
/~redir/vtsina/1052580175/500/wd_01
/~redir/vtsina/1052580175/500/wd_01/1
 （其中的参数依次为：用户编号、高度、皮肤和是否显示图片）</pre>
<p>偶这主机也不算稳定，建议大家自己取源码，部署到 WP 所在主机上——要当机一起当。</p>
<p>源码：<a rel="attachment wp-att-32" href="http://lidian.info/2010/02/sina-tblog-frame-widget-redirector/vtsina-src/">vtsina-src.zip</a></p>
<p>原理很简单，发了个 <code>Location:</code> 开头的 http 头。</p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/sina-tblog-frame-widget-redirector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics 模块的简体中文语言文件</title>
		<link>http://lidian.info/2010/02/googleanalytics-chs-for-drupal/</link>
		<comments>http://lidian.info/2010/02/googleanalytics-chs-for-drupal/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 11:07:52 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Drupal 模块]]></category>
		<category><![CDATA[Google Analytics]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=24</guid>
		<description><![CDATA[Google Analytics (Drupal 模块) 的简体中文语言文件。]]></description>
			<content:encoded><![CDATA[<p><a title="google analytics for drupal" href="http://drupal.org/project/google_analytics" target="_blank">Google Analytics 模块</a> 是由 <a rel="nofollow" href="http://www.ixis.co.uk/" target="_blank">Ixis</a> 和 <a title="YAML for Drupal Theme" rel="nofollow" href="http://www.yaml-fuer-drupal.de/" target="_blank">YAML</a> 为 <a href="http://drupal.org/" target="_blank">Drupal</a> 开发的模块。</p>
<p>这是该模块的简体中文语言文件：<a rel="attachment wp-att-25" href="http://lidian.info/2010/02/googleanalytics-chs-for-drupal/googleanalytics-zh-hans/">googleanalytics-zh-hans.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/googleanalytics-chs-for-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FLV Extract v1.6.0 简体中文版</title>
		<link>http://lidian.info/2010/02/flv-extract-v160-chs/</link>
		<comments>http://lidian.info/2010/02/flv-extract-v160-chs/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 16:01:52 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[FLV Extract]]></category>
		<category><![CDATA[多媒体]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=18</guid>
		<description><![CDATA[FLV Extract v1.6.0 简体中文版。包含拖放操作版和命令行版，并按 Any CPU 与 x64 两种架构编译。]]></description>
			<content:encoded><![CDATA[<div id="attachment_19" class="wp-caption aligncenter" style="width: 586px"><a href="http://lidian.info/wp-content/uploads/2010/02/flvextract.jpg"><img class="size-full wp-image-19" title="flvextract-chs-gui" src="http://lidian.info/wp-content/uploads/2010/02/flvextract.jpg" alt="flvextract 简体中文版界面" width="576" height="220" /></a><p class="wp-caption-text">FLVExtract 简体中文版界面</p></div>
<p>FLV Extract 是由 <a title="Moitah 的个人网站" href="http://www.moitah.net/" target="_blank">Moitah</a> 开发的小工具，可以从 flv 文件中提取出原始视频（及其时间码）和音频。有拖放操作版和命令行版两个版本。</p>
<p>翻译版包含拖放操作版和命令行版，并按 Any CPU 与 x64 两种架构编译。授权协议遵从原始程序的 GPL。</p>
<p>程序：<a href="http://lidian.info/wp-content/uploads/2010/02/FLVExtract160chs.zip"></a><a href="http://lidian.info/wp-content/uploads/2010/02/FLVExtract160chs.zip">FLVExtract160chs.zip</a></p>
<p>源代码：<a href="http://lidian.info/wp-content/uploads/2010/02/FLVExtract160chs-src.zip"></a><a href="http://lidian.info/wp-content/uploads/2010/02/FLVExtract160chs-src.zip">FLVExtract160chs-src.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/flv-extract-v160-chs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Tools 插件的简体中文语言文件</title>
		<link>http://lidian.info/2010/02/chinese-simp-translation-for-twitter-tools/</link>
		<comments>http://lidian.info/2010/02/chinese-simp-translation-for-twitter-tools/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 02:01:01 +0000</pubDate>
		<dc:creator>XsLiDian</dc:creator>
				<category><![CDATA[汉化]]></category>
		<category><![CDATA[Twitter Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://lidian.info/?p=11</guid>
		<description><![CDATA[Twitter Tools 插件的简体中文语言文件。]]></description>
			<content:encoded><![CDATA[<p><strong><a title="Twitter Tools 的自述文档" href="http://alexking.org/projects/wordpress/readme?project=twitter-tools">Twitter Tools</a></strong> 是 <a title="Alex King 开发的 WP 插件" href="http://alexking.org/projects/wordpress">Alex King</a> 开发的大名鼎鼎的 <a title="WordPress 插件库" href="http://wordpress.org/extend/plugins/">WordPress 插件</a>。</p>
<p>这是它的简体中文翻译：<a href="http://lidian.info/wp-content/uploads/2010/02/twitter-tools-zh_hans.zip">twitter-tools-zh_hans</a></p>
<p>根据 rev <a title="View Revision Log" href="http://plugins.trac.wordpress.org/log/twitter-tools/trunk/language/twitter-tools.pot?rev=192051">192051</a> 制作。</p>
]]></content:encoded>
			<wfw:commentRss>http://lidian.info/2010/02/chinese-simp-translation-for-twitter-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
