README
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:3k
源码类别:

Ajax

开发平台:

Others

  1. TypoConverters
  2. ==================
  3. This Plugins is a new system for converting the database of another blog in Typo
  4. blog database.
  5. This system is base on Mephisto converter. It's a plugin and he
  6. use completly ActiveRecord. For retrieve the information on other blog and
  7. post in typo.
  8. In this converter, there an interface is write and
  9. you can use it with anything Blog engine to create another adapter.
  10. Now you can migrate from :
  11.  * Wordpress 2.5
  12.  * Dotclear 1.2.x
  13.  * Dotclear 2.0.x (RC)
  14. Migration for a Dotclear 1.2.x database
  15. =======================================
  16. To start the migration with dotclear 1, you need complete the
  17. config/database.yml with a configuration with 'dc' key and all information on
  18. where find the database with SQLDump of your blog engine. After this
  19. configuration you can start the migration with the follow command line :
  20. ./script/runner 'TypoPlugins.convert_from :dotclear'
  21. By default all articles migrated, but you can migrate only articles with
  22. specifiques categories.
  23. ./script/runner "TypoPlugins.convert_from :dotclear, :categories => ['ruby', 'rails', 'dev']"
  24. Migration for a WordPress 2.5.x database
  25. =======================================
  26. To start the migration with WordPress 2.5.x, you need complete the
  27. config/database.yml with a configuration 'wp25' key and all informartion on
  28. where find the database with SQLDump of your blog enfine. After this
  29. configuration you can start the migration with the follow command line :
  30. ./script/runner 'TypoPlugins.convert_from :wp25'
  31. By default the prefix's name is 'wp' but you can change it with option :prefix
  32. like :
  33. ./script/runner "TypoPlugins.convert_from :wp25, :prefix => 'sunny'"
  34. Migration for a Dotclear 2.0.x database
  35. =======================================
  36. To start the migration with dotclear 2, you need complete the
  37. config/database.yml with a configuration with 'dc2' key and all information on
  38. where find the database with SQLDump of your blog engine. After this
  39. configuration you can start the migration with the follow command line :
  40. ./script/runner 'TypoPlugins.convert_from :dotclear_2'
  41. By default all articles migrated, but you can migrate only articles with
  42. specifiques categories.
  43. ./script/runner "TypoPlugins.convert_from :dotclear_2, :categories => ['ruby', 'rails', 'dev']"
  44. By default the prefix's name is 'dc' but you can change it with option :prefix
  45. like :
  46. ./script/runner "TypoPlugins.convert_from :dotclear_2, :prefix => 'sunny'"
  47. This 2 options are too in same action :
  48. ./script/runner "TypoPlugins.convert_from :dotclear_2, :prefix => 'sunny', :categories => ['ruby', 'rails', 'dev']"