typo 4.0.3 → 4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES-4.1 +83 -0
- data/MAINTAINERS +3 -7
- data/README +1 -1
- data/{components/sidebars/README → README.SIDEBARS} +3 -0
- data/Rakefile +1 -1
- data/TODO-4.1 +16 -0
- data/app/apis/blogger_service.rb +3 -3
- data/app/apis/meta_weblog_service.rb +4 -21
- data/app/apis/movable_type_service.rb +5 -5
- data/app/controllers/accounts_controller.rb +6 -3
- data/app/controllers/admin/blacklist_controller.rb +1 -1
- data/app/controllers/admin/cache_controller.rb +3 -7
- data/app/controllers/admin/content_controller.rb +46 -24
- data/app/controllers/admin/feedback_controller.rb +3 -3
- data/app/controllers/admin/general_controller.rb +3 -3
- data/app/controllers/admin/pages_controller.rb +7 -3
- data/app/controllers/admin/sidebar_controller.rb +19 -26
- data/app/controllers/admin/textfilters_controller.rb +3 -1
- data/app/controllers/admin/themes_controller.rb +1 -1
- data/app/controllers/admin/users_controller.rb +1 -1
- data/app/controllers/application.rb +25 -27
- data/app/controllers/articles_controller.rb +14 -18
- data/app/controllers/content_controller.rb +7 -7
- data/app/controllers/live_controller.rb +1 -1
- data/app/controllers/redirect_controller.rb +2 -0
- data/app/controllers/textfilter_controller.rb +0 -3
- data/app/controllers/theme_controller.rb +10 -5
- data/app/controllers/xml_controller.rb +7 -9
- data/app/helpers/admin/base_helper.rb +10 -5
- data/app/helpers/admin/content_helper.rb +6 -0
- data/app/helpers/admin/feedback_helper.rb +1 -1
- data/app/helpers/admin/pages_helper.rb +5 -0
- data/app/helpers/application_helper.rb +84 -51
- data/app/helpers/articles_helper.rb +29 -29
- data/app/helpers/mail_helper.rb +3 -2
- data/app/helpers/sidebar_helper.rb +25 -16
- data/app/helpers/xml_helper.rb +0 -16
- data/app/models/article.rb +90 -32
- data/app/models/blog.rb +82 -74
- data/app/models/blog_sweeper.rb +33 -8
- data/app/models/categorization.rb +4 -0
- data/app/models/category.rb +21 -4
- data/app/models/comment.rb +23 -21
- data/app/models/content.rb +106 -64
- data/app/models/content_state/base.rb +12 -3
- data/app/models/content_state/draft.rb +2 -3
- data/app/models/content_state/factory.rb +1 -1
- data/app/models/content_state/ham.rb +0 -1
- data/app/models/content_state/just_marked_as_ham.rb +8 -1
- data/app/models/content_state/just_marked_as_spam.rb +4 -1
- data/app/models/content_state/just_presumed_ham.rb +14 -14
- data/app/models/content_state/just_published.rb +11 -18
- data/app/models/content_state/just_withdrawn.rb +11 -0
- data/app/models/content_state/new.rb +0 -1
- data/app/models/content_state/presumed_ham.rb +9 -3
- data/app/models/content_state/presumed_spam.rb +4 -1
- data/app/models/content_state/publication_pending.rb +4 -4
- data/app/models/content_state/published.rb +7 -8
- data/app/models/content_state/spam.rb +0 -1
- data/app/models/content_state/unclassified.rb +12 -3
- data/app/models/content_state/withdrawn.rb +5 -6
- data/app/models/email_notifier.rb +1 -1
- data/app/models/feedback.rb +31 -11
- data/app/models/notification.rb +4 -0
- data/app/models/notification_mailer.rb +8 -8
- data/app/models/page.rb +19 -5
- data/app/models/ping.rb +27 -40
- data/app/models/sidebar.rb +241 -11
- data/app/models/tag.rb +12 -1
- data/app/models/text_filter.rb +33 -39
- data/app/models/theme.rb +9 -0
- data/app/models/trackback.rb +1 -5
- data/app/models/user.rb +7 -5
- data/app/views/accounts/login.rhtml +19 -15
- data/app/views/accounts/logout.rhtml +4 -4
- data/app/views/accounts/signup.rhtml +9 -9
- data/app/views/admin/base/_recent_comments.rhtml +2 -2
- data/app/views/admin/base/_recent_trackbacks.rhtml +2 -2
- data/app/views/admin/blacklist/_blacklist_patterns.rhtml +4 -4
- data/app/views/admin/blacklist/_form.rhtml +3 -3
- data/app/views/admin/blacklist/_quick_post.rhtml +7 -6
- data/app/views/admin/blacklist/destroy.rhtml +5 -5
- data/app/views/admin/blacklist/edit.rhtml +7 -7
- data/app/views/admin/blacklist/list.rhtml +2 -2
- data/app/views/admin/cache/list.rhtml +2 -2
- data/app/views/admin/categories/_categories.rhtml +3 -3
- data/app/views/admin/categories/_form.rhtml +1 -1
- data/app/views/admin/categories/_quick_post.rhtml +5 -5
- data/app/views/admin/categories/destroy.rhtml +7 -7
- data/app/views/admin/categories/edit.rhtml +6 -6
- data/app/views/admin/categories/list.rhtml +7 -4
- data/app/views/admin/categories/reorder.rhtml +1 -1
- data/app/views/admin/categories/show.rhtml +6 -6
- data/app/views/admin/comments/_form.rhtml +4 -4
- data/app/views/admin/comments/comments.rhtml +1 -1
- data/app/views/admin/comments/destroy.rhtml +6 -6
- data/app/views/admin/comments/edit.rhtml +8 -8
- data/app/views/admin/comments/list.rhtml +11 -11
- data/app/views/admin/comments/new.rhtml +7 -7
- data/app/views/admin/comments/show.rhtml +7 -7
- data/app/views/admin/content/_articles.rhtml +12 -10
- data/app/views/admin/content/_attachment.rhtml +15 -17
- data/app/views/admin/content/_form.rhtml +68 -45
- data/app/views/admin/content/_pages.rhtml +2 -2
- data/app/views/admin/content/_quick_post.rhtml +6 -6
- data/app/views/admin/content/_show_categories.rhtml +2 -2
- data/app/views/admin/content/_show_resources.rhtml +2 -2
- data/app/views/admin/content/destroy.rhtml +8 -8
- data/app/views/admin/content/edit.rhtml +8 -26
- data/app/views/admin/content/list.rhtml +4 -4
- data/app/views/admin/content/new.rhtml +5 -25
- data/app/views/admin/content/preview.rhtml +9 -2
- data/app/views/admin/content/show.rhtml +10 -9
- data/app/views/admin/feedback/_item.rhtml +2 -2
- data/app/views/admin/feedback/list.rhtml +21 -20
- data/app/views/admin/general/index.rhtml +261 -239
- data/app/views/admin/general/update_database.rhtml +15 -15
- data/app/views/admin/pages/_form.rhtml +32 -15
- data/app/views/admin/pages/_pages.rhtml +9 -8
- data/app/views/admin/pages/_quick_post.rhtml +2 -2
- data/app/views/admin/pages/destroy.rhtml +7 -7
- data/app/views/admin/pages/edit.rhtml +7 -26
- data/app/views/admin/pages/list.rhtml +4 -3
- data/app/views/admin/pages/new.rhtml +5 -22
- data/app/views/admin/pages/preview.rhtml +1 -1
- data/app/views/admin/pages/show.rhtml +5 -5
- data/app/views/admin/resources/_itunes_category_edit.rhtml +2 -2
- data/app/views/admin/resources/_metadata_add.rhtml +13 -13
- data/app/views/admin/resources/_metadata_edit.rhtml +14 -14
- data/app/views/admin/resources/_mime_edit.rhtml +5 -5
- data/app/views/admin/resources/_pages.rhtml +2 -2
- data/app/views/admin/resources/_resources.rhtml +8 -8
- data/app/views/admin/resources/destroy.rhtml +7 -7
- data/app/views/admin/resources/list.rhtml +6 -3
- data/app/views/admin/resources/new.rhtml +7 -3
- data/app/views/admin/shared/_edit.rhtml +17 -0
- data/app/views/admin/sidebar/_active.rhtml +5 -5
- data/app/views/admin/sidebar/_availables.rhtml +1 -1
- data/app/views/admin/sidebar/_publish.rhtml +1 -1
- data/app/views/admin/sidebar/_target.rhtml +1 -1
- data/app/views/admin/sidebar/index.rhtml +9 -5
- data/app/views/admin/textfilters/_form.rhtml +13 -5
- data/app/views/admin/textfilters/_macros.rhtml +4 -4
- data/app/views/admin/textfilters/_textfilters.rhtml +6 -6
- data/app/views/admin/textfilters/destroy.rhtml +5 -8
- data/app/views/admin/textfilters/edit.rhtml +2 -5
- data/app/views/admin/textfilters/list.rhtml +4 -2
- data/app/views/admin/textfilters/macro_help.rhtml +1 -1
- data/app/views/admin/textfilters/new.rhtml +9 -7
- data/app/views/admin/textfilters/show.rhtml +5 -5
- data/app/views/admin/textfilters/show_help.rhtml +3 -3
- data/app/views/admin/themes/index.rhtml +8 -2
- data/app/views/admin/trackbacks/_form.rhtml +4 -4
- data/app/views/admin/trackbacks/destroy.rhtml +4 -4
- data/app/views/admin/trackbacks/edit.rhtml +6 -6
- data/app/views/admin/trackbacks/list.rhtml +10 -10
- data/app/views/admin/trackbacks/new.rhtml +6 -6
- data/app/views/admin/trackbacks/show.rhtml +8 -8
- data/app/views/admin/users/_form.rhtml +10 -10
- data/app/views/admin/users/_user.rhtml +6 -6
- data/app/views/admin/users/destroy.rhtml +7 -7
- data/app/views/admin/users/edit.rhtml +9 -5
- data/app/views/admin/users/list.rhtml +2 -2
- data/app/views/admin/users/new.rhtml +9 -7
- data/app/views/admin/users/show.rhtml +10 -10
- data/app/views/articles/_article.rhtml +3 -3
- data/app/views/articles/_comment.rhtml +3 -3
- data/app/views/articles/_comment_box.rhtml +6 -6
- data/app/views/articles/_trackback.rhtml +1 -1
- data/app/views/articles/archives.rhtml +3 -3
- data/app/views/articles/comment_preview.rhtml +2 -2
- data/app/views/articles/groupings.rhtml +1 -1
- data/app/views/articles/index.rhtml +2 -2
- data/app/views/articles/read.rhtml +15 -15
- data/app/views/articles/view_page.rhtml +1 -1
- data/app/views/layouts/administration.rhtml +11 -17
- data/app/views/layouts/minimal.rhtml +13 -0
- data/app/views/live/search.rhtml +1 -1
- data/app/views/notification_mailer/_mail_footer.rhtml +2 -2
- data/app/views/notification_mailer/article.rhtml +1 -1
- data/app/views/notification_mailer/comment.rhtml +4 -4
- data/app/views/settings/done.rhtml +1 -1
- data/app/views/settings/install.rhtml +3 -3
- data/app/views/shared/_search.rhtml +4 -4
- data/app/views/xml/_atom10_item_article.rxml +9 -7
- data/app/views/xml/_atom10_item_comment.rxml +2 -3
- data/app/views/xml/_atom10_item_trackback.rxml +1 -1
- data/app/views/xml/_googlesitemap_item_article.rxml +2 -2
- data/app/views/xml/_googlesitemap_item_category.rxml +1 -1
- data/app/views/xml/_googlesitemap_item_page.rxml +2 -2
- data/app/views/xml/_googlesitemap_item_tag.rxml +2 -2
- data/app/views/xml/_itunes_item_resource.rxml +2 -4
- data/app/views/xml/_rss20_item_article.rxml +4 -10
- data/app/views/xml/_rss20_item_comment.rxml +2 -2
- data/app/views/xml/rsd.rxml +4 -4
- data/bin/typo +0 -1
- data/config/boot.rb +4 -3
- data/config/environment.rb +37 -28
- data/config/environments/test.rb +1 -1
- data/config/routes.rb +6 -5
- data/db/migrate/051_fix_canonical_server_url.rb +17 -0
- data/db/migrate/052_remove_cached_html.rb +11 -0
- data/db/migrate/053_promote_canonical_server_url.rb +22 -0
- data/db/migrate/054_upgrade_sidebar_objects.rb +26 -0
- data/db/migrate/055_link_sidebars_to_blog.rb +17 -0
- data/db/migrate/056_create_notifications.rb +32 -0
- data/db/migrate/057_add_categorization_model.rb +45 -0
- data/db/migrate/058_separate_entries_and_feedback.rb +68 -0
- data/db/migrate/059_cleanup_feedback_table.rb +25 -0
- data/db/migrate/060_cleanup_contents_table.rb +29 -0
- data/db/migrate/061_convert_title_prefix_setting.rb +25 -0
- data/db/schema.mysql.sql +139 -108
- data/db/schema.postgresql.sql +140 -108
- data/db/schema.rb +97 -75
- data/db/schema.sqlite.sql +140 -108
- data/db/schema.sqlserver.sql +144 -109
- data/db/schema_version +1 -1
- data/lang/fr_FR.rb +469 -0
- data/lib/email_notify.rb +4 -4
- data/lib/generators/sidebar/sidebar_generator.rb +15 -6
- data/lib/generators/sidebar/templates/Rakefile +22 -0
- data/lib/generators/sidebar/templates/content.rhtml +10 -0
- data/lib/generators/sidebar/templates/init.rb +4 -0
- data/lib/generators/sidebar/templates/sidebar.rb +16 -0
- data/lib/generators/sidebar/templates/unit_test.rb +8 -0
- data/lib/jabber_notify.rb +8 -7
- data/lib/memory_profiler.rb +60 -0
- data/lib/rails_patch/active_record.rb +0 -27
- data/lib/route_cache.rb +15 -0
- data/lib/sidebars/component_plugin.rb +3 -0
- data/lib/sidebars/consolidated_plugin.rb +26 -0
- data/lib/sidebars/plugin.rb +8 -13
- data/lib/spam_protection.rb +35 -23
- data/lib/tasks/release.rake +7 -7
- data/lib/text_filter_plugin.rb +55 -15
- data/lib/typo_deprecated.rb +19 -0
- data/lib/typo_version.rb +1 -1
- data/public/images/bracket.gif +0 -0
- data/public/images/cancel.png +0 -0
- data/public/images/checked.png +0 -0
- data/public/images/delete.png +0 -0
- data/public/images/edit.png +0 -0
- data/public/images/help.png +0 -0
- data/public/images/show.png +0 -0
- data/public/javascripts/codecollapse.js +8 -0
- data/public/javascripts/controls.js +41 -23
- data/public/javascripts/dragdrop.js +105 -76
- data/public/javascripts/effects.js +293 -163
- data/public/javascripts/prototype.js +900 -391
- data/public/stylesheets/administration.css +390 -318
- data/public/stylesheets/codecollapse.css +3 -0
- data/public/stylesheets/minimal.css +142 -0
- data/public/stylesheets/textmate/dawn.css +209 -0
- data/public/stylesheets/textmate/iplastic.css +142 -0
- data/public/stylesheets/textmate/space_cadet.css +99 -0
- data/public/stylesheets/textmate/textmate.css +48 -0
- data/public/stylesheets/textmate/twilight.css +227 -0
- data/script/process/inspector +3 -0
- data/spec/controllers/accounts_controller_spec.rb +184 -0
- data/spec/controllers/articles_controller_spec.rb +47 -0
- data/spec/fixtures/articles_tags.yml +19 -0
- data/spec/fixtures/blacklist_patterns.yml +10 -0
- data/spec/fixtures/blogs.yml +77 -0
- data/spec/fixtures/categories.yml +35 -0
- data/{test/fixtures/articles_categories.yml → spec/fixtures/categorizations.yml} +0 -0
- data/spec/fixtures/contents.yml +215 -0
- data/spec/fixtures/feedback.yml +159 -0
- data/spec/fixtures/notifications.yml +0 -0
- data/spec/fixtures/page_caches.yml +7 -0
- data/spec/fixtures/redirects.yml +13 -0
- data/spec/fixtures/resources.yml +24 -0
- data/spec/fixtures/sidebars.yml +12 -0
- data/spec/fixtures/tags.yml +13 -0
- data/spec/fixtures/text_filters.yml +42 -0
- data/spec/fixtures/triggers.yml +1 -0
- data/spec/fixtures/users.yml +56 -0
- data/spec/fixtures/whiteboards.yml +13 -0
- data/spec/helpers/admin_base_helper_spec.rb +13 -0
- data/spec/models/amazon_sidebar_spec.rb +40 -0
- data/spec/models/audioscrobbler_spec.rb +134 -0
- data/spec/models/blog_spec.rb +28 -0
- data/spec/models/cache_support_spec.rb +55 -0
- data/spec/models/category_spec.rb +48 -0
- data/spec/models/configuration_spec.rb +108 -0
- data/spec/models/content_state_spec.rb +1010 -0
- data/spec/models/delegate_to_content_state_spec.rb +126 -0
- data/spec/models/delicious_spec.rb +101 -0
- data/spec/models/flickr_spec.rb +128 -0
- data/spec/models/metafragment_spec.rb +65 -0
- data/spec/models/page_cache_spec.rb +35 -0
- data/spec/models/page_spec.rb +88 -0
- data/spec/models/ping_spec.rb +133 -0
- data/spec/models/redirect_spec.rb +17 -0
- data/spec/models/resource_spec.rb +43 -0
- data/spec/models/static_sidebar_spec.rb +17 -0
- data/spec/models/tag_spec.rb +54 -0
- data/spec/models/text_filter_spec.rb +38 -0
- data/spec/models/theme_spec.rb +45 -0
- data/spec/models/trackback_spec.rb +60 -0
- data/spec/models/trigger_spec.rb +41 -0
- data/spec/models/user_spec.rb +105 -0
- data/test/fixtures/blogs.yml +5 -4
- data/test/fixtures/categorizations.yml +31 -0
- data/test/fixtures/contents.yml +2 -160
- data/test/fixtures/feedback.yml +159 -0
- data/test/fixtures/sidebars.yml +11 -4
- data/test/functional/accounts_controller_test.rb +6 -10
- data/test/functional/admin/article_preview_test.rb +21 -6
- data/test/functional/admin/blacklist_controller_test.rb +11 -11
- data/test/functional/admin/categories_controller_test.rb +13 -13
- data/test/functional/admin/comments_controller_test.rb +21 -21
- data/test/functional/admin/content_controller_test.rb +30 -38
- data/test/functional/admin/feedback_controller_test.rb +12 -12
- data/test/functional/admin/general_controller_test.rb +2 -2
- data/test/functional/admin/pages_controller_test.rb +3 -18
- data/test/functional/admin/resources_controller_test.rb +7 -7
- data/test/functional/admin/textfilters_controller_test.rb +2 -2
- data/test/functional/admin/themes_controller_test.rb +1 -1
- data/test/functional/admin/trackbacks_controller_test.rb +21 -21
- data/test/functional/admin/users_controller_test.rb +21 -18
- data/test/functional/articles_controller_test.rb +62 -46
- data/test/functional/backend_controller_test.rb +6 -6
- data/test/functional/redirect_controller_test.rb +3 -3
- data/test/functional/textfilter_controller_test.rb +10 -12
- data/test/functional/theme_controller_test.rb +1 -1
- data/test/functional/xml_controller_test.rb +7 -5
- data/test/mocks/themes/azure/layouts/default.rhtml +2 -2
- data/test/test_helper.rb +75 -0
- data/test/unit/amazon_sidebar_test.rb +36 -0
- data/test/unit/article_test.rb +36 -4
- data/test/unit/blog_test.rb +5 -36
- data/test/unit/cache_support_test.rb +62 -0
- data/test/unit/category_test.rb +6 -1
- data/test/unit/comment_test.rb +34 -9
- data/test/unit/content_state/factory_test.rb +8 -0
- data/test/unit/content_state/feedback_states_test.rb +71 -0
- data/test/unit/magnolia_test.rb +1 -1
- data/test/unit/notification_test.rb +10 -0
- data/test/unit/page_test.rb +20 -0
- data/test/unit/ping_test.rb +1 -1
- data/test/unit/sidebar_test.rb +2 -7
- data/test/unit/static_sidebar_test.rb +19 -0
- data/test/unit/tag_test.rb +6 -1
- data/test/unit/text_filter_test.rb +21 -21
- data/test/unit/theme_test.rb +1 -1
- data/test/unit/trackback_test.rb +16 -1
- data/themes/azure/layouts/default.rhtml +2 -2
- data/themes/scribbish/layouts/default.rhtml +2 -2
- data/themes/scribbish/stylesheets/content.css +6 -8
- data/themes/scribbish/views/articles/_article.rhtml +10 -10
- data/themes/scribbish/views/articles/_comment.rhtml +16 -12
- data/themes/scribbish/views/articles/_comment_form.rhtml +25 -22
- data/themes/scribbish/views/articles/_search.rhtml +14 -13
- data/themes/scribbish/views/articles/comment_preview.rhtml +3 -3
- data/themes/scribbish/views/articles/index.rhtml +1 -1
- data/themes/scribbish/views/articles/read.rhtml +8 -8
- data/vendor/cached_model/History.txt +30 -0
- data/vendor/cached_model/LICENSE.txt +30 -0
- data/vendor/cached_model/Manifest.txt +7 -0
- data/vendor/cached_model/README.txt +96 -0
- data/vendor/cached_model/Rakefile +25 -0
- data/vendor/cached_model/lib/cached_model.rb +287 -0
- data/vendor/cached_model/test/test_cached_model.rb +593 -0
- data/vendor/flickr/flickr.rb +1 -1
- data/vendor/memcache-client/History.txt +25 -0
- data/vendor/memcache-client/LICENSE.txt +30 -0
- data/vendor/memcache-client/Manifest.txt +8 -0
- data/vendor/memcache-client/README.txt +46 -0
- data/vendor/memcache-client/Rakefile +23 -0
- data/vendor/memcache-client/lib/memcache.rb +491 -0
- data/vendor/memcache-client/lib/memcache_util.rb +71 -0
- data/vendor/memcache-client/test/test_mem_cache.rb +284 -0
- data/vendor/plugins/action_view_patch/Rakefile +22 -0
- data/vendor/plugins/action_view_patch/init.rb +1 -0
- data/vendor/plugins/action_view_patch/lib/action_view_patch.rb +18 -0
- data/vendor/plugins/action_view_patch/test/action_view_patch_test.rb +56 -0
- data/vendor/plugins/aimpresence_sidebar/Rakefile +22 -0
- data/vendor/plugins/aimpresence_sidebar/init.rb +4 -0
- data/vendor/plugins/aimpresence_sidebar/lib/aimpresence_sidebar.rb +21 -0
- data/vendor/plugins/aimpresence_sidebar/test/aimpresence_sidebar_test.rb +33 -0
- data/vendor/plugins/aimpresence_sidebar/views/content.rhtml +4 -0
- data/vendor/plugins/amazon_sidebar/init.rb +5 -0
- data/vendor/plugins/amazon_sidebar/lib/amazon_sidebar.rb +16 -0
- data/vendor/plugins/amazon_sidebar/views/content.rhtml +4 -0
- data/vendor/plugins/archives_sidebar/Rakefile +22 -0
- data/vendor/plugins/archives_sidebar/init.rb +5 -0
- data/{components/plugins/sidebars/archives_controller.rb → vendor/plugins/archives_sidebar/lib/archives_sidebar.rb} +7 -6
- data/vendor/plugins/archives_sidebar/test/archives_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/archives → vendor/plugins/archives_sidebar/views}/content.rhtml +2 -2
- data/vendor/plugins/audioscrobbler_sidebar/Rakefile +22 -0
- data/vendor/plugins/audioscrobbler_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/audioscrobbler_sidebar/lib}/audioscrobbler.rb +0 -0
- data/{components/plugins/sidebars/audioscrobbler_controller.rb → vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb} +7 -4
- data/vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/audioscrobbler → vendor/plugins/audioscrobbler_sidebar/views}/content.rhtml +4 -4
- data/vendor/plugins/backpack_sidebar/Rakefile +22 -0
- data/vendor/plugins/backpack_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/backpack_sidebar/lib}/backpack.rb +0 -0
- data/{components/plugins/sidebars/backpack_controller.rb → vendor/plugins/backpack_sidebar/lib/backpack_sidebar.rb} +6 -3
- data/vendor/plugins/backpack_sidebar/test/backpack_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/backpack → vendor/plugins/backpack_sidebar/views}/content.rhtml +4 -4
- data/vendor/plugins/category_sidebar/Rakefile +22 -0
- data/vendor/plugins/category_sidebar/init.rb +5 -0
- data/{components/plugins/sidebars/category_controller.rb → vendor/plugins/category_sidebar/lib/category_sidebar.rb} +3 -5
- data/vendor/plugins/category_sidebar/test/category_sidebar_test.rb +8 -0
- data/vendor/plugins/category_sidebar/views/content.rhtml +10 -0
- data/vendor/plugins/delicious_sidebar/Rakefile +22 -0
- data/vendor/plugins/delicious_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/delicious_sidebar/lib}/delicious.rb +0 -0
- data/{components/plugins/sidebars/delicious_controller.rb → vendor/plugins/delicious_sidebar/lib/delicious_sidebar.rb} +16 -10
- data/vendor/plugins/delicious_sidebar/test/delicious_sidebar_test.rb +8 -0
- data/vendor/plugins/delicious_sidebar/views/content.rhtml +20 -0
- data/vendor/plugins/flickr_sidebar/Rakefile +22 -0
- data/vendor/plugins/flickr_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/flickr_sidebar/lib}/flickr.rb +1 -1
- data/vendor/plugins/flickr_sidebar/lib/flickr_sidebar.rb +15 -0
- data/vendor/plugins/flickr_sidebar/test/flickr_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/flickr → vendor/plugins/flickr_sidebar/views}/content.rhtml +5 -5
- data/vendor/plugins/fortythree_sidebar/Rakefile +22 -0
- data/vendor/plugins/fortythree_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/fortythree_sidebar/lib}/fortythree.rb +0 -0
- data/{components/plugins/sidebars/fortythree_controller.rb → vendor/plugins/fortythree_sidebar/lib/fortythree_sidebar.rb} +5 -4
- data/vendor/plugins/fortythree_sidebar/test/fortythree_sidebar_test.rb +8 -0
- data/vendor/plugins/fortythree_sidebar/views/content.rhtml +8 -0
- data/vendor/plugins/fortythreeplaces_sidebar/Rakefile +22 -0
- data/vendor/plugins/fortythreeplaces_sidebar/init.rb +5 -0
- data/vendor/plugins/fortythreeplaces_sidebar/lib/fortythree.rb +62 -0
- data/{components/plugins/sidebars/fortythreeplaces_controller.rb → vendor/plugins/fortythreeplaces_sidebar/lib/fortythreeplaces_sidebar.rb} +5 -4
- data/vendor/plugins/fortythreeplaces_sidebar/test/fortythreeplaces_sidebar_test.rb +8 -0
- data/vendor/plugins/fortythreeplaces_sidebar/views/content.rhtml +8 -0
- data/vendor/plugins/haml/MIT-LICENSE +20 -0
- data/vendor/plugins/haml/REFERENCE +662 -0
- data/vendor/plugins/haml/Rakefile +171 -0
- data/vendor/plugins/haml/VERSION +1 -0
- data/vendor/plugins/haml/bin/haml +18 -0
- data/vendor/plugins/haml/init.rb +3 -0
- data/vendor/plugins/haml/lib/haml/buffer.rb +224 -0
- data/vendor/plugins/haml/lib/haml/engine.rb +557 -0
- data/vendor/plugins/haml/lib/haml/helpers.rb +220 -0
- data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +54 -0
- data/vendor/plugins/haml/lib/haml/template.rb +138 -0
- data/vendor/plugins/haml/test/benchmark.rb +62 -0
- data/vendor/plugins/haml/test/engine_test.rb +93 -0
- data/vendor/plugins/haml/test/helper_test.rb +105 -0
- data/vendor/plugins/haml/test/mocks/article.rb +6 -0
- data/vendor/plugins/haml/test/profile.rb +45 -0
- data/vendor/plugins/haml/test/results/content_for_layout.xhtml +16 -0
- data/vendor/plugins/haml/test/results/eval_suppressed.xhtml +2 -0
- data/vendor/plugins/haml/test/results/helpers.xhtml +50 -0
- data/vendor/plugins/haml/test/results/helpful.xhtml +5 -0
- data/vendor/plugins/haml/test/results/just_stuff.xhtml +38 -0
- data/vendor/plugins/haml/test/results/list.xhtml +12 -0
- data/vendor/plugins/haml/test/results/original_engine.xhtml +24 -0
- data/vendor/plugins/haml/test/results/partials.xhtml +20 -0
- data/vendor/plugins/haml/test/results/silent_script.xhtml +74 -0
- data/vendor/plugins/haml/test/results/standard.xhtml +42 -0
- data/vendor/plugins/haml/test/results/tag_parsing.xhtml +28 -0
- data/vendor/plugins/haml/test/results/very_basic.xhtml +7 -0
- data/vendor/plugins/haml/test/results/whitespace_handling.xhtml +51 -0
- data/vendor/plugins/haml/test/rhtml/standard.rhtml +51 -0
- data/vendor/plugins/haml/test/runner.rb +15 -0
- data/vendor/plugins/haml/test/template_test.rb +137 -0
- data/vendor/plugins/haml/test/templates/_partial.haml +7 -0
- data/vendor/plugins/haml/test/templates/_text_area.haml +3 -0
- data/vendor/plugins/haml/test/templates/content_for_layout.haml +10 -0
- data/vendor/plugins/haml/test/templates/eval_suppressed.haml +5 -0
- data/vendor/plugins/haml/test/templates/helpers.haml +39 -0
- data/vendor/plugins/haml/test/templates/helpful.haml +6 -0
- data/vendor/plugins/haml/test/templates/just_stuff.haml +34 -0
- data/vendor/plugins/haml/test/templates/list.haml +12 -0
- data/vendor/plugins/haml/test/templates/original_engine.haml +17 -0
- data/vendor/plugins/haml/test/templates/partialize.haml +1 -0
- data/vendor/plugins/haml/test/templates/partials.haml +12 -0
- data/vendor/plugins/haml/test/templates/silent_script.haml +40 -0
- data/vendor/plugins/haml/test/templates/standard.haml +40 -0
- data/vendor/plugins/haml/test/templates/tag_parsing.haml +24 -0
- data/vendor/plugins/haml/test/templates/very_basic.haml +4 -0
- data/vendor/plugins/haml/test/templates/whitespace_handling.haml +66 -0
- data/vendor/plugins/localization/CHANGELOG +1 -0
- data/vendor/plugins/localization/README +85 -0
- data/vendor/plugins/localization/init.rb +3 -0
- data/vendor/plugins/localization/lib/localization.rb +46 -0
- data/vendor/plugins/magnolia_sidebar/Rakefile +22 -0
- data/vendor/plugins/magnolia_sidebar/init.rb +5 -0
- data/{app/models/aggregations/magnolia.rb → vendor/plugins/magnolia_sidebar/lib/magnolia_aggregation.rb} +0 -0
- data/vendor/plugins/magnolia_sidebar/lib/magnolia_sidebar.rb +16 -0
- data/vendor/plugins/magnolia_sidebar/test/magnolia_sidebar_test.rb +8 -0
- data/vendor/plugins/magnolia_sidebar/views/content.rhtml +12 -0
- data/vendor/plugins/recent_comments_sidebar/Rakefile +22 -0
- data/vendor/plugins/recent_comments_sidebar/init.rb +5 -0
- data/vendor/plugins/recent_comments_sidebar/lib/recent_comments_sidebar.rb +16 -0
- data/vendor/plugins/recent_comments_sidebar/test/recent_comments_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/recent_comments → vendor/plugins/recent_comments_sidebar/views}/content.rhtml +2 -2
- data/vendor/plugins/static_sidebar/init.rb +4 -0
- data/{components/plugins/sidebars/static_controller.rb → vendor/plugins/static_sidebar/lib/static_sidebar.rb} +4 -7
- data/vendor/plugins/static_sidebar/views/content.rhtml +2 -0
- data/vendor/plugins/tada_sidebar/Rakefile +22 -0
- data/vendor/plugins/tada_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/tada_sidebar/lib}/tada.rb +0 -0
- data/{components/plugins/sidebars/tada_controller.rb → vendor/plugins/tada_sidebar/lib/tada_sidebar.rb} +8 -4
- data/vendor/plugins/tada_sidebar/test/tada_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/tada → vendor/plugins/tada_sidebar/views}/content.rhtml +4 -4
- data/vendor/plugins/tag_sidebar/Rakefile +22 -0
- data/vendor/plugins/tag_sidebar/init.rb +5 -0
- data/vendor/plugins/tag_sidebar/lib/tag_sidebar.rb +24 -0
- data/vendor/plugins/tag_sidebar/test/tag_sidebar_test.rb +8 -0
- data/vendor/plugins/tag_sidebar/views/content.rhtml +8 -0
- data/vendor/plugins/technorati_sidebar/Rakefile +22 -0
- data/vendor/plugins/technorati_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/technorati_sidebar/lib}/technorati.rb +0 -0
- data/{components/plugins/sidebars/technorati_controller.rb → vendor/plugins/technorati_sidebar/lib/technorati_sidebar.rb} +8 -4
- data/vendor/plugins/technorati_sidebar/test/technorati_sidebar_test.rb +8 -0
- data/vendor/plugins/technorati_sidebar/views/content.rhtml +8 -0
- data/vendor/plugins/typo_textfilter_amazon/README +5 -0
- data/vendor/plugins/typo_textfilter_amazon/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_amazon/init.rb +4 -0
- data/vendor/plugins/typo_textfilter_amazon/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_amazon/lib/typo_textfilter_amazon.rb +45 -0
- data/vendor/plugins/typo_textfilter_amazon/tasks/typo_textfilter_amazon_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_amazon/test/typo_textfilter_amazon_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_code/README +4 -0
- data/vendor/plugins/typo_textfilter_code/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_code/init.rb +4 -0
- data/vendor/plugins/typo_textfilter_code/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_code/lib/typo_textfilter_code.rb +62 -0
- data/vendor/plugins/typo_textfilter_code/tasks/typo_textfilter_code_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_code/test/typo_textfilter_code_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_flickr/README +4 -0
- data/vendor/plugins/typo_textfilter_flickr/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_flickr/init.rb +4 -0
- data/vendor/plugins/typo_textfilter_flickr/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_flickr/lib/typo_textfilter_flickr.rb +79 -0
- data/vendor/plugins/typo_textfilter_flickr/tasks/typo_textfilter_flickr_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_flickr/test/typo_textfilter_flickr_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/README +4 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/lib/typo_textfilter_htmlfilter.rb +12 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/tasks/typo_textfilter_htmlfilter_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/test/typo_textfilter_htmlfilter_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_lightbox/README +4 -0
- data/vendor/plugins/typo_textfilter_lightbox/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_lightbox/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_lightbox/install.rb +1 -0
- data/{components/plugins/textfilters/lightbox_controller.rb → vendor/plugins/typo_textfilter_lightbox/lib/typo_textfilter_lightbox.rb} +64 -61
- data/vendor/plugins/typo_textfilter_lightbox/tasks/typo_textfilter_lightbox_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_lightbox/test/typo_textfilter_lightbox_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_markdown/README +4 -0
- data/vendor/plugins/typo_textfilter_markdown/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_markdown/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_markdown/install.rb +1 -0
- data/{components/plugins/textfilters/markdown_controller.rb → vendor/plugins/typo_textfilter_markdown/lib/typo_textfilter_markdown.rb} +13 -9
- data/vendor/plugins/typo_textfilter_markdown/tasks/typo_textfilter_markdown_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_markdown/test/typo_textfilter_markdown_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_none/README +4 -0
- data/vendor/plugins/typo_textfilter_none/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_none/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_none/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_none/lib/typo_textfilter_none.rb +12 -0
- data/vendor/plugins/typo_textfilter_none/tasks/typo_textfilter_none_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_none/test/typo_textfilter_none_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_smartypants/README +4 -0
- data/vendor/plugins/typo_textfilter_smartypants/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_smartypants/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_smartypants/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_smartypants/lib/typo_textfilter_smartypants.rb +12 -0
- data/vendor/plugins/typo_textfilter_smartypants/tasks/typo_textfilter_smartypants_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_smartypants/test/typo_textfilter_smartypants_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_sparkline/README +4 -0
- data/vendor/plugins/typo_textfilter_sparkline/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_sparkline/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_sparkline/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_sparkline/lib/typo_textfilter_sparkline.rb +92 -0
- data/vendor/plugins/typo_textfilter_sparkline/tasks/typo_textfilter_sparkline_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_sparkline/test/typo_textfilter_sparkline_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_textile/README +4 -0
- data/vendor/plugins/typo_textfilter_textile/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_textile/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_textile/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb +18 -0
- data/vendor/plugins/typo_textfilter_textile/tasks/typo_textfilter_textile_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_textile/test/typo_textfilter_textile_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/README +4 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/lib/typo_textfilter_textile_and_markdown.rb +12 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/tasks/typo_textfilter_textile_and_markdown_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/test/typo_textfilter_textile_and_markdown_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_tmcode/README +4 -0
- data/vendor/plugins/typo_textfilter_tmcode/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_tmcode/init.rb +3 -0
- data/vendor/plugins/typo_textfilter_tmcode/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_tmcode/lib/typo_textfilter_tmcode.rb +86 -0
- data/vendor/plugins/typo_textfilter_tmcode/tasks/typo_textfilter_tmcode_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_tmcode/test/typo_textfilter_tmcode_test.rb +8 -0
- data/vendor/plugins/upcoming_sidebar/Rakefile +22 -0
- data/vendor/plugins/upcoming_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/upcoming_sidebar/lib}/upcoming.rb +0 -0
- data/vendor/plugins/upcoming_sidebar/lib/upcoming_sidebar.rb +15 -0
- data/vendor/plugins/upcoming_sidebar/test/upcoming_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/upcoming → vendor/plugins/upcoming_sidebar/views}/content.rhtml +3 -3
- data/vendor/plugins/xbox_sidebar/Rakefile +22 -0
- data/vendor/plugins/xbox_sidebar/init.rb +5 -0
- data/{components/plugins/sidebars/xbox_controller.rb → vendor/plugins/xbox_sidebar/lib/xbox_sidebar.rb} +1 -1
- data/vendor/plugins/xbox_sidebar/test/xbox_sidebar_test.rb +8 -0
- data/vendor/plugins/xbox_sidebar/views/content.rhtml +2 -0
- data/vendor/plugins/xml_sidebar/Rakefile +22 -0
- data/vendor/plugins/xml_sidebar/init.rb +5 -0
- data/{components/plugins/sidebars/xml_controller.rb → vendor/plugins/xml_sidebar/lib/xml_sidebar.rb} +1 -1
- data/vendor/plugins/xml_sidebar/test/xml_sidebar_test.rb +8 -0
- data/vendor/plugins/xml_sidebar/views/content.rhtml +12 -0
- metadata +505 -101
- data/app/controllers/sidebar_controller.rb +0 -50
- data/app/models/content_observer.rb +0 -5
- data/components/plugins/sidebars/aimpresence/content.rhtml +0 -4
- data/components/plugins/sidebars/aimpresence_controller.rb +0 -10
- data/components/plugins/sidebars/amazon/content.rhtml +0 -4
- data/components/plugins/sidebars/amazon_controller.rb +0 -17
- data/components/plugins/sidebars/category/content.rhtml +0 -10
- data/components/plugins/sidebars/delicious/content.rhtml +0 -20
- data/components/plugins/sidebars/flickr_controller.rb +0 -16
- data/components/plugins/sidebars/fortythree/content.rhtml +0 -8
- data/components/plugins/sidebars/fortythreeplaces/content.rhtml +0 -8
- data/components/plugins/sidebars/magnolia/content.rhtml +0 -12
- data/components/plugins/sidebars/magnolia_controller.rb +0 -17
- data/components/plugins/sidebars/recent_comments_controller.rb +0 -23
- data/components/plugins/sidebars/static/content.rhtml +0 -2
- data/components/plugins/sidebars/tag/content.rhtml +0 -8
- data/components/plugins/sidebars/tag_controller.rb +0 -18
- data/components/plugins/sidebars/technorati/content.rhtml +0 -8
- data/components/plugins/sidebars/upcoming_controller.rb +0 -11
- data/components/plugins/sidebars/xbox/content.rhtml +0 -2
- data/components/plugins/sidebars/xml/content.rhtml +0 -12
- data/components/plugins/textfilters/amazon_controller.rb +0 -39
- data/components/plugins/textfilters/code_controller.rb +0 -59
- data/components/plugins/textfilters/flickr_controller.rb +0 -75
- data/components/plugins/textfilters/htmlfilter_controller.rb +0 -8
- data/components/plugins/textfilters/macropost_controller.rb +0 -14
- data/components/plugins/textfilters/macropre_controller.rb +0 -14
- data/components/plugins/textfilters/none_controller.rb +0 -8
- data/components/plugins/textfilters/smartypants_controller.rb +0 -8
- data/components/plugins/textfilters/sparkline_controller.rb +0 -88
- data/components/plugins/textfilters/textile_and_markdown_controller.rb +0 -8
- data/components/plugins/textfilters/textile_controller.rb +0 -14
- data/db/schema.mysql-v3.sql +0 -218
- data/lib/generators/sidebar/templates/components/plugins/sidebars/controller_template.rb +0 -20
- data/lib/generators/sidebar/templates/components/plugins/sidebars/views/content_template.rhtml +0 -4
- data/lib/rails_patch/components.rb +0 -14
- data/public/images/checked.gif +0 -0
- data/test/unit/observer_test.rb +0 -40
data/db/schema.sqlite.sql
CHANGED
|
@@ -7,182 +7,209 @@
|
|
|
7
7
|
|
|
8
8
|
-- tables
|
|
9
9
|
|
|
10
|
-
CREATE TABLE articles_categories (
|
|
11
|
-
"article_id" integer,
|
|
12
|
-
"category_id" integer,
|
|
13
|
-
"is_primary" integer
|
|
14
|
-
);
|
|
15
|
-
|
|
16
10
|
CREATE TABLE articles_tags (
|
|
17
|
-
"article_id" integer,
|
|
18
|
-
"tag_id" integer
|
|
11
|
+
"article_id" integer DEFAULT NULL,
|
|
12
|
+
"tag_id" integer DEFAULT NULL
|
|
19
13
|
);
|
|
20
14
|
|
|
21
15
|
CREATE TABLE blacklist_patterns (
|
|
22
16
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
23
|
-
"type" varchar(255),
|
|
24
|
-
"pattern" varchar(255)
|
|
17
|
+
"type" varchar(255) DEFAULT NULL,
|
|
18
|
+
"pattern" varchar(255) DEFAULT NULL
|
|
25
19
|
);
|
|
26
20
|
|
|
27
21
|
CREATE TABLE blogs (
|
|
28
22
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
29
|
-
"settings" text
|
|
23
|
+
"settings" text DEFAULT NULL,
|
|
24
|
+
"base_url" varchar(255) DEFAULT NULL
|
|
30
25
|
);
|
|
31
26
|
|
|
32
27
|
CREATE TABLE categories (
|
|
33
28
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
34
|
-
"name" varchar(255),
|
|
35
|
-
"position" integer,
|
|
36
|
-
"permalink" varchar(255)
|
|
29
|
+
"name" varchar(255) DEFAULT NULL,
|
|
30
|
+
"position" integer DEFAULT NULL,
|
|
31
|
+
"permalink" varchar(255) DEFAULT NULL
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
CREATE TABLE categorizations (
|
|
35
|
+
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
36
|
+
"article_id" integer DEFAULT NULL,
|
|
37
|
+
"category_id" integer DEFAULT NULL,
|
|
38
|
+
"is_primary" boolean DEFAULT NULL
|
|
37
39
|
);
|
|
38
40
|
|
|
39
41
|
CREATE TABLE contents (
|
|
40
42
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
41
|
-
"type" varchar(255),
|
|
42
|
-
"title" varchar(255),
|
|
43
|
-
"author" varchar(255),
|
|
44
|
-
"body" text,
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"whiteboard" text,
|
|
57
|
-
"article_id" integer,
|
|
58
|
-
"email" varchar(255),
|
|
59
|
-
"url" varchar(255),
|
|
60
|
-
"ip" varchar(40),
|
|
61
|
-
"blog_name" varchar(255),
|
|
62
|
-
"name" varchar(255),
|
|
43
|
+
"type" varchar(255) DEFAULT NULL,
|
|
44
|
+
"title" varchar(255) DEFAULT NULL,
|
|
45
|
+
"author" varchar(255) DEFAULT NULL,
|
|
46
|
+
"body" text DEFAULT NULL,
|
|
47
|
+
"extended" text DEFAULT NULL,
|
|
48
|
+
"excerpt" text DEFAULT NULL,
|
|
49
|
+
"keywords" varchar(255) DEFAULT NULL,
|
|
50
|
+
"created_at" datetime DEFAULT NULL,
|
|
51
|
+
"updated_at" datetime DEFAULT NULL,
|
|
52
|
+
"user_id" integer DEFAULT NULL,
|
|
53
|
+
"permalink" varchar(255) DEFAULT NULL,
|
|
54
|
+
"guid" varchar(255) DEFAULT NULL,
|
|
55
|
+
"text_filter_id" integer DEFAULT NULL,
|
|
56
|
+
"whiteboard" text DEFAULT NULL,
|
|
57
|
+
"name" varchar(255) DEFAULT NULL,
|
|
63
58
|
"published" boolean DEFAULT 'f',
|
|
64
|
-
"allow_pings" boolean,
|
|
65
|
-
"allow_comments" boolean,
|
|
59
|
+
"allow_pings" boolean DEFAULT NULL,
|
|
60
|
+
"allow_comments" boolean DEFAULT NULL,
|
|
66
61
|
"blog_id" integer NOT NULL,
|
|
67
|
-
"published_at" datetime,
|
|
68
|
-
"state" text
|
|
69
|
-
|
|
62
|
+
"published_at" datetime DEFAULT NULL,
|
|
63
|
+
"state" text DEFAULT NULL
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
CREATE TABLE feedback (
|
|
67
|
+
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
68
|
+
"type" varchar(255) DEFAULT NULL,
|
|
69
|
+
"title" varchar(255) DEFAULT NULL,
|
|
70
|
+
"author" varchar(255) DEFAULT NULL,
|
|
71
|
+
"body" text DEFAULT NULL,
|
|
72
|
+
"extended" text DEFAULT NULL,
|
|
73
|
+
"excerpt" text DEFAULT NULL,
|
|
74
|
+
"keywords" varchar(255) DEFAULT NULL,
|
|
75
|
+
"created_at" datetime DEFAULT NULL,
|
|
76
|
+
"updated_at" datetime DEFAULT NULL,
|
|
77
|
+
"user_id" integer DEFAULT NULL,
|
|
78
|
+
"permalink" varchar(255) DEFAULT NULL,
|
|
79
|
+
"guid" varchar(255) DEFAULT NULL,
|
|
80
|
+
"text_filter_id" integer DEFAULT NULL,
|
|
81
|
+
"whiteboard" text DEFAULT NULL,
|
|
82
|
+
"article_id" integer DEFAULT NULL,
|
|
83
|
+
"email" varchar(255) DEFAULT NULL,
|
|
84
|
+
"url" varchar(255) DEFAULT NULL,
|
|
85
|
+
"ip" varchar(40) DEFAULT NULL,
|
|
86
|
+
"blog_name" varchar(255) DEFAULT NULL,
|
|
87
|
+
"name" varchar(255) DEFAULT NULL,
|
|
88
|
+
"published" boolean DEFAULT 'f',
|
|
89
|
+
"allow_pings" boolean DEFAULT NULL,
|
|
90
|
+
"allow_comments" boolean DEFAULT NULL,
|
|
91
|
+
"blog_id" integer NOT NULL,
|
|
92
|
+
"published_at" datetime DEFAULT NULL,
|
|
93
|
+
"state" text DEFAULT NULL,
|
|
94
|
+
"status_confirmed" boolean DEFAULT NULL
|
|
70
95
|
);
|
|
71
96
|
|
|
72
97
|
CREATE TABLE notifications (
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
98
|
+
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
99
|
+
"content_id" integer DEFAULT NULL,
|
|
100
|
+
"user_id" integer DEFAULT NULL,
|
|
101
|
+
"created_at" datetime DEFAULT NULL,
|
|
102
|
+
"updated_at" datetime DEFAULT NULL
|
|
77
103
|
);
|
|
78
104
|
|
|
79
105
|
CREATE TABLE page_caches (
|
|
80
106
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
81
|
-
"name" varchar(255)
|
|
107
|
+
"name" varchar(255) DEFAULT NULL
|
|
82
108
|
);
|
|
83
109
|
|
|
84
110
|
CREATE TABLE pings (
|
|
85
111
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
86
|
-
"article_id" integer,
|
|
87
|
-
"url" varchar(255),
|
|
88
|
-
"created_at" datetime
|
|
112
|
+
"article_id" integer DEFAULT NULL,
|
|
113
|
+
"url" varchar(255) DEFAULT NULL,
|
|
114
|
+
"created_at" datetime DEFAULT NULL
|
|
89
115
|
);
|
|
90
116
|
|
|
91
117
|
CREATE TABLE redirects (
|
|
92
118
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
93
|
-
"from_path" varchar(255),
|
|
94
|
-
"to_path" varchar(255)
|
|
119
|
+
"from_path" varchar(255) DEFAULT NULL,
|
|
120
|
+
"to_path" varchar(255) DEFAULT NULL
|
|
95
121
|
);
|
|
96
122
|
|
|
97
123
|
CREATE TABLE resources (
|
|
98
124
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
99
|
-
"size" integer,
|
|
100
|
-
"filename" varchar(255),
|
|
101
|
-
"mime" varchar(255),
|
|
102
|
-
"created_at" datetime,
|
|
103
|
-
"updated_at" datetime,
|
|
104
|
-
"article_id" integer,
|
|
105
|
-
"itunes_metadata" boolean,
|
|
106
|
-
"itunes_author" varchar(255),
|
|
107
|
-
"itunes_subtitle" varchar(255),
|
|
108
|
-
"itunes_duration" integer,
|
|
109
|
-
"itunes_summary" text,
|
|
110
|
-
"itunes_keywords" varchar(255),
|
|
111
|
-
"itunes_category" varchar(255),
|
|
112
|
-
"itunes_explicit" boolean
|
|
125
|
+
"size" integer DEFAULT NULL,
|
|
126
|
+
"filename" varchar(255) DEFAULT NULL,
|
|
127
|
+
"mime" varchar(255) DEFAULT NULL,
|
|
128
|
+
"created_at" datetime DEFAULT NULL,
|
|
129
|
+
"updated_at" datetime DEFAULT NULL,
|
|
130
|
+
"article_id" integer DEFAULT NULL,
|
|
131
|
+
"itunes_metadata" boolean DEFAULT NULL,
|
|
132
|
+
"itunes_author" varchar(255) DEFAULT NULL,
|
|
133
|
+
"itunes_subtitle" varchar(255) DEFAULT NULL,
|
|
134
|
+
"itunes_duration" integer DEFAULT NULL,
|
|
135
|
+
"itunes_summary" text DEFAULT NULL,
|
|
136
|
+
"itunes_keywords" varchar(255) DEFAULT NULL,
|
|
137
|
+
"itunes_category" varchar(255) DEFAULT NULL,
|
|
138
|
+
"itunes_explicit" boolean DEFAULT NULL
|
|
113
139
|
);
|
|
114
140
|
|
|
115
141
|
CREATE TABLE sessions (
|
|
116
142
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
117
|
-
"sessid" varchar(255),
|
|
118
|
-
"data" text,
|
|
119
|
-
"created_at" datetime,
|
|
120
|
-
"updated_at" datetime
|
|
143
|
+
"sessid" varchar(255) DEFAULT NULL,
|
|
144
|
+
"data" text DEFAULT NULL,
|
|
145
|
+
"created_at" datetime DEFAULT NULL,
|
|
146
|
+
"updated_at" datetime DEFAULT NULL
|
|
121
147
|
);
|
|
122
148
|
|
|
123
149
|
CREATE TABLE sidebars (
|
|
124
150
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
151
|
+
"active_position" integer DEFAULT NULL,
|
|
152
|
+
"config" text DEFAULT NULL,
|
|
153
|
+
"staged_position" integer DEFAULT NULL,
|
|
154
|
+
"type" varchar(255) DEFAULT NULL,
|
|
155
|
+
"blog_id" integer DEFAULT NULL
|
|
129
156
|
);
|
|
130
157
|
|
|
131
158
|
CREATE TABLE tags (
|
|
132
159
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
133
|
-
"name" varchar(255),
|
|
134
|
-
"created_at" datetime,
|
|
135
|
-
"updated_at" datetime,
|
|
136
|
-
"display_name" varchar(255)
|
|
160
|
+
"name" varchar(255) DEFAULT NULL,
|
|
161
|
+
"created_at" datetime DEFAULT NULL,
|
|
162
|
+
"updated_at" datetime DEFAULT NULL,
|
|
163
|
+
"display_name" varchar(255) DEFAULT NULL
|
|
137
164
|
);
|
|
138
165
|
|
|
139
166
|
CREATE TABLE text_filters (
|
|
140
167
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
141
|
-
"name" varchar(255),
|
|
142
|
-
"description" varchar(255),
|
|
143
|
-
"markup" varchar(255),
|
|
144
|
-
"filters" text,
|
|
145
|
-
"params" text
|
|
168
|
+
"name" varchar(255) DEFAULT NULL,
|
|
169
|
+
"description" varchar(255) DEFAULT NULL,
|
|
170
|
+
"markup" varchar(255) DEFAULT NULL,
|
|
171
|
+
"filters" text DEFAULT NULL,
|
|
172
|
+
"params" text DEFAULT NULL
|
|
146
173
|
);
|
|
147
174
|
|
|
148
175
|
CREATE TABLE triggers (
|
|
149
176
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
150
|
-
"pending_item_id" integer,
|
|
151
|
-
"pending_item_type" varchar(255),
|
|
152
|
-
"due_at" datetime,
|
|
153
|
-
"trigger_method" varchar(255)
|
|
177
|
+
"pending_item_id" integer DEFAULT NULL,
|
|
178
|
+
"pending_item_type" varchar(255) DEFAULT NULL,
|
|
179
|
+
"due_at" datetime DEFAULT NULL,
|
|
180
|
+
"trigger_method" varchar(255) DEFAULT NULL
|
|
154
181
|
);
|
|
155
182
|
|
|
156
183
|
CREATE TABLE users (
|
|
157
184
|
"id" INTEGER PRIMARY KEY NOT NULL,
|
|
158
|
-
"login" varchar(255),
|
|
159
|
-
"password" varchar(255),
|
|
160
|
-
"email" text,
|
|
161
|
-
"name" text,
|
|
162
|
-
"notify_via_email" boolean,
|
|
163
|
-
"notify_on_new_articles" boolean,
|
|
164
|
-
"notify_on_comments" boolean,
|
|
165
|
-
"notify_watch_my_articles" boolean,
|
|
166
|
-
"notify_via_jabber" boolean,
|
|
167
|
-
"jabber" varchar(255)
|
|
185
|
+
"login" varchar(255) DEFAULT NULL,
|
|
186
|
+
"password" varchar(255) DEFAULT NULL,
|
|
187
|
+
"email" text DEFAULT NULL,
|
|
188
|
+
"name" text DEFAULT NULL,
|
|
189
|
+
"notify_via_email" boolean DEFAULT NULL,
|
|
190
|
+
"notify_on_new_articles" boolean DEFAULT NULL,
|
|
191
|
+
"notify_on_comments" boolean DEFAULT NULL,
|
|
192
|
+
"notify_watch_my_articles" boolean DEFAULT NULL,
|
|
193
|
+
"notify_via_jabber" boolean DEFAULT NULL,
|
|
194
|
+
"jabber" varchar(255) DEFAULT NULL
|
|
168
195
|
);
|
|
169
196
|
|
|
170
197
|
|
|
171
198
|
-- indexes
|
|
172
199
|
|
|
173
|
-
CREATE INDEX "
|
|
174
|
-
CREATE INDEX "
|
|
175
|
-
CREATE INDEX "
|
|
176
|
-
CREATE INDEX "
|
|
177
|
-
CREATE INDEX "
|
|
178
|
-
CREATE INDEX "
|
|
179
|
-
CREATE INDEX "
|
|
200
|
+
CREATE INDEX "index_blacklist_patterns_on_pattern" ON blacklist_patterns ("pattern");
|
|
201
|
+
CREATE INDEX "index_categories_on_permalink" ON categories ("permalink");
|
|
202
|
+
CREATE INDEX "index_contents_on_blog_id" ON contents ("blog_id");
|
|
203
|
+
CREATE INDEX "index_contents_on_text_filter_id" ON contents ("text_filter_id");
|
|
204
|
+
CREATE INDEX "index_contents_on_published" ON contents ("published");
|
|
205
|
+
CREATE INDEX "index_feedback_on_text_filter_id" ON feedback ("text_filter_id");
|
|
206
|
+
CREATE INDEX "index_feedback_on_article_id" ON feedback ("article_id");
|
|
207
|
+
CREATE INDEX "index_page_caches_on_name" ON page_caches ("name");
|
|
208
|
+
CREATE INDEX "index_pings_on_article_id" ON pings ("article_id");
|
|
209
|
+
CREATE INDEX "index_sessions_on_sessid" ON sessions ("sessid");
|
|
180
210
|
|
|
181
211
|
-- data
|
|
182
212
|
|
|
183
|
-
INSERT INTO sidebars ("config", "staged_position", "active_position", "controller") VALUES(NULL, NULL, 0, 'category');
|
|
184
|
-
INSERT INTO sidebars ("config", "staged_position", "active_position", "controller") VALUES(NULL, NULL, 1, 'static');
|
|
185
|
-
INSERT INTO sidebars ("config", "staged_position", "active_position", "controller") VALUES(NULL, NULL, 2, 'xml');
|
|
186
213
|
INSERT INTO text_filters ("name", "filters", "description", "params", "markup") VALUES('none', '--- []
|
|
187
214
|
|
|
188
215
|
', 'None', '--- {}
|
|
@@ -209,10 +236,15 @@ INSERT INTO text_filters ("name", "filters", "description", "params", "markup")
|
|
|
209
236
|
|
|
210
237
|
', 'textile');
|
|
211
238
|
|
|
239
|
+
INSERT INTO sidebars ("id", "active_position", "config", "staged_position", "type", "blog_id") VALUES (1, 0, '--- !map:HashWithIndifferentAccess \nempty: false\ncount: true\n', 0, 'CategorySidebar', 1);
|
|
240
|
+
INSERT INTO sidebars ("id", "active_position", "config", "staged_position", "type", "blog_id") VALUES (2, 2, '--- !map:HashWithIndifferentAccess \nformat: rss20\ntrackbacks: false\ncomments: true\narticles: true\n', 2, 'XmlSidebar', 1);
|
|
241
|
+
INSERT INTO sidebars ("id", "active_position", "config", "staged_position", "type", "blog_id") VALUES (3, 1, '--- !map:HashWithIndifferentAccess \nbody: "<ul>\\n <li><a href=\\"http://www.typosphere.org\\" title=\\"Typo\\">Typo</a></li>\\n <li><a href=\\"http://blog.leetsoft.com\\" title=\\"too-biased\\">too-biased</a></li>\\n <li><a href=\\"http://blog.remor.com/\\" title=\\"seth hall\\">Seth Hall</a></li>\\n <li><a href=\\"http://scottstuff.net\\" title=\\"Scottstuff\\">scottstuff.net</a></li>\\n <li><a href=\\"http://www.bofh.org.uk\\" title=\\"Just a Summary\\">Just A Summary</a></li>\\n <li><a href=\\"http://nubyonrails.com\\" title=\\"Topfunky\\">Topfunky</a></li>\\n <li><a href=\\"http://planettypo.com\\" title=\\"PlanetTypo\\">PlanetTypo</a></li>\\n <li><a href=\\"http://typoforums.org\\" title=\\"Typo Forums\\">Typo Forums</a></li>\\n <li><a href=\\"http://fredericdevillamil.com\\" title=\\"Fr\\xC3\\xA9d\\xC3\\xA9ric de Villamil\\">Fr\\xC3\\xA9d\\xC3\\xA9ric de Villamil</a></li>\\n\\\n </ul>\\n"\ntitle: Links\n', NULL, 'StaticSidebar', 1);
|
|
242
|
+
|
|
243
|
+
|
|
212
244
|
-- schema version meta-info
|
|
213
245
|
|
|
214
246
|
CREATE TABLE schema_info (
|
|
215
|
-
"version" integer
|
|
247
|
+
"version" integer DEFAULT NULL
|
|
216
248
|
);
|
|
217
249
|
|
|
218
|
-
insert into schema_info (version) values (
|
|
250
|
+
insert into schema_info (version) values (61);
|
data/db/schema.sqlserver.sql
CHANGED
|
@@ -7,196 +7,226 @@
|
|
|
7
7
|
|
|
8
8
|
-- tables
|
|
9
9
|
|
|
10
|
-
CREATE TABLE articles_categories (
|
|
11
|
-
[article_id] int,
|
|
12
|
-
[category_id] int,
|
|
13
|
-
[is_primary] int
|
|
14
|
-
);
|
|
15
|
-
|
|
16
10
|
CREATE TABLE articles_tags (
|
|
17
|
-
[article_id]
|
|
18
|
-
[tag_id]
|
|
11
|
+
[article_id] integer DEFAULT NULL,
|
|
12
|
+
[tag_id] integer DEFAULT NULL
|
|
19
13
|
);
|
|
20
14
|
|
|
21
15
|
CREATE TABLE blacklist_patterns (
|
|
22
16
|
[id] int NOT NULL IDENTITY(1,
|
|
23
17
|
1) PRIMARY KEY,
|
|
24
|
-
[type] varchar(255),
|
|
25
|
-
[pattern] varchar(255)
|
|
18
|
+
[type] varchar(255) DEFAULT NULL,
|
|
19
|
+
[pattern] varchar(255) DEFAULT NULL
|
|
26
20
|
);
|
|
27
21
|
|
|
28
22
|
CREATE TABLE blogs (
|
|
29
23
|
[id] int NOT NULL IDENTITY(1,
|
|
30
24
|
1) PRIMARY KEY,
|
|
31
|
-
[settings] text
|
|
25
|
+
[settings] text DEFAULT NULL,
|
|
26
|
+
[base_url] varchar(255) DEFAULT NULL
|
|
32
27
|
);
|
|
33
28
|
|
|
34
29
|
CREATE TABLE categories (
|
|
35
30
|
[id] int NOT NULL IDENTITY(1,
|
|
36
31
|
1) PRIMARY KEY,
|
|
37
|
-
[name] varchar(255),
|
|
38
|
-
[position]
|
|
39
|
-
[permalink] varchar(255)
|
|
32
|
+
[name] varchar(255) DEFAULT NULL,
|
|
33
|
+
[position] integer DEFAULT NULL,
|
|
34
|
+
[permalink] varchar(255) DEFAULT NULL
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
CREATE TABLE categorizations (
|
|
38
|
+
[id] int NOT NULL IDENTITY(1,
|
|
39
|
+
1) PRIMARY KEY,
|
|
40
|
+
[article_id] integer DEFAULT NULL,
|
|
41
|
+
[category_id] integer DEFAULT NULL,
|
|
42
|
+
[is_primary] bit DEFAULT NULL
|
|
40
43
|
);
|
|
41
44
|
|
|
42
45
|
CREATE TABLE contents (
|
|
43
46
|
[id] int NOT NULL IDENTITY(1,
|
|
44
47
|
1) PRIMARY KEY,
|
|
45
|
-
[type] varchar(255),
|
|
46
|
-
[title] varchar(255),
|
|
47
|
-
[author] varchar(255),
|
|
48
|
-
[body] text,
|
|
49
|
-
[
|
|
50
|
-
[
|
|
51
|
-
[
|
|
52
|
-
[
|
|
53
|
-
[
|
|
54
|
-
[
|
|
55
|
-
[
|
|
56
|
-
[
|
|
57
|
-
[
|
|
58
|
-
[
|
|
59
|
-
[
|
|
60
|
-
[whiteboard] text,
|
|
61
|
-
[article_id] int,
|
|
62
|
-
[email] varchar(255),
|
|
63
|
-
[url] varchar(255),
|
|
64
|
-
[ip] varchar(40),
|
|
65
|
-
[blog_name] varchar(255),
|
|
66
|
-
[name] varchar(255),
|
|
48
|
+
[type] varchar(255) DEFAULT NULL,
|
|
49
|
+
[title] varchar(255) DEFAULT NULL,
|
|
50
|
+
[author] varchar(255) DEFAULT NULL,
|
|
51
|
+
[body] text DEFAULT NULL,
|
|
52
|
+
[extended] text DEFAULT NULL,
|
|
53
|
+
[excerpt] text DEFAULT NULL,
|
|
54
|
+
[keywords] varchar(255) DEFAULT NULL,
|
|
55
|
+
[created_at] datetime DEFAULT NULL,
|
|
56
|
+
[updated_at] datetime DEFAULT NULL,
|
|
57
|
+
[user_id] integer DEFAULT NULL,
|
|
58
|
+
[permalink] varchar(255) DEFAULT NULL,
|
|
59
|
+
[guid] varchar(255) DEFAULT NULL,
|
|
60
|
+
[text_filter_id] integer DEFAULT NULL,
|
|
61
|
+
[whiteboard] text DEFAULT NULL,
|
|
62
|
+
[name] varchar(255) DEFAULT NULL,
|
|
67
63
|
[published] bit DEFAULT 0,
|
|
68
|
-
[allow_pings] bit,
|
|
69
|
-
[allow_comments] bit,
|
|
70
|
-
[blog_id]
|
|
71
|
-
[published_at] datetime,
|
|
72
|
-
[state] text
|
|
73
|
-
|
|
64
|
+
[allow_pings] bit DEFAULT NULL,
|
|
65
|
+
[allow_comments] bit DEFAULT NULL,
|
|
66
|
+
[blog_id] integer NOT NULL,
|
|
67
|
+
[published_at] datetime DEFAULT NULL,
|
|
68
|
+
[state] text DEFAULT NULL
|
|
69
|
+
);
|
|
70
|
+
|
|
71
|
+
CREATE TABLE feedback (
|
|
72
|
+
[id] int NOT NULL IDENTITY(1,
|
|
73
|
+
1) PRIMARY KEY,
|
|
74
|
+
[type] varchar(255) DEFAULT NULL,
|
|
75
|
+
[title] varchar(255) DEFAULT NULL,
|
|
76
|
+
[author] varchar(255) DEFAULT NULL,
|
|
77
|
+
[body] text DEFAULT NULL,
|
|
78
|
+
[extended] text DEFAULT NULL,
|
|
79
|
+
[excerpt] text DEFAULT NULL,
|
|
80
|
+
[keywords] varchar(255) DEFAULT NULL,
|
|
81
|
+
[created_at] datetime DEFAULT NULL,
|
|
82
|
+
[updated_at] datetime DEFAULT NULL,
|
|
83
|
+
[user_id] integer DEFAULT NULL,
|
|
84
|
+
[permalink] varchar(255) DEFAULT NULL,
|
|
85
|
+
[guid] varchar(255) DEFAULT NULL,
|
|
86
|
+
[text_filter_id] integer DEFAULT NULL,
|
|
87
|
+
[whiteboard] text DEFAULT NULL,
|
|
88
|
+
[article_id] integer DEFAULT NULL,
|
|
89
|
+
[email] varchar(255) DEFAULT NULL,
|
|
90
|
+
[url] varchar(255) DEFAULT NULL,
|
|
91
|
+
[ip] varchar(40) DEFAULT NULL,
|
|
92
|
+
[blog_name] varchar(255) DEFAULT NULL,
|
|
93
|
+
[name] varchar(255) DEFAULT NULL,
|
|
94
|
+
[published] bit DEFAULT 0,
|
|
95
|
+
[allow_pings] bit DEFAULT NULL,
|
|
96
|
+
[allow_comments] bit DEFAULT NULL,
|
|
97
|
+
[blog_id] integer NOT NULL,
|
|
98
|
+
[published_at] datetime DEFAULT NULL,
|
|
99
|
+
[state] text DEFAULT NULL,
|
|
100
|
+
[status_confirmed] bit DEFAULT NULL
|
|
74
101
|
);
|
|
75
102
|
|
|
76
103
|
CREATE TABLE notifications (
|
|
77
|
-
[
|
|
78
|
-
|
|
79
|
-
[
|
|
80
|
-
[
|
|
104
|
+
[id] int NOT NULL IDENTITY(1,
|
|
105
|
+
1) PRIMARY KEY,
|
|
106
|
+
[content_id] integer DEFAULT NULL,
|
|
107
|
+
[user_id] integer DEFAULT NULL,
|
|
108
|
+
[created_at] datetime DEFAULT NULL,
|
|
109
|
+
[updated_at] datetime DEFAULT NULL
|
|
81
110
|
);
|
|
82
111
|
|
|
83
112
|
CREATE TABLE page_caches (
|
|
84
113
|
[id] int NOT NULL IDENTITY(1,
|
|
85
114
|
1) PRIMARY KEY,
|
|
86
|
-
[name] varchar(255)
|
|
115
|
+
[name] varchar(255) DEFAULT NULL
|
|
87
116
|
);
|
|
88
117
|
|
|
89
118
|
CREATE TABLE pings (
|
|
90
119
|
[id] int NOT NULL IDENTITY(1,
|
|
91
120
|
1) PRIMARY KEY,
|
|
92
|
-
[article_id]
|
|
93
|
-
[url] varchar(255),
|
|
94
|
-
[created_at] datetime
|
|
121
|
+
[article_id] integer DEFAULT NULL,
|
|
122
|
+
[url] varchar(255) DEFAULT NULL,
|
|
123
|
+
[created_at] datetime DEFAULT NULL
|
|
95
124
|
);
|
|
96
125
|
|
|
97
126
|
CREATE TABLE redirects (
|
|
98
127
|
[id] int NOT NULL IDENTITY(1,
|
|
99
128
|
1) PRIMARY KEY,
|
|
100
|
-
[from_path] varchar(255),
|
|
101
|
-
[to_path] varchar(255)
|
|
129
|
+
[from_path] varchar(255) DEFAULT NULL,
|
|
130
|
+
[to_path] varchar(255) DEFAULT NULL
|
|
102
131
|
);
|
|
103
132
|
|
|
104
133
|
CREATE TABLE resources (
|
|
105
134
|
[id] int NOT NULL IDENTITY(1,
|
|
106
135
|
1) PRIMARY KEY,
|
|
107
|
-
[size]
|
|
108
|
-
[filename] varchar(255),
|
|
109
|
-
[mime] varchar(255),
|
|
110
|
-
[created_at] datetime,
|
|
111
|
-
[updated_at] datetime,
|
|
112
|
-
[article_id]
|
|
113
|
-
[itunes_metadata] bit,
|
|
114
|
-
[itunes_author] varchar(255),
|
|
115
|
-
[itunes_subtitle] varchar(255),
|
|
116
|
-
[itunes_duration]
|
|
117
|
-
[itunes_summary] text,
|
|
118
|
-
[itunes_keywords] varchar(255),
|
|
119
|
-
[itunes_category] varchar(255),
|
|
120
|
-
[itunes_explicit] bit
|
|
136
|
+
[size] integer DEFAULT NULL,
|
|
137
|
+
[filename] varchar(255) DEFAULT NULL,
|
|
138
|
+
[mime] varchar(255) DEFAULT NULL,
|
|
139
|
+
[created_at] datetime DEFAULT NULL,
|
|
140
|
+
[updated_at] datetime DEFAULT NULL,
|
|
141
|
+
[article_id] integer DEFAULT NULL,
|
|
142
|
+
[itunes_metadata] bit DEFAULT NULL,
|
|
143
|
+
[itunes_author] varchar(255) DEFAULT NULL,
|
|
144
|
+
[itunes_subtitle] varchar(255) DEFAULT NULL,
|
|
145
|
+
[itunes_duration] integer DEFAULT NULL,
|
|
146
|
+
[itunes_summary] text DEFAULT NULL,
|
|
147
|
+
[itunes_keywords] varchar(255) DEFAULT NULL,
|
|
148
|
+
[itunes_category] varchar(255) DEFAULT NULL,
|
|
149
|
+
[itunes_explicit] bit DEFAULT NULL
|
|
121
150
|
);
|
|
122
151
|
|
|
123
152
|
CREATE TABLE sessions (
|
|
124
153
|
[id] int NOT NULL IDENTITY(1,
|
|
125
154
|
1) PRIMARY KEY,
|
|
126
|
-
[sessid] varchar(255),
|
|
127
|
-
[data] text,
|
|
128
|
-
[created_at] datetime,
|
|
129
|
-
[updated_at] datetime
|
|
155
|
+
[sessid] varchar(255) DEFAULT NULL,
|
|
156
|
+
[data] text DEFAULT NULL,
|
|
157
|
+
[created_at] datetime DEFAULT NULL,
|
|
158
|
+
[updated_at] datetime DEFAULT NULL
|
|
130
159
|
);
|
|
131
160
|
|
|
132
161
|
CREATE TABLE sidebars (
|
|
133
162
|
[id] int NOT NULL IDENTITY(1,
|
|
134
163
|
1) PRIMARY KEY,
|
|
135
|
-
[
|
|
136
|
-
[
|
|
137
|
-
[
|
|
138
|
-
[
|
|
164
|
+
[active_position] integer DEFAULT NULL,
|
|
165
|
+
[config] text DEFAULT NULL,
|
|
166
|
+
[staged_position] integer DEFAULT NULL,
|
|
167
|
+
[type] varchar(255) DEFAULT NULL,
|
|
168
|
+
[blog_id] integer DEFAULT NULL
|
|
139
169
|
);
|
|
140
170
|
|
|
141
171
|
CREATE TABLE tags (
|
|
142
172
|
[id] int NOT NULL IDENTITY(1,
|
|
143
173
|
1) PRIMARY KEY,
|
|
144
|
-
[name] varchar(255),
|
|
145
|
-
[created_at] datetime,
|
|
146
|
-
[updated_at] datetime,
|
|
147
|
-
[display_name] varchar(255)
|
|
174
|
+
[name] varchar(255) DEFAULT NULL,
|
|
175
|
+
[created_at] datetime DEFAULT NULL,
|
|
176
|
+
[updated_at] datetime DEFAULT NULL,
|
|
177
|
+
[display_name] varchar(255) DEFAULT NULL
|
|
148
178
|
);
|
|
149
179
|
|
|
150
180
|
CREATE TABLE text_filters (
|
|
151
181
|
[id] int NOT NULL IDENTITY(1,
|
|
152
182
|
1) PRIMARY KEY,
|
|
153
|
-
[name] varchar(255),
|
|
154
|
-
[description] varchar(255),
|
|
155
|
-
[markup] varchar(255),
|
|
156
|
-
[filters] text,
|
|
157
|
-
[params] text
|
|
183
|
+
[name] varchar(255) DEFAULT NULL,
|
|
184
|
+
[description] varchar(255) DEFAULT NULL,
|
|
185
|
+
[markup] varchar(255) DEFAULT NULL,
|
|
186
|
+
[filters] text DEFAULT NULL,
|
|
187
|
+
[params] text DEFAULT NULL
|
|
158
188
|
);
|
|
159
189
|
|
|
160
190
|
CREATE TABLE triggers (
|
|
161
191
|
[id] int NOT NULL IDENTITY(1,
|
|
162
192
|
1) PRIMARY KEY,
|
|
163
|
-
[pending_item_id]
|
|
164
|
-
[pending_item_type] varchar(255),
|
|
165
|
-
[due_at] datetime,
|
|
166
|
-
[trigger_method] varchar(255)
|
|
193
|
+
[pending_item_id] integer DEFAULT NULL,
|
|
194
|
+
[pending_item_type] varchar(255) DEFAULT NULL,
|
|
195
|
+
[due_at] datetime DEFAULT NULL,
|
|
196
|
+
[trigger_method] varchar(255) DEFAULT NULL
|
|
167
197
|
);
|
|
168
198
|
|
|
169
199
|
CREATE TABLE users (
|
|
170
200
|
[id] int NOT NULL IDENTITY(1,
|
|
171
201
|
1) PRIMARY KEY,
|
|
172
|
-
[login] varchar(255),
|
|
173
|
-
[password] varchar(255),
|
|
174
|
-
[email] text,
|
|
175
|
-
[name] text,
|
|
176
|
-
[notify_via_email] bit,
|
|
177
|
-
[notify_on_new_articles] bit,
|
|
178
|
-
[notify_on_comments] bit,
|
|
179
|
-
[notify_watch_my_articles] bit,
|
|
180
|
-
[notify_via_jabber] bit,
|
|
181
|
-
[jabber] varchar(255)
|
|
202
|
+
[login] varchar(255) DEFAULT NULL,
|
|
203
|
+
[password] varchar(255) DEFAULT NULL,
|
|
204
|
+
[email] text DEFAULT NULL,
|
|
205
|
+
[name] text DEFAULT NULL,
|
|
206
|
+
[notify_via_email] bit DEFAULT NULL,
|
|
207
|
+
[notify_on_new_articles] bit DEFAULT NULL,
|
|
208
|
+
[notify_on_comments] bit DEFAULT NULL,
|
|
209
|
+
[notify_watch_my_articles] bit DEFAULT NULL,
|
|
210
|
+
[notify_via_jabber] bit DEFAULT NULL,
|
|
211
|
+
[jabber] varchar(255) DEFAULT NULL
|
|
182
212
|
);
|
|
183
213
|
|
|
184
214
|
|
|
185
215
|
-- indexes
|
|
186
216
|
|
|
187
|
-
CREATE INDEX [
|
|
188
|
-
CREATE INDEX [
|
|
189
|
-
CREATE INDEX [
|
|
190
|
-
CREATE INDEX [
|
|
191
|
-
CREATE INDEX [
|
|
192
|
-
CREATE INDEX [
|
|
193
|
-
CREATE INDEX [
|
|
217
|
+
CREATE INDEX [index_blacklist_patterns_on_pattern] ON blacklist_patterns ([pattern]);
|
|
218
|
+
CREATE INDEX [index_categories_on_permalink] ON categories ([permalink]);
|
|
219
|
+
CREATE INDEX [index_contents_on_blog_id] ON contents ([blog_id]);
|
|
220
|
+
CREATE INDEX [index_contents_on_text_filter_id] ON contents ([text_filter_id]);
|
|
221
|
+
CREATE INDEX [index_contents_on_published] ON contents ([published]);
|
|
222
|
+
CREATE INDEX [index_feedback_on_text_filter_id] ON feedback ([text_filter_id]);
|
|
223
|
+
CREATE INDEX [index_feedback_on_article_id] ON feedback ([article_id]);
|
|
224
|
+
CREATE INDEX [index_page_caches_on_name] ON page_caches ([name]);
|
|
225
|
+
CREATE INDEX [index_pings_on_article_id] ON pings ([article_id]);
|
|
226
|
+
CREATE INDEX [index_sessions_on_sessid] ON sessions ([sessid]);
|
|
194
227
|
|
|
195
228
|
-- data
|
|
196
229
|
|
|
197
|
-
INSERT INTO sidebars ([config], [staged_position], [active_position], [controller]) VALUES(NULL, NULL, 0, 'category');
|
|
198
|
-
INSERT INTO sidebars ([config], [staged_position], [active_position], [controller]) VALUES(NULL, NULL, 1, 'static');
|
|
199
|
-
INSERT INTO sidebars ([config], [staged_position], [active_position], [controller]) VALUES(NULL, NULL, 2, 'xml');
|
|
200
230
|
INSERT INTO text_filters ([name], [filters], [description], [params], [markup]) VALUES('none', '--- []
|
|
201
231
|
|
|
202
232
|
', 'None', '--- {}
|
|
@@ -223,10 +253,15 @@ INSERT INTO text_filters ([name], [filters], [description], [params], [markup])
|
|
|
223
253
|
|
|
224
254
|
', 'textile');
|
|
225
255
|
|
|
256
|
+
INSERT INTO sidebars ([id], [active_position], [config], [staged_position], [type], [blog_id]) VALUES (1, 0, '--- !map:HashWithIndifferentAccess \nempty: false\ncount: true\n', 0, 'CategorySidebar', 1);
|
|
257
|
+
INSERT INTO sidebars ([id], [active_position], [config], [staged_position], [type], [blog_id]) VALUES (2, 2, '--- !map:HashWithIndifferentAccess \nformat: rss20\ntrackbacks: false\ncomments: true\narticles: true\n', 2, 'XmlSidebar', 1);
|
|
258
|
+
INSERT INTO sidebars ([id], [active_position], [config], [staged_position], [type], [blog_id]) VALUES (3, 1, '--- !map:HashWithIndifferentAccess \nbody: "<ul>\\n <li><a href=\\"http://www.typosphere.org\\" title=\\"Typo\\">Typo</a></li>\\n <li><a href=\\"http://blog.leetsoft.com\\" title=\\"too-biased\\">too-biased</a></li>\\n <li><a href=\\"http://blog.remor.com/\\" title=\\"seth hall\\">Seth Hall</a></li>\\n <li><a href=\\"http://scottstuff.net\\" title=\\"Scottstuff\\">scottstuff.net</a></li>\\n <li><a href=\\"http://www.bofh.org.uk\\" title=\\"Just a Summary\\">Just A Summary</a></li>\\n <li><a href=\\"http://nubyonrails.com\\" title=\\"Topfunky\\">Topfunky</a></li>\\n <li><a href=\\"http://planettypo.com\\" title=\\"PlanetTypo\\">PlanetTypo</a></li>\\n <li><a href=\\"http://typoforums.org\\" title=\\"Typo Forums\\">Typo Forums</a></li>\\n <li><a href=\\"http://fredericdevillamil.com\\" title=\\"Fr\\xC3\\xA9d\\xC3\\xA9ric de Villamil\\">Fr\\xC3\\xA9d\\xC3\\xA9ric de Villamil</a></li>\\n\\\n </ul>\\n"\ntitle: Links\n', NULL, 'StaticSidebar', 1);
|
|
259
|
+
|
|
260
|
+
|
|
226
261
|
-- schema version meta-info
|
|
227
262
|
|
|
228
263
|
CREATE TABLE schema_info (
|
|
229
|
-
[version]
|
|
264
|
+
[version] integer DEFAULT NULL
|
|
230
265
|
);
|
|
231
266
|
|
|
232
|
-
insert into schema_info (version) values (
|
|
267
|
+
insert into schema_info (version) values (61);
|