<?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>days of linnchord &#187; wordpress</title>
	<atom:link href="http://linnchord.net/archives/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://linnchord.net</link>
	<description>南台静坐 : : :</description>
	<lastBuildDate>Thu, 03 Nov 2011 02:22:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Linode VPS with Nginx的进一步优化</title>
		<link>http://linnchord.net/archives/687.html</link>
		<comments>http://linnchord.net/archives/687.html#comments</comments>
		<pubDate>Tue, 01 Dec 2009 17:57:06 +0000</pubDate>
		<dc:creator>linnchord</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[工具]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://linnchord.net/?p=687</guid>
		<description><![CDATA[清理系统服务 可以关闭不必要的系统服务，linux下常用chkconfig，在ubuntu系统上最常用sysv-rc-conf，界面更友好使用更方便，直接通过源安装即可运行。 sudo apt-get install sysv-rc-conf sudo sysv-rc-conf 通过软件可以发现，Linode提供的系统已经关闭了很多不必要的服务，但是系统自带了apache，直接取消选择关闭即可。 nginx过期设置 在nginx中，可以对部分类型资源配置过期时间，以利用客户端缓存，降低服务器端负载，某些媒体资源可以禁用log。 在对应的nginx配置文件youdomain.com中添加 location ~* ^.+\.(gif&#124;jpg&#124;jpeg&#124;png&#124;bmp&#124;ico&#124;swf)$ { root /home/myname/wwwroot/yourdomain.com; access_log off; expires 7d; } location ~* ^.+\.(js&#124;css)$ { root /home/myname/wwwroot/yourdomain.com; expires 24h; } wordpress静态化 cos-html-cache是WP的静态化插件，他可以将WP通过UrlRewrite优化过的Url链接彻底静态化。你只需要在WP后台设置固定链接为某种静态文件类似的形式（例如/archives/%post_id%.html），你就可以使用该插件生成对应的静态文件，从此用户将直接访问此静态文件，而不必再通过php解释，极大提高运行效率。 具体操作上面链接描述很详细，无需赘述。 不过我在启用此插件后，发现能正常生成网站根目录下index.html，但无法生成/archives/%post_id%.html。我写了一个php脚本放在网站根目录下测试，也无法在/archives目录下生成文件，提示找不到该目录。在cos-html-cache源文件中可以找到，生成html文件的脚本，路径信息是通过$_SERVER["DOCUMENT_ROOT"]获取的，但是尝试打印该值发现无值。最后我发现必须在Nginx站点配置文件中在php-fast-cgi的配置项里增加网站的root路径如下 location / { root /home/myname/wwwroot/yourdomain.com; index index.html index.htm index.php; if (-f $request_filename) { break; } if (-d $request_filename) { [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
		<strong>清理系统服务</strong></p>
<p>可以关闭不必要的系统服务，linux下常用chkconfig，在ubuntu系统上最常用sysv-rc-conf，界面更友好使用更方便，直接通过源安装即可运行。</p>
<pre class="brush:bash">
sudo apt-get install sysv-rc-conf
sudo sysv-rc-conf
		</pre>
<p>		通过软件可以发现，Linode提供的系统已经关闭了很多不必要的服务，但是系统自带了apache，直接取消选择关闭即可。
	</li>
<p><span id="more-687"></span></p>
<li>
		<strong>nginx过期设置</strong></p>
<p>在nginx中，可以对部分类型资源配置过期时间，以利用客户端缓存，降低服务器端负载，某些媒体资源可以禁用log。</p>
<p>在对应的nginx配置文件youdomain.com中添加</p>
<pre class="brush:bash">
location ~* ^.+\.(gif|jpg|jpeg|png|bmp|ico|swf)$ {
	 root /home/myname/wwwroot/yourdomain.com;
	 access_log off;
	 expires 7d;
 }

location ~* ^.+\.(js|css)$ {
	root   /home/myname/wwwroot/yourdomain.com;
	expires 24h;
}
		</pre>
</li>
<li>
		<strong>wordpress静态化</strong></p>
<p><a href="http://www.storyday.com/html/y2007/1213_cos-html-cache-wordpress-static-release-of-plug-in.html" target="_blank">cos-html-cache</a>是WP的静态化插件，他可以将WP通过UrlRewrite优化过的Url链接彻底静态化。你只需要在WP后台设置固定链接为某种静态文件类似的形式（例如/archives/%post_id%.html），你就可以使用该插件生成对应的静态文件，从此用户将直接访问此静态文件，而不必再通过php解释，极大提高运行效率。</p>
<p>具体操作上面链接描述很详细，无需赘述。</p>
<p>不过我在启用此插件后，发现能正常生成网站根目录下index.html，但无法生成/archives/%post_id%.html。我写了一个php脚本放在网站根目录下测试，也无法在/archives目录下生成文件，提示找不到该目录。在cos-html-cache源文件中可以找到，生成html文件的脚本，路径信息是通过$_SERVER["DOCUMENT_ROOT"]获取的，但是尝试打印该值发现无值。最后我发现必须在Nginx站点配置文件中在php-fast-cgi的配置项里增加网站的root路径如下</p>
<pre class="brush:bash">
location / {
	root   /home/myname/wwwroot/yourdomain.com;
	index  index.html index.htm index.php;

	if (-f $request_filename) {
		break;
	}
	if (-d $request_filename) {
		break;
	}

	rewrite ^(.+)$ /index.php?q=$1 last;

}
location ~ \.php$ {

	#必须定义root -----------------------------------------

	root   /home/myname/wwwroot/yourdomain.com;

	#------------------------------------------------------

	fastcgi_pass	127.0.0.1:9000;
	fastcgi_index	index.php;
	fastcgi_param	SCRIPT_FILENAME  /home/myname/wwwroot/yourdomain.com$fastcgi_script_name;
	include		/usr/local/nginx/conf/fastcgi_params;
}
		</pre>
<p>如果不添加该root信息，在php中则无法正确获取$_SERVER["DOCUMENT_ROOT"]参数，会导致路径定位错误。不过按照一般逻辑，这个应该是继承前面的root设置，不必重复定义。也许是因为fastcgi是从nginx转向到另一个新的进程的缘故，所以需要具体定义参数传递。不过nginx应该自动获取该值，避免重复手工操作。</p>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://linnchord.net/archives/687.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SyntaxHighlighter</title>
		<link>http://linnchord.net/archives/680.html</link>
		<comments>http://linnchord.net/archives/680.html#comments</comments>
		<pubDate>Tue, 01 Dec 2009 15:20:24 +0000</pubDate>
		<dc:creator>linnchord</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[工具]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://linnchord.net/?p=680</guid>
		<description><![CDATA[作为程序员，blog难免要贴不少代码，简单的pre标记显得比较平板，不象ide里面的代码排版颜色那么漂亮。 在网上搜了一把，SyntaxHighlighter应该是目前最美观最全面的代码着色器了，唯一的缺点就是需要引入的文件太多……不过要做到这么全的代码类型覆盖，这也是不可避免的。 官方网站链接：http://alexgorbatchev.com/wiki/SyntaxHighlighter]]></description>
			<content:encoded><![CDATA[<p>作为程序员，blog难免要贴不少代码，简单的pre标记显得比较平板，不象ide里面的代码排版颜色那么漂亮。</p>
<p>在网上搜了一把，SyntaxHighlighter应该是目前最美观最全面的代码着色器了，唯一的缺点就是需要引入的文件太多……不过要做到这么全的代码类型覆盖，这也是不可避免的。</p>
<p>官方网站链接：<a href="http://alexgorbatchev.com/wiki/SyntaxHighlighter" target="_blank">http://alexgorbatchev.com/wiki/SyntaxHighlighter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linnchord.net/archives/680.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup on Linode.com with ubuntu+nginx+php+fastcgi+mysql 续</title>
		<link>http://linnchord.net/archives/665.html</link>
		<comments>http://linnchord.net/archives/665.html#comments</comments>
		<pubDate>Sun, 29 Nov 2009 08:54:00 +0000</pubDate>
		<dc:creator>linnchord</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[工具]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://linnchord.net/?p=665</guid>
		<description><![CDATA[嗯嗯，继续。 nginx和fastcgi启动配置 2个配置文件,放于/etc/init.d下面。 cd /etc/init.d touch fast-cgi touch nginx sudo chmod +x /etc/init.d/nginx /etc/init.d/fast-cgi nginx #! /bin/sh ### BEGIN INIT INFO # Provides: nginx # Required-Start: $all # Required-Stop: $all # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: starts the nginx web server # Description: starts nginx using start-stop-daemon ### [...]]]></description>
			<content:encoded><![CDATA[<p>嗯嗯，继续。</p>
<ul>
<li>
	<strong>nginx和fastcgi启动配置</strong></p>
<p>2个配置文件,放于/etc/init.d下面。</p>
<pre class="brush: bash;">
cd /etc/init.d
touch fast-cgi
touch nginx
sudo chmod +x /etc/init.d/nginx /etc/init.d/fast-cgi</pre>
<p>nginx</p>
<pre class="brush: bash;">
#! /bin/sh

### BEGIN INIT INFO
# Provides:          nginx
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts the nginx web server
# Description:       starts nginx using start-stop-daemon
### END INIT INFO

PATH=/usr/local/nginx/sbin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/local/nginx/sbin/nginx
NAME=nginx
DESC=nginx

test -x $DAEMON || exit 0

# Include nginx defaults if available
if [ -f /etc/default/nginx ] ; then
	. /etc/default/nginx
fi

set -e

. /lib/lsb/init-functions

test_nginx_config() {
  if nginx -t
  then
    return 0
  else
    return $?
  fi
}

case "$1" in
  start)
	echo -n "Starting $DESC: "
        test_nginx_config
	start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
		--exec $DAEMON -- $DAEMON_OPTS || true
	echo "$NAME."
	;;
  stop)
	echo -n "Stopping $DESC: "
	start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
		--exec $DAEMON || true
	echo "$NAME."
	;;
  restart|force-reload)
	echo -n "Restarting $DESC: "
	start-stop-daemon --stop --quiet --pidfile \
		/var/run/$NAME.pid --exec $DAEMON || true
	sleep 1
        test_nginx_config
	start-stop-daemon --start --quiet --pidfile \
		/var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS || true
	echo "$NAME."
	;;
  reload)
        echo -n "Reloading $DESC configuration: "
        test_nginx_config
        start-stop-daemon --stop --signal HUP --quiet --pidfile /var/run/$NAME.pid \
            --exec $DAEMON || true
        echo "$NAME."
        ;;
  configtest)
        echo -n "Testing $DESC configuration: "
        if test_nginx_config
        then
          echo "$NAME."
        else
          exit $?
        fi
        ;;
  status)
	status_of_proc -p /var/run/$NAME.pid "$DAEMON" nginx &#038;&#038; exit 0 || exit $?
	;;
  *)
	echo "Usage: $NAME {start|stop|restart|reload|force-reload|status|configtest}" >&#038;2
	exit 1
	;;
esac

exit 0</pre>
<p><span id="more-665"></span></p>
<p>fast-cgi</p>
<pre class="brush: bash;">
#! /bin/sh

### BEGIN INIT INFO
# Provides:          fast-cgi
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts the fast-cgi web server
# Description:       starts fastcgi using start-stop-daemon
### END INIT INFO

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

NAME=spawn-fcgi
DESC=spawn-fcgi
DAEMON=/usr/local/bin/spawn-fcgi

DAEMON_OPTS="-u www-data -g www-data -C 8 -a 127.0.0.1 -p 9000 -P /var/run/$NAME.pid -- /usr/bin/php5-cgi"

test -x $DAEMON || exit 0

set -e

case "$1" in
  start)
	echo -n "Starting $DESC: "
	start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS || true
	echo "$NAME."
	;;
  stop)
	echo -n "Stopping $DESC: "
	start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid --exec $DAEMON || true
	echo "$NAME."
	;;
  restart|force-reload)
	echo -n "Restarting $DESC: "
	start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid --exec $DAEMON || true
	sleep 1
	start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS || true
	echo "$NAME."
	;;
  reload)
      echo -n "Reloading $DESC configuration: "
      start-stop-daemon --stop --signal HUP --quiet --pidfile /var/run/$NAME.pid --exec $DAEMON || true
      echo "$NAME."
      ;;
  *)
	N=/etc/init.d/$NAME
	echo "Usage: $N {start|stop|restart|reload|force-reload}" >&#038;2
	exit 1
	;;
esac
exit 0</pre>
<p>这两个脚本需要注意的是目录的定位，如果在编译阶段加入了目录设置的参数，那么你同时需要在这里修改定义。另外fast-cgi需要注意DAEMON_OPTS的参数设置。</p>
<p>这2个脚本都有一个同样的问题，就是无法正常停止服务。我虽然不太了解shell程序，但是根据我其他编程经验，两个脚本都是通过start-stop-daemon命令来开启和停止服务。但我使用的情况是可以正常开启，但无法正常关闭。所以我不得不写了一个简单的关闭并重启nginx服务的脚本，是通过直接kill进程来实现的。</p>
<pre class="brush: bash;">
cd ~
mkdir tools
cd tools
touch reset_nginx
chmod +x reset_nginx</pre>
<p>reset_nginx内容</p>
<pre class="brush: bash;">
sudo kill `cat /usr/local/nginx/logs/nginx.pid`
sudo /etc/init.d/nginx start</pre>
<p>但是fast-cgi的服务即使我kill进程并删除pid文件也无济于事，fast-cgi仍然照常运行……这有点不合逻辑，也许我操作错误，或者是权限问题。不过fast-cgi开启后一般也没有必要进行重启或其他操作，这个问题留待以后解决吧。或者有哪位同学知道的，请不吝赐教！</p>
<p>最后这2个脚本需要注册为系统服务，需要安装rcconf。</p>
<pre class="brush: bash;">
sudo apt-get install rcconf
sudo rcconf</pre>
<p>嗯，很怀旧的DOS操作界面……呵呵，大家选择2个脚本，再ok退出即可。</p>
</li>
<li>
	<strong>nginx站点配置</strong></p>
<p>由于dreamhost的习惯，并且这个虚拟机还要放callaly的blog（<a href="http://callaly.net" target="_blank">http://callaly.net</a>），所以nginx的站点我放到用户目录下去了。</p>
<pre class="brush: bash;">
cd ~
mkdir wwwroot
cd wwwroot
mkdir yourdomain.com</pre>
<p>编辑/usr/local/nginx/conf/nginx.conf</p>
<pre class="brush: bash;">
user www-data;
worker_processes 2;

events {
	worker_connections  1024;
	use epoll;
}

http {
	include       mime.types;
	default_type  application/octet-stream;

	sendfile       on;
	tcp_nopush     on;
	tcp_nodelay    on;

	keepalive_timeout  65;

	gzip  on;

	#设置默认站点，禁止所有IP访问
	server {
		listen 80 default;
		return 403;
	}

	#包含其他站点配置
	include /usr/local/nginx/sites-enabled/*;

}</pre>
<p>创建站点文件</p>
<pre class="brush: bash;">
cd /usr/local/nginx
sudo mkdir sites-available
sudo mkdir sites-enabled
sudo touch sites-available/yourdomain.com
sudo ln -s sites-available/yourdomain.com sites-enabled/yourdomain.com
	</pre>
<p>编辑sites-available/yourdomain.com</p>
<pre class="brush: bash;">
server {
	listen       80;
	server_name  www.yourdomain.com yourdomain.com;

	access_log	/home/myname/wwwroot/log/yourdomain.com.access.log;
   	error_log	/home/myname/wwwroot/log/yourdomain.com.error.log;

	location / {
		root   /home/myname/wwwroot/yourdomain.com;
		index  index.html index.htm index.php;

		# WordPress URL优化
		if (-f $request_filename) {
			break;
		}
		if (-d $request_filename) {
			break;
		}

		# WordPress URL重写，如果你的wp目录不在根目录，请修改路径
		rewrite ^(.+)$ /index.php?q=$1 last;
	}

	location ~ \.php$ {
		fastcgi_pass	127.0.0.1:9000;
		fastcgi_index	index.php;
		fastcgi_param	SCRIPT_FILENAME /home/myname/wwwroot/yourdomain.com$fastcgi_script_name;
		include		/usr/local/nginx/conf/fastcgi_params;
	}

	#如果前面编译nginx时添加了with-http_stub_status_module参数
	#就可以通过此设置访问yourdomain.com/status（名称自定）查看站点状态
	location /status {
		stub_status on;
		access_log off;
	}
}</pre>
<p>nginx的站点配置基本ok</p>
</li>
<li>
	<strong>wordpress备份和恢复</strong></p>
<p>
		需要把dreamhost主机上的内容迁移过来，可操作方法很多，最好在服务器端直接操作，速度更快。文件操作很简单不赘述，关于数据库的备份和恢复简单说下。
	</p>
<pre class="brush: bash;">
#导出 - 在原服务器
mysqldump -h old_host -p old_dbname -u old_dbuser >wp_bak.sql

#登录mysql
mysql -h new_host -u new_dbuser

#创建新数据库，注意编码
create database 'new_dbname' default character set utf8 collate utf8_general_ci;

#导入 - 确保备份sql文件在当前目录
use new_dbname;
source wp_bak.sql;</pre>
<p>至此整个站点配置已经基本完成，可以敲域名访问了。</p>
</li>
</ul>
<p>这篇文章大部分内容来自于网上，我东拼西凑来的，特在此列出供大家参考。</p>
<ul class="recommend">
<li><a href="http://www.mensk.com/webmaster-toolbox/perfect-ubuntu-hardy-nginx-mysql5-php5-wordpress/" target="_blank">Perfect Setup: Ubuntu Hardy+Nginx+MySQL5+PHP5+Wordress</a></li>
<li><a href="http://www.jifuyi.com/linode-vps-register-nginx-wordpress-setting/" target="_blank">Linode VPS的申请和设置及基于Nginx的WordPress详细配置</a></li>
<li><a href="http://www.nginx.com.cn/?p=315" target="_blank">为nginx设置默认虚拟主机（空主机头，默认主机头）</a></li>
<li><a href="http://www.7yan.com.cn/2008/01/22/dreamhost-mysql-beifen-huifu/" target="_blank">如何备份/恢复dreamhost空间里的mysql数据库</a></li>
<li><a href="http://www.jefflei.com/post/1015.html" target="_blank">nginx重定向规则详细介绍</a></li>
<li><a href="http://shiningray.cn/nginx-de-wordpress-pei-zhi.html" target="_blank">Nginx的WordPress配置</a></li>
<li><a href="http://wiki.nginx.org/NginxChsInstallOptions" target="_blank">NginxChsInstallOptions</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://linnchord.net/archives/665.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog施工继续</title>
		<link>http://linnchord.net/archives/346.html</link>
		<comments>http://linnchord.net/archives/346.html#comments</comments>
		<pubDate>Sat, 31 Jan 2009 08:16:07 +0000</pubDate>
		<dc:creator>linnchord</dc:creator>
				<category><![CDATA[工具]]></category>
		<category><![CDATA[随记]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://linnchord.net/?p=346</guid>
		<description><![CDATA[花了4个小时左右，做了以下工作。 上传使用了illacrimo-plus主题； 调整所有post的分类和标签——纯体力活； 添加修改Post部分内容（列表、引用）的自定义样式； 微调部分主题代码，去掉很多花花哨哨的东东； 修改了一个头像——看上去挺失败……]]></description>
			<content:encoded><![CDATA[<p>花了4个小时左右，做了以下工作。</p>
<ul>
<li>上传使用了<a href="http://wpfans.net.cn/2008/10/20/wordpress-theme-illacrimo-plus-theme/">illacrimo-plus</a>主题；</li>
<li>调整所有post的分类和标签——纯体力活；</li>
<li>添加修改Post部分内容（列表、引用）的自定义样式；</li>
<li>微调部分主题代码，去掉很多花花哨哨的东东；</li>
<li>修改了一个头像——看上去挺失败……</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://linnchord.net/archives/346.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog施工开始</title>
		<link>http://linnchord.net/archives/154.html</link>
		<comments>http://linnchord.net/archives/154.html#comments</comments>
		<pubDate>Thu, 29 Jan 2009 03:36:56 +0000</pubDate>
		<dc:creator>linnchord</dc:creator>
				<category><![CDATA[工具]]></category>
		<category><![CDATA[随记]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://linnchord.net/?p=154</guid>
		<description><![CDATA[放弃原来自己写的blog程序，转到dreamhost.com上，启用wordpress。 还需要做的工作 界面设计定制 插件完善 静态化 分类标签重新定义设置]]></description>
			<content:encoded><![CDATA[<p>放弃原来自己写的blog程序，转到<a href="http://dreamhost.com">dreamhost.com</a>上，启用<a href="http://wordpress.org">wordpress</a>。</p>
<p>还需要做的工作</p>
<ul>
<li>界面设计定制</li>
<li>插件完善</li>
<li>静态化</li>
<li>分类标签重新定义设置</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://linnchord.net/archives/154.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

