<?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>LiangXu Wang &#187; plugin</title>
	<atom:link href="http://wlx.westgis.ac.cn/tag/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://wlx.westgis.ac.cn</link>
	<description>research of gis, rs, opensource.</description>
	<lastBuildDate>Wed, 28 Jul 2010 17:08:40 +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>bcSpamBlock插件：防止垃圾留言</title>
		<link>http://wlx.westgis.ac.cn/455/</link>
		<comments>http://wlx.westgis.ac.cn/455/#comments</comments>
		<pubDate>Sat, 03 Nov 2007 08:02:32 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[bcspamblock]]></category>
		<category><![CDATA[pingback]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[trackback]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wlx.westgis.ac.cn/455/</guid>
		<description><![CDATA[垃圾留言大多是由程序自动产生的，而bcSpamBlock插件就能有效的阻挡机器的留言，而使用浏览器的留言则感觉不到任何区别，若是禁止了javascript，则需要手工拷贝一个字符串。具体的原理请参考官方的说明。
而目前的1.1版本同时也阻挡了trackback和pingback，因此我进行了一些修改，使其不阻挡trackback和pingback。那如何防止pingback/trackback的垃圾呢？这就可以使用另外一个插件来进行处理：Simple Trackack Validation，同时要注意，这个插件默认只支持对trackback进行处理，我也作了简单地修改，使其能处理pingback。
效果：未使用bcSpamBlock插件之前，我每天将近有3000个spam留言，而使用了这个插件之后，到现在为止，一个漏网的都没有！
bcSpamBlock 1.1 modify by wlx
Simple Trackback Validation 2.1 wlx modified version
]]></description>
			<content:encoded><![CDATA[<p>垃圾留言大多是由程序自动产生的，而<a href="http://www.brandonchecketts.com/archives/block-comment-spam-with-bcspamblock">bcSpamBlock插件</a>就能有效的阻挡机器的留言，而使用浏览器的留言则感觉不到任何区别，若是禁止了javascript，则需要手工拷贝一个字符串。具体的原理请参考官方的说明。</p>
<p>而目前的1.1版本同时也阻挡了trackback和pingback，因此我进行了一些修改，使其不阻挡trackback和pingback。那如何防止pingback/trackback的垃圾呢？这就可以使用另外一个插件来进行处理：<a href="http://sw-guide.de/wordpress/plugins/simple-trackback-validation/">Simple Trackack Validation</a>，同时要注意，这个插件默认只支持对trackback进行处理，我也作了简单地修改，使其能处理pingback。</p>
<p>效果：未使用bcSpamBlock插件之前，我每天将近有3000个spam留言，而使用了这个插件之后，到现在为止，一个漏网的都没有！</p>
<p><a href='http://wlx.westgis.ac.cn/uploads/2007/11/bcspamblock.zip' title='bcSpamBlock 1.1 modify by wlx'>bcSpamBlock 1.1 modify by wlx</a><br />
<a href='http://wlx.westgis.ac.cn/uploads/2007/11/simple-trackback-validation-21-modify-wlx.zip' title='Simple Trackback Validation 2.1 wlx modified version'>Simple Trackback Validation 2.1 wlx modified version</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/455/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>code markup插件的使用</title>
		<link>http://wlx.westgis.ac.cn/343/</link>
		<comments>http://wlx.westgis.ac.cn/343/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 04:17:25 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[code-markup]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wlx.westgis.ac.cn/343/</guid>
		<description><![CDATA[wordpress里默认是无法显示html部分内容的内容，需要使用第三方插件才可以显示，我这使用的是code markup插件。
若需要严格的HTML内容显示，应该这样使用：
&#60;code allow="none"&#62;
具体的使用方法如下：
    * &#60;code&#62; or &#60;code allow="default"&#62; allows common HTML tags to be rendered, and displays everything else exactly as written.
    * &#60;code allow="none"&#62; displays content exactly as written — no markup allowed.
    * &#60;code allow="all"&#62; renders content as HTML — all markup is allowed.
 [...]]]></description>
			<content:encoded><![CDATA[<p>wordpress里默认是无法显示html部分内容的内容，需要使用第三方插件才可以显示，我这使用的是code markup插件。<br />
若需要严格的HTML内容显示，应该这样使用：<br />
<code >&lt;code allow="none"&gt;</code></code><br />
具体的使用方法如下：<br />
<code >    * &lt;code&gt; or &lt;code allow="default"&gt; allows common HTML tags to be rendered, and displays everything else exactly as written.<br />
    * &lt;code allow="none"&gt; displays content exactly as written — no markup allowed.<br />
    * &lt;code allow="all"&gt; renders content as HTML — all markup is allowed.<br />
    * &lt;code allow="em strong a"&gt; allows only &lt;em&gt;, &lt;strong&gt; and &lt;a&gt; tags to be rendered as HTML — everything else is displayed exactly as written. You can put whatever tags you like in the allow attribute, separated by spaces. As a special case, you can include the comment tag — this means that HTML comments &lt;!-- like this --&gt; will be “rendered” as normal HTML comments (i.e. not displayed).<br />
    * &lt;code lang="html"&gt; or<br />
      &lt;code lang="xhtml"&gt; displays content exactly as written, the same as &lt;code allow="none"&gt;.</code></p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/343/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A very nice plugin to preserve html format</title>
		<link>http://wlx.westgis.ac.cn/74/</link>
		<comments>http://wlx.westgis.ac.cn/74/#comments</comments>
		<pubDate>Sun, 17 Apr 2005 13:11:19 +0000</pubDate>
		<dc:creator>wlx</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.mygis.org/74/</guid>
		<description><![CDATA[Thank you, I had searched this tool a long time and now find it.
It is very nice.
http://www.coffee2code.com/archives/2005/03/29/plugin-preserve-code-formatting/
]]></description>
			<content:encoded><![CDATA[<p>Thank you, I had searched this tool a long time and now find it.<br />
It is very nice.</p>
<p>http://www.coffee2code.com/archives/2005/03/29/plugin-preserve-code-formatting/</p>
]]></content:encoded>
			<wfw:commentRss>http://wlx.westgis.ac.cn/74/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
