typo 3.99.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.DS_Store +0 -0
- data/CHANGELOG +718 -0
- data/MAINTAINERS +30 -0
- data/MIT-LICENSE +21 -0
- data/README +92 -0
- data/Rakefile +10 -0
- data/app/apis/blogger_service.rb +94 -0
- data/app/apis/meta_weblog_service.rb +197 -0
- data/app/apis/movable_type_service.rb +150 -0
- data/app/apis/typo_web_service.rb +26 -0
- data/app/controllers/accounts_controller.rb +52 -0
- data/app/controllers/admin/base_controller.rb +21 -0
- data/app/controllers/admin/blacklist_controller.rb +50 -0
- data/app/controllers/admin/cache_controller.rb +31 -0
- data/app/controllers/admin/categories_controller.rb +64 -0
- data/app/controllers/admin/comments_controller.rb +57 -0
- data/app/controllers/admin/content_controller.rb +147 -0
- data/app/controllers/admin/general_controller.rb +42 -0
- data/app/controllers/admin/pages_controller.rb +50 -0
- data/app/controllers/admin/resources_controller.rb +98 -0
- data/app/controllers/admin/sidebar_controller.rb +74 -0
- data/app/controllers/admin/textfilters_controller.rb +104 -0
- data/app/controllers/admin/themes_controller.rb +20 -0
- data/app/controllers/admin/trackbacks_controller.rb +54 -0
- data/app/controllers/admin/users_controller.rb +41 -0
- data/app/controllers/application.rb +66 -0
- data/app/controllers/articles_controller.rb +218 -0
- data/app/controllers/backend_controller.rb +11 -0
- data/app/controllers/content_controller.rb +98 -0
- data/app/controllers/live_controller.rb +10 -0
- data/app/controllers/redirect_controller.rb +16 -0
- data/app/controllers/sidebar_controller.rb +50 -0
- data/app/controllers/textfilter_controller.rb +22 -0
- data/app/controllers/theme_controller.rb +52 -0
- data/app/controllers/xml_controller.rb +111 -0
- data/app/helpers/accounts_helper.rb +2 -0
- data/app/helpers/admin/base_helper.rb +124 -0
- data/app/helpers/admin/blacklist_helper.rb +2 -0
- data/app/helpers/admin/cache_helper.rb +2 -0
- data/app/helpers/admin/comments_helper.rb +2 -0
- data/app/helpers/admin/content_helper.rb +2 -0
- data/app/helpers/admin/general_helper.rb +2 -0
- data/app/helpers/admin/pages_helper.rb +2 -0
- data/app/helpers/admin/resources_helper.rb +2 -0
- data/app/helpers/admin/sidebar_helper.rb +2 -0
- data/app/helpers/admin/textfilters_helper.rb +2 -0
- data/app/helpers/admin/themes_helper.rb +2 -0
- data/app/helpers/admin/trackbacks_helper.rb +2 -0
- data/app/helpers/admin/users_helper.rb +2 -0
- data/app/helpers/application_helper.rb +92 -0
- data/app/helpers/articles_helper.rb +163 -0
- data/app/helpers/backend_helper.rb +2 -0
- data/app/helpers/content_helper.rb +3 -0
- data/app/helpers/mail_helper.rb +6 -0
- data/app/helpers/redirect_helper.rb +2 -0
- data/app/helpers/sidebar_helper.rb +22 -0
- data/app/helpers/sidebars/plugin_helper.rb +2 -0
- data/app/helpers/text_filter_plugin_helper.rb +2 -0
- data/app/helpers/textfilter_helper.rb +2 -0
- data/app/helpers/theme_helper.rb +23 -0
- data/app/helpers/xml_helper.rb +21 -0
- data/app/models/aggregations/audioscrobbler.rb +54 -0
- data/app/models/aggregations/backpack.rb +57 -0
- data/app/models/aggregations/delicious.rb +57 -0
- data/app/models/aggregations/flickr.rb +89 -0
- data/app/models/aggregations/fortythree.rb +62 -0
- data/app/models/aggregations/magnolia.rb +81 -0
- data/app/models/aggregations/tada.rb +75 -0
- data/app/models/aggregations/technorati.rb +51 -0
- data/app/models/aggregations/upcoming.rb +74 -0
- data/app/models/article.rb +211 -0
- data/app/models/blacklist_pattern.rb +22 -0
- data/app/models/blog.rb +162 -0
- data/app/models/blog_sweeper.rb +23 -0
- data/app/models/category.rb +62 -0
- data/app/models/comment.rb +76 -0
- data/app/models/config_manager.rb +80 -0
- data/app/models/content.rb +222 -0
- data/app/models/content_observer.rb +5 -0
- data/app/models/content_state/base.rb +51 -0
- data/app/models/content_state/draft.rb +40 -0
- data/app/models/content_state/factory.rb +16 -0
- data/app/models/content_state/just_published.rb +47 -0
- data/app/models/content_state/new.rb +45 -0
- data/app/models/content_state/publication_pending.rb +43 -0
- data/app/models/content_state/published.rb +35 -0
- data/app/models/email_notifier.rb +9 -0
- data/app/models/notification_mailer.rb +34 -0
- data/app/models/page.rb +20 -0
- data/app/models/page_cache.rb +29 -0
- data/app/models/ping.rb +129 -0
- data/app/models/redirect.rb +3 -0
- data/app/models/resource.rb +76 -0
- data/app/models/sidebar.rb +32 -0
- data/app/models/simple_cache.rb +37 -0
- data/app/models/tag.rb +63 -0
- data/app/models/text_filter.rb +111 -0
- data/app/models/theme.rb +44 -0
- data/app/models/trackback.rb +51 -0
- data/app/models/trigger.rb +31 -0
- data/app/models/user.rb +113 -0
- data/app/models/web_notifier.rb +7 -0
- data/app/views/accounts/login.rhtml +24 -0
- data/app/views/accounts/logout.rhtml +12 -0
- data/app/views/accounts/signup.rhtml +26 -0
- data/app/views/accounts/welcome.rhtml +13 -0
- data/app/views/admin/base/_recent_comments.rhtml +10 -0
- data/app/views/admin/base/_recent_trackbacks.rhtml +10 -0
- data/app/views/admin/blacklist/_blacklist_patterns.rhtml +16 -0
- data/app/views/admin/blacklist/_form.rhtml +15 -0
- data/app/views/admin/blacklist/_quick_post.rhtml +16 -0
- data/app/views/admin/blacklist/destroy.rhtml +10 -0
- data/app/views/admin/blacklist/edit.rhtml +14 -0
- data/app/views/admin/blacklist/list.rhtml +13 -0
- data/app/views/admin/cache/list.rhtml +8 -0
- data/app/views/admin/categories/_categories.rhtml +14 -0
- data/app/views/admin/categories/_form.rhtml +7 -0
- data/app/views/admin/categories/_quick_post.rhtml +11 -0
- data/app/views/admin/categories/destroy.rhtml +10 -0
- data/app/views/admin/categories/edit.rhtml +13 -0
- data/app/views/admin/categories/list.rhtml +15 -0
- data/app/views/admin/categories/reorder.rhtml +9 -0
- data/app/views/admin/categories/show.rhtml +18 -0
- data/app/views/admin/comments/_form.rhtml +19 -0
- data/app/views/admin/comments/comments.rhtml +4 -0
- data/app/views/admin/comments/destroy.rhtml +11 -0
- data/app/views/admin/comments/edit.rhtml +18 -0
- data/app/views/admin/comments/list.rhtml +31 -0
- data/app/views/admin/comments/new.rhtml +15 -0
- data/app/views/admin/comments/show.rhtml +10 -0
- data/app/views/admin/content/_articles.rhtml +20 -0
- data/app/views/admin/content/_attachment.rhtml +17 -0
- data/app/views/admin/content/_form.rhtml +51 -0
- data/app/views/admin/content/_pages.rhtml +3 -0
- data/app/views/admin/content/_quick_post.rhtml +20 -0
- data/app/views/admin/content/_show_categories.rhtml +9 -0
- data/app/views/admin/content/_show_resources.rhtml +9 -0
- data/app/views/admin/content/destroy.rhtml +11 -0
- data/app/views/admin/content/edit.rhtml +28 -0
- data/app/views/admin/content/list.rhtml +20 -0
- data/app/views/admin/content/new.rhtml +27 -0
- data/app/views/admin/content/preview.rhtml +3 -0
- data/app/views/admin/content/show.rhtml +25 -0
- data/app/views/admin/general/index.rhtml +216 -0
- data/app/views/admin/general/update_database.rhtml +44 -0
- data/app/views/admin/pages/_form.rhtml +19 -0
- data/app/views/admin/pages/_pages.rhtml +18 -0
- data/app/views/admin/pages/_quick_post.rhtml +21 -0
- data/app/views/admin/pages/destroy.rhtml +11 -0
- data/app/views/admin/pages/edit.rhtml +28 -0
- data/app/views/admin/pages/list.rhtml +13 -0
- data/app/views/admin/pages/new.rhtml +24 -0
- data/app/views/admin/pages/preview.rhtml +1 -0
- data/app/views/admin/pages/show.rhtml +14 -0
- data/app/views/admin/resources/_itunes_category_add.rhtml +11 -0
- data/app/views/admin/resources/_itunes_category_edit.rhtml +32 -0
- data/app/views/admin/resources/_metadata_add.rhtml +22 -0
- data/app/views/admin/resources/_metadata_edit.rhtml +22 -0
- data/app/views/admin/resources/_mime_edit.rhtml +8 -0
- data/app/views/admin/resources/_pages.rhtml +3 -0
- data/app/views/admin/resources/_resources.rhtml +40 -0
- data/app/views/admin/resources/destroy.rhtml +11 -0
- data/app/views/admin/resources/list.rhtml +9 -0
- data/app/views/admin/resources/new.rhtml +12 -0
- data/app/views/admin/sidebar/_active.rhtml +14 -0
- data/app/views/admin/sidebar/_actives.rhtml +9 -0
- data/app/views/admin/sidebar/_available.rhtml +5 -0
- data/app/views/admin/sidebar/_availables.rhtml +5 -0
- data/app/views/admin/sidebar/_publish.rhtml +2 -0
- data/app/views/admin/sidebar/_target.rhtml +1 -0
- data/app/views/admin/sidebar/index.rhtml +34 -0
- data/app/views/admin/sidebar/publish.rjs +6 -0
- data/app/views/admin/sidebar/remove.rjs +5 -0
- data/app/views/admin/sidebar/set_active.rjs +10 -0
- data/app/views/admin/textfilters/_form.rhtml +45 -0
- data/app/views/admin/textfilters/_macros.rhtml +16 -0
- data/app/views/admin/textfilters/_textfilters.rhtml +20 -0
- data/app/views/admin/textfilters/destroy.rhtml +10 -0
- data/app/views/admin/textfilters/edit.rhtml +17 -0
- data/app/views/admin/textfilters/list.rhtml +15 -0
- data/app/views/admin/textfilters/macro_help.rhtml +3 -0
- data/app/views/admin/textfilters/new.rhtml +15 -0
- data/app/views/admin/textfilters/preview.rhtml +3 -0
- data/app/views/admin/textfilters/show.rhtml +34 -0
- data/app/views/admin/textfilters/show_help.rhtml +8 -0
- data/app/views/admin/themes/index.rhtml +12 -0
- data/app/views/admin/trackbacks/_form.rhtml +19 -0
- data/app/views/admin/trackbacks/destroy.rhtml +6 -0
- data/app/views/admin/trackbacks/edit.rhtml +14 -0
- data/app/views/admin/trackbacks/list.rhtml +31 -0
- data/app/views/admin/trackbacks/new.rhtml +15 -0
- data/app/views/admin/trackbacks/show.rhtml +14 -0
- data/app/views/admin/users/_form.rhtml +48 -0
- data/app/views/admin/users/_user.rhtml +9 -0
- data/app/views/admin/users/destroy.rhtml +14 -0
- data/app/views/admin/users/edit.rhtml +14 -0
- data/app/views/admin/users/list.rhtml +9 -0
- data/app/views/admin/users/new.rhtml +15 -0
- data/app/views/admin/users/show.rhtml +18 -0
- data/app/views/articles/_article.rhtml +4 -0
- data/app/views/articles/_comment.rhtml +7 -0
- data/app/views/articles/_comment_box.rhtml +43 -0
- data/app/views/articles/_comment_error.rhtml +1 -0
- data/app/views/articles/_trackback.rhtml +7 -0
- data/app/views/articles/archives.rhtml +22 -0
- data/app/views/articles/comment_preview.rhtml +3 -0
- data/app/views/articles/error.rhtml +3 -0
- data/app/views/articles/groupings.rhtml +14 -0
- data/app/views/articles/index.rhtml +11 -0
- data/app/views/articles/read.rhtml +70 -0
- data/app/views/articles/trackback.rxml +5 -0
- data/app/views/articles/view_page.rhtml +3 -0
- data/app/views/layouts/accounts.rhtml +22 -0
- data/app/views/layouts/administration.rhtml +75 -0
- data/app/views/layouts/sidebar.rhtml +40 -0
- data/app/views/live/search.rhtml +10 -0
- data/app/views/notification_mailer/_mail_footer.rhtml +7 -0
- data/app/views/notification_mailer/_mail_header.rhtml +1 -0
- data/app/views/notification_mailer/article.rhtml +6 -0
- data/app/views/notification_mailer/comment.rhtml +11 -0
- data/app/views/notification_mailer/trackback.rhtml +3 -0
- data/app/views/settings/done.rhtml +2 -0
- data/app/views/settings/install.rhtml +12 -0
- data/app/views/shared/_search.rhtml +10 -0
- data/app/views/sidebar/_row.rhtml +1 -0
- data/app/views/sidebar/_sidebar.rhtml +5 -0
- data/app/views/sidebar/display_plugins.rhtml +5 -0
- data/app/views/sidebar/show.rhtml +1 -0
- data/app/views/theme/static_view_test.rhtml +1 -0
- data/app/views/xml/_atom10_item_article.rxml +39 -0
- data/app/views/xml/_atom10_item_comment.rxml +13 -0
- data/app/views/xml/_atom10_item_trackback.rxml +16 -0
- data/app/views/xml/_itunes_item_resource.rxml +30 -0
- data/app/views/xml/_rss20_item_article.rxml +35 -0
- data/app/views/xml/_rss20_item_comment.rxml +7 -0
- data/app/views/xml/_rss20_item_trackback.rxml +7 -0
- data/app/views/xml/atom10_feed.rxml +18 -0
- data/app/views/xml/itunes_feed.rxml +29 -0
- data/app/views/xml/rsd.rxml +19 -0
- data/app/views/xml/rss20_feed.rxml +18 -0
- data/bin/typo +12 -0
- data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/index/.cache +540 -0
- data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +414 -0
- data/cache/META/META/ACTION_PARAM/localhost.3000/articles/index/.cache +3 -0
- data/cache/META/META/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +3 -0
- data/components/plugins/sidebars/aimpresence/content.rhtml +4 -0
- data/components/plugins/sidebars/aimpresence_controller.rb +10 -0
- data/components/plugins/sidebars/amazon/content.rhtml +4 -0
- data/components/plugins/sidebars/amazon_controller.rb +17 -0
- data/components/plugins/sidebars/archives/content.rhtml +11 -0
- data/components/plugins/sidebars/archives_controller.rb +24 -0
- data/components/plugins/sidebars/audioscrobbler/content.rhtml +10 -0
- data/components/plugins/sidebars/audioscrobbler_controller.rb +10 -0
- data/components/plugins/sidebars/backpack/content.rhtml +12 -0
- data/components/plugins/sidebars/backpack_controller.rb +17 -0
- data/components/plugins/sidebars/category/content.rhtml +10 -0
- data/components/plugins/sidebars/category_controller.rb +13 -0
- data/components/plugins/sidebars/delicious/content.rhtml +20 -0
- data/components/plugins/sidebars/delicious_controller.rb +29 -0
- data/components/plugins/sidebars/flickr/content.rhtml +15 -0
- data/components/plugins/sidebars/flickr_controller.rb +16 -0
- data/components/plugins/sidebars/fortythree/content.rhtml +8 -0
- data/components/plugins/sidebars/fortythree_controller.rb +12 -0
- data/components/plugins/sidebars/fortythreeplaces/content.rhtml +8 -0
- data/components/plugins/sidebars/fortythreeplaces_controller.rb +12 -0
- data/components/plugins/sidebars/magnolia/content.rhtml +12 -0
- data/components/plugins/sidebars/magnolia_controller.rb +17 -0
- data/components/plugins/sidebars/recent_comments/content.rhtml +12 -0
- data/components/plugins/sidebars/recent_comments_controller.rb +23 -0
- data/components/plugins/sidebars/static/content.rhtml +2 -0
- data/components/plugins/sidebars/static_controller.rb +23 -0
- data/components/plugins/sidebars/tada/content.rhtml +12 -0
- data/components/plugins/sidebars/tada_controller.rb +12 -0
- data/components/plugins/sidebars/tag/content.rhtml +8 -0
- data/components/plugins/sidebars/tag_controller.rb +18 -0
- data/components/plugins/sidebars/technorati/content.rhtml +8 -0
- data/components/plugins/sidebars/technorati_controller.rb +12 -0
- data/components/plugins/sidebars/upcoming/content.rhtml +8 -0
- data/components/plugins/sidebars/upcoming_controller.rb +11 -0
- data/components/plugins/sidebars/xbox/content.rhtml +2 -0
- data/components/plugins/sidebars/xbox_controller.rb +6 -0
- data/components/plugins/sidebars/xml/content.rhtml +12 -0
- data/components/plugins/sidebars/xml_controller.rb +11 -0
- data/components/plugins/textfilters/amazon_controller.rb +39 -0
- data/components/plugins/textfilters/code_controller.rb +59 -0
- data/components/plugins/textfilters/flickr_controller.rb +75 -0
- data/components/plugins/textfilters/htmlfilter_controller.rb +8 -0
- data/components/plugins/textfilters/lightbox_controller.rb +122 -0
- data/components/plugins/textfilters/macropost_controller.rb +14 -0
- data/components/plugins/textfilters/macropre_controller.rb +14 -0
- data/components/plugins/textfilters/markdown_controller.rb +32 -0
- data/components/plugins/textfilters/none_controller.rb +8 -0
- data/components/plugins/textfilters/smartypants_controller.rb +8 -0
- data/components/plugins/textfilters/sparkline_controller.rb +87 -0
- data/components/plugins/textfilters/textile_controller.rb +8 -0
- data/components/sidebars/README +36 -0
- data/config/boot.rb +44 -0
- data/config/database.yml +17 -0
- data/config/database.yml-pgsql +17 -0
- data/config/database.yml.example +18 -0
- data/config/environment.rb +145 -0
- data/config/environments/development.rb +17 -0
- data/config/environments/production.rb +19 -0
- data/config/environments/test.rb +26 -0
- data/config/iTunes.yml +72 -0
- data/config/lighttpd.conf +46 -0
- data/config/mail.yml +8 -0
- data/config/mail.yml.example +8 -0
- data/config/routes.rb +92 -0
- data/db/DB +0 -0
- data/db/DB.test +0 -0
- data/db/converters/README +14 -0
- data/db/converters/feed.rb +68 -0
- data/db/converters/mt-import.rb +72 -0
- data/db/converters/mt3.rb +172 -0
- data/db/converters/rss.rb +67 -0
- data/db/converters/s9y.rb +182 -0
- data/db/converters/textpattern.rb +137 -0
- data/db/converters/wordpress.rb +187 -0
- data/db/development_structure.sql +691 -0
- data/db/migrate/001_initial_schema.rb +127 -0
- data/db/migrate/002_add_user_email.rb +17 -0
- data/db/migrate/003_add_article_user_id.rb +20 -0
- data/db/migrate/004_add_sidebars.rb +31 -0
- data/db/migrate/005_add_cache_table.rb +20 -0
- data/db/migrate/006_add_pages.rb +17 -0
- data/db/migrate/007_add_permalink.rb +36 -0
- data/db/migrate/008_add_page_title.rb +9 -0
- data/db/migrate/009_add_article_guid.rb +10 -0
- data/db/migrate/010_add_tags.rb +19 -0
- data/db/migrate/011_add_article_id.rb +17 -0
- data/db/migrate/012_enlarge_settings.rb +11 -0
- data/db/migrate/013_add_textfilters.rb +33 -0
- data/db/migrate/014_move_text_filter_to_text_filter_id.rb +43 -0
- data/db/migrate/015_convert_mysql_to_innodb.rb +19 -0
- data/db/migrate/016_fix_is_primary_postgres.rb +19 -0
- data/db/migrate/017_add_comment_user_id.rb +23 -0
- data/db/migrate/018_add_guids.rb +13 -0
- data/db/migrate/019_add_whiteboards_to_content.rb +15 -0
- data/db/migrate/020_superclass_articles.rb +167 -0
- data/db/migrate/021_superclass_comments.rb +94 -0
- data/db/migrate/022_superclass_trackbacks.rb +71 -0
- data/db/migrate/023_superclass_pages.rb +64 -0
- data/db/migrate/024_cleanup_contents.rb +54 -0
- data/db/migrate/025_add_itunes_metadata.rb +29 -0
- data/db/migrate/026_add_redirect_table.rb +13 -0
- data/db/migrate/027_set_comment_published_flag.rb +19 -0
- data/db/migrate/028_rename_redirect_to.rb +12 -0
- data/db/migrate/029_add_user_notification.rb +29 -0
- data/db/migrate/030_index_sessions.rb +9 -0
- data/db/migrate/031_add_notifications_table.rb +14 -0
- data/db/migrate/032_add_jabber_notification.rb +11 -0
- data/db/migrate/033_add_count_caching.rb +34 -0
- data/db/migrate/034_boolify_published.rb +36 -0
- data/db/migrate/035_boolify_content_allow_foo.rb +36 -0
- data/db/migrate/036_add_tag_display_name.rb +53 -0
- data/db/migrate/037_enlarge_ip_field.rb +9 -0
- data/db/migrate/038_add_blog_object.rb +52 -0
- data/db/migrate/039_serialize_blog_attributes.rb +160 -0
- data/db/migrate/040_attach_content_to_blog.rb +28 -0
- data/db/migrate/041_fixup_default_sidebars.rb +18 -0
- data/db/migrate/042_remove_sidebar_staged_config.rb +22 -0
- data/db/migrate/043_create_triggers.rb +14 -0
- data/db/migrate/044_add_published_at_to_content.rb +18 -0
- data/db/migrate/045_fix_contents_published_default.rb +9 -0
- data/db/migrate/046_fixup_forthcoming_publications.rb +40 -0
- data/db/schema.mysql-v3.sql +218 -0
- data/db/schema.mysql.sql +218 -0
- data/db/schema.postgresql.sql +218 -0
- data/db/schema.rb +169 -0
- data/db/schema.sqlite.sql +218 -0
- data/db/schema.sqlserver.sql +232 -0
- data/db/schema_version +1 -0
- data/db/scripts/fix_permalinks.rb +5 -0
- data/db/updates/update.168.to.200.mysql.sql +33 -0
- data/db/updates/update.168.to.200.psql.sql +30 -0
- data/doc/Installer.txt +55 -0
- data/doc/README_FOR_APP +2 -0
- data/installer/rails-installer.rb +488 -0
- data/installer/rails_installer_defaults.yml +4 -0
- data/installer/typo-installer.rb +35 -0
- data/lib/backpack_api.rb +202 -0
- data/lib/bare_migration.rb +142 -0
- data/lib/email_notify.rb +32 -0
- data/lib/format.rb +19 -0
- data/lib/generators/sidebar/sidebar_generator.rb +13 -0
- data/lib/generators/sidebar/templates/components/plugins/sidebars/controller_template.rb +20 -0
- data/lib/generators/sidebar/templates/components/plugins/sidebars/views/content_template.rhtml +4 -0
- data/lib/jabber_notify.rb +32 -0
- data/lib/login_system.rb +85 -0
- data/lib/migrator.rb +28 -0
- data/lib/rails_patch/active_record.rb +36 -0
- data/lib/rails_patch/components.rb +14 -0
- data/lib/sidebars/component_plugin.rb +5 -0
- data/lib/sidebars/plugin.rb +241 -0
- data/lib/spam_protection.rb +126 -0
- data/lib/tasks/release.rake +171 -0
- data/lib/tasks/schemas.rake +6 -0
- data/lib/tasks/sweep_cache.rake +6 -0
- data/lib/text_filter_plugin.rb +97 -0
- data/lib/transforms.rb +26 -0
- data/lib/typo_guid.rb +10 -0
- data/lib/typo_plugins.rb +19 -0
- data/lib/typo_version.rb +1 -0
- data/lib/xmlrpc_fix.rb +13 -0
- data/public/.htaccess +34 -0
- data/public/404.html +8 -0
- data/public/500.html +8 -0
- data/public/dispatch.cgi +10 -0
- data/public/dispatch.fcgi +24 -0
- data/public/dispatch.rb +10 -0
- data/public/favicon.ico +0 -0
- data/public/images/admin/dot-vertical.gif +0 -0
- data/public/images/admin/h-tile.gif +0 -0
- data/public/images/admin/hdr-tile.gif +0 -0
- data/public/images/admin/toggle.gif +0 -0
- data/public/images/bg.jpg +0 -0
- data/public/images/bgcolor.jpg +0 -0
- data/public/images/body_bg.png +0 -0
- data/public/images/branding_bg.png +0 -0
- data/public/images/branding_logo.png +0 -0
- data/public/images/checked.gif +0 -0
- data/public/images/content_bg.png +0 -0
- data/public/images/delete.png +0 -0
- data/public/images/footer.jpg +0 -0
- data/public/images/footer.png +0 -0
- data/public/images/global_bg.png +0 -0
- data/public/images/global_logo.png +0 -0
- data/public/images/go.png +0 -0
- data/public/images/header.jpg +0 -0
- data/public/images/loading.gif +0 -0
- data/public/images/not-checked copy.gif +0 -0
- data/public/images/not-checked.gif +0 -0
- data/public/images/overlay.png +0 -0
- data/public/images/powered.gif +0 -0
- data/public/images/section_bg.png +0 -0
- data/public/images/sections_bg.png +0 -0
- data/public/images/sections_hilite.png +0 -0
- data/public/images/sections_hover.png +0 -0
- data/public/images/spinner-blue.gif +0 -0
- data/public/images/spinner.gif +0 -0
- data/public/images/spot-header.gif +0 -0
- data/public/images/spot-title.gif +0 -0
- data/public/images/x-ed.gif +0 -0
- data/public/javascripts/application.js +2 -0
- data/public/javascripts/controls.js +815 -0
- data/public/javascripts/cookies.js +60 -0
- data/public/javascripts/dragdrop.js +724 -0
- data/public/javascripts/effects.js +953 -0
- data/public/javascripts/lightbox.js +348 -0
- data/public/javascripts/prototype.js +1985 -0
- data/public/javascripts/scriptaculous.js +47 -0
- data/public/javascripts/slider.js +258 -0
- data/public/javascripts/typo.js +85 -0
- data/public/robots.txt +2 -0
- data/public/stylesheets/administration.css +585 -0
- data/public/stylesheets/lightbox.css +22 -0
- data/public/stylesheets/rss.css +54 -0
- data/public/stylesheets/user-styles.css +0 -0
- data/script/about +3 -0
- data/script/benchmarker +19 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/destroy +3 -0
- data/script/generate +3 -0
- data/script/lighttpd +2 -0
- data/script/logreport +79 -0
- data/script/migrate +31 -0
- data/script/performance/benchmarker +3 -0
- data/script/performance/profiler +3 -0
- data/script/plugin +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/process/spinner +3 -0
- data/script/profiler +34 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/script/spacecheck +40 -0
- data/test/fixtures/articles_categories.yml +31 -0
- data/test/fixtures/articles_tags.yml +19 -0
- data/test/fixtures/blacklist_patterns.yml +10 -0
- data/test/fixtures/blogs.yml +74 -0
- data/test/fixtures/categories.yml +35 -0
- data/test/fixtures/contents.yml +297 -0
- data/test/fixtures/notification_mailer/article +3 -0
- data/test/fixtures/notification_mailer/comment +3 -0
- data/test/fixtures/notification_mailer/trackback +3 -0
- data/test/fixtures/notifications.yml +0 -0
- data/test/fixtures/page_caches.yml +7 -0
- data/test/fixtures/redirects.yml +13 -0
- data/test/fixtures/resources.yml +24 -0
- data/test/fixtures/sidebars.yml +5 -0
- data/test/fixtures/tags.yml +13 -0
- data/test/fixtures/text_filters.yml +42 -0
- data/test/fixtures/triggers.yml +1 -0
- data/test/fixtures/users.yml +56 -0
- data/test/functional/accounts_controller_test.rb +82 -0
- data/test/functional/admin/article_preview_test.rb +67 -0
- data/test/functional/admin/blacklist_controller_test.rb +63 -0
- data/test/functional/admin/categories_controller_test.rb +112 -0
- data/test/functional/admin/comments_controller_test.rb +78 -0
- data/test/functional/admin/content_controller_test.rb +234 -0
- data/test/functional/admin/general_controller_test.rb +26 -0
- data/test/functional/admin/pages_controller_test.rb +103 -0
- data/test/functional/admin/resources_controller_test.rb +49 -0
- data/test/functional/admin/textfilters_controller_test.rb +29 -0
- data/test/functional/admin/themes_controller_test.rb +34 -0
- data/test/functional/admin/trackbacks_controller_test.rb +76 -0
- data/test/functional/admin/users_controller_test.rb +72 -0
- data/test/functional/articles_controller_test.rb +525 -0
- data/test/functional/backend_controller_test.rb +273 -0
- data/test/functional/redirect_controller_test.rb +40 -0
- data/test/functional/textfilter_controller_test.rb +275 -0
- data/test/functional/theme_controller_test.rb +45 -0
- data/test/functional/xml_controller_test.rb +353 -0
- data/test/mocks/test/dns_mock.rb +13 -0
- data/test/mocks/test/flickr_mock.rb +30 -0
- data/test/mocks/test/http_mock.rb +38 -0
- data/test/mocks/test/theme_mock.rb +5 -0
- data/test/mocks/test/xmlrpc_mock.rb +27 -0
- data/test/mocks/themes/123-numbers-in-path/about.markdown +0 -0
- data/test/mocks/themes/CamelCaseDirectory/about.markdown +0 -0
- data/test/mocks/themes/azure/about.markdown +5 -0
- data/test/mocks/themes/azure/layouts/default.rhtml +50 -0
- data/test/mocks/themes/azure/preview.png +0 -0
- data/test/mocks/themes/azure/views/theme/static_view_test.rhtml +1 -0
- data/test/mocks/themes/i-have-special-chars/about.markdown +0 -0
- data/test/test_helper.rb +95 -0
- data/test/unit/article_test.rb +245 -0
- data/test/unit/assumptions_tests.rb +54 -0
- data/test/unit/audioscrobbler_test.rb +132 -0
- data/test/unit/blacklist_pattern_test.rb +14 -0
- data/test/unit/blog_test.rb +83 -0
- data/test/unit/category_test.rb +37 -0
- data/test/unit/comment_test.rb +117 -0
- data/test/unit/configuration_test.rb +21 -0
- data/test/unit/content_state/factory_test.rb +84 -0
- data/test/unit/delicious_test.rb +96 -0
- data/test/unit/flickr_test.rb +134 -0
- data/test/unit/fortythree_test.rb +66 -0
- data/test/unit/magnolia_test.rb +87 -0
- data/test/unit/metafragment_test.rb +63 -0
- data/test/unit/notification_mailer_test.rb +55 -0
- data/test/unit/observer_test.rb +40 -0
- data/test/unit/page_cache_test.rb +34 -0
- data/test/unit/page_test.rb +25 -0
- data/test/unit/ping_test.rb +111 -0
- data/test/unit/redirect_test.rb +19 -0
- data/test/unit/resource_test.rb +71 -0
- data/test/unit/sidebar_test.rb +14 -0
- data/test/unit/tag_test.rb +66 -0
- data/test/unit/text_filter_test.rb +126 -0
- data/test/unit/theme_test.rb +44 -0
- data/test/unit/trackback_test.rb +45 -0
- data/test/unit/trigger_test.rb +40 -0
- data/test/unit/user_test.rb +111 -0
- data/themes/azure/about.markdown +5 -0
- data/themes/azure/images/bg-tile.gif +0 -0
- data/themes/azure/images/bracket.gif +0 -0
- data/themes/azure/images/bullet.gif +0 -0
- data/themes/azure/images/hdr.gif +0 -0
- data/themes/azure/images/q-close.gif +0 -0
- data/themes/azure/images/q-open.gif +0 -0
- data/themes/azure/images/sbar-tile.gif +0 -0
- data/themes/azure/images/spinner.gif +0 -0
- data/themes/azure/images/xlink.gif +0 -0
- data/themes/azure/layouts/default.rhtml +50 -0
- data/themes/azure/preview.png +0 -0
- data/themes/azure/stylesheets/azure.css +436 -0
- data/themes/azure/stylesheets/print.css +30 -0
- data/themes/azure/views/theme/static_view_test.rhtml +1 -0
- data/vendor/akismet/Akismet.rb +140 -0
- data/vendor/bluecloth/CHANGES +366 -0
- data/vendor/bluecloth/LICENSE +340 -0
- data/vendor/bluecloth/README +99 -0
- data/vendor/bluecloth/bin/bluecloth +83 -0
- data/vendor/bluecloth/install.rb +150 -0
- data/vendor/bluecloth/lib/bluecloth.rb +1144 -0
- data/vendor/bluecloth/test.rb +117 -0
- data/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
- data/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
- data/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
- data/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
- data/vendor/bluecloth/tests/bctestcase.rb +274 -0
- data/vendor/bluecloth/tests/data/antsugar.txt +34 -0
- data/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
- data/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
- data/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
- data/vendor/bluecloth/utils.rb +553 -0
- data/vendor/flickr/Rakefile +36 -0
- data/vendor/flickr/flickr.rb +490 -0
- data/vendor/flickr/index.html +129 -0
- data/vendor/flickr/test_flickr.rb +173 -0
- data/vendor/jabber4r/CHANGES +8 -0
- data/vendor/jabber4r/LICENSE.txt +12 -0
- data/vendor/jabber4r/README +180 -0
- data/vendor/jabber4r/Rakefile.rb +143 -0
- data/vendor/jabber4r/lib/jabber4r/jabber4r.rb +22 -0
- data/vendor/jabber4r/lib/jabber4r/jid.rb +93 -0
- data/vendor/jabber4r/lib/jabber4r/protocol.rb +1384 -0
- data/vendor/jabber4r/lib/jabber4r/rexml_1.8_patch.rb +16 -0
- data/vendor/jabber4r/lib/jabber4r/roster.rb +322 -0
- data/vendor/jabber4r/lib/jabber4r/session.rb +615 -0
- data/vendor/jabber4r/lib/jabber4r/vcard.rb +42 -0
- data/vendor/plugins/expiring_action_cache/init.rb +2 -0
- data/vendor/plugins/expiring_action_cache/lib/actionparamcache.rb +113 -0
- data/vendor/plugins/expiring_action_cache/lib/metafragment.rb +46 -0
- data/vendor/plugins/upload_progress/CHANGELOG +3 -0
- data/vendor/plugins/upload_progress/MIT-LICENSE +20 -0
- data/vendor/plugins/upload_progress/README +45 -0
- data/vendor/plugins/upload_progress/Rakefile +23 -0
- data/vendor/plugins/upload_progress/init.rb +7 -0
- data/vendor/plugins/upload_progress/lib/multipart_progress.rb +169 -0
- data/vendor/plugins/upload_progress/lib/progress.rb +145 -0
- data/vendor/plugins/upload_progress/lib/upload_progress.rb +303 -0
- data/vendor/plugins/upload_progress/lib/upload_progress_helper.rb +424 -0
- data/vendor/plugins/upload_progress/public/stylesheets/upload_progress.css +21 -0
- data/vendor/plugins/upload_progress/test/multipart_progress_testx.rb +364 -0
- data/vendor/plugins/upload_progress/test/upload_progress_helper_testx.rb +134 -0
- data/vendor/plugins/upload_progress/test/upload_progress_testx.rb +88 -0
- data/vendor/redcloth/RedCloth.gemspec +52 -0
- data/vendor/redcloth/bin/redcloth +3 -0
- data/vendor/redcloth/doc/CHANGELOG +160 -0
- data/vendor/redcloth/doc/COPYING +25 -0
- data/vendor/redcloth/doc/README +106 -0
- data/vendor/redcloth/doc/REFERENCE +216 -0
- data/vendor/redcloth/doc/make.rb +359 -0
- data/vendor/redcloth/install.rb +1032 -0
- data/vendor/redcloth/lib/redcloth.rb +1130 -0
- data/vendor/redcloth/run-tests.rb +28 -0
- data/vendor/redcloth/setup.rb +1376 -0
- data/vendor/redcloth/tests/code.yml +105 -0
- data/vendor/redcloth/tests/hard_breaks.yml +26 -0
- data/vendor/redcloth/tests/images.yml +171 -0
- data/vendor/redcloth/tests/instiki.yml +39 -0
- data/vendor/redcloth/tests/links.yml +155 -0
- data/vendor/redcloth/tests/lists.yml +77 -0
- data/vendor/redcloth/tests/markdown.yml +218 -0
- data/vendor/redcloth/tests/poignant.yml +64 -0
- data/vendor/redcloth/tests/table.yml +198 -0
- data/vendor/redcloth/tests/textism.yml +406 -0
- data/vendor/ruby-mp3info/lib/mp3info.rb +720 -0
- data/vendor/rubypants/README +114 -0
- data/vendor/rubypants/Rakefile +55 -0
- data/vendor/rubypants/html/classes/RubyPants.html +924 -0
- data/vendor/rubypants/html/created.rid +1 -0
- data/vendor/rubypants/html/files/README.html +248 -0
- data/vendor/rubypants/html/files/rubypants_rb.html +125 -0
- data/vendor/rubypants/html/fr_class_index.html +27 -0
- data/vendor/rubypants/html/fr_file_index.html +28 -0
- data/vendor/rubypants/html/fr_method_index.html +38 -0
- data/vendor/rubypants/html/index.html +24 -0
- data/vendor/rubypants/html/rdoc-style.css +172 -0
- data/vendor/rubypants/install.rb +9 -0
- data/vendor/rubypants/rubypants.rb +490 -0
- data/vendor/rubypants/test_rubypants.rb +162 -0
- data/vendor/sparklines/README.txt +47 -0
- data/vendor/sparklines/USAGE +14 -0
- data/vendor/sparklines/lib/sparklines.rb +435 -0
- data/vendor/sparklines/samples/sparklinestest.rb +26 -0
- data/vendor/sparklines/sparklines_generator.rb +9 -0
- data/vendor/sparklines/templates/sparklines_controller.rb +30 -0
- data/vendor/sparklines/templates/sparklines_helper.rb +30 -0
- data/vendor/syntax/LICENSE +27 -0
- data/vendor/syntax/NEWS +16 -0
- data/vendor/syntax/README +38 -0
- data/vendor/syntax/Rakefile +194 -0
- data/vendor/syntax/api/classes/Syntax.html +173 -0
- data/vendor/syntax/api/classes/Syntax/Convertors.html +91 -0
- data/vendor/syntax/api/classes/Syntax/Convertors/Abstract.html +159 -0
- data/vendor/syntax/api/classes/Syntax/Convertors/HTML.html +149 -0
- data/vendor/syntax/api/classes/Syntax/Default.html +123 -0
- data/vendor/syntax/api/classes/Syntax/Ruby.html +319 -0
- data/vendor/syntax/api/classes/Syntax/Token.html +151 -0
- data/vendor/syntax/api/classes/Syntax/Tokenizer.html +324 -0
- data/vendor/syntax/api/classes/Syntax/Version.html +109 -0
- data/vendor/syntax/api/classes/Syntax/XML.html +205 -0
- data/vendor/syntax/api/classes/Syntax/YAML.html +189 -0
- data/vendor/syntax/api/created.rid +1 -0
- data/vendor/syntax/api/files/README.html +155 -0
- data/vendor/syntax/api/files/lib/syntax/common_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/convertors/abstract_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/convertors/html_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/ruby_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/xml_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/yaml_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/version_rb.html +92 -0
- data/vendor/syntax/api/files/lib/syntax_rb.html +96 -0
- data/vendor/syntax/api/fr_class_index.html +56 -0
- data/vendor/syntax/api/fr_file_index.html +54 -0
- data/vendor/syntax/api/fr_method_index.html +65 -0
- data/vendor/syntax/api/index.html +26 -0
- data/vendor/syntax/api/rdoc-style.css +175 -0
- data/vendor/syntax/doc/manual-html/chapter-1.html +198 -0
- data/vendor/syntax/doc/manual-html/chapter-2.html +262 -0
- data/vendor/syntax/doc/manual-html/chapter-3.html +266 -0
- data/vendor/syntax/doc/manual-html/chapter-4.html +267 -0
- data/vendor/syntax/doc/manual-html/index.html +152 -0
- data/vendor/syntax/doc/manual-html/stylesheets/manual.css +270 -0
- data/vendor/syntax/doc/manual-html/stylesheets/ruby.css +17 -0
- data/vendor/syntax/doc/manual/chapter.erb +38 -0
- data/vendor/syntax/doc/manual/example.erb +18 -0
- data/vendor/syntax/doc/manual/index.erb +29 -0
- data/vendor/syntax/doc/manual/manual.rb +311 -0
- data/vendor/syntax/doc/manual/manual.yml +43 -0
- data/vendor/syntax/doc/manual/page.erb +87 -0
- data/vendor/syntax/doc/manual/parts/0000.txt +5 -0
- data/vendor/syntax/doc/manual/parts/0001.txt +16 -0
- data/vendor/syntax/doc/manual/parts/0002.txt +24 -0
- data/vendor/syntax/doc/manual/parts/0003.txt +6 -0
- data/vendor/syntax/doc/manual/parts/0004.txt +32 -0
- data/vendor/syntax/doc/manual/parts/0005.txt +18 -0
- data/vendor/syntax/doc/manual/parts/0006.txt +62 -0
- data/vendor/syntax/doc/manual/parts/0007.txt +3 -0
- data/vendor/syntax/doc/manual/parts/0008.txt +5 -0
- data/vendor/syntax/doc/manual/parts/0009.txt +29 -0
- data/vendor/syntax/doc/manual/parts/0010.txt +21 -0
- data/vendor/syntax/doc/manual/stylesheets/manual.css +270 -0
- data/vendor/syntax/doc/manual/stylesheets/ruby.css +17 -0
- data/vendor/syntax/doc/manual/tutorial.erb +30 -0
- data/vendor/syntax/lib/syntax.rb +38 -0
- data/vendor/syntax/lib/syntax/common.rb +163 -0
- data/vendor/syntax/lib/syntax/convertors/abstract.rb +27 -0
- data/vendor/syntax/lib/syntax/convertors/html.rb +51 -0
- data/vendor/syntax/lib/syntax/lang/ruby.rb +317 -0
- data/vendor/syntax/lib/syntax/lang/xml.rb +108 -0
- data/vendor/syntax/lib/syntax/lang/yaml.rb +105 -0
- data/vendor/syntax/lib/syntax/version.rb +9 -0
- data/vendor/syntax/setup.rb +1331 -0
- data/vendor/syntax/syntax.gemspec +24 -0
- data/vendor/syntax/test/ALL-TESTS.rb +5 -0
- data/vendor/syntax/test/syntax/tc_ruby.rb +871 -0
- data/vendor/syntax/test/syntax/tc_xml.rb +202 -0
- data/vendor/syntax/test/syntax/tc_yaml.rb +228 -0
- data/vendor/syntax/test/syntax/tokenizer_testcase.rb +40 -0
- data/vendor/syntax/test/tc_syntax.rb +22 -0
- data/vendor/uuidtools/CHANGELOG +4 -0
- data/vendor/uuidtools/README +13 -0
- data/vendor/uuidtools/install.rb +30 -0
- data/vendor/uuidtools/lib/uuidtools.rb +555 -0
- data/vendor/uuidtools/rakefile +112 -0
- metadata +1022 -0
@@ -0,0 +1,67 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# RSS 0.9/2.0 converter for typo by Chris Lee <clee@kde.org>
|
4
|
+
#
|
5
|
+
# No need to make a backup of the original blog, really. This takes a URL for a
|
6
|
+
# read-only import, so there's not really any chance of it munging the original
|
7
|
+
# blog's data, unless somehow an HTTP GET causes your blog server to ignite.
|
8
|
+
#
|
9
|
+
# Even so, this script is still PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND.
|
10
|
+
|
11
|
+
require File.dirname(__FILE__) + '/../../config/environment'
|
12
|
+
require 'optparse'
|
13
|
+
require 'net/http'
|
14
|
+
require 'rss/2.0'
|
15
|
+
|
16
|
+
class RSSMigrate
|
17
|
+
attr_accessor :options
|
18
|
+
|
19
|
+
def initialize
|
20
|
+
self.options = {}
|
21
|
+
self.parse_options
|
22
|
+
self.convert_entries
|
23
|
+
end
|
24
|
+
|
25
|
+
def convert_entries
|
26
|
+
feed = Net::HTTP.get(URI.parse(self.options[:url]))
|
27
|
+
rss = RSS::Parser.parse(feed)
|
28
|
+
puts "Converting #{rss.items.length} entries..."
|
29
|
+
rss.items.each do |item|
|
30
|
+
puts "Converting '#{item.title}'"
|
31
|
+
a = Article.new
|
32
|
+
a.author = self.options[:author]
|
33
|
+
a.title = item.title
|
34
|
+
a.body = item.description
|
35
|
+
a.created_at = item.pubDate
|
36
|
+
a.save
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def parse_options
|
41
|
+
OptionParser.new do |opt|
|
42
|
+
opt.banner = 'Usage: rss.rb [options]'
|
43
|
+
|
44
|
+
opt.on('-a', '--author AUTHOR', 'Username of author in typo') do |a|
|
45
|
+
self.options[:author] = a
|
46
|
+
end
|
47
|
+
|
48
|
+
opt.on('-u', '--url URL', 'URL of RSS feed to import.') do |u|
|
49
|
+
self.options[:url] = u
|
50
|
+
end
|
51
|
+
|
52
|
+
opt.on_tail('-h', '--help', 'Show this message.') do
|
53
|
+
puts opt
|
54
|
+
exit
|
55
|
+
end
|
56
|
+
|
57
|
+
opt.parse!(ARGV)
|
58
|
+
end
|
59
|
+
|
60
|
+
unless self.options.include?(:author) and self.options.include?(:url)
|
61
|
+
puts 'See rss.rb --help for help.'
|
62
|
+
exit
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
RSSMigrate.new
|
@@ -0,0 +1,182 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Serendipity (S9Y) 0.8.x converter for typo by Jochen Schalanda <jochen@schalanda.de>
|
4
|
+
# heavily based on the Wordpress 1.5x converter by Patrick Lenz <patrick@lenz.sh>
|
5
|
+
#
|
6
|
+
# MAKE BACKUPS OF EVERYTHING BEFORE RUNNING THIS SCRIPT!
|
7
|
+
# THIS SCRIPT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND
|
8
|
+
#
|
9
|
+
#
|
10
|
+
# SECURITY NOTICE:
|
11
|
+
#
|
12
|
+
# Migrated users will have the default password "password", since the
|
13
|
+
# MD5 hashes of S9Y cannot be converted to salted SHA1 hashes which are
|
14
|
+
# used by Typo.
|
15
|
+
#
|
16
|
+
|
17
|
+
require File.dirname(__FILE__) + '/../../config/environment'
|
18
|
+
require 'optparse'
|
19
|
+
|
20
|
+
class S9YMigrate
|
21
|
+
attr_accessor :options
|
22
|
+
|
23
|
+
def initialize
|
24
|
+
self.options = {}
|
25
|
+
self.parse_options
|
26
|
+
self.convert_users
|
27
|
+
self.convert_categories
|
28
|
+
self.convert_entries
|
29
|
+
self.convert_prefs
|
30
|
+
end
|
31
|
+
|
32
|
+
def convert_categories
|
33
|
+
s9y_categories = ActiveRecord::Base.connection.select_all(%{
|
34
|
+
SELECT category_name AS name
|
35
|
+
FROM `#{self.options[:s9y_db]}`.`#{self.options[:s9y_prefix]}category`
|
36
|
+
})
|
37
|
+
|
38
|
+
puts "Converting #{s9y_categories.size} categories.."
|
39
|
+
|
40
|
+
s9y_categories.each do |cat|
|
41
|
+
Category.create(cat) unless Category.find_by_name(cat['name'])
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def convert_entries
|
46
|
+
s9y_entries = ActiveRecord::Base.connection.select_all(%{
|
47
|
+
SELECT
|
48
|
+
id,
|
49
|
+
(CASE allow_comments WHEN 'true' THEN '1' ELSE '0' END) AS allow_comments,
|
50
|
+
title,
|
51
|
+
body,
|
52
|
+
extended,
|
53
|
+
FROM_UNIXTIME(timestamp) AS created_at,
|
54
|
+
FROM_UNIXTIME(last_modified) AS updated_at,
|
55
|
+
author,
|
56
|
+
authorid AS user_id,
|
57
|
+
(CASE isdraft WHEN 'true' THEN '0' ELSE '1' END) AS published
|
58
|
+
FROM `#{self.options[:s9y_db]}`.`#{self.options[:s9y_prefix]}entries`
|
59
|
+
})
|
60
|
+
|
61
|
+
puts "Converting #{s9y_entries.size} entries.."
|
62
|
+
|
63
|
+
s9y_entries.each do |entry|
|
64
|
+
a = Article.new
|
65
|
+
a.attributes = entry.reject { |k,v| k =~ /^(id)/ }
|
66
|
+
a.save
|
67
|
+
|
68
|
+
# Fetch category assignments
|
69
|
+
ActiveRecord::Base.connection.select_all(%{
|
70
|
+
SELECT category_name
|
71
|
+
FROM `#{self.options[:s9y_db]}`.`#{self.options[:s9y_prefix]}category`, `#{self.options[:s9y_db]}`.`#{self.options[:s9y_prefix]}entrycat`
|
72
|
+
WHERE entryid = #{entry['id']}
|
73
|
+
AND `#{self.options[:s9y_prefix]}entrycat`.categoryid = `#{self.options[:s9y_prefix]}category`.categoryid
|
74
|
+
}).each do |c|
|
75
|
+
a.categories.push_with_attributes(Category.find_by_name(c['category_name']), :is_primary => 0)
|
76
|
+
end
|
77
|
+
|
78
|
+
# Fetch comments
|
79
|
+
ActiveRecord::Base.connection.select_all(%{
|
80
|
+
SELECT
|
81
|
+
author,
|
82
|
+
email,
|
83
|
+
url,
|
84
|
+
body,
|
85
|
+
FROM_UNIXTIME(timestamp) AS created_at,
|
86
|
+
ip
|
87
|
+
FROM `#{self.options[:s9y_db]}`.`#{self.options[:s9y_prefix]}comments`
|
88
|
+
WHERE id = #{entry['id']}
|
89
|
+
AND type != 'TRACKBACK'
|
90
|
+
AND status = 'approved'
|
91
|
+
}).each do |c|
|
92
|
+
a.comments.create(c)
|
93
|
+
end
|
94
|
+
|
95
|
+
# Fetch trackbacks
|
96
|
+
ActiveRecord::Base.connection.select_all(%{
|
97
|
+
SELECT
|
98
|
+
author AS blog_name,
|
99
|
+
url,
|
100
|
+
title,
|
101
|
+
body AS excerpt,
|
102
|
+
FROM_UNIXTIME(timestamp) AS created_at,
|
103
|
+
ip
|
104
|
+
FROM `#{self.options[:s9y_db]}`.`#{self.options[:s9y_prefix]}comments`
|
105
|
+
WHERE entry_id = #{entry['id']}
|
106
|
+
AND type = 'TRACKBACK'
|
107
|
+
AND status = 'approved'
|
108
|
+
}).each do |c|
|
109
|
+
a.trackbacks.create(c)
|
110
|
+
end
|
111
|
+
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
def convert_prefs
|
116
|
+
puts "Converting prefs"
|
117
|
+
|
118
|
+
ActiveRecord::Base.connection.select_all(%{
|
119
|
+
SELECT
|
120
|
+
(CASE name
|
121
|
+
WHEN 'blogTitle' THEN 'blog_name'
|
122
|
+
WHEN 'blogDescription' THEN 'blog_subtitle'
|
123
|
+
END) AS name,
|
124
|
+
value
|
125
|
+
FROM `#{self.options[:s9y_db]}`.`#{self.options[:s9y_prefix]}config`
|
126
|
+
WHERE name IN ('blogTitle', 'blogDescription')
|
127
|
+
}).each do |pref|
|
128
|
+
begin
|
129
|
+
Setting.find_by_name(pref['name']).update_attribute("value", pref['value'])
|
130
|
+
rescue
|
131
|
+
Setting.create(pref)
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
def convert_users
|
137
|
+
puts "Converting users"
|
138
|
+
puts "** all users will have the default password \"password\" **"
|
139
|
+
puts "** you should change it as soon as possible! **"
|
140
|
+
|
141
|
+
ActiveRecord::Base.connection.select_all(%{
|
142
|
+
SELECT
|
143
|
+
realname AS name,
|
144
|
+
username AS login,
|
145
|
+
email
|
146
|
+
FROM `#{self.options[:s9y_db]}`.`#{self.options[:s9y_prefix]}authors`
|
147
|
+
}).each do |user|
|
148
|
+
u = User.new
|
149
|
+
u.attributes = user
|
150
|
+
u.password = "password"
|
151
|
+
u.save
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
def parse_options
|
156
|
+
OptionParser.new do |opt|
|
157
|
+
opt.banner = "Usage: s9y.rb [options]"
|
158
|
+
|
159
|
+
opt.on('--db DBNAME', String, 'S9Y database name.') { |d| self.options[:s9y_db] = d }
|
160
|
+
opt.on('--prefix PREFIX', String, 'S9Y table prefix (defaults to empty string).') { |d| self.options[:s9y_prefix] = d }
|
161
|
+
|
162
|
+
opt.on_tail('-h', '--help', 'Show this message.') do
|
163
|
+
puts opt
|
164
|
+
exit
|
165
|
+
end
|
166
|
+
|
167
|
+
opt.parse!(ARGV)
|
168
|
+
end
|
169
|
+
|
170
|
+
unless self.options.include?(:s9y_db)
|
171
|
+
puts "See s9y.rb --help for help."
|
172
|
+
exit
|
173
|
+
end
|
174
|
+
|
175
|
+
unless self.options.include?(:s9y_prefix)
|
176
|
+
self.options[:s9y_prefix] = ""
|
177
|
+
end
|
178
|
+
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
S9YMigrate.new
|
@@ -0,0 +1,137 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# TextPattern 1.x converter for typo by Patrick Lenz <patrick@lenz.sh>
|
4
|
+
#
|
5
|
+
# MAKE BACKUPS OF EVERYTHING BEFORE RUNNING THIS SCRIPT!
|
6
|
+
# THIS SCRIPT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND
|
7
|
+
|
8
|
+
require File.dirname(__FILE__) + '/../../config/environment'
|
9
|
+
require 'optparse'
|
10
|
+
|
11
|
+
class TXPMigrate
|
12
|
+
attr_accessor :options
|
13
|
+
|
14
|
+
def initialize
|
15
|
+
self.options = {}
|
16
|
+
self.parse_options
|
17
|
+
self.convert_categories
|
18
|
+
self.convert_entries
|
19
|
+
self.convert_prefs
|
20
|
+
end
|
21
|
+
|
22
|
+
def convert_categories
|
23
|
+
txp_categories = ActiveRecord::Base.connection.select_all(%{
|
24
|
+
SELECT name
|
25
|
+
FROM `#{self.options[:txp_db]}`.`#{self.options[:txp_pfx]}`txp_category
|
26
|
+
WHERE parent = 'root'
|
27
|
+
AND type = 'article'
|
28
|
+
})
|
29
|
+
|
30
|
+
puts "Converting #{txp_categories.size} categories.."
|
31
|
+
|
32
|
+
txp_categories.each do |cat|
|
33
|
+
Category.create(cat) unless Category.find_by_name(cat['name'])
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def convert_entries
|
38
|
+
txp_entries = ActiveRecord::Base.connection.select_all(%{
|
39
|
+
SELECT
|
40
|
+
ID,
|
41
|
+
Annotate AS allow_comments,
|
42
|
+
1 AS allow_pings,
|
43
|
+
Title AS title,
|
44
|
+
(CASE LENGTH(Body) WHEN 0 THEN Excerpt ELSE Body END) AS body,
|
45
|
+
Body_html AS body_html,
|
46
|
+
Excerpt AS excerpt,
|
47
|
+
Keywords AS keywords,
|
48
|
+
Posted AS created_at,
|
49
|
+
LastMod AS updated_at,
|
50
|
+
AuthorID AS author,
|
51
|
+
(CASE textile_body WHEN '1' THEN 'textile' ELSE 'none' END) AS text_filter,
|
52
|
+
(CASE Status WHEN '1' THEN '0' ELSE '1' END) AS published,
|
53
|
+
Category1, Category2
|
54
|
+
FROM `#{self.options[:txp_db]}`..`#{self.options[:txp_pfx]}`textpattern
|
55
|
+
})
|
56
|
+
|
57
|
+
puts "Converting #{txp_entries.size} entries.."
|
58
|
+
|
59
|
+
txp_entries.each do |entry|
|
60
|
+
a = Article.new
|
61
|
+
a.attributes = entry.reject { |k,v| k =~ /^(Category|ID)/ }
|
62
|
+
a.save
|
63
|
+
|
64
|
+
# Assign categories
|
65
|
+
puts "Assign primary category for entry #{entry['ID']}"
|
66
|
+
a.categories.push_with_attributes(Category.find_by_name(entry['Category1']), :is_primary => 1) rescue nil
|
67
|
+
puts "Assign secondary category for entry #{entry['ID']}"
|
68
|
+
a.categories.push_with_attributes(Category.find_by_name(entry['Category2']), :is_primary => 0) rescue nil
|
69
|
+
|
70
|
+
# Fetch comments
|
71
|
+
ActiveRecord::Base.connection.select_all(%{
|
72
|
+
SELECT
|
73
|
+
name AS author,
|
74
|
+
email AS email,
|
75
|
+
web AS url,
|
76
|
+
message AS body,
|
77
|
+
message as body_html,
|
78
|
+
posted AS created_at,
|
79
|
+
ip AS ip
|
80
|
+
FROM `#{self.options[:txp_db]}`..`#{self.options[:txp_pfx]}`txp_discuss
|
81
|
+
WHERE parentid = #{entry['ID']}
|
82
|
+
}).each do |c|
|
83
|
+
a.comments.create(c)
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def convert_prefs
|
90
|
+
puts "Converting prefs"
|
91
|
+
|
92
|
+
ActiveRecord::Base.connection.select_all(%{
|
93
|
+
SELECT
|
94
|
+
(CASE name
|
95
|
+
WHEN 'sitename' THEN 'blog_name'
|
96
|
+
WHEN 'comments_on_default' THEN 'default_allow_comments'
|
97
|
+
WHEN 'use_textile' THEN 'text_filter'
|
98
|
+
END) AS name,
|
99
|
+
val AS value
|
100
|
+
FROM `#{self.options[:txp_db]}`..`#{self.options[:txp_pfx]}`txp_prefs
|
101
|
+
WHERE name IN ('sitename', 'comments_on_default', 'use_textile')
|
102
|
+
}).each do |pref|
|
103
|
+
if pref['name'] == "text_filter" and pref['value'].to_i > 0
|
104
|
+
pref['value'] = 'textile'
|
105
|
+
end
|
106
|
+
|
107
|
+
begin
|
108
|
+
Setting.find_by_name(pref['name']).update_attribute("value", pref['value'])
|
109
|
+
rescue
|
110
|
+
Setting.create(pref)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
def parse_options
|
116
|
+
OptionParser.new do |opt|
|
117
|
+
opt.banner = "Usage: textpattern.rb [options]"
|
118
|
+
|
119
|
+
opt.on('--db DBNAME', String, 'Text Pattern database name.') { |d| self.options[:txp_db] = d }
|
120
|
+
opt.on('--pf PREFIX', String, 'Textpattern table prefix.') { |p| self.options[:txp_pfx] = p }
|
121
|
+
|
122
|
+
opt.on_tail('-h', '--help', 'Show this message.') do
|
123
|
+
puts opt
|
124
|
+
exit
|
125
|
+
end
|
126
|
+
|
127
|
+
opt.parse!(ARGV)
|
128
|
+
end
|
129
|
+
|
130
|
+
unless self.options.include?(:txp_db)
|
131
|
+
puts "See textpattern.rb --help for help."
|
132
|
+
exit
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
TXPMigrate.new
|
@@ -0,0 +1,187 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# WordPress 1.5x converter for typo by Patrick Lenz <patrick@lenz.sh>
|
4
|
+
#
|
5
|
+
# MAKE BACKUPS OF EVERYTHING BEFORE RUNNING THIS SCRIPT!
|
6
|
+
# THIS SCRIPT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND
|
7
|
+
|
8
|
+
require File.dirname(__FILE__) + '/../../config/environment'
|
9
|
+
require 'optparse'
|
10
|
+
|
11
|
+
class WPMigrate
|
12
|
+
attr_accessor :options
|
13
|
+
|
14
|
+
def initialize
|
15
|
+
self.options = {}
|
16
|
+
self.parse_options
|
17
|
+
self.convert_categories
|
18
|
+
self.convert_entries
|
19
|
+
self.convert_prefs
|
20
|
+
end
|
21
|
+
|
22
|
+
def convert_categories
|
23
|
+
wp_categories = ActiveRecord::Base.connection.select_all(%{
|
24
|
+
SELECT cat_name AS name
|
25
|
+
FROM `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_categories`
|
26
|
+
})
|
27
|
+
|
28
|
+
puts "Converting #{wp_categories.size} categories.."
|
29
|
+
|
30
|
+
wp_categories.each do |cat|
|
31
|
+
Category.create(cat) unless Category.find_by_name(cat['name'])
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def convert_entries
|
36
|
+
wp_entries = ActiveRecord::Base.connection.select_all(%{
|
37
|
+
SELECT
|
38
|
+
`#{self.options[:wp_prefix]}_posts`.ID,
|
39
|
+
(CASE comment_status WHEN 'closed' THEN '0' ELSE '1' END) AS allow_comments,
|
40
|
+
(CASE ping_status WHEN 'closed' THEN '0' ELSE '1' END) AS allow_pings,
|
41
|
+
post_title AS title,
|
42
|
+
post_content AS body,
|
43
|
+
post_excerpt AS excerpt,
|
44
|
+
post_date AS created_at,
|
45
|
+
post_modified AS updated_at,
|
46
|
+
(CASE LENGTH(user_nickname) WHEN '0' THEN user_login ELSE user_nickname END) AS author,
|
47
|
+
(CASE post_status WHEN 'publish' THEN '1' ELSE '0' END) AS published,
|
48
|
+
post_category
|
49
|
+
FROM `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_posts`, `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_users`
|
50
|
+
WHERE `#{self.options[:wp_prefix]}_users`.ID = `#{self.options[:wp_prefix]}_posts`.post_author
|
51
|
+
})
|
52
|
+
|
53
|
+
puts "Converting #{wp_entries.size} entries.."
|
54
|
+
|
55
|
+
wp_entries.each do |entry|
|
56
|
+
a = Article.new
|
57
|
+
a.attributes = entry.reject { |k,v| k =~ /^(ID|post_category|body)/ }
|
58
|
+
a.text_filter = self.options[:text_filter]
|
59
|
+
body = entry['body']
|
60
|
+
more_index = body.index('<!--more-->')
|
61
|
+
if more_index
|
62
|
+
a.body = body[0...more_index]
|
63
|
+
a.extended = body[more_index+11...body.length]
|
64
|
+
else
|
65
|
+
a.body = body
|
66
|
+
end
|
67
|
+
a.save
|
68
|
+
|
69
|
+
# Assign primary category
|
70
|
+
unless entry['post_category'].to_i.zero?
|
71
|
+
puts "Assign primary category for entry #{entry['ID']}"
|
72
|
+
|
73
|
+
ActiveRecord::Base.connection.select_all(%{
|
74
|
+
SELECT cat_name
|
75
|
+
FROM `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_categories`
|
76
|
+
WHERE cat_ID = '#{entry['post_category']}'
|
77
|
+
}).each do |c|
|
78
|
+
a.categories.push_with_attributes(Category.find_by_name(c['cat_name']), :is_primary => 1) rescue nil
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
# Fetch category assignments
|
83
|
+
puts "Assign remaining categories for entry #{entry['ID']}"
|
84
|
+
ActiveRecord::Base.connection.select_all(%{
|
85
|
+
SELECT cat_name
|
86
|
+
FROM `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_categories`, `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_post2cat`
|
87
|
+
WHERE post_id = #{entry['ID']}
|
88
|
+
AND `#{self.options[:wp_prefix]}_post2cat`.category_id = `#{self.options[:wp_prefix]}_categories`.cat_ID
|
89
|
+
}).each do |c|
|
90
|
+
a.categories.push_with_attributes(Category.find_by_name(c['cat_name']), :is_primary => 0)
|
91
|
+
end
|
92
|
+
|
93
|
+
# Fetch comments
|
94
|
+
ActiveRecord::Base.connection.select_all(%{
|
95
|
+
SELECT
|
96
|
+
comment_author AS author,
|
97
|
+
comment_author_email AS email,
|
98
|
+
comment_author_url AS url,
|
99
|
+
comment_content AS body,
|
100
|
+
comment_date AS created_at,
|
101
|
+
comment_author_IP AS ip
|
102
|
+
FROM `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_comments`
|
103
|
+
WHERE comment_post_ID = #{entry['ID']}
|
104
|
+
AND comment_type != 'trackback'
|
105
|
+
AND comment_approved = '1'
|
106
|
+
}).each do |c|
|
107
|
+
a.comments.create(c)
|
108
|
+
end
|
109
|
+
|
110
|
+
# Fetch trackbacks
|
111
|
+
ActiveRecord::Base.connection.select_all(%{
|
112
|
+
SELECT
|
113
|
+
comment_author AS blog_name,
|
114
|
+
comment_author_url AS url,
|
115
|
+
comment_content AS excerpt,
|
116
|
+
comment_date AS created_at,
|
117
|
+
comment_author_IP AS ip
|
118
|
+
FROM `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_comments`
|
119
|
+
WHERE comment_post_ID = #{entry['ID']}
|
120
|
+
AND comment_type = 'trackback'
|
121
|
+
AND comment_approved = '1'
|
122
|
+
}).each do |c|
|
123
|
+
c['title'] = c['excerpt'].match("<(strong)>(.+?)</\\1>")[2] rescue c['blog_name']
|
124
|
+
a.trackbacks.create(c)
|
125
|
+
end
|
126
|
+
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
def convert_prefs
|
131
|
+
puts "Converting prefs"
|
132
|
+
|
133
|
+
ActiveRecord::Base.connection.select_all(%{
|
134
|
+
SELECT
|
135
|
+
(CASE option_name
|
136
|
+
WHEN 'blogname' THEN 'blog_name'
|
137
|
+
WHEN 'default_comment_status' THEN 'default_allow_comments'
|
138
|
+
WHEN 'default_ping_status' THEN 'default_allow_pings'
|
139
|
+
END) AS name,
|
140
|
+
option_value AS value
|
141
|
+
FROM `#{self.options[:wp_db]}`.`#{self.options[:wp_prefix]}_options`
|
142
|
+
WHERE option_name IN ('blogname', 'default_comment_status', 'default_ping_status')
|
143
|
+
}).each do |pref|
|
144
|
+
if pref['name'] =~ /^default_allow/
|
145
|
+
pref['value'] = (pref['value'] == "open" ? 1 : 0)
|
146
|
+
end
|
147
|
+
|
148
|
+
begin
|
149
|
+
Setting.find_by_name(pref['name']).update_attribute("value", pref['value'])
|
150
|
+
rescue
|
151
|
+
Setting.create(pref)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
def parse_options
|
157
|
+
OptionParser.new do |opt|
|
158
|
+
opt.banner = "Usage: wordpress.rb [options]"
|
159
|
+
|
160
|
+
opt.on('--db DBNAME', String, 'WordPress database name.') { |d| self.options[:wp_db] = d }
|
161
|
+
opt.on('--prefix PREFIX', String, 'WordPress table prefix (defaults to \'wp\').') { |d| self.options[:wp_prefix] = d }
|
162
|
+
opt.on('--filter TEXTFILTER', String, 'Textfilter for imported articles (defaults to markdown).') { |d| self.options[:text_filter] = d }
|
163
|
+
|
164
|
+
opt.on_tail('-h', '--help', 'Show this message.') do
|
165
|
+
puts opt
|
166
|
+
exit
|
167
|
+
end
|
168
|
+
|
169
|
+
opt.parse!(ARGV)
|
170
|
+
end
|
171
|
+
|
172
|
+
unless self.options.include?(:wp_db)
|
173
|
+
puts "See wordpress.rb --help for help."
|
174
|
+
exit
|
175
|
+
end
|
176
|
+
|
177
|
+
unless self.options.include?(:wp_prefix)
|
178
|
+
self.options[:wp_prefix] = "wp"
|
179
|
+
end
|
180
|
+
|
181
|
+
unless self.options.include?(:text_filter)
|
182
|
+
self.options[:text_filter] = 'markdown'
|
183
|
+
end
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
WPMigrate.new
|