文章目录
  1. 1. 配置
  2. 2. 如何使用
  3. 3. 如何保持相应的样式。
  4. 4. 一些支持MetaWeblog API的站点.

即使用octopress写博客又需要同步到其他站点的同学们有福了。本人写了一个octopress下的插件,用于将octopress中的最新的一篇博客同步到支持MetaWeblog API的博客站点中去。(wordpress、博客园、CSDN、51CTO、新浪、网易……)

这款插件源码被host在github上,地址是https://github.com/huangbowen521/octopress-syncPost

下面介绍下如何配置和使用。

配置

  • 迁出源码,将源码里的_custom文件夹及其里面的文件拷贝到你的octopress根目录中。

  • 在Gemfile中加入这两个依赖.

1
2
gem 'metaweblog', '~> 0.1.0'
gem 'nokogiri', '~> 1.5.9'

(The first gem is used to send post with MetaWeblog API.
The second gem is used to parse html.)

然后在终端下运行bundle install 安装这两个Gem.

  • 在_config.yml文件中加入MetaWeblog的配置。
1
2
3
4
5
6
7

# MetaWeblog
MetaWeblog_username: *YOURUSERNAME*
MetaWeblog_password: *YOURPASSWORD*
MetaWeblog_url: *YOURBLOGMETAWEBLOGURL*
MetaWeblog_blogid: *BlogID* //can be any number

下面是配置cnblogs的一个示例。

1
2
3
4
5
6
7

# MetaWeblog
MetaWeblog_username: huang0925
MetaWeblog_password: XXXXXXXXXX
MetaWeblog_url: http://www.cnblogs.com/huang0925/services/metaweblog.aspx
MetaWeblog_blogid: 145005

  • 在Rakefile加入这个task。
1
2
3
4
5
6
7

desc "sync post to MetaWeblog site"
task :sync_post do
puts "Sync the latest post to MetaWeblog site"
system "ruby _custom/sync_post.rb"
end

如何使用

  1. 运行 rake generate 生成最新的站点文件。

  2. 运行 rake sync_post 将最新的一篇博客同步到你的站点。

请注意:

  1. 发布完后请检查image的链接是否正确(如果原博客使用的image链接是相对路径则需要进行修正)。

  2. 一些站点需要你启用MetaWeblog功能。(如cnblogs的管理页面有这个设置选项。)

如何保持相应的样式。

使用cnblogs作为一个例子.

  1. 将你的octopress中的screen.css通过博客园提供的文件管理上传到博客园中.

  2. 在博客设置中的’页首html代码’中加入对screen.css文件的使用.

一些支持MetaWeblog API的站点.

文章目录
  1. 1. 配置
  2. 2. 如何使用
  3. 3. 如何保持相应的样式。
  4. 4. 一些支持MetaWeblog API的站点.