<?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>蓝色的华 &#187; 未分类</title>
	<atom:link href="http://bluehua.org/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://bluehua.org</link>
	<description>分享所学,backup一切~</description>
	<lastBuildDate>Wed, 23 Nov 2011 08:43:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>postfix出错一则</title>
		<link>http://bluehua.org/2011/11/05/1734.html</link>
		<comments>http://bluehua.org/2011/11/05/1734.html#comments</comments>
		<pubDate>Sat, 05 Nov 2011 09:12:42 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[postfix]]></category>

		<guid isPermaLink="false">http://bluehua.org/?p=1734</guid>
		<description><![CDATA[能收到邮件但是发不出去 错误日志如下 Nov 4 20:32:21 localhost postfix/cleanup[4853]: warning: 51CCA2E129: virtual_alias_maps map lookup probl em for xxxx@gmail.com Nov 4 20:33:21 localhost postfix/pickup[4851]: 587A12F5F5: uid=0 from= Nov 4 20:33:21 localhost postfix/cleanup[4853]: warning: connect to mysql server localhost: Can't connec t to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) 原因是之前配置了基于mysql的地址映射 virtual_alias_maps = mysql:/etc/postfix/mysql-alias.cf 当一些在chroot环境中运行的postfix组建试图通过/var/run/mysqld/mysqld.sock连接数据库时就报错了，在master.cf里禁用smtp,rewrite,cleanup的chroot即可 smtp inet n - [...]]]></description>
			<content:encoded><![CDATA[<p>能收到邮件但是发不出去</p>
<p>错误日志如下</p>
<pre>
Nov  4 20:32:21 localhost postfix/cleanup[4853]: warning: 51CCA2E129: virtual_alias_maps map lookup probl         em for xxxx@gmail.com
Nov  4 20:33:21 localhost postfix/pickup[4851]: 587A12F5F5: uid=0 from=<root>
Nov  4 20:33:21 localhost postfix/cleanup[4853]: warning: connect to mysql server localhost: Can't connec         t to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
</pre>
<p>原因是之前配置了基于mysql的地址映射</p>
<pre>
virtual_alias_maps = mysql:/etc/postfix/mysql-alias.cf
</pre>
<p>当一些在chroot环境中运行的postfix组建试图通过/var/run/mysqld/mysqld.sock连接数据库时就报错了，在master.cf里禁用smtp,rewrite,cleanup的chroot即可</p>
<pre>
smtp      inet  n       -       n       -       -       smtpd
rewrite   unix  -       -       n       -       -       trivial-rewrite
cleanup   unix  n       -       n       -       0       cleanup
</pre>
<p>#这是一种不安全的fix方法，另一种解决方法是修改my.conf同过3306端口访问mysql，也可以解决问题。</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2011/11/05/1734.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一个未成形的富文本编辑器</title>
		<link>http://bluehua.org/2011/06/18/1642.html</link>
		<comments>http://bluehua.org/2011/06/18/1642.html#comments</comments>
		<pubDate>Sat, 18 Jun 2011 15:22:11 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://bluehua.org/2011/06/18/1642.html</guid>
		<description><![CDATA[作为一个IOS开发者，我决定贡献一点html代码。。。 最近打算用html+js做一个简单的富文本编辑器给IOS和andriod客户端用，不用任何第三方的框架，简简单单，一个纯洁的编辑器。 写的差不多有点样子，便拿到模拟器上试试，结果悲剧了：IOS上的safari是个太监，根本不支持contentEditable这个东西。 把写半截的代码贡献出来，safari和chrome可以用，对想了解富文本编辑器的同学绝对有帮助。 http://bluehua.org/demo/mobile_editor.html &#8212;&#8212;&#8212;&#8211; vim->email->wordpress]]></description>
			<content:encoded><![CDATA[<p><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">作为一个IOS开发者，我决定贡献一点html代码。。。
<div></div>
<div>最近打算用html+js做一个简单的富文本编辑器给IOS和andriod客户端用，不用任何第三方的框架，简简单单，一个纯洁的编辑器。</div>
<div>写的差不多有点样子，便拿到模拟器上试试，结果悲剧了：IOS上的safari是个太监，根本不支持contentEditable这个东西。</div>
<div></div>
<div>把写半截的代码贡献出来，safari和chrome可以用，对想了解富文本编辑器的同学绝对有帮助。</div>
<div></div>
<div><a href="http://bluehua.org/demo/mobile_editor.html">http://bluehua.org/demo/mobile_editor.html</a></div>
<p></body><br />
&#8212;&#8212;&#8212;&#8211;<br />
vim->email->wordpress</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2011/06/18/1642.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>消灭referer</title>
		<link>http://bluehua.org/2011/01/17/1533.html</link>
		<comments>http://bluehua.org/2011/01/17/1533.html#comments</comments>
		<pubDate>Mon, 17 Jan 2011 07:47:26 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[referer]]></category>
		<category><![CDATA[safe]]></category>
		<category><![CDATA[wap]]></category>

		<guid isPermaLink="false">http://bluehua.org/2011/01/17/1533.html</guid>
		<description><![CDATA[看到一篇《浅谈WAP网站安全》的文章。里面讲到通过URL的referer获取用户的登录session。 简单描述一下: 例如有个WAP页面: http://abc.com/link.php?sid=xxxxxx，sid为用户登录后的session ID,页面中有链接到http://efg.com的A标签。 当用户点击链接访问http://efg.com时,efg.com的服务器log里就会有类似 xxx.xxx.xxx.xxx &#8211; - [17/Jan/2011:13:29:14 +0800] “GET / HTTP/1.0&#8243; 302 20 “http://abc.com/link.php?sid=xxxxxx” “Firefox” 的记录,无疑efg.com就可以得到该用户的在abc.com的登录session 疑问：abc.com傻b吗？不会把sid存到cookie里吗？ 全是中国移动的错，虽然现在几乎所有的手机浏览器都支持cookie，但是如果用户通过CMWAP连接上网，浏览器cookie会被网关过滤。所以国内的WAP网站一般会采取URL参数的形式在页面间传递session id;(那二般是什么？二般是CMWAP网关直接把用户的手机号告诉你,当然这中间必然有某些利益) 那么解决方法就是: 1. 不要在这个外链页面加sid，但是显然不可能，sid丢失之后这个用户就相当于登出了 2. 想办法跳转时不带referer 我们只能选方法2,页面跳转有三种方式: 1. 302/301跳转 header&#40;'location: http://xxx'&#41;; 2. meta标签跳转 &#60;meta http-equiv=&#34;refresh&#34; content=&#34;2;url=http://xxxx&#34; /&#62; 3. javascript跳转 document.location = 'http://xxxx'; 第三种方法,通过JS跳转对于WAP网站来说显然是不靠谱的。所以我只测试了前面两种方法: test.php -&#62; test2.php -&#62; test3.php test.php有一个A标签连接到test2.php,test2.php通过302或meta标签的方式跳转到test3.php 然后分析server log,得到下面的referer字段分析表; 点击页URL = test.php [...]]]></description>
			<content:encoded><![CDATA[<p>看到一篇<a href="http://www.80vul.com/webzine_0x05/0x10%20%E6%B5%85%E8%B0%88WAP%E7%BD%91%E7%AB%99%E5%AE%89%E5%85%A8.html">《浅谈WAP网站安全》</a>的文章。里面讲到通过URL的referer获取用户的登录session。<br />
简单描述一下:<br />
例如有个WAP页面: http://abc.com/link.php?sid=xxxxxx，sid为用户登录后的session ID,页面中有链接到http://efg.com的A标签。</p>
<p>当用户点击链接访问http://efg.com时,efg.com的服务器log里就会有类似<br />
xxx.xxx.xxx.xxx &#8211; - [17/Jan/2011:13:29:14 +0800] “GET / HTTP/1.0&#8243; 302 20 “http://abc.com/link.php?sid=xxxxxx” “Firefox”<br />
的记录,无疑efg.com就可以得到该用户的在abc.com的登录session</p>
<p>疑问：abc.com傻b吗？不会把sid存到cookie里吗？</p>
<p>全是中国移动的错，虽然现在几乎所有的手机浏览器都支持cookie，但是如果用户通过CMWAP连接上网，浏览器cookie会被网关过滤。所以国内的WAP网站一般会采取URL参数的形式在页面间传递session id;(那二般是什么？二般是CMWAP网关直接把用户的手机号告诉你,当然这中间必然有某些利益)</p>
<p>那么解决方法就是:<br />
1. 不要在这个外链页面加sid，但是显然不可能，sid丢失之后这个用户就相当于登出了<br />
2. 想办法跳转时不带referer</p>
<p>我们只能选方法2,页面跳转有三种方式:<br />
1. 302/301跳转</p>

<div class="wp_syntax"><div class="code overflow"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'location: http://xxx'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>2. meta标签跳转</p>

<div class="wp_syntax"><div class="code overflow"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>meta http<span style="color: #339933;">-</span>equiv<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;refresh&quot;</span> content<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;2;url=http://xxxx&quot;</span> <span style="color: #339933;">/&gt;</span></pre></div></div>

<p>3. javascript跳转</p>

<div class="wp_syntax"><div class="code overflow"><pre class="javascript" style="font-family:monospace;">document.<span style="color: #660066;">location</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'http://xxxx'</span><span style="color: #339933;">;</span></pre></div></div>

<p>第三种方法,通过JS跳转对于WAP网站来说显然是不靠谱的。所以我只测试了前面两种方法:<br />
test.php -&gt; test2.php -&gt; test3.php<br />
test.php有一个A标签连接到test2.php,test2.php通过302或meta标签的方式跳转到test3.php<br />
然后分析server log,得到下面的referer字段分析表;</p>
<p>点击页URL = test.php<br />
跳转页URL = test2.php</p>
<table>
<tr>
<td></td>
<th>Location跳转</th>
<th>Meta跳转</th>
</tr>
<tr>
<th>UCWEB(S60)</th>
<td>跳转页URL</td>
<td>无</td>
</tr>
<tr>
<th>UCWEB(Anriod)</th>
<td>点击页URL</td>
<td>无</td>
</tr>
<tr>
<th>Opera(S60)</th>
<td>点击页URL</td>
<td>跳转页URL</td>
</tr>
<tr>
<th>S60自带浏览器</th>
<td>点击页URL</td>
<td>跳转页URL</td>
</tr>
<tr>
<th>Anriod自带浏览器</th>
<td>点击页URL</td>
<td>跳转页URL</td>
</tr>
</table>
<p>结果表明302跳转显然是不靠谱的，对于meta跳转，有的浏览器干脆不传referer，要么直传了跳转页的URL，所以使用meta跳转的方式现在看来还是安全的</p>
<p>为啥说现在看来是安全的:<br />
1 . 因为一个浏览器通过跳转不传referer貌似被认为是不规矩的，看这里<a href="http://www.w3help.org/zh-cn/causes/CH9004">http://www.w3help.org/zh-cn/causes/CH9004</a><br />
2 . 手机浏览器五花八门,我的测试不充分</p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
post by gmail~</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2011/01/17/1533.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PPJ回忆录</title>
		<link>http://bluehua.org/2011/01/16/1529.html</link>
		<comments>http://bluehua.org/2011/01/16/1529.html#comments</comments>
		<pubDate>Sun, 16 Jan 2011 09:27:11 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PPJ]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://bluehua.org/2011/01/16/1529.html</guid>
		<description><![CDATA[个人以为:学一门脚本很容易，但是学几门就是一个痛苦的事，因为我经常把他们搞混。。 于是我下决心写一个能够帮我理清楚的文档，我命之为《PPJ回忆录》,从周5写到今天，精疲力尽，剩下OO和正则部分没写，我决定先歇会~ 毫不客气的说，对于同时学里面任意两门语言的同学，这个文档都会对你有帮助。 &#8212;&#8212;&#8212;&#8211; post by gmail~]]></description>
			<content:encoded><![CDATA[<p>个人以为:学一门脚本很容易，但是学几门就是一个痛苦的事，因为我经常把他们搞混。。</p>
<p>于是我下决心写一个能够帮我理清楚的文档，我命之为<a href="http://bluehua.org/demo/PPJ.html">《PPJ回忆录》</a>,从周5写到今天，精疲力尽，剩下OO和正则部分没写，我决定先歇会~</p>
<p>毫不客气的说，对于同时学里面任意两门语言的同学，这个文档都会对你有帮助。</p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
post by gmail~</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2011/01/16/1529.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>c arguments declare old style</title>
		<link>http://bluehua.org/2010/11/16/1464.html</link>
		<comments>http://bluehua.org/2010/11/16/1464.html#comments</comments>
		<pubDate>Tue, 16 Nov 2010 06:39:33 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[arguments declare]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[old style]]></category>

		<guid isPermaLink="false">http://bluehua.org/2010/11/16/1464.html</guid>
		<description><![CDATA[看代码的时候看到这种类型声明 static void add_shopt_to_alist &#40;opt, on_or_off&#41; char *opt; int on_or_off; &#123; // ... &#125; 立刻被震住了，smth上发贴弱问了一下，两分钟内便有两个回复，说这是一种老式的语法，也不好厚脸皮追问，顿时想出一串关键瓷: c arguments declare old style &#8212;&#8212;&#8212;&#8211; post by gmail~]]></description>
			<content:encoded><![CDATA[<p>看代码的时候看到这种类型声明</p>

<div class="wp_syntax"><div class="code overflow"><pre class="c" style="font-family:monospace;"><span style="color: #993333;">static</span> <span style="color: #993333;">void</span>
add_shopt_to_alist <span style="color: #009900;">&#40;</span>opt<span style="color: #339933;">,</span> on_or_off<span style="color: #009900;">&#41;</span>
     <span style="color: #993333;">char</span> <span style="color: #339933;">*</span>opt<span style="color: #339933;">;</span>
     <span style="color: #993333;">int</span> on_or_off<span style="color: #339933;">;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #666666; font-style: italic;">// ...</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>立刻被震住了，smth上发贴弱问了一下，两分钟内便有两个回复，说这是一种老式的语法，也不好厚脸皮追问，顿时想出一串关键瓷:</p>
<p><a href="http://www.google.com.hk/search?sourceid=chrome&#038;ie=UTF-8&#038;q=c+arguments+declare+old+style">c arguments declare old style</a></p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
post by gmail~</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2010/11/16/1464.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>扯淡专用</title>
		<link>http://bluehua.org/2010/11/15/1463.html</link>
		<comments>http://bluehua.org/2010/11/15/1463.html#comments</comments>
		<pubDate>Mon, 15 Nov 2010 15:01:03 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://bluehua.org/2010/11/15/1463.html</guid>
		<description><![CDATA[开了一个专门扯淡的地:blog.hua.lu,越来越有洁癖，好多东西都不想写道这个blog上来。。 &#8212;&#8212;&#8212;&#8211; post by gmail~]]></description>
			<content:encoded><![CDATA[<p>开了一个专门扯淡的地:<a href="http://blog.hua.lu">blog.hua.lu</a>,越来越有洁癖，好多东西都不想写道这个blog上来。。</p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
post by gmail~</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2010/11/15/1463.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>两个星期凑齐的新玩具~</title>
		<link>http://bluehua.org/2010/09/10/1438.html</link>
		<comments>http://bluehua.org/2010/09/10/1438.html#comments</comments>
		<pubDate>Fri, 10 Sep 2010 14:12:08 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[智能家居]]></category>

		<guid isPermaLink="false">http://bluehua.org/2010/09/10/1438.html</guid>
		<description><![CDATA[俺的工作台,哈哈~ 看上去线挺多，其实这是个hello world，控制一个二极管闪呀闪呀。。这是为实现我的智能家居设备DIY做准备，先做到会控制，再做到智能，一步步来。 暂没有发现Linux下面好用的单片机开发环境，只能虚拟机里用xp &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 最近穷折腾啊，没怎么更新blog，有时间找补下~~ &#8212;&#8212;&#8212;&#8211; post by gmail~]]></description>
			<content:encoded><![CDATA[<p>俺的工作台,哈哈~<br />
<a href="http://bluehua.org/wp-content/uploads/2010/09/dsc03661_small.jpg"><img src="http://bluehua.org/wp-content/uploads/2010/09/dsc03661_small.jpg" alt="dsc03661_small.jpg" title="dsc03661_small.jpg"/></a><br />
看上去线挺多，其实这是个hello world，控制一个二极管闪呀闪呀。。这是为实现我的智能家居设备DIY做准备，先做到会控制，再做到智能，一步步来。</p>
<p>暂没有发现Linux下面好用的单片机开发环境，只能虚拟机里用xp<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
最近穷折腾啊，没怎么更新blog，有时间找补下~~</p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
post by gmail~</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2010/09/10/1438.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>以后这么写日志:)</title>
		<link>http://bluehua.org/2010/07/21/1393.html</link>
		<comments>http://bluehua.org/2010/07/21/1393.html#comments</comments>
		<pubDate>Wed, 21 Jul 2010 14:02:48 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[screenshot]]></category>

		<guid isPermaLink="false">http://bluehua.org/2010/07/21/1393.html</guid>
		<description><![CDATA[最快最稳定~ &#8212;&#8212;&#8212;&#8211; post by gmail~]]></description>
			<content:encoded><![CDATA[<p>最快最稳定~</p>
<p><img src="http://bluehua.org/wp-content/uploads/2010/07/screenshot_083_small.png" alt="screenshot_083_small.png" title="screenshot_083_small.png"/></p>
<p>&#8212;&#8212;&#8212;&#8211;<br />
post by gmail~</p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2010/07/21/1393.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>第一次参加d2</title>
		<link>http://bluehua.org/2009/12/22/745.html</link>
		<comments>http://bluehua.org/2009/12/22/745.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 13:14:10 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[web dev]]></category>
		<category><![CDATA[未分类]]></category>
		<category><![CDATA[d2]]></category>

		<guid isPermaLink="false">http://bluehua.org/?p=745</guid>
		<description><![CDATA[额，没有想像中收获多，多少说一下感受： 金同学讲得模板语言，很有新意的架构，但是不适合俺们站的情况。 甄同学讲得silverlight qq，漂过，本人对flash了解不多，对silverlight更没有信心。 张克军讲《从YUI2到YUI3看前端的演变》，没细听。 小明同学讲《前端安全概览及防范》，比较入门，对不太了解这方面的同学会有帮助。 秦歌最后分享《前端性能优化与自动化》，很赞，优化方面讲得很全面，但是对于一些大站来说应该都已经注意到了。 嘉宾们讲的都很赞，但是合口味的不多，唉，明年d2一定要在北京开啊，来回火车累个半死]]></description>
			<content:encoded><![CDATA[<p>额，没有想像中收获多，多少说一下感受：</p>
<ul>
<li>金同学讲得模板语言，很有新意的架构，但是不适合俺们站的情况。</li>
<li>甄同学讲得silverlight qq，漂过，本人对flash了解不多，对silverlight更没有信心。</li>
<li>张克军讲《从YUI2到YUI3看前端的演变》，没细听。</li>
<li>小明同学讲《前端安全概览及防范》，比较入门，对不太了解这方面的同学会有帮助。</li>
<li>秦歌最后分享《前端性能优化与自动化》，很赞，优化方面讲得很全面，但是对于一些大站来说应该都已经注意到了。</li>
</ul>
<p>嘉宾们讲的都很赞，但是合口味的不多，唉，明年d2一定要在北京开啊，来回火车累个半死<img class="xemotion" src="http://bluehua.org/wp-content/plugins/x-emotions/emotions/msn/bofu2_13.gif" border="0" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2009/12/22/745.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>highlight plugin test</title>
		<link>http://bluehua.org/2008/08/06/4.html</link>
		<comments>http://bluehua.org/2008/08/06/4.html#comments</comments>
		<pubDate>Wed, 06 Aug 2008 14:18:27 +0000</pubDate>
		<dc:creator>冥王星2011</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://bluehua.org/?p=4</guid>
		<description><![CDATA[1 2 3 4 5 6 7 &#60;html&#62; &#60;body&#62; &#60;script&#62; document.write&#40;'hello world!'&#41;; &#60;/script&#62; &#60;/body&#62; &#60;/html&#62;]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><div class="overflow"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>html<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'hello world!'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>body<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>html<span style="color: #339933;">&gt;</span></pre></div</td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://bluehua.org/2008/08/06/4.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.026 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-08 10:30:50 -->

