<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>BB’s Blog</title>
      <link>http://bblog.biz/</link>
      <description>The World In My Eyes</description>
      <language>en</language>
      <copyright>Copyright 2009</copyright>
      <lastBuildDate>Sun, 09 Mar 2008 00:00:20 +0800</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

      
      <item>
         <title>MT-Twitter：将MT文章同步到Twitter</title>
         <description><![CDATA[<div class="img-bg img_L" style="width: 250px;"><img alt="MT-Twitter" src="http://bblog.biz/upload/2008-03-09.png" width="250" height="222" /></div>上次<a href="http://bblog.biz/movabletype/_plugins/posttotwitter.html">介绍了PostToTwitter 插件</a>，该插件能将MovableType 更新的文章发布到<a href="http://www.twitter.com">Twitter</a>，但该插件几个缺陷，那就是插件默认将所有更新的文章全部发送到Twitter，并且对多用户同时使用支持的不好。

今天我发现了一个名为<a href="http://www.chopstixmedia.com/mt-twitter/">MT-Twitter</a> 的MT插件，该插件经过设置，可以在你发布新文章时选择是否与Twitter 同时更新。

1、登录MT官方插件站<a href="http://plugins.movabletype.org/mttwitter-1/">下载该插件</a>(支持MT4和MT3)。
2、将插件解压上传到Plugin目录之中。
3、在使用该插件的博客"Plugin"中进行设置，需设置一下下列几个参数：Username(你的Twitter账号，邮箱号)、Password(密码)、Introduction(发布到Twitter的标题或者链接)、Twitter by default(设置是否在新增文章中将同步Twitter设为默认，建议不要打勾，以免更改文章时重复在Twitter上提示)。注：该插件支持多博客使用不同的Twitter帐号。
4、设置完毕，在你发布文章时即可选择是否将文章更新信息发送到Twitter。

顺便再介绍个同名的插件，暂且叫它<a href="http://brandon.fuller.name/archives/hacks/mttwitter/">MT-Twitter2</a>吧，该插件类似于Wordpress的Twitter Tools，可以将Tweets发到Blog上。只是Twitter Tools是每天累计发布到博客，它是每条信息同步到博客。因为该插件不是免费的，我就不进行介绍了，需要的朋友可以点上面链接查看详细说明。

该插件虽然不是免费的，但作者还是提供了下载链接给大家试用，只是我安装了该插件并没实现所说的功能，可能是我的博客安装在WIN主机的缘故，大家可以尝试安装下，如果成功运转通知一声，谢谢！]]></description>
         <link>http://bblog.biz/movabletype/_plugins/mt-twitter.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/mt-twitter.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
          <category domain="http://www.sixapart.com/ns/types#tag">系统插件</category>
        
          <category domain="http://www.sixapart.com/ns/types#tag">Twitter</category>
        
         <pubDate>Sun, 09 Mar 2008 00:00:20 +0800</pubDate>
      </item>
      
      <item>
         <title>Macros：将符号转换为HTML</title>
         <description><![CDATA[上次我介绍了实现“<a href="http://mtblog.org/_parts/smile_mt.html">在评论框中添加表情图标按键</a>”的方法，其实和BBEDIT插件原理一样，就是点击一个按键通过JS生成一些html。如果你嫌生成的html 源码过于难看，你可以使用<a href="http://www.bradchoate.com/weblog/2002/08/12/mtmacros" target="_blank">Macros插件</a>，该插件会自动将“设定的符号”转换为图片显示的html源码。

下载安装<a href="http://www.bradchoate.com/downloads/mtmacros-1_52.zip" target="_blank">Macros插件</a>

上传到相应目录<blockquote>
(mt home)/plugins/macros.pl
(mt home)/extlib/bradchoate/macros.pm
(mt home)/extlib/bradchoate/postproc.pm</blockquote>
然后将“符号转换为HTML”代码添加到，相关模版的&lt;head&gt;...&lt;/head&gt;之间(代码美观起见，你可以在模块中添加个包含下列代码，名为smiley macros的模块，然后在head之间使用&lt;$MTInclude&nbsp;module=&quot;smiley&nbsp;macros&quot;$&gt;)，如：
<pre>&lt;MTMacroDefine&nbsp;name=&quot;very_happy&quot;&nbsp;string=&quot;你设定的符号如:Q&quot;&nbsp;no_html=&quot;1&quot;&gt;
&lt;img&nbsp;src=&quot;http://mtblog.org/images/smiles/icon_biggrin.gif&quot;&nbsp;alt=&quot;Very&nbsp;Happy&quot;&nbsp;width=&quot;15&quot;&nbsp;height=&quot;15&quot;&nbsp;border=&quot;0&quot;&nbsp;/&gt;
&lt;/MTMacroDefine&gt;</pre>
进行符号转换为HTML识别，然后在要转换的“MT标签”前后加上&lt;MTMacroApply&gt;...&lt;/MTMacroApply&gt;如：<blockquote>
&lt;MTMacroApply&gt;&lt;$MTEntryBody$&gt;&lt;/MTMacroApply&gt;
&lt;MTMacroApply&gt;&lt;$MTCommentBody$&gt;&lt;/MTMacroApply&gt;</blockquote>
最后重建文件，该插件回自动将设定的符号转换成HTML。

<strong>推荐</strong>大家结合<a href="http://mtblog.org/_plugins/bbedit.html">BBEDIT插件</a>使用，该插件包中有上述那些“符号转换html识别代码”汇总和“本地表情图片”，大家可以直接复制使用。]]></description>
         <link>http://bblog.biz/movabletype/_plugins/macros.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/macros.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Thu, 10 May 2007 23:33:31 +0800</pubDate>
      </item>
      
      <item>
         <title>StatWatch：访问来源统计插件</title>
         <description><![CDATA[<a href="http://www.raquo.net/statwatch/" target="_blank">StatWatch</a>是一计数统计插件。StatWatch与MovableType结合的很好，并且还能够直接调用显示页面中FeedBurner的订阅数。遗憾的是这个插件无法将统计数据显示在博客页面中，相信随着插件升级不久就能解决这个问题。 

安装使用方法：
1、<a href="http://www.raquo.net/statwatch/statwatch_1.2.zip" target="_blank">下载解压</a>插件
2、修改该插件的BUG
进入\plugins\statwatch\lib\statwatch.pm 
将<blockquote>my $schema = File::Spec->catfile($path.'schemas', $db_type . '.dump') </blockquote>
改为<blockquote>my $schema = File::Spec->catfile($path.'plugins/statwatch/schemas', $db_type . '.dump')</blockquote>
否则会出现Can't open schema file '\schemas\mysql.dump': No such file or directory at E:\web\StatWatch.pm line 560.的错误提示。
3、上传StatWatch到相关目录
4、并且将plugins\statwatch\tmpl的文件上传到MT根目录中的\tmpl 否则也会出现错误提示。

安装完后，进入插件执行该插件，系统会自动安装。之后你只要在用户模版中加入&lt;$MTstats$&gt;标签即可激活访问量统计，查看访问数值和来路只需要进入"插件"点击执行插件就能查看。]]></description>
         <link>http://bblog.biz/movabletype/_plugins/statwatch.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/statwatch.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Tue, 08 May 2007 17:27:03 +0800</pubDate>
      </item>
      
      <item>
         <title>PostToTwitter：将MovableType中更新的文章发布到Twitter</title>
         <description><![CDATA[最近<a href="http://www.Twitter.com" target="_blank">Twitter</a> 满火的，今天ikias就在自己的博客上介绍一个能利用MobavleType自动向Twitter投稿的插件。该插件名为<a href="http://labs.m-logic.jp/plugins/posttotwitter/docs/post_to_twitter.html" target="_blank">PostToTwitter</a>，是一日本博客制作的，Ikias将其翻译成中文，推荐大家下载试用。

使用方法：
1、下载解压<a href="http://labs.m-logic.jp/plugins/posttotwitter/" target="_blank">原版日文插件</a>
2、将文件上传到plugins里面
3、进入要发布到Twitter的博客，在"设置"中点入"插件"
4、输入你在Twitter的用户名、密码

这样以后你在MT中每发布一篇文章，该文章就自动的发布到你在Twitter的帐号中。效果可看<a href="http://twitter.com/zhongjia" target="_blank">http://twitter.com/zhongjia</a>

UPDate:该插件不适合多用户使用:cry:，可能会出现发布文章缓慢、较耗系统资源，并且多个Twitter帐号可能会互相影响(我设置了一个博客使用Twitter，结果其他博客里的"设置"也出现该帐户的用户密码)。]]></description>
         <link>http://bblog.biz/movabletype/_plugins/posttotwitter.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/posttotwitter.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
          <category domain="http://www.sixapart.com/ns/types#tag">Twitter</category>
        
         <pubDate>Sun, 06 May 2007 08:59:47 +0800</pubDate>
      </item>
      
      <item>
         <title>Google PageRank：显示PR值的插件</title>
         <description><![CDATA[这是个将Google 的PR值通过标签在博客中显示的插件，你可以查看作者对<a href="http://www.drk7.jp/MT/archives/000486.html" target="_blank">此插件的介绍</a>。我这里简单介绍下安装和使用方法：

1、<a href="http://www.drk7.jp/cgi-bin/DLsys/DLsys.cgi?lay=31" target="_blank">下载</a>解压该插件
2、将文件包中的MTGooglePageRank.pl 上传到plugins 文件夹中
3、再将文件包中的lib->WWW->Google 文件夹，上传到你的MT根目录中的extlib->WWW里面。
好奇怪，为什么该作者不直接安排下目录，让大家安装还要按照这个步骤上传-_||

4、使用的时候你只需要在模版适当的地方加上以下代码：
Google&nbsp;PageRank：&lt;MTGooglePageRank&nbsp;url=&quot;你的网站地址&quot;&gt;&lt;$MTpagerank$&gt;&lt;/MTGooglePageRank&gt;

其实PR 更新比较慢，我建议大家直接填写网站PR值，毕竟插件多了重建会比较慢(一旦Google API无法访问，重建会一直卡着)]]></description>
         <link>http://bblog.biz/movabletype/_plugins/google_pagerank.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/google_pagerank.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Wed, 02 May 2007 13:08:20 +0800</pubDate>
      </item>
      
      <item>
         <title>MT-notifier：EMAIL订阅功能</title>
         <description><![CDATA[给大家推荐一个插件<a href="http://everitz.com/mt/notifier/index.php" target="_blank">mt-notifier</a>，这个插件的作用是通过EMAIL发信让使用EMAIL的订阅者随时跟踪文章、分类、博客的更新。并且你可以结合评论框使用，让评论文章的人选择是否通过EMAIL订阅本文，随时跟踪该文章的回复。

使用方法：
1、<a href="http://www.everitz.com/sol/mt-notifier/index.php#download" target="_blank">下载解压</a>该插件，并上传到相关目录。
2、到想使用该插件的博客中进行设置，进入"设置""插件"根据官方介绍进行设置。
3、然后在合适页面中增加订阅框代码：
<blockquote>&lt;form&nbsp;method=&quot;get&quot;&nbsp;action=&quot;&lt;$MTCGIPath$&gt;plugins/Notifier/mt-notifier.cgi&quot;&gt;
&lt;input&nbsp;type=&quot;hidden&quot;&nbsp;name=<span style="color:#ff0000">&quot;blog_id&quot;</span>&nbsp;value=&quot;<span style="color:#ff0000">&lt;$MTBlogID$&gt;</span>&quot;&nbsp;/&gt;
Subscribe&nbsp;to&nbsp;This&nbsp;Blog&lt;br/&nbsp;&gt;
&lt;input&nbsp;name=&quot;email&quot;&nbsp;/&gt;
&lt;input&nbsp;type=&quot;submit&quot;&nbsp;class=&quot;button&quot;&nbsp;value=&quot;Go&quot;&nbsp;/&gt;
&lt;/form&gt;</blockquote>其中你可以根据需要更改红字部分，如果你要使用订阅分类功能则可将Blog_id改为category_id 把&lt;$MTBlogID$&gt;改为&lt;$MTNotifierCatID&gt;，并选择放在分类页面中即可。同样如果要订阅单篇文章，则将其改为entry_id 、&lt;$MTEntryID$&gt;
4、在评论框中加上：
<blockquote>&lt;p&gt;&lt;label&nbsp;for=&quot;subscribe&quot;&gt;Subscribe&nbsp;to&nbsp;This&nbsp;Entry:&lt;/label&gt;
&lt;input&nbsp;type=&quot;checkbox&quot;&nbsp;name=&quot;subscribe&quot;&nbsp;value=&quot;1&quot;&nbsp;/&gt;&lt;/p&gt;</blockquote>
让评论者在评论时选择是否使用提供的EMAIL地址来跟踪本文。我默认为直接选择，因为这样方便互通。

你可以评论本站文章，或者订阅本站进行测试:)]]></description>
         <link>http://bblog.biz/movabletype/_plugins/mt_notifier.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/mt_notifier.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Sun, 22 Apr 2007 08:59:32 +0800</pubDate>
      </item>
      
      <item>
         <title>MT-SPA：用标签代替snap代码</title>
         <description><![CDATA[上次给大家<a href="http://mtblog.org/_styles/snap.html">介绍了页面链接截图</a>的网站Snap。
今天给大家介绍个在MT中集合<a href="http://www.snap.com" target="_blank">snap</a>的插件——<a href="http://www.everitz.com/sol/mt-spa/index.php" target="_blank">MT-SPA</a>。

使用方法：
1、<a href="http://downloads.everitz.com/MT-SPA.zip" target="_blank">下载解压</a>该插件，并上传到Plugins目录
2、进入博客“设置”在“插件”中将在SNAP 中申请的key，填入相关方框中。
3、编辑要显示URL截图的页面，在&lt;head&gt;…&lt;/head&gt;中填加
&lt;$MTSnapPreviewAnywhere$&gt;
4、重建页面后会该标签会自动生成SNAP JS代码。

PS：<a href="http://ajaydsouza.com/wordpress/plugins/snap-preview-anywhere/" target="_blank">WP的SNAP插件</a>点此查看，并且最近SNAP更新的很快，插件也随着在更新，大家可以随时升级:)]]></description>
         <link>http://bblog.biz/movabletype/_plugins/mt_spa.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/mt_spa.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Fri, 20 Apr 2007 11:48:42 +0800</pubDate>
      </item>
      
      <item>
         <title>Photo Gallery：创建MT图片博客</title>
         <description><![CDATA[前天在BBS有人向我咨询了MovableType 架设的一些问题。这个人满喜欢摄影的，于是就想向他推荐使用<a href="http://www.majordojo.com/projects/photogallery.php" target="_blank">Photo Gallery</a> 插件。

这个插件很适合喜欢在博客上存放图片的人使用，具体效果可以查看本站的<a href="http://maogai.com" target="_blank">猫盖网 </a>。该插件其实是通过MT 平台进行图片发布，并结合一模版使其动态化。

安装说明：<a href="http://www.majordojo.com/projects/photogallery/install.php" target="_blank">下载</a>解压插件，将其中的photogallery目录上传到Plugins目录中。

然后进入单博客的主菜单在“Plugin Actions”中“Create Photo Gallery”，然后系统会开设该Photo博客。

重建全站后，每当你要更新Photo博客，你需要从“Plugin Actions”中点入“Upload Photo to Gallery”进行新增日志。使用方法简单，大家随便点点就知道了。

<strong>注：</strong>该插件有个细节的地方没有做好，如果你的博客和MT操作平台不在同个目录，你则需要将plugins/PhotoGallery/templates/中的meta 目录复制到生成的博客中去。否则会出现显示错误:
<pre>Warning: main(e:\\web\\zhongjia\\web/meta/functions/all.php) [function.main]: failed to open stream: No such file or directory in e:\web\zhongjia\web\bblog\maogai\index.php on line 9
Warning: main(e:\\web\\zhongjia\\web/meta/functions/all.php) [function.main]: failed to open stream: No such file or directory in e:\web\zhongjia\web\bblog\maogai\index.php on line 9
Warning: main() [function.include]: Failed opening 'e:\\web\\zhongjia\\web/meta/functions/all.php' for inclusion (include_path='.;c:\php4\pear') in e:\web\zhongjia\web\bblog\maogai\index.php on line 9
Fatal error: Call to undefined function: dochead() in e:\web\zhongjia\web\bblog\maogai\index.php on line 11</pre>
如果是多用户使用该插件，你可以进入PhotoGallery\templates\meta\templates 目录中的general-html和general-php目录，并将其中文件的 <$MTBlogRelativeURL$>meta 标签全部替换为<$MTCGIPath$>plugins/PhotoGallery/templates/meta 。这样就无须将meta 目录复制到相关博客中去了。

当然如果你不想让所有的博客都有开通Photo 博客的权限，你可以进入plugins\PhotoGallery\tmp 编辑edit_blog.tmpl 文件。在：
<pre><span style="color:#ff0000">&lt;TMPL_IF&nbsp;NAME=CAN_EDIT_AUTHORS&gt;</span>
&lt;h2&gt;&lt;MT_TRANS&nbsp;phrase=&quot;New&nbsp;Photo&nbsp;Gallery&nbsp;Settings&quot;&gt;&lt;/h2&gt;
&lt;p&nbsp;class=&quot;page-desc&quot;&gt;&lt;MT_TRANS&nbsp;phrase=&quot;From&nbsp;this&nbsp;screen&nbsp;you&nbsp;can&nbsp;specify&nbsp;the&nbsp;basic&nbsp;information&nbsp;needed&nbsp;to&nbsp;create&nbsp;a&nbsp;weblog.&nbsp;&nbsp;Once&nbsp;you&nbsp;click&nbsp;the&nbsp;save&nbsp;button,&nbsp;your&nbsp;weblog&nbsp;will&nbsp;be&nbsp;created&nbsp;and&nbsp;you&nbsp;can&nbsp;continue&nbsp;to&nbsp;customize&nbsp;its&nbsp;settings&nbsp;and&nbsp;templates,&nbsp;or&nbsp;just&nbsp;simply&nbsp;start&nbsp;posting.&quot;&gt;&lt;/p&gt;
&lt;TMPL_IF&nbsp;NAME=SAVED&gt;
&lt;div&nbsp;class=&quot;message&quot;&gt;&lt;MT_TRANS&nbsp;phrase=&quot;Your&nbsp;photo&nbsp;gallery&nbsp;configuration&nbsp;has&nbsp;been&nbsp;saved.&quot;&gt;&nbsp;&lt;TMPL_INCLUDE&nbsp;NAME=&quot;rebuild-stub.tmpl&quot;&gt;&lt;/div&gt;
&lt;/TMPL_IF&gt;
……

&lt;div&nbsp;style=&quot;text-align:&nbsp;center;&quot;&gt;
&lt;input&nbsp;type=&quot;submit&quot;&nbsp;value=&quot;&lt;MT_TRANS&nbsp;phrase=&quot;Save&nbsp;Changes&quot;&gt;&quot;&nbsp;/&gt;
&lt;/div&gt;
&lt;/form&gt;
&lt;/div&gt;
<span style="color:#ff0000">&lt;/TMPL_IF&gt;</span></pre>
添加红字部分。这样只有拥有管理员权限的用户才可以开设PHoto博客。

注：该插件需要<a href="http://www.imagemagick.org/" target="_blank">Image::Magick </a>模块的支持，并且博客名必须有英文，否则无法在IE7下显示。]]></description>
         <link>http://bblog.biz/movabletype/_plugins/photo_gallery.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/photo_gallery.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Wed, 18 Apr 2007 15:56:02 +0800</pubDate>
      </item>
      
      <item>
         <title>Feeds.App：实现MovableType 聚合页面</title>
         <description><![CDATA[昨天提到<a href="http://code.appnel.com/feeds-app" target="_blank">Feeds.App 3.01 </a>，于是我下载升级了该插件，发现新插件提供了N多的标签。

安装方法：
1、先删除MT默认的Feeds.App Lite 1.01(删除plugins中的就行，其他的可以先放着)
2、再<a href="http://code.appnel.com/dist/feeds-app" target="_blank">下载该插件</a>
3、解压上传到相应目录。
<pre>
Tags:&nbsp;&lt;MTFeed&gt;,&nbsp;&lt;MTFeeds&gt;,&nbsp;&lt;MTFeedsLatest&gt;,&nbsp;
&lt;MTFeedEntries&gt;,&nbsp;&lt;MTFeedsHeader&gt;,&nbsp;&lt;MTFeedsFooter&gt;,&nbsp;
&lt;MTFeedEntriesHeader&gt;,&nbsp;&lt;MTFeedEntriesFooter&gt;,&nbsp;&lt;MTFeedLinks&gt;,&nbsp;
&lt;MTFeedAuthors&gt;,&nbsp;&lt;MTFeedContributors&gt;,&nbsp;&lt;MTFeedCategories&gt;,&nbsp;
&lt;$MTFeedURI$&gt;,&nbsp;&lt;$MTFeedTitle$&gt;,&nbsp;&lt;$MTFeedSubtitle$&gt;,&nbsp;
&lt;$MTFeedLink$&gt;,&nbsp;&lt;$MTFeedLinkURL$&gt;,&nbsp;&lt;$MTFeedLinkRelation$&gt;,&nbsp;
&lt;$MTFeedLinkType$&gt;,&nbsp;&lt;$MTFeedLinkTitle$&gt;,&nbsp;&lt;$MTFeedRights$&gt;,&nbsp;
&lt;$MTFeedLanguage$&gt;,&nbsp;&lt;$MTFeedIdentifier$&gt;,&nbsp;&lt;$MTFeedAuthorName$&gt;,&nbsp;
&lt;$MTFeedAuthorEmail$&gt;,&nbsp;&lt;$MTFeedAuthorLink$&gt;,&nbsp;&lt;$MTFeedContributorName$&gt;,&nbsp;
&lt;$MTFeedContributorEmail$&gt;,&nbsp;&lt;$MTFeedContributorLink$&gt;,&nbsp;
&lt;$MTFeedCategoryTerm$&gt;,&nbsp;&lt;$MTFeedCategoryLabel$&gt;,&nbsp;
&lt;$MTFeedCategoryScheme$&gt;,&nbsp;&lt;$MTFeedUpdated$&gt;,&nbsp;
&lt;MTFeedEntryLinks&gt;,&nbsp;&lt;MTFeedEntryAuthors&gt;,&nbsp;&lt;MTFeedEntryContributors&gt;,&nbsp;
&lt;MTFeedEntryCategories&gt;,&nbsp;&lt;$MTFeedEntryCount$&gt;,&nbsp;&lt;$MTFeedEntryTitle$&gt;,&nbsp;
&lt;$MTFeedEntrySummary$&gt;,&nbsp;&lt;$MTFeedEntryContent$&gt;,&nbsp;&lt;$MTFeedEntryLink$&gt;,&nbsp;
&lt;$MTFeedEntryLinkURL$&gt;,&nbsp;&lt;$MTFeedEntryLinkRelation$&gt;,&nbsp;&lt;$MTFeedEntryLinkType$&gt;,&nbsp;
&lt;$MTFeedEntryLinkTitle$&gt;,&nbsp;&lt;$MTFeedEntryRights$&gt;,&nbsp;&lt;$MTFeedEntryLanguage$&gt;,&nbsp;
&lt;$MTFeedEntryIdentifier$&gt;,&nbsp;&lt;$MTFeedEntryAuthorName$&gt;,&nbsp;&lt;$MTFeedEntryAuthorEmail$&gt;,&nbsp;
&lt;$MTFeedEntryAuthorLink$&gt;,&nbsp;&lt;$MTFeedEntryContributorName$&gt;,&nbsp;&lt;$MTFeedEntryContributorEmail$&gt;,&nbsp;
&lt;$MTFeedEntryContributorLink$&gt;,&nbsp;&lt;$MTFeedEntryCategoryTerm$&gt;,&nbsp;&lt;$MTFeedEntryCategoryLabel$&gt;,&nbsp;
&lt;$MTFeedEntryCategoryScheme$&gt;,&nbsp;&lt;$MTFeedEntryUpdated$&gt;,&nbsp;&lt;$MTFeedEntryPublished$&gt;,&nbsp;
&lt;$MTFeedEntrySourceTitle$&gt;,&nbsp;&lt;$MTFeedEntrySourceLink$&gt;,&nbsp;&lt;$MTFeedEntrySourceFeedLink$&gt;,&nbsp;
&lt;MTIfFeedsLatest&gt;,&nbsp;&lt;MTIfFeedText&gt;,&nbsp;&lt;MTIfFeedLinked&gt;,&nbsp;&lt;MTIfFeedCategorized&gt;,&nbsp;
&lt;MTIfFeedEntryText&gt;,&nbsp;&lt;MTIfFeedEntryLinked&gt;,&nbsp;&lt;MTIfFeedEntryCategorized&gt;,&nbsp;&lt;MTIfFeedEntrySourced&gt;,&nbsp;
&lt;MTIfFeedUpdated&gt;,&nbsp;&lt;MTIfFeedEntryPublished&gt;,&nbsp;&lt;MTIfFeedEntryUpdated&gt;,&nbsp;&lt;$MTFeedsAppVersion$&gt;,&nbsp;
&lt;$MTFeedsAppSlug$&gt;,&nbsp;&lt;MTFeedIf&gt;,&nbsp;&lt;$MTFeedDescription$&gt;,&nbsp;&lt;$MTFeedCreatorName$&gt;,&nbsp;&lt;$MTFeedCreatorEmail$&gt;,&nbsp;
&lt;$MTFeedCreatorURL$&gt;,&nbsp;&lt;$MTFeedContributorURL$&gt;,&nbsp;&lt;$MTFeedModified$&gt;,&nbsp;&lt;$MTFeedEntryDescription$&gt;,&nbsp;
&lt;$MTFeedEntryModified$&gt;,&nbsp;&lt;$MTFeedEntryCreated$&gt;,&nbsp;&lt;$MTFeedEntrySourceName$&gt;,&nbsp;&lt;$MTFeedsVersion$&gt;,&nbsp;
&lt;$MTFeedsVersionSlug$&gt;,&nbsp;&lt;MTInvoke&gt;,&nbsp;&lt;MTInvokeTag&gt;,&nbsp;&lt;MTInvokeContents&gt;,&nbsp;&lt;MTInvokeSetArg&gt;,&nbsp;
&lt;$MTLayoutArgument$&gt;,&nbsp;&lt;MTIfLayoutArgument&gt;,&nbsp;&lt;MTUnlessLayoutArgument&gt;,&nbsp;&lt;$MTFeedInclude$&gt;,&nbsp;&lt;$MTFeedsInclude$&gt;,&nbsp;
&lt;$MTFeedsLatestInclude$&gt;,&nbsp;&lt;$MTFeedItemInclude$&gt;,&nbsp;&lt;$MTFeedsIncludeLatest$&gt;,&nbsp;&lt;$MTFeedSubscriptionsOPMLFile$&gt;,&nbsp;
&lt;$MTFeedSubscriptionsXOXOFile$&gt;,&nbsp;&lt;$MTFeedSubscriptions$&gt;,&nbsp;&lt;$MTFeedsLatestViewSource$&gt;,&nbsp;&lt;$MTFeedViewSource$&gt;,&nbsp;
&lt;$MTFeedsAppSummaryDisplayDefault$&gt;&nbsp;</pre>
这些标签能够实现MovableType 聚合页面。等论文写完了，我会将 <a href="http://movabletype.org.cn" target="_blank">movabletype.org.cn</a> 做成该聚合形式，先卖个关子，呵呵。

使用方法：
1、在系统插件中对自动更新频率进行设置(你也可以通过这个插件实现<a href="http://mtblog.org/_plugins/mtrebuild.html">首页定时更新</a>)。
2、进入要使用Feeds.App的博客，在“设置”->“插件”中进行简单的设置。
如：选择定时更新的模版，设置添加多个RSS。
3、在要使用Feeds.App模版的边栏中添加下列代码(当然你也可以通过博客“模版”中的Create a feed widget 得到代码)：
<blockquote>&lt;MTFeedsLatest&gt;
&lt;h3&gt;Latest&nbsp;Posts&lt;/h3&gt;
&lt;ul&gt;&lt;MTFeedEntries&nbsp;lastn=&quot;25&quot;&gt;
&lt;li&gt;&lt;a&nbsp;href=&quot;&lt;$MTFeedEntryLink$&gt;&quot;&gt;
&lt;$MTFeedEntryTitle&nbsp;encode_html=&quot;1&quot;$&gt;&lt;/a&gt;
&nbsp;[&lt;$MTFeedEntrySourceTitle&nbsp;encode_html=&quot;1&quot;$&gt;]&lt;/li&gt;
&lt;/MTFeedEntries&gt;&lt;/ul&gt;
&lt;/MTFeedsLatest&gt;</blockquote>
具体使用可参考该插件的<a href="http://appnel.com/kb/feeds-app/getting-started-with-feedsapp" target="_blank">官方说明</a>。

UPdate:该插件还个小BUG，生成页面的生成目录都在blogid=1 的博客中(并且调用了blogid=1的一些标签)，也就是说该插件的重建功能，目前只适合在BLogid=1的博客上使用。]]></description>
         <link>http://bblog.biz/movabletype/_plugins/feedsapp_movabletype.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/feedsapp_movabletype.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Fri, 30 Mar 2007 11:00:28 +0800</pubDate>
      </item>
      
      <item>
         <title>OpenID Comments for MT</title>
         <description><![CDATA[<a href="http://markpasc.org/code/mt/openid_comments/" target="_blank">OpenID Comments </a>是一个让Movable Type 博客能使用OPENID 来进行评论的插件。

使用方法：
1、下载<a href="http://markpasc.org/code/mt/openid_comments/openid-comment-1.7.zip" target="_blank">OpenID Comments 1.7</a> (14 November 2006)
2、解压上传到相应目录
3、在单篇模版中评论框上面添加下列标签：
<blockquote>&lt;div&nbsp;id=&quot;openid&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;form&nbsp;method=&quot;post&quot;&nbsp;action=&quot;&lt;MTOpenIDSignOnURL&gt;&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input&nbsp;type=&quot;hidden&quot;&nbsp;name=&quot;entry_id&quot;&nbsp;value=&quot;&lt;MTEntryID&gt;&quot;&nbsp;/&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input&nbsp;type=&quot;hidden&quot;&nbsp;name=&quot;__mode&quot;&nbsp;value=&quot;signon&quot;&nbsp;/&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;p&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;label&gt;Your&nbsp;blog&nbsp;URL:&lt;/label&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input&nbsp;name=&quot;openid_url&quot;&nbsp;size=&quot;35&quot;&nbsp;value=&quot;&quot;&nbsp;/&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;input&nbsp;type=&quot;submit&quot;&nbsp;value=&quot;Sign&nbsp;in&quot;&nbsp;/&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/p&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/form&gt;
&lt;/div&gt;</blockquote>
这样你的博客就可以支持OPENID 评论了，具体可在本站进行演示。
注：该插件和<a href="http://code.appnel.com/feeds-app" target="_blank">Feeds.App Lite</a>有冲突，原因是Fetch.pm版本不同，你需要将openid-comment\lib\URI的两文件用mt/extlib/URI/中的相同文件替换。

其他相关设置可参考OpenID Comments for MT 的官方说明，“<a href="http://mtblog.org/_parts/openid_server.html">如何使用你的博客链接作为自己的OPENID</a>”可参考此文。]]></description>
         <link>http://bblog.biz/movabletype/_plugins/openid_comments.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/openid_comments.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Thu, 29 Mar 2007 13:39:49 +0800</pubDate>
      </item>
      
      <item>
         <title>OpenID Server 的支持</title>
         <description><![CDATA[使用你的博客链接作为自己的OPENID 有两种方法：

一、使用MT提供的 <a href="http://www.sixapart.com/pronet/plugins/plugin/openid_server_f.html" target="_blank">OpenID Server </a>的插件。
1、你只需要<a href="http://www.sixapart.com/pronet/code/openid-server-1.1.zip" target="_blank">下载该插件</a>
2、将该插件上传到相应目录中。
3、而后在博客首页&lt;head&gt;...&lt;/head&gt;中加入：
<blockquote>&lt;link&nbsp;rel=&quot;openid.server&quot;&nbsp;href=&quot;&lt;MTCGIPath&gt;plugins/openid-server/server.cgi&quot;&nbsp;/&gt;</blockquote>
这样就可以让你的博客成为OpenID Server ，也就是你可以使用你的博客链接作为自己的OPENID
注意：目前该插件不支持MT3.3 版本。

二、你可以直接到<a href="http://www.openid.cn" target="_blank">openid.cn</a> 注册个帐户。而后系统会提供给用户一个OPENID，如果你想使用自己博客的URL作为OPENID，你需要将系统提供的代码放如你的博客首页。如本站：
<blockquote>&lt;link&nbsp;rel=&quot;openid.server&quot;&nbsp;href=&quot;http://www.openid.cn/openid.server&quot;&nbsp;/&gt;
&lt;link&nbsp;rel=&quot;openid.delegate&quot;&nbsp;href=&quot;http://zhongjia.openid.cn/&quot;&nbsp;/&gt;</blockquote>
放在&lt;head&gt;...&lt;/head&gt; 只间即可。

而后你可以在有提供OpenID支持 的博客中使用URL 直接评论。本站支持OPENID，欢迎大家进行测试。

在MT中“<a href="http://mtblog.org/_plugins/openid_comments.html">如何开启OPENID支持</a>”可参考此文。]]></description>
         <link>http://bblog.biz/movabletype/_plugins/openid_server.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/openid_server.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Thu, 29 Mar 2007 13:08:44 +0800</pubDate>
      </item>
      
      <item>
         <title>BlogCopyright Plugin for MT</title>
         <description><![CDATA[<a href="http://www.milbertus.com/archives/2003/04/06/blogcopyright_p.php" target="_blank">BlogCopyright Plugin for MT</a>，其作用是<$MTBlogCopyright$>标签参数，将你的MT里最原始的文章和最新的文章的年的时间提取出来，以Copyright 某年-某年的方式显示出来。但此插件在多用户使用的时候支持的不好，有时候会出现错误，好象只支持博客作者进行重建。

使用方法：
1、<a href="http://www.milbertus.com/archives/2003/04/06/blogcopyright_p.php" target="_blank">下载解压</a>
2、在适当的地方添加&lt;$MTBlogCopyright&nbsp;owner=&quot;你的ID&quot;$&gt;标签]]></description>
         <link>http://bblog.biz/movabletype/_plugins/blogcopyright_plugin_for_mt.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/blogcopyright_plugin_for_mt.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Wed, 28 Mar 2007 13:36:11 +0800</pubDate>
      </item>
      
      <item>
         <title>Entry plugin：在页面中显示特定文章</title>
         <description><![CDATA[<a href="http://www.rayners.org/archives/blogging/movable_type/mt_plugins/entry/index.php" target="_blank">Entry plugin</a>，是一个能显示特定文章的插件，它是根据文章的entryID 来提取文章进行显示的。

比如本文的entryID=755，如果我想在某个页面中显示这篇文章，那么我可以安装这个插件，再使用以下代码将其显示出来：
<blockquote>&lt;MTEntry&nbsp;id=&quot;755&quot;&gt;
&lt;$MTEntryTitle$&gt;&lt;br&nbsp;/&gt;
&lt;$MTEntryBody$&gt;
&lt;/MTEntry&gt;</blockquote>

这个插件的标签可以放在首页模版中，实现文章置顶功能。

安装方法：
1、<a href="http://www.rayners.org/plugins/entry-0.5.zip" target="_blank">下载解压</a>
2、上传到plugins目录中
其他具体功能介绍请看<a href="http://www.rayners.org/archives/blogging/movable_type/mt_plugins/entry/index.php" target="_blank">官方说明</a>]]></description>
         <link>http://bblog.biz/movabletype/_plugins/entry_plugin.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/entry_plugin.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Tue, 27 Mar 2007 13:57:29 +0800</pubDate>
      </item>
      
      <item>
         <title>MT Google PageRank：显示Google PageRank</title>
         <description><![CDATA[介绍一个能在MovableType 中显示Google PageRank的插件。<a href="http://www.drk7.jp/MT/archives/000486.html" target="_blank">Google PageRank插件</a>

使用方法
1.<a href="http://www.drk7.jp/cgi-bin/DLsys/DLsys.cgi?lay=31" target="_blank">下载解压</a>后，将MTGooglePageRank.pl 放到plugins文件夹里
2.将其中的lib→WWW→Google文件夹，放到你的MT里的extlib→WWW里面
3.然后，在想显示Google PageRank的地方追加下面代码：
<blockquote>Google&nbsp;PageRank：&lt;MTGooglePageRank&nbsp;url=&quot;你的网站地址&quot;&gt;&lt;$MTpagerank$&gt;&lt;/MTGooglePageRank&gt;</blockquote>]]></description>
         <link>http://bblog.biz/movabletype/_plugins/mt_google_pagerank.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/mt_google_pagerank.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Tue, 27 Mar 2007 13:31:35 +0800</pubDate>
      </item>
      
      <item>
         <title>Counter：给文章排序</title>
         <description><![CDATA[在<a href="http://labs.m-logic.jp/" target="_blank">一博客</a>上发现了这个<a href="http://labs.m-logic.jp/2006/11/movabletypecounter_pluginver05.html" target="_blank">Counter 插件</a>。其作用是显示文章的排序，演示可看本站首页文章的标题。

使用方法：
1、<a href="http://labs.m-logic.jp/plugins/mt-counter/MTCounter.zip" target="_blank">下载解压</a>该插件

2、将其上传到plugins 目录

3、然后在首页文章中使用下列代码：
<blockquote><span style="color:#ff0000">&lt;MTCounter&gt;</span>
&nbsp;&nbsp;&lt;MTEntries&gt;&nbsp;
<span style="color:#ff0000">&nbsp;&nbsp;&nbsp;&nbsp;&lt;$MTCounterPlus$&gt;</span>
&nbsp;&nbsp;&nbsp;&nbsp;&lt;$MTEntryTitle$&gt;<span style="color:#ff0000">[&lt;$MTCounterValue$&gt;]</span>
&nbsp;&nbsp;&lt;/MTEntries&gt;&nbsp;
<span style="color:#ff0000">&lt;/MTCounter&gt;</span></blockquote>
即可显示文章的具体排序。

我只用了这个功能，其他功能标签的使用方法请看<a href="http://labs.m-logic.jp/plugins/mt-counter/docs/mt-counter.html" target="_blank">官方教程</a>和<a href="http://www.koikikukan.com/archives/2006/11/16-013557.php" target="_blank">小杂空间的介绍</a>。]]></description>
         <link>http://bblog.biz/movabletype/_plugins/counter.html</link>
         <guid>http://bblog.biz/movabletype/_plugins/counter.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">插件 Plugins</category>
        
        
         <pubDate>Mon, 26 Mar 2007 17:51:36 +0800</pubDate>
      </item>
      
   </channel>
</rss>
