typo 4.0.3 → 4.1
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
|
5
|
+
desc 'Default: run unit tests.'
|
6
|
+
task :default => :test
|
7
|
+
|
8
|
+
desc 'Test the typo_textfilter_textile_and_markdown plugin.'
|
9
|
+
Rake::TestTask.new(:test) do |t|
|
10
|
+
t.libs << 'lib'
|
11
|
+
t.pattern = 'test/**/*_test.rb'
|
12
|
+
t.verbose = true
|
13
|
+
end
|
14
|
+
|
15
|
+
desc 'Generate documentation for the typo_textfilter_textile_and_markdown plugin.'
|
16
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
17
|
+
rdoc.rdoc_dir = 'rdoc'
|
18
|
+
rdoc.title = 'Typo-textfilter-textileAndMarkdown'
|
19
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
20
|
+
rdoc.rdoc_files.include('README')
|
21
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
22
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
# Install hook code here
|
data/vendor/plugins/typo_textfilter_textile_and_markdown/lib/typo_textfilter_textile_and_markdown.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
class Typo
|
2
|
+
class Textfilter
|
3
|
+
class TextileAndMarkdown < TextFilterPlugin::Markup
|
4
|
+
plugin_display_name "Textile with Markdown"
|
5
|
+
plugin_description 'Textile and Markdown markup languages'
|
6
|
+
|
7
|
+
def self.filtertext(blog,content,text,params)
|
8
|
+
RedCloth.new(text).to_html
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
|
5
|
+
desc 'Default: run unit tests.'
|
6
|
+
task :default => :test
|
7
|
+
|
8
|
+
desc 'Test the typo_textfilter_tmcode plugin.'
|
9
|
+
Rake::TestTask.new(:test) do |t|
|
10
|
+
t.libs << 'lib'
|
11
|
+
t.pattern = 'test/**/*_test.rb'
|
12
|
+
t.verbose = true
|
13
|
+
end
|
14
|
+
|
15
|
+
desc 'Generate documentation for the typo_textfilter_tmcode plugin.'
|
16
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
17
|
+
rdoc.rdoc_dir = 'rdoc'
|
18
|
+
rdoc.title = 'Typo-textfilter-tmcode'
|
19
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
20
|
+
rdoc.rdoc_files.include('README')
|
21
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
22
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
# Install hook code here
|
@@ -0,0 +1,86 @@
|
|
1
|
+
class Typo
|
2
|
+
class Textfilter
|
3
|
+
class TMCode < TextFilterPlugin::MacroPre
|
4
|
+
plugin_display_name "TMCode"
|
5
|
+
plugin_description "Ensures the CSS files for TextMate syntax highlighting are included."
|
6
|
+
|
7
|
+
def self.help_text
|
8
|
+
%{
|
9
|
+
You can use `<typo:tmcode>` to include blocks of HTML code output by TextMate.
|
10
|
+
Optionally you can default the block to hidden, to be expanded with a `<typo:tmcoderef>` reference.
|
11
|
+
|
12
|
+
<typo:tmcode>
|
13
|
+
<!-- TextMate-generated HTML code here -->
|
14
|
+
</typo:tmcode>
|
15
|
+
|
16
|
+
Expand or collapse my <typo:tmcoderef id="foo">code</typo:tmcoderef>.
|
17
|
+
<typo:tmcode hidden="true" id="foo">
|
18
|
+
<!-- TextMate-generated HTML code here -->
|
19
|
+
</typo:tmcode>
|
20
|
+
|
21
|
+
You can also provide the optional attribute `theme` which specifies which theme to use for colorizing.
|
22
|
+
The list of available themes can be seen in the config screen, where you can also pick a theme to use
|
23
|
+
if the `theme` attribute isn't specified.
|
24
|
+
|
25
|
+
The HTML code that you enclose with this macro can be generated by selecting a block of text in TextMate
|
26
|
+
and selecting the TextMate->Create HTML From Document command.
|
27
|
+
}
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.macrofilter(blog,content,attrib,params,text="")
|
31
|
+
isHidden = attrib['hidden'] || 'false'
|
32
|
+
blockID = attrib['id']
|
33
|
+
theme = (attrib['theme'] || config_value(params, 'default-theme')).downcase.gsub(' ', '_')
|
34
|
+
|
35
|
+
isHidden = ["yes", "true", "1", "hidden"].include?(isHidden.downcase)
|
36
|
+
|
37
|
+
set_whiteboard blog, content, isHidden, theme unless content.nil?
|
38
|
+
|
39
|
+
%{<notextile><div class="textmate-source #{theme}#{isHidden ? ' tmcode-collapsed' : ''}"#{blockID ? %{ id="tmcode_#{blockID}"} : ''}>\n#{text}\n</div></notextile>}
|
40
|
+
end
|
41
|
+
|
42
|
+
def self.default_config
|
43
|
+
{"default-theme" => {:default => "twilight",
|
44
|
+
:description => "Default theme for tmcode snippets",
|
45
|
+
:options => ["Twilight", "iPlastic", "Dawn", 'Space Cadet']}}
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.set_whiteboard(blog, content, isHidden, theme)
|
49
|
+
content.whiteboard['page_header_tmcode'] = <<-HTML
|
50
|
+
<link href="#{blog.base_url}/stylesheets/textmate/textmate.css" media="all" rel="Stylesheet" type="text/css" />
|
51
|
+
HTML
|
52
|
+
content.whiteboard["page_header_tmcode_#{theme}"] = <<-HTML unless theme.blank?
|
53
|
+
<link href="#{blog.base_url}/stylesheets/textmate/#{theme}.css" media="screen" rel="Stylesheet" type="text/css" />
|
54
|
+
HTML
|
55
|
+
TMCodeRef.set_whiteboard blog, content if isHidden
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
class TMCodeRef < TextFilterPlugin::MacroPost
|
60
|
+
plugin_display_name "TMCodeRef"
|
61
|
+
plugin_description "Adds expand/collapse links for TMCode sections."
|
62
|
+
|
63
|
+
def self.help_text
|
64
|
+
%{
|
65
|
+
Use `<typo:tmcoderef id="ref">text</typo:tmcoderef>` to cause `text` to be a hyperlink which toggles
|
66
|
+
the collapsed state of the `<typo:tmcode>` block referenced by the `id`.
|
67
|
+
}
|
68
|
+
end
|
69
|
+
|
70
|
+
def self.macrofilter(blog,content,attrib,params,text="")
|
71
|
+
blockID = attrib['id']
|
72
|
+
|
73
|
+
set_whiteboard blog, content
|
74
|
+
|
75
|
+
%{<a href="#" onclick="toggleCodeCollapse('tmcode_#{blockID.gsub("('|\\)", "\\\\\\1")}');return false;">#{text}</a>}
|
76
|
+
end
|
77
|
+
|
78
|
+
def self.set_whiteboard(blog, content)
|
79
|
+
content.whiteboard['page_header_codecollapse'] = <<-HTML
|
80
|
+
<link href="#{blog.base_url}/stylesheets/codecollapse.css" media="screen" rel="Stylesheet" type="text/css" />
|
81
|
+
<script src="#{blog.base_url}/javascripts/codecollapse.js" type="text/javascript" defer="defer"></script>
|
82
|
+
HTML
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
|
5
|
+
desc 'Default: run unit tests.'
|
6
|
+
task :default => :test
|
7
|
+
|
8
|
+
desc 'Test the upcoming_sidebar plugin.'
|
9
|
+
Rake::TestTask.new(:test) do |t|
|
10
|
+
t.libs << 'lib'
|
11
|
+
t.pattern = 'test/**/*_test.rb'
|
12
|
+
t.verbose = true
|
13
|
+
end
|
14
|
+
|
15
|
+
desc 'Generate documentation for the upcoming_sidebar plugin.'
|
16
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
17
|
+
rdoc.rdoc_dir = 'rdoc'
|
18
|
+
rdoc.title = 'UpcomingSidebar'
|
19
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
20
|
+
rdoc.rdoc_files.include('README')
|
21
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
22
|
+
end
|
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class UpcomingSidebar < Sidebar
|
2
|
+
description 'Events from <a href="http://www.upcoming.org">upcoming.org</a>'
|
3
|
+
|
4
|
+
setting :feed, '', :label => 'Feed URL'
|
5
|
+
setting :count, 4, :label => 'Items Limit'
|
6
|
+
|
7
|
+
lifetime 6.hours
|
8
|
+
|
9
|
+
def upcoming
|
10
|
+
@upcoming ||= Upcoming.new(feed)
|
11
|
+
rescue Exception => e
|
12
|
+
logger.info e
|
13
|
+
nil
|
14
|
+
end
|
15
|
+
end
|
data/{components/plugins/sidebars/upcoming → vendor/plugins/upcoming_sidebar/views}/content.rhtml
RENAMED
@@ -1,8 +1,8 @@
|
|
1
|
-
<% if
|
1
|
+
<% if sidebar.upcoming -%>
|
2
2
|
<h3>Upcoming Events</h3>
|
3
3
|
<ul id="upcoming">
|
4
|
-
<% for event in
|
4
|
+
<% for event in sidebar.upcoming.choose(count.to_i) -%>
|
5
5
|
<li><%= link_to event.title, event.link, {:title => event.description } %> - <%= event.timespan %></li>
|
6
6
|
<% end -%>
|
7
7
|
</ul>
|
8
|
-
<% end -%>
|
8
|
+
<% end -%>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
|
5
|
+
desc 'Default: run unit tests.'
|
6
|
+
task :default => :test
|
7
|
+
|
8
|
+
desc 'Test the xbox_sidebar plugin.'
|
9
|
+
Rake::TestTask.new(:test) do |t|
|
10
|
+
t.libs << 'lib'
|
11
|
+
t.pattern = 'test/**/*_test.rb'
|
12
|
+
t.verbose = true
|
13
|
+
end
|
14
|
+
|
15
|
+
desc 'Generate documentation for the xbox_sidebar plugin.'
|
16
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
17
|
+
rdoc.rdoc_dir = 'rdoc'
|
18
|
+
rdoc.title = 'XboxSidebar'
|
19
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
20
|
+
rdoc.rdoc_files.include('README')
|
21
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
22
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
|
5
|
+
desc 'Default: run unit tests.'
|
6
|
+
task :default => :test
|
7
|
+
|
8
|
+
desc 'Test the xml_sidebar plugin.'
|
9
|
+
Rake::TestTask.new(:test) do |t|
|
10
|
+
t.libs << 'lib'
|
11
|
+
t.pattern = 'test/**/*_test.rb'
|
12
|
+
t.verbose = true
|
13
|
+
end
|
14
|
+
|
15
|
+
desc 'Generate documentation for the xml_sidebar plugin.'
|
16
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
17
|
+
rdoc.rdoc_dir = 'rdoc'
|
18
|
+
rdoc.title = 'XmlSidebar'
|
19
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
20
|
+
rdoc.rdoc_files.include('README')
|
21
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
22
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<h3>Syndicate</h3>
|
2
|
+
<ul>
|
3
|
+
<% if articles -%>
|
4
|
+
<li><a href="<%= url_for :controller=>'xml', :action=>'feed', :format => format, :type => 'feed' %>" title="Articles feed">Articles</a></li>
|
5
|
+
<% end %>
|
6
|
+
<% if comments -%>
|
7
|
+
<li><a href="<%= url_for :controller=>'xml', :action=>'feed', :format => format, :type => 'comments' %>" title="Comments feed">Comments</a></li>
|
8
|
+
<% end %>
|
9
|
+
<% if trackbacks -%>
|
10
|
+
<li><a href="<%= url_for :controller=>'xml', :action=>'feed', :format => format, :type => 'trackbacks' %>" title="Trackbacks feed">Trackbacks</a></li>
|
11
|
+
<% end %>
|
12
|
+
</ul>
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: typo
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 4.
|
7
|
-
date:
|
6
|
+
version: "4.1"
|
7
|
+
date: 2007-03-11 00:00:00 +01:00
|
8
8
|
summary: Modern weblog engine.
|
9
9
|
require_paths:
|
10
10
|
- .
|
@@ -31,11 +31,13 @@ authors:
|
|
31
31
|
files:
|
32
32
|
- app
|
33
33
|
- bin
|
34
|
+
- CHANGES-4.1
|
34
35
|
- components
|
35
36
|
- config
|
36
37
|
- db
|
37
38
|
- doc
|
38
39
|
- installer
|
40
|
+
- lang
|
39
41
|
- lib
|
40
42
|
- log
|
41
43
|
- MAINTAINERS
|
@@ -43,10 +45,13 @@ files:
|
|
43
45
|
- public
|
44
46
|
- Rakefile
|
45
47
|
- README
|
48
|
+
- README.SIDEBARS
|
46
49
|
- script
|
50
|
+
- spec
|
47
51
|
- test
|
48
52
|
- themes
|
49
53
|
- tmp
|
54
|
+
- TODO-4.1
|
50
55
|
- vendor
|
51
56
|
- app/apis
|
52
57
|
- app/controllers
|
@@ -65,7 +70,6 @@ files:
|
|
65
70
|
- app/controllers/content_controller.rb
|
66
71
|
- app/controllers/live_controller.rb
|
67
72
|
- app/controllers/redirect_controller.rb
|
68
|
-
- app/controllers/sidebar_controller.rb
|
69
73
|
- app/controllers/textfilter_controller.rb
|
70
74
|
- app/controllers/theme_controller.rb
|
71
75
|
- app/controllers/xml_controller.rb
|
@@ -113,19 +117,19 @@ files:
|
|
113
117
|
- app/helpers/admin/trackbacks_helper.rb
|
114
118
|
- app/helpers/admin/users_helper.rb
|
115
119
|
- app/helpers/sidebars/plugin_helper.rb
|
116
|
-
- app/models/aggregations
|
117
120
|
- app/models/article.rb
|
118
121
|
- app/models/blacklist_pattern.rb
|
119
122
|
- app/models/blog.rb
|
120
123
|
- app/models/blog_sweeper.rb
|
124
|
+
- app/models/categorization.rb
|
121
125
|
- app/models/category.rb
|
122
126
|
- app/models/comment.rb
|
123
127
|
- app/models/config_manager.rb
|
124
128
|
- app/models/content.rb
|
125
|
-
- app/models/content_observer.rb
|
126
129
|
- app/models/content_state
|
127
130
|
- app/models/email_notifier.rb
|
128
131
|
- app/models/feedback.rb
|
132
|
+
- app/models/notification.rb
|
129
133
|
- app/models/notification_mailer.rb
|
130
134
|
- app/models/page.rb
|
131
135
|
- app/models/page_cache.rb
|
@@ -141,15 +145,6 @@ files:
|
|
141
145
|
- app/models/trigger.rb
|
142
146
|
- app/models/user.rb
|
143
147
|
- app/models/web_notifier.rb
|
144
|
-
- app/models/aggregations/audioscrobbler.rb
|
145
|
-
- app/models/aggregations/backpack.rb
|
146
|
-
- app/models/aggregations/delicious.rb
|
147
|
-
- app/models/aggregations/flickr.rb
|
148
|
-
- app/models/aggregations/fortythree.rb
|
149
|
-
- app/models/aggregations/magnolia.rb
|
150
|
-
- app/models/aggregations/tada.rb
|
151
|
-
- app/models/aggregations/technorati.rb
|
152
|
-
- app/models/aggregations/upcoming.rb
|
153
148
|
- app/models/content_state/base.rb
|
154
149
|
- app/models/content_state/draft.rb
|
155
150
|
- app/models/content_state/factory.rb
|
@@ -158,6 +153,7 @@ files:
|
|
158
153
|
- app/models/content_state/just_marked_as_spam.rb
|
159
154
|
- app/models/content_state/just_presumed_ham.rb
|
160
155
|
- app/models/content_state/just_published.rb
|
156
|
+
- app/models/content_state/just_withdrawn.rb
|
161
157
|
- app/models/content_state/new.rb
|
162
158
|
- app/models/content_state/presumed_ham.rb
|
163
159
|
- app/models/content_state/presumed_spam.rb
|
@@ -195,6 +191,7 @@ files:
|
|
195
191
|
- app/views/admin/general
|
196
192
|
- app/views/admin/pages
|
197
193
|
- app/views/admin/resources
|
194
|
+
- app/views/admin/shared
|
198
195
|
- app/views/admin/sidebar
|
199
196
|
- app/views/admin/textfilters
|
200
197
|
- app/views/admin/themes
|
@@ -260,6 +257,7 @@ files:
|
|
260
257
|
- app/views/admin/resources/destroy.rhtml
|
261
258
|
- app/views/admin/resources/list.rhtml
|
262
259
|
- app/views/admin/resources/new.rhtml
|
260
|
+
- app/views/admin/shared/_edit.rhtml
|
263
261
|
- app/views/admin/sidebar/_active.rhtml
|
264
262
|
- app/views/admin/sidebar/_actives.rhtml
|
265
263
|
- app/views/admin/sidebar/_available.rhtml
|
@@ -310,6 +308,7 @@ files:
|
|
310
308
|
- app/views/articles/view_page.rhtml
|
311
309
|
- app/views/layouts/accounts.rhtml
|
312
310
|
- app/views/layouts/administration.rhtml
|
311
|
+
- app/views/layouts/minimal.rhtml
|
313
312
|
- app/views/layouts/sidebar.rhtml
|
314
313
|
- app/views/live/search.rhtml
|
315
314
|
- app/views/notification_mailer/_mail_footer.rhtml
|
@@ -342,81 +341,6 @@ files:
|
|
342
341
|
- app/views/xml/rsd.rxml
|
343
342
|
- app/views/xml/rss20_feed.rxml
|
344
343
|
- bin/typo
|
345
|
-
- components/plugins
|
346
|
-
- components/sidebars
|
347
|
-
- components/plugins/sidebars
|
348
|
-
- components/plugins/textfilters
|
349
|
-
- components/plugins/sidebars/aimpresence
|
350
|
-
- components/plugins/sidebars/aimpresence_controller.rb
|
351
|
-
- components/plugins/sidebars/amazon
|
352
|
-
- components/plugins/sidebars/amazon_controller.rb
|
353
|
-
- components/plugins/sidebars/archives
|
354
|
-
- components/plugins/sidebars/archives_controller.rb
|
355
|
-
- components/plugins/sidebars/audioscrobbler
|
356
|
-
- components/plugins/sidebars/audioscrobbler_controller.rb
|
357
|
-
- components/plugins/sidebars/backpack
|
358
|
-
- components/plugins/sidebars/backpack_controller.rb
|
359
|
-
- components/plugins/sidebars/category
|
360
|
-
- components/plugins/sidebars/category_controller.rb
|
361
|
-
- components/plugins/sidebars/delicious
|
362
|
-
- components/plugins/sidebars/delicious_controller.rb
|
363
|
-
- components/plugins/sidebars/flickr
|
364
|
-
- components/plugins/sidebars/flickr_controller.rb
|
365
|
-
- components/plugins/sidebars/fortythree
|
366
|
-
- components/plugins/sidebars/fortythree_controller.rb
|
367
|
-
- components/plugins/sidebars/fortythreeplaces
|
368
|
-
- components/plugins/sidebars/fortythreeplaces_controller.rb
|
369
|
-
- components/plugins/sidebars/magnolia
|
370
|
-
- components/plugins/sidebars/magnolia_controller.rb
|
371
|
-
- components/plugins/sidebars/recent_comments
|
372
|
-
- components/plugins/sidebars/recent_comments_controller.rb
|
373
|
-
- components/plugins/sidebars/static
|
374
|
-
- components/plugins/sidebars/static_controller.rb
|
375
|
-
- components/plugins/sidebars/tada
|
376
|
-
- components/plugins/sidebars/tada_controller.rb
|
377
|
-
- components/plugins/sidebars/tag
|
378
|
-
- components/plugins/sidebars/tag_controller.rb
|
379
|
-
- components/plugins/sidebars/technorati
|
380
|
-
- components/plugins/sidebars/technorati_controller.rb
|
381
|
-
- components/plugins/sidebars/upcoming
|
382
|
-
- components/plugins/sidebars/upcoming_controller.rb
|
383
|
-
- components/plugins/sidebars/xbox
|
384
|
-
- components/plugins/sidebars/xbox_controller.rb
|
385
|
-
- components/plugins/sidebars/xml
|
386
|
-
- components/plugins/sidebars/xml_controller.rb
|
387
|
-
- components/plugins/sidebars/aimpresence/content.rhtml
|
388
|
-
- components/plugins/sidebars/amazon/content.rhtml
|
389
|
-
- components/plugins/sidebars/archives/content.rhtml
|
390
|
-
- components/plugins/sidebars/audioscrobbler/content.rhtml
|
391
|
-
- components/plugins/sidebars/backpack/content.rhtml
|
392
|
-
- components/plugins/sidebars/category/content.rhtml
|
393
|
-
- components/plugins/sidebars/delicious/content.rhtml
|
394
|
-
- components/plugins/sidebars/flickr/content.rhtml
|
395
|
-
- components/plugins/sidebars/fortythree/content.rhtml
|
396
|
-
- components/plugins/sidebars/fortythreeplaces/content.rhtml
|
397
|
-
- components/plugins/sidebars/magnolia/content.rhtml
|
398
|
-
- components/plugins/sidebars/recent_comments/content.rhtml
|
399
|
-
- components/plugins/sidebars/static/content.rhtml
|
400
|
-
- components/plugins/sidebars/tada/content.rhtml
|
401
|
-
- components/plugins/sidebars/tag/content.rhtml
|
402
|
-
- components/plugins/sidebars/technorati/content.rhtml
|
403
|
-
- components/plugins/sidebars/upcoming/content.rhtml
|
404
|
-
- components/plugins/sidebars/xbox/content.rhtml
|
405
|
-
- components/plugins/sidebars/xml/content.rhtml
|
406
|
-
- components/plugins/textfilters/amazon_controller.rb
|
407
|
-
- components/plugins/textfilters/code_controller.rb
|
408
|
-
- components/plugins/textfilters/flickr_controller.rb
|
409
|
-
- components/plugins/textfilters/htmlfilter_controller.rb
|
410
|
-
- components/plugins/textfilters/lightbox_controller.rb
|
411
|
-
- components/plugins/textfilters/macropost_controller.rb
|
412
|
-
- components/plugins/textfilters/macropre_controller.rb
|
413
|
-
- components/plugins/textfilters/markdown_controller.rb
|
414
|
-
- components/plugins/textfilters/none_controller.rb
|
415
|
-
- components/plugins/textfilters/smartypants_controller.rb
|
416
|
-
- components/plugins/textfilters/sparkline_controller.rb
|
417
|
-
- components/plugins/textfilters/textile_and_markdown_controller.rb
|
418
|
-
- components/plugins/textfilters/textile_controller.rb
|
419
|
-
- components/sidebars/README
|
420
344
|
- config/boot.rb
|
421
345
|
- config/database.yml.example
|
422
346
|
- config/environment.rb
|
@@ -430,7 +354,6 @@ files:
|
|
430
354
|
- config/environments/test.rb
|
431
355
|
- db/converters
|
432
356
|
- db/migrate
|
433
|
-
- db/schema.mysql-v3.sql
|
434
357
|
- db/schema.mysql.sql
|
435
358
|
- db/schema.postgresql.sql
|
436
359
|
- db/schema.rb
|
@@ -497,6 +420,17 @@ files:
|
|
497
420
|
- db/migrate/048_remove_count_caching.rb
|
498
421
|
- db/migrate/049_move_feedback_to_new_state_machine.rb
|
499
422
|
- db/migrate/050_add_status_confirmed_field_to_content.rb
|
423
|
+
- db/migrate/051_fix_canonical_server_url.rb
|
424
|
+
- db/migrate/052_remove_cached_html.rb
|
425
|
+
- db/migrate/053_promote_canonical_server_url.rb
|
426
|
+
- db/migrate/054_upgrade_sidebar_objects.rb
|
427
|
+
- db/migrate/055_link_sidebars_to_blog.rb
|
428
|
+
- db/migrate/056_create_notifications.rb
|
429
|
+
- db/migrate/057_add_categorization_model.rb
|
430
|
+
- db/migrate/058_separate_entries_and_feedback.rb
|
431
|
+
- db/migrate/059_cleanup_feedback_table.rb
|
432
|
+
- db/migrate/060_cleanup_contents_table.rb
|
433
|
+
- db/migrate/061_convert_title_prefix_setting.rb
|
500
434
|
- db/scripts/fix_permalinks.rb
|
501
435
|
- db/updates/update.168.to.200.mysql.sql
|
502
436
|
- db/updates/update.168.to.200.psql.sql
|
@@ -506,6 +440,7 @@ files:
|
|
506
440
|
- installer/apache20.conf.example.template
|
507
441
|
- installer/lighttpd.conf.example.template
|
508
442
|
- installer/rails_installer_defaults.yml
|
443
|
+
- lang/fr_FR.rb
|
509
444
|
- lib/backpack_api.rb
|
510
445
|
- lib/bare_migration.rb
|
511
446
|
- lib/email_notify.rb
|
@@ -513,14 +448,17 @@ files:
|
|
513
448
|
- lib/generators
|
514
449
|
- lib/jabber_notify.rb
|
515
450
|
- lib/login_system.rb
|
451
|
+
- lib/memory_profiler.rb
|
516
452
|
- lib/migrator.rb
|
517
453
|
- lib/rails_patch
|
454
|
+
- lib/route_cache.rb
|
518
455
|
- lib/sanitize.rb
|
519
456
|
- lib/sidebars
|
520
457
|
- lib/spam_protection.rb
|
521
458
|
- lib/tasks
|
522
459
|
- lib/text_filter_plugin.rb
|
523
460
|
- lib/transforms.rb
|
461
|
+
- lib/typo_deprecated.rb
|
524
462
|
- lib/typo_guid.rb
|
525
463
|
- lib/typo_plugins.rb
|
526
464
|
- lib/typo_version.rb
|
@@ -528,15 +466,14 @@ files:
|
|
528
466
|
- lib/generators/sidebar
|
529
467
|
- lib/generators/sidebar/sidebar_generator.rb
|
530
468
|
- lib/generators/sidebar/templates
|
531
|
-
- lib/generators/sidebar/templates/
|
532
|
-
- lib/generators/sidebar/templates/
|
533
|
-
- lib/generators/sidebar/templates/
|
534
|
-
- lib/generators/sidebar/templates/
|
535
|
-
- lib/generators/sidebar/templates/
|
536
|
-
- lib/generators/sidebar/templates/components/plugins/sidebars/views/content_template.rhtml
|
469
|
+
- lib/generators/sidebar/templates/content.rhtml
|
470
|
+
- lib/generators/sidebar/templates/init.rb
|
471
|
+
- lib/generators/sidebar/templates/Rakefile
|
472
|
+
- lib/generators/sidebar/templates/sidebar.rb
|
473
|
+
- lib/generators/sidebar/templates/unit_test.rb
|
537
474
|
- lib/rails_patch/active_record.rb
|
538
|
-
- lib/rails_patch/components.rb
|
539
475
|
- lib/sidebars/component_plugin.rb
|
476
|
+
- lib/sidebars/consolidated_plugin.rb
|
540
477
|
- lib/sidebars/plugin.rb
|
541
478
|
- lib/tasks/release.rake
|
542
479
|
- lib/tasks/schemas.rake
|
@@ -557,17 +494,21 @@ files:
|
|
557
494
|
- public/images/bg.jpg
|
558
495
|
- public/images/bgcolor.jpg
|
559
496
|
- public/images/body_bg.png
|
497
|
+
- public/images/bracket.gif
|
560
498
|
- public/images/branding_bg.png
|
561
499
|
- public/images/branding_logo.png
|
562
|
-
- public/images/
|
500
|
+
- public/images/cancel.png
|
501
|
+
- public/images/checked.png
|
563
502
|
- public/images/content_bg.png
|
564
503
|
- public/images/delete.png
|
504
|
+
- public/images/edit.png
|
565
505
|
- public/images/footer.jpg
|
566
506
|
- public/images/footer.png
|
567
507
|
- public/images/global_bg.png
|
568
508
|
- public/images/global_logo.png
|
569
509
|
- public/images/go.png
|
570
510
|
- public/images/header.jpg
|
511
|
+
- public/images/help.png
|
571
512
|
- public/images/loading.gif
|
572
513
|
- public/images/not-checked copy.gif
|
573
514
|
- public/images/not-checked.gif
|
@@ -577,6 +518,7 @@ files:
|
|
577
518
|
- public/images/sections_bg.png
|
578
519
|
- public/images/sections_hilite.png
|
579
520
|
- public/images/sections_hover.png
|
521
|
+
- public/images/show.png
|
580
522
|
- public/images/spinner-blue.gif
|
581
523
|
- public/images/spinner.gif
|
582
524
|
- public/images/spot-header.gif
|
@@ -587,6 +529,7 @@ files:
|
|
587
529
|
- public/images/admin/hdr-tile.gif
|
588
530
|
- public/images/admin/toggle.gif
|
589
531
|
- public/javascripts/application.js
|
532
|
+
- public/javascripts/codecollapse.js
|
590
533
|
- public/javascripts/controls.js
|
591
534
|
- public/javascripts/cookies.js
|
592
535
|
- public/javascripts/dragdrop.js
|
@@ -597,9 +540,17 @@ files:
|
|
597
540
|
- public/javascripts/slider.js
|
598
541
|
- public/javascripts/typo.js
|
599
542
|
- public/stylesheets/administration.css
|
543
|
+
- public/stylesheets/codecollapse.css
|
600
544
|
- public/stylesheets/lightbox.css
|
545
|
+
- public/stylesheets/minimal.css
|
601
546
|
- public/stylesheets/rss.css
|
547
|
+
- public/stylesheets/textmate
|
602
548
|
- public/stylesheets/user-styles.css
|
549
|
+
- public/stylesheets/textmate/dawn.css
|
550
|
+
- public/stylesheets/textmate/iplastic.css
|
551
|
+
- public/stylesheets/textmate/space_cadet.css
|
552
|
+
- public/stylesheets/textmate/textmate.css
|
553
|
+
- public/stylesheets/textmate/twilight.css
|
603
554
|
- script/about
|
604
555
|
- script/benchmarker
|
605
556
|
- script/breakpointer
|
@@ -618,20 +569,69 @@ files:
|
|
618
569
|
- script/spacecheck
|
619
570
|
- script/performance/benchmarker
|
620
571
|
- script/performance/profiler
|
572
|
+
- script/process/inspector
|
621
573
|
- script/process/reaper
|
622
574
|
- script/process/spawner
|
623
575
|
- script/process/spinner
|
576
|
+
- spec/controllers
|
577
|
+
- spec/fixtures
|
578
|
+
- spec/helpers
|
579
|
+
- spec/models
|
580
|
+
- spec/controllers/accounts_controller_spec.rb
|
581
|
+
- spec/controllers/articles_controller_spec.rb
|
582
|
+
- spec/fixtures/articles_tags.yml
|
583
|
+
- spec/fixtures/blacklist_patterns.yml
|
584
|
+
- spec/fixtures/blogs.yml
|
585
|
+
- spec/fixtures/categories.yml
|
586
|
+
- spec/fixtures/categorizations.yml
|
587
|
+
- spec/fixtures/contents.yml
|
588
|
+
- spec/fixtures/feedback.yml
|
589
|
+
- spec/fixtures/notifications.yml
|
590
|
+
- spec/fixtures/page_caches.yml
|
591
|
+
- spec/fixtures/redirects.yml
|
592
|
+
- spec/fixtures/resources.yml
|
593
|
+
- spec/fixtures/sidebars.yml
|
594
|
+
- spec/fixtures/tags.yml
|
595
|
+
- spec/fixtures/text_filters.yml
|
596
|
+
- spec/fixtures/triggers.yml
|
597
|
+
- spec/fixtures/users.yml
|
598
|
+
- spec/fixtures/whiteboards.yml
|
599
|
+
- spec/helpers/admin_base_helper_spec.rb
|
600
|
+
- spec/models/amazon_sidebar_spec.rb
|
601
|
+
- spec/models/audioscrobbler_spec.rb
|
602
|
+
- spec/models/blog_spec.rb
|
603
|
+
- spec/models/cache_support_spec.rb
|
604
|
+
- spec/models/category_spec.rb
|
605
|
+
- spec/models/configuration_spec.rb
|
606
|
+
- spec/models/content_state_spec.rb
|
607
|
+
- spec/models/delegate_to_content_state_spec.rb
|
608
|
+
- spec/models/delicious_spec.rb
|
609
|
+
- spec/models/flickr_spec.rb
|
610
|
+
- spec/models/metafragment_spec.rb
|
611
|
+
- spec/models/page_cache_spec.rb
|
612
|
+
- spec/models/page_spec.rb
|
613
|
+
- spec/models/ping_spec.rb
|
614
|
+
- spec/models/redirect_spec.rb
|
615
|
+
- spec/models/resource_spec.rb
|
616
|
+
- spec/models/static_sidebar_spec.rb
|
617
|
+
- spec/models/tag_spec.rb
|
618
|
+
- spec/models/text_filter_spec.rb
|
619
|
+
- spec/models/theme_spec.rb
|
620
|
+
- spec/models/trackback_spec.rb
|
621
|
+
- spec/models/trigger_spec.rb
|
622
|
+
- spec/models/user_spec.rb
|
624
623
|
- test/fixtures
|
625
624
|
- test/functional
|
626
625
|
- test/mocks
|
627
626
|
- test/test_helper.rb
|
628
627
|
- test/unit
|
629
|
-
- test/fixtures/articles_categories.yml
|
630
628
|
- test/fixtures/articles_tags.yml
|
631
629
|
- test/fixtures/blacklist_patterns.yml
|
632
630
|
- test/fixtures/blogs.yml
|
633
631
|
- test/fixtures/categories.yml
|
632
|
+
- test/fixtures/categorizations.yml
|
634
633
|
- test/fixtures/contents.yml
|
634
|
+
- test/fixtures/feedback.yml
|
635
635
|
- test/fixtures/notification_mailer
|
636
636
|
- test/fixtures/notifications.yml
|
637
637
|
- test/fixtures/page_caches.yml
|
@@ -691,11 +691,13 @@ files:
|
|
691
691
|
- test/mocks/themes/azure/views/theme/static_view_test.rhtml
|
692
692
|
- test/mocks/themes/CamelCaseDirectory/about.markdown
|
693
693
|
- test/mocks/themes/i-have-special-chars/about.markdown
|
694
|
+
- test/unit/amazon_sidebar_test.rb
|
694
695
|
- test/unit/article_test.rb
|
695
696
|
- test/unit/assumptions_tests.rb
|
696
697
|
- test/unit/audioscrobbler_test.rb
|
697
698
|
- test/unit/blacklist_pattern_test.rb
|
698
699
|
- test/unit/blog_test.rb
|
700
|
+
- test/unit/cache_support_test.rb
|
699
701
|
- test/unit/category_test.rb
|
700
702
|
- test/unit/comment_test.rb
|
701
703
|
- test/unit/configuration_test.rb
|
@@ -706,13 +708,14 @@ files:
|
|
706
708
|
- test/unit/magnolia_test.rb
|
707
709
|
- test/unit/metafragment_test.rb
|
708
710
|
- test/unit/notification_mailer_test.rb
|
709
|
-
- test/unit/
|
711
|
+
- test/unit/notification_test.rb
|
710
712
|
- test/unit/page_cache_test.rb
|
711
713
|
- test/unit/page_test.rb
|
712
714
|
- test/unit/ping_test.rb
|
713
715
|
- test/unit/redirect_test.rb
|
714
716
|
- test/unit/resource_test.rb
|
715
717
|
- test/unit/sidebar_test.rb
|
718
|
+
- test/unit/static_sidebar_test.rb
|
716
719
|
- test/unit/tag_test.rb
|
717
720
|
- test/unit/text_filter_test.rb
|
718
721
|
- test/unit/theme_test.rb
|
@@ -720,6 +723,7 @@ files:
|
|
720
723
|
- test/unit/trigger_test.rb
|
721
724
|
- test/unit/user_test.rb
|
722
725
|
- test/unit/content_state/factory_test.rb
|
726
|
+
- test/unit/content_state/feedback_states_test.rb
|
723
727
|
- themes/azure
|
724
728
|
- themes/scribbish
|
725
729
|
- themes/azure/about.markdown
|
@@ -768,12 +772,15 @@ files:
|
|
768
772
|
- themes/scribbish/views/articles/index.rhtml
|
769
773
|
- themes/scribbish/views/articles/read.rhtml
|
770
774
|
- tmp/cache
|
775
|
+
- tmp/pids
|
771
776
|
- tmp/sessions
|
772
777
|
- tmp/sockets
|
773
778
|
- vendor/akismet
|
774
779
|
- vendor/bluecloth
|
780
|
+
- vendor/cached_model
|
775
781
|
- vendor/flickr
|
776
782
|
- vendor/jabber4r
|
783
|
+
- vendor/memcache-client
|
777
784
|
- vendor/plugins
|
778
785
|
- vendor/redcloth
|
779
786
|
- vendor/rubypants
|
@@ -802,6 +809,15 @@ files:
|
|
802
809
|
- vendor/bluecloth/tests/data/ml-announce.txt
|
803
810
|
- vendor/bluecloth/tests/data/re-overflow.txt
|
804
811
|
- vendor/bluecloth/tests/data/re-overflow2.txt
|
812
|
+
- vendor/cached_model/History.txt
|
813
|
+
- vendor/cached_model/lib
|
814
|
+
- vendor/cached_model/LICENSE.txt
|
815
|
+
- vendor/cached_model/Manifest.txt
|
816
|
+
- vendor/cached_model/Rakefile
|
817
|
+
- vendor/cached_model/README.txt
|
818
|
+
- vendor/cached_model/test
|
819
|
+
- vendor/cached_model/lib/cached_model.rb
|
820
|
+
- vendor/cached_model/test/test_cached_model.rb
|
805
821
|
- vendor/flickr/flickr.rb
|
806
822
|
- vendor/flickr/index.html
|
807
823
|
- vendor/flickr/Rakefile
|
@@ -819,12 +835,384 @@ files:
|
|
819
835
|
- vendor/jabber4r/lib/jabber4r/roster.rb
|
820
836
|
- vendor/jabber4r/lib/jabber4r/session.rb
|
821
837
|
- vendor/jabber4r/lib/jabber4r/vcard.rb
|
838
|
+
- vendor/memcache-client/History.txt
|
839
|
+
- vendor/memcache-client/lib
|
840
|
+
- vendor/memcache-client/LICENSE.txt
|
841
|
+
- vendor/memcache-client/Manifest.txt
|
842
|
+
- vendor/memcache-client/Rakefile
|
843
|
+
- vendor/memcache-client/README.txt
|
844
|
+
- vendor/memcache-client/test
|
845
|
+
- vendor/memcache-client/lib/memcache.rb
|
846
|
+
- vendor/memcache-client/lib/memcache_util.rb
|
847
|
+
- vendor/memcache-client/test/test_mem_cache.rb
|
848
|
+
- vendor/plugins/action_view_patch
|
849
|
+
- vendor/plugins/aimpresence_sidebar
|
850
|
+
- vendor/plugins/amazon_sidebar
|
851
|
+
- vendor/plugins/archives_sidebar
|
852
|
+
- vendor/plugins/audioscrobbler_sidebar
|
853
|
+
- vendor/plugins/backpack_sidebar
|
854
|
+
- vendor/plugins/category_sidebar
|
855
|
+
- vendor/plugins/delicious_sidebar
|
822
856
|
- vendor/plugins/expiring_action_cache
|
857
|
+
- vendor/plugins/flickr_sidebar
|
858
|
+
- vendor/plugins/fortythree_sidebar
|
859
|
+
- vendor/plugins/fortythreeplaces_sidebar
|
860
|
+
- vendor/plugins/haml
|
861
|
+
- vendor/plugins/localization
|
862
|
+
- vendor/plugins/magnolia_sidebar
|
863
|
+
- vendor/plugins/recent_comments_sidebar
|
864
|
+
- vendor/plugins/static_sidebar
|
865
|
+
- vendor/plugins/tada_sidebar
|
866
|
+
- vendor/plugins/tag_sidebar
|
867
|
+
- vendor/plugins/technorati_sidebar
|
868
|
+
- vendor/plugins/typo_textfilter_amazon
|
869
|
+
- vendor/plugins/typo_textfilter_code
|
870
|
+
- vendor/plugins/typo_textfilter_flickr
|
871
|
+
- vendor/plugins/typo_textfilter_htmlfilter
|
872
|
+
- vendor/plugins/typo_textfilter_lightbox
|
873
|
+
- vendor/plugins/typo_textfilter_markdown
|
874
|
+
- vendor/plugins/typo_textfilter_none
|
875
|
+
- vendor/plugins/typo_textfilter_smartypants
|
876
|
+
- vendor/plugins/typo_textfilter_sparkline
|
877
|
+
- vendor/plugins/typo_textfilter_textile
|
878
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown
|
879
|
+
- vendor/plugins/typo_textfilter_tmcode
|
880
|
+
- vendor/plugins/upcoming_sidebar
|
823
881
|
- vendor/plugins/upload_progress
|
882
|
+
- vendor/plugins/xbox_sidebar
|
883
|
+
- vendor/plugins/xml_sidebar
|
884
|
+
- vendor/plugins/action_view_patch/init.rb
|
885
|
+
- vendor/plugins/action_view_patch/lib
|
886
|
+
- vendor/plugins/action_view_patch/Rakefile
|
887
|
+
- vendor/plugins/action_view_patch/test
|
888
|
+
- vendor/plugins/action_view_patch/lib/action_view_patch.rb
|
889
|
+
- vendor/plugins/action_view_patch/test/action_view_patch_test.rb
|
890
|
+
- vendor/plugins/aimpresence_sidebar/init.rb
|
891
|
+
- vendor/plugins/aimpresence_sidebar/lib
|
892
|
+
- vendor/plugins/aimpresence_sidebar/Rakefile
|
893
|
+
- vendor/plugins/aimpresence_sidebar/test
|
894
|
+
- vendor/plugins/aimpresence_sidebar/views
|
895
|
+
- vendor/plugins/aimpresence_sidebar/lib/aimpresence_sidebar.rb
|
896
|
+
- vendor/plugins/aimpresence_sidebar/test/aimpresence_sidebar_test.rb
|
897
|
+
- vendor/plugins/aimpresence_sidebar/views/content.rhtml
|
898
|
+
- vendor/plugins/amazon_sidebar/init.rb
|
899
|
+
- vendor/plugins/amazon_sidebar/lib
|
900
|
+
- vendor/plugins/amazon_sidebar/views
|
901
|
+
- vendor/plugins/amazon_sidebar/lib/amazon_sidebar.rb
|
902
|
+
- vendor/plugins/amazon_sidebar/views/content.rhtml
|
903
|
+
- vendor/plugins/archives_sidebar/init.rb
|
904
|
+
- vendor/plugins/archives_sidebar/lib
|
905
|
+
- vendor/plugins/archives_sidebar/Rakefile
|
906
|
+
- vendor/plugins/archives_sidebar/test
|
907
|
+
- vendor/plugins/archives_sidebar/views
|
908
|
+
- vendor/plugins/archives_sidebar/lib/archives_sidebar.rb
|
909
|
+
- vendor/plugins/archives_sidebar/test/archives_sidebar_test.rb
|
910
|
+
- vendor/plugins/archives_sidebar/views/content.rhtml
|
911
|
+
- vendor/plugins/audioscrobbler_sidebar/init.rb
|
912
|
+
- vendor/plugins/audioscrobbler_sidebar/lib
|
913
|
+
- vendor/plugins/audioscrobbler_sidebar/Rakefile
|
914
|
+
- vendor/plugins/audioscrobbler_sidebar/test
|
915
|
+
- vendor/plugins/audioscrobbler_sidebar/views
|
916
|
+
- vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler.rb
|
917
|
+
- vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb
|
918
|
+
- vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb
|
919
|
+
- vendor/plugins/audioscrobbler_sidebar/views/content.rhtml
|
920
|
+
- vendor/plugins/backpack_sidebar/init.rb
|
921
|
+
- vendor/plugins/backpack_sidebar/lib
|
922
|
+
- vendor/plugins/backpack_sidebar/Rakefile
|
923
|
+
- vendor/plugins/backpack_sidebar/test
|
924
|
+
- vendor/plugins/backpack_sidebar/views
|
925
|
+
- vendor/plugins/backpack_sidebar/lib/backpack.rb
|
926
|
+
- vendor/plugins/backpack_sidebar/lib/backpack_sidebar.rb
|
927
|
+
- vendor/plugins/backpack_sidebar/test/backpack_sidebar_test.rb
|
928
|
+
- vendor/plugins/backpack_sidebar/views/content.rhtml
|
929
|
+
- vendor/plugins/category_sidebar/init.rb
|
930
|
+
- vendor/plugins/category_sidebar/lib
|
931
|
+
- vendor/plugins/category_sidebar/Rakefile
|
932
|
+
- vendor/plugins/category_sidebar/test
|
933
|
+
- vendor/plugins/category_sidebar/views
|
934
|
+
- vendor/plugins/category_sidebar/lib/category_sidebar.rb
|
935
|
+
- vendor/plugins/category_sidebar/test/category_sidebar_test.rb
|
936
|
+
- vendor/plugins/category_sidebar/views/content.rhtml
|
937
|
+
- vendor/plugins/delicious_sidebar/init.rb
|
938
|
+
- vendor/plugins/delicious_sidebar/lib
|
939
|
+
- vendor/plugins/delicious_sidebar/Rakefile
|
940
|
+
- vendor/plugins/delicious_sidebar/test
|
941
|
+
- vendor/plugins/delicious_sidebar/views
|
942
|
+
- vendor/plugins/delicious_sidebar/lib/delicious.rb
|
943
|
+
- vendor/plugins/delicious_sidebar/lib/delicious_sidebar.rb
|
944
|
+
- vendor/plugins/delicious_sidebar/test/delicious_sidebar_test.rb
|
945
|
+
- vendor/plugins/delicious_sidebar/views/content.rhtml
|
824
946
|
- vendor/plugins/expiring_action_cache/init.rb
|
825
947
|
- vendor/plugins/expiring_action_cache/lib
|
826
948
|
- vendor/plugins/expiring_action_cache/lib/actionparamcache.rb
|
827
949
|
- vendor/plugins/expiring_action_cache/lib/metafragment.rb
|
950
|
+
- vendor/plugins/flickr_sidebar/init.rb
|
951
|
+
- vendor/plugins/flickr_sidebar/lib
|
952
|
+
- vendor/plugins/flickr_sidebar/Rakefile
|
953
|
+
- vendor/plugins/flickr_sidebar/test
|
954
|
+
- vendor/plugins/flickr_sidebar/views
|
955
|
+
- vendor/plugins/flickr_sidebar/lib/flickr.rb
|
956
|
+
- vendor/plugins/flickr_sidebar/lib/flickr_sidebar.rb
|
957
|
+
- vendor/plugins/flickr_sidebar/test/flickr_sidebar_test.rb
|
958
|
+
- vendor/plugins/flickr_sidebar/views/content.rhtml
|
959
|
+
- vendor/plugins/fortythree_sidebar/init.rb
|
960
|
+
- vendor/plugins/fortythree_sidebar/lib
|
961
|
+
- vendor/plugins/fortythree_sidebar/Rakefile
|
962
|
+
- vendor/plugins/fortythree_sidebar/test
|
963
|
+
- vendor/plugins/fortythree_sidebar/views
|
964
|
+
- vendor/plugins/fortythree_sidebar/lib/fortythree.rb
|
965
|
+
- vendor/plugins/fortythree_sidebar/lib/fortythree_sidebar.rb
|
966
|
+
- vendor/plugins/fortythree_sidebar/test/fortythree_sidebar_test.rb
|
967
|
+
- vendor/plugins/fortythree_sidebar/views/content.rhtml
|
968
|
+
- vendor/plugins/fortythreeplaces_sidebar/init.rb
|
969
|
+
- vendor/plugins/fortythreeplaces_sidebar/lib
|
970
|
+
- vendor/plugins/fortythreeplaces_sidebar/Rakefile
|
971
|
+
- vendor/plugins/fortythreeplaces_sidebar/test
|
972
|
+
- vendor/plugins/fortythreeplaces_sidebar/views
|
973
|
+
- vendor/plugins/fortythreeplaces_sidebar/lib/fortythree.rb
|
974
|
+
- vendor/plugins/fortythreeplaces_sidebar/lib/fortythreeplaces_sidebar.rb
|
975
|
+
- vendor/plugins/fortythreeplaces_sidebar/test/fortythreeplaces_sidebar_test.rb
|
976
|
+
- vendor/plugins/fortythreeplaces_sidebar/views/content.rhtml
|
977
|
+
- vendor/plugins/haml/bin
|
978
|
+
- vendor/plugins/haml/init.rb
|
979
|
+
- vendor/plugins/haml/lib
|
980
|
+
- vendor/plugins/haml/MIT-LICENSE
|
981
|
+
- vendor/plugins/haml/Rakefile
|
982
|
+
- vendor/plugins/haml/REFERENCE
|
983
|
+
- vendor/plugins/haml/test
|
984
|
+
- vendor/plugins/haml/VERSION
|
985
|
+
- vendor/plugins/haml/bin/haml
|
986
|
+
- vendor/plugins/haml/lib/haml
|
987
|
+
- vendor/plugins/haml/lib/haml/buffer.rb
|
988
|
+
- vendor/plugins/haml/lib/haml/engine.rb
|
989
|
+
- vendor/plugins/haml/lib/haml/helpers
|
990
|
+
- vendor/plugins/haml/lib/haml/helpers.rb
|
991
|
+
- vendor/plugins/haml/lib/haml/template.rb
|
992
|
+
- vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb
|
993
|
+
- vendor/plugins/haml/test/benchmark.rb
|
994
|
+
- vendor/plugins/haml/test/engine_test.rb
|
995
|
+
- vendor/plugins/haml/test/helper_test.rb
|
996
|
+
- vendor/plugins/haml/test/mocks
|
997
|
+
- vendor/plugins/haml/test/profile.rb
|
998
|
+
- vendor/plugins/haml/test/results
|
999
|
+
- vendor/plugins/haml/test/rhtml
|
1000
|
+
- vendor/plugins/haml/test/runner.rb
|
1001
|
+
- vendor/plugins/haml/test/template_test.rb
|
1002
|
+
- vendor/plugins/haml/test/templates
|
1003
|
+
- vendor/plugins/haml/test/mocks/article.rb
|
1004
|
+
- vendor/plugins/haml/test/results/content_for_layout.xhtml
|
1005
|
+
- vendor/plugins/haml/test/results/eval_suppressed.xhtml
|
1006
|
+
- vendor/plugins/haml/test/results/helpers.xhtml
|
1007
|
+
- vendor/plugins/haml/test/results/helpful.xhtml
|
1008
|
+
- vendor/plugins/haml/test/results/just_stuff.xhtml
|
1009
|
+
- vendor/plugins/haml/test/results/list.xhtml
|
1010
|
+
- vendor/plugins/haml/test/results/original_engine.xhtml
|
1011
|
+
- vendor/plugins/haml/test/results/partials.xhtml
|
1012
|
+
- vendor/plugins/haml/test/results/silent_script.xhtml
|
1013
|
+
- vendor/plugins/haml/test/results/standard.xhtml
|
1014
|
+
- vendor/plugins/haml/test/results/tag_parsing.xhtml
|
1015
|
+
- vendor/plugins/haml/test/results/very_basic.xhtml
|
1016
|
+
- vendor/plugins/haml/test/results/whitespace_handling.xhtml
|
1017
|
+
- vendor/plugins/haml/test/rhtml/standard.rhtml
|
1018
|
+
- vendor/plugins/haml/test/templates/_partial.haml
|
1019
|
+
- vendor/plugins/haml/test/templates/_text_area.haml
|
1020
|
+
- vendor/plugins/haml/test/templates/content_for_layout.haml
|
1021
|
+
- vendor/plugins/haml/test/templates/eval_suppressed.haml
|
1022
|
+
- vendor/plugins/haml/test/templates/helpers.haml
|
1023
|
+
- vendor/plugins/haml/test/templates/helpful.haml
|
1024
|
+
- vendor/plugins/haml/test/templates/just_stuff.haml
|
1025
|
+
- vendor/plugins/haml/test/templates/list.haml
|
1026
|
+
- vendor/plugins/haml/test/templates/original_engine.haml
|
1027
|
+
- vendor/plugins/haml/test/templates/partialize.haml
|
1028
|
+
- vendor/plugins/haml/test/templates/partials.haml
|
1029
|
+
- vendor/plugins/haml/test/templates/silent_script.haml
|
1030
|
+
- vendor/plugins/haml/test/templates/standard.haml
|
1031
|
+
- vendor/plugins/haml/test/templates/tag_parsing.haml
|
1032
|
+
- vendor/plugins/haml/test/templates/very_basic.haml
|
1033
|
+
- vendor/plugins/haml/test/templates/whitespace_handling.haml
|
1034
|
+
- vendor/plugins/localization/CHANGELOG
|
1035
|
+
- vendor/plugins/localization/init.rb
|
1036
|
+
- vendor/plugins/localization/lib
|
1037
|
+
- vendor/plugins/localization/README
|
1038
|
+
- vendor/plugins/localization/lib/localization.rb
|
1039
|
+
- vendor/plugins/magnolia_sidebar/init.rb
|
1040
|
+
- vendor/plugins/magnolia_sidebar/lib
|
1041
|
+
- vendor/plugins/magnolia_sidebar/Rakefile
|
1042
|
+
- vendor/plugins/magnolia_sidebar/test
|
1043
|
+
- vendor/plugins/magnolia_sidebar/views
|
1044
|
+
- vendor/plugins/magnolia_sidebar/lib/magnolia_aggregation.rb
|
1045
|
+
- vendor/plugins/magnolia_sidebar/lib/magnolia_sidebar.rb
|
1046
|
+
- vendor/plugins/magnolia_sidebar/test/magnolia_sidebar_test.rb
|
1047
|
+
- vendor/plugins/magnolia_sidebar/views/content.rhtml
|
1048
|
+
- vendor/plugins/recent_comments_sidebar/init.rb
|
1049
|
+
- vendor/plugins/recent_comments_sidebar/lib
|
1050
|
+
- vendor/plugins/recent_comments_sidebar/Rakefile
|
1051
|
+
- vendor/plugins/recent_comments_sidebar/test
|
1052
|
+
- vendor/plugins/recent_comments_sidebar/views
|
1053
|
+
- vendor/plugins/recent_comments_sidebar/lib/recent_comments_sidebar.rb
|
1054
|
+
- vendor/plugins/recent_comments_sidebar/test/recent_comments_sidebar_test.rb
|
1055
|
+
- vendor/plugins/recent_comments_sidebar/views/content.rhtml
|
1056
|
+
- vendor/plugins/static_sidebar/init.rb
|
1057
|
+
- vendor/plugins/static_sidebar/lib
|
1058
|
+
- vendor/plugins/static_sidebar/views
|
1059
|
+
- vendor/plugins/static_sidebar/lib/static_sidebar.rb
|
1060
|
+
- vendor/plugins/static_sidebar/views/content.rhtml
|
1061
|
+
- vendor/plugins/tada_sidebar/init.rb
|
1062
|
+
- vendor/plugins/tada_sidebar/lib
|
1063
|
+
- vendor/plugins/tada_sidebar/Rakefile
|
1064
|
+
- vendor/plugins/tada_sidebar/test
|
1065
|
+
- vendor/plugins/tada_sidebar/views
|
1066
|
+
- vendor/plugins/tada_sidebar/lib/tada.rb
|
1067
|
+
- vendor/plugins/tada_sidebar/lib/tada_sidebar.rb
|
1068
|
+
- vendor/plugins/tada_sidebar/test/tada_sidebar_test.rb
|
1069
|
+
- vendor/plugins/tada_sidebar/views/content.rhtml
|
1070
|
+
- vendor/plugins/tag_sidebar/init.rb
|
1071
|
+
- vendor/plugins/tag_sidebar/lib
|
1072
|
+
- vendor/plugins/tag_sidebar/Rakefile
|
1073
|
+
- vendor/plugins/tag_sidebar/test
|
1074
|
+
- vendor/plugins/tag_sidebar/views
|
1075
|
+
- vendor/plugins/tag_sidebar/lib/tag_sidebar.rb
|
1076
|
+
- vendor/plugins/tag_sidebar/test/tag_sidebar_test.rb
|
1077
|
+
- vendor/plugins/tag_sidebar/views/content.rhtml
|
1078
|
+
- vendor/plugins/technorati_sidebar/init.rb
|
1079
|
+
- vendor/plugins/technorati_sidebar/lib
|
1080
|
+
- vendor/plugins/technorati_sidebar/Rakefile
|
1081
|
+
- vendor/plugins/technorati_sidebar/test
|
1082
|
+
- vendor/plugins/technorati_sidebar/views
|
1083
|
+
- vendor/plugins/technorati_sidebar/lib/technorati.rb
|
1084
|
+
- vendor/plugins/technorati_sidebar/lib/technorati_sidebar.rb
|
1085
|
+
- vendor/plugins/technorati_sidebar/test/technorati_sidebar_test.rb
|
1086
|
+
- vendor/plugins/technorati_sidebar/views/content.rhtml
|
1087
|
+
- vendor/plugins/typo_textfilter_amazon/init.rb
|
1088
|
+
- vendor/plugins/typo_textfilter_amazon/install.rb
|
1089
|
+
- vendor/plugins/typo_textfilter_amazon/lib
|
1090
|
+
- vendor/plugins/typo_textfilter_amazon/Rakefile
|
1091
|
+
- vendor/plugins/typo_textfilter_amazon/README
|
1092
|
+
- vendor/plugins/typo_textfilter_amazon/tasks
|
1093
|
+
- vendor/plugins/typo_textfilter_amazon/test
|
1094
|
+
- vendor/plugins/typo_textfilter_amazon/lib/typo_textfilter_amazon.rb
|
1095
|
+
- vendor/plugins/typo_textfilter_amazon/tasks/typo_textfilter_amazon_tasks.rake
|
1096
|
+
- vendor/plugins/typo_textfilter_amazon/test/typo_textfilter_amazon_test.rb
|
1097
|
+
- vendor/plugins/typo_textfilter_code/init.rb
|
1098
|
+
- vendor/plugins/typo_textfilter_code/install.rb
|
1099
|
+
- vendor/plugins/typo_textfilter_code/lib
|
1100
|
+
- vendor/plugins/typo_textfilter_code/Rakefile
|
1101
|
+
- vendor/plugins/typo_textfilter_code/README
|
1102
|
+
- vendor/plugins/typo_textfilter_code/tasks
|
1103
|
+
- vendor/plugins/typo_textfilter_code/test
|
1104
|
+
- vendor/plugins/typo_textfilter_code/lib/typo_textfilter_code.rb
|
1105
|
+
- vendor/plugins/typo_textfilter_code/tasks/typo_textfilter_code_tasks.rake
|
1106
|
+
- vendor/plugins/typo_textfilter_code/test/typo_textfilter_code_test.rb
|
1107
|
+
- vendor/plugins/typo_textfilter_flickr/init.rb
|
1108
|
+
- vendor/plugins/typo_textfilter_flickr/install.rb
|
1109
|
+
- vendor/plugins/typo_textfilter_flickr/lib
|
1110
|
+
- vendor/plugins/typo_textfilter_flickr/Rakefile
|
1111
|
+
- vendor/plugins/typo_textfilter_flickr/README
|
1112
|
+
- vendor/plugins/typo_textfilter_flickr/tasks
|
1113
|
+
- vendor/plugins/typo_textfilter_flickr/test
|
1114
|
+
- vendor/plugins/typo_textfilter_flickr/lib/typo_textfilter_flickr.rb
|
1115
|
+
- vendor/plugins/typo_textfilter_flickr/tasks/typo_textfilter_flickr_tasks.rake
|
1116
|
+
- vendor/plugins/typo_textfilter_flickr/test/typo_textfilter_flickr_test.rb
|
1117
|
+
- vendor/plugins/typo_textfilter_htmlfilter/init.rb
|
1118
|
+
- vendor/plugins/typo_textfilter_htmlfilter/install.rb
|
1119
|
+
- vendor/plugins/typo_textfilter_htmlfilter/lib
|
1120
|
+
- vendor/plugins/typo_textfilter_htmlfilter/Rakefile
|
1121
|
+
- vendor/plugins/typo_textfilter_htmlfilter/README
|
1122
|
+
- vendor/plugins/typo_textfilter_htmlfilter/tasks
|
1123
|
+
- vendor/plugins/typo_textfilter_htmlfilter/test
|
1124
|
+
- vendor/plugins/typo_textfilter_htmlfilter/lib/typo_textfilter_htmlfilter.rb
|
1125
|
+
- vendor/plugins/typo_textfilter_htmlfilter/tasks/typo_textfilter_htmlfilter_tasks.rake
|
1126
|
+
- vendor/plugins/typo_textfilter_htmlfilter/test/typo_textfilter_htmlfilter_test.rb
|
1127
|
+
- vendor/plugins/typo_textfilter_lightbox/init.rb
|
1128
|
+
- vendor/plugins/typo_textfilter_lightbox/install.rb
|
1129
|
+
- vendor/plugins/typo_textfilter_lightbox/lib
|
1130
|
+
- vendor/plugins/typo_textfilter_lightbox/Rakefile
|
1131
|
+
- vendor/plugins/typo_textfilter_lightbox/README
|
1132
|
+
- vendor/plugins/typo_textfilter_lightbox/tasks
|
1133
|
+
- vendor/plugins/typo_textfilter_lightbox/test
|
1134
|
+
- vendor/plugins/typo_textfilter_lightbox/lib/typo_textfilter_lightbox.rb
|
1135
|
+
- vendor/plugins/typo_textfilter_lightbox/tasks/typo_textfilter_lightbox_tasks.rake
|
1136
|
+
- vendor/plugins/typo_textfilter_lightbox/test/typo_textfilter_lightbox_test.rb
|
1137
|
+
- vendor/plugins/typo_textfilter_markdown/init.rb
|
1138
|
+
- vendor/plugins/typo_textfilter_markdown/install.rb
|
1139
|
+
- vendor/plugins/typo_textfilter_markdown/lib
|
1140
|
+
- vendor/plugins/typo_textfilter_markdown/Rakefile
|
1141
|
+
- vendor/plugins/typo_textfilter_markdown/README
|
1142
|
+
- vendor/plugins/typo_textfilter_markdown/tasks
|
1143
|
+
- vendor/plugins/typo_textfilter_markdown/test
|
1144
|
+
- vendor/plugins/typo_textfilter_markdown/lib/typo_textfilter_markdown.rb
|
1145
|
+
- vendor/plugins/typo_textfilter_markdown/tasks/typo_textfilter_markdown_tasks.rake
|
1146
|
+
- vendor/plugins/typo_textfilter_markdown/test/typo_textfilter_markdown_test.rb
|
1147
|
+
- vendor/plugins/typo_textfilter_none/init.rb
|
1148
|
+
- vendor/plugins/typo_textfilter_none/install.rb
|
1149
|
+
- vendor/plugins/typo_textfilter_none/lib
|
1150
|
+
- vendor/plugins/typo_textfilter_none/Rakefile
|
1151
|
+
- vendor/plugins/typo_textfilter_none/README
|
1152
|
+
- vendor/plugins/typo_textfilter_none/tasks
|
1153
|
+
- vendor/plugins/typo_textfilter_none/test
|
1154
|
+
- vendor/plugins/typo_textfilter_none/lib/typo_textfilter_none.rb
|
1155
|
+
- vendor/plugins/typo_textfilter_none/tasks/typo_textfilter_none_tasks.rake
|
1156
|
+
- vendor/plugins/typo_textfilter_none/test/typo_textfilter_none_test.rb
|
1157
|
+
- vendor/plugins/typo_textfilter_smartypants/init.rb
|
1158
|
+
- vendor/plugins/typo_textfilter_smartypants/install.rb
|
1159
|
+
- vendor/plugins/typo_textfilter_smartypants/lib
|
1160
|
+
- vendor/plugins/typo_textfilter_smartypants/Rakefile
|
1161
|
+
- vendor/plugins/typo_textfilter_smartypants/README
|
1162
|
+
- vendor/plugins/typo_textfilter_smartypants/tasks
|
1163
|
+
- vendor/plugins/typo_textfilter_smartypants/test
|
1164
|
+
- vendor/plugins/typo_textfilter_smartypants/lib/typo_textfilter_smartypants.rb
|
1165
|
+
- vendor/plugins/typo_textfilter_smartypants/tasks/typo_textfilter_smartypants_tasks.rake
|
1166
|
+
- vendor/plugins/typo_textfilter_smartypants/test/typo_textfilter_smartypants_test.rb
|
1167
|
+
- vendor/plugins/typo_textfilter_sparkline/init.rb
|
1168
|
+
- vendor/plugins/typo_textfilter_sparkline/install.rb
|
1169
|
+
- vendor/plugins/typo_textfilter_sparkline/lib
|
1170
|
+
- vendor/plugins/typo_textfilter_sparkline/Rakefile
|
1171
|
+
- vendor/plugins/typo_textfilter_sparkline/README
|
1172
|
+
- vendor/plugins/typo_textfilter_sparkline/tasks
|
1173
|
+
- vendor/plugins/typo_textfilter_sparkline/test
|
1174
|
+
- vendor/plugins/typo_textfilter_sparkline/lib/typo_textfilter_sparkline.rb
|
1175
|
+
- vendor/plugins/typo_textfilter_sparkline/tasks/typo_textfilter_sparkline_tasks.rake
|
1176
|
+
- vendor/plugins/typo_textfilter_sparkline/test/typo_textfilter_sparkline_test.rb
|
1177
|
+
- vendor/plugins/typo_textfilter_textile/init.rb
|
1178
|
+
- vendor/plugins/typo_textfilter_textile/install.rb
|
1179
|
+
- vendor/plugins/typo_textfilter_textile/lib
|
1180
|
+
- vendor/plugins/typo_textfilter_textile/Rakefile
|
1181
|
+
- vendor/plugins/typo_textfilter_textile/README
|
1182
|
+
- vendor/plugins/typo_textfilter_textile/tasks
|
1183
|
+
- vendor/plugins/typo_textfilter_textile/test
|
1184
|
+
- vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb
|
1185
|
+
- vendor/plugins/typo_textfilter_textile/tasks/typo_textfilter_textile_tasks.rake
|
1186
|
+
- vendor/plugins/typo_textfilter_textile/test/typo_textfilter_textile_test.rb
|
1187
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/init.rb
|
1188
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/install.rb
|
1189
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/lib
|
1190
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/Rakefile
|
1191
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/README
|
1192
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/tasks
|
1193
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/test
|
1194
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/lib/typo_textfilter_textile_and_markdown.rb
|
1195
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/tasks/typo_textfilter_textile_and_markdown_tasks.rake
|
1196
|
+
- vendor/plugins/typo_textfilter_textile_and_markdown/test/typo_textfilter_textile_and_markdown_test.rb
|
1197
|
+
- vendor/plugins/typo_textfilter_tmcode/init.rb
|
1198
|
+
- vendor/plugins/typo_textfilter_tmcode/install.rb
|
1199
|
+
- vendor/plugins/typo_textfilter_tmcode/lib
|
1200
|
+
- vendor/plugins/typo_textfilter_tmcode/Rakefile
|
1201
|
+
- vendor/plugins/typo_textfilter_tmcode/README
|
1202
|
+
- vendor/plugins/typo_textfilter_tmcode/tasks
|
1203
|
+
- vendor/plugins/typo_textfilter_tmcode/test
|
1204
|
+
- vendor/plugins/typo_textfilter_tmcode/lib/typo_textfilter_tmcode.rb
|
1205
|
+
- vendor/plugins/typo_textfilter_tmcode/tasks/typo_textfilter_tmcode_tasks.rake
|
1206
|
+
- vendor/plugins/typo_textfilter_tmcode/test/typo_textfilter_tmcode_test.rb
|
1207
|
+
- vendor/plugins/upcoming_sidebar/init.rb
|
1208
|
+
- vendor/plugins/upcoming_sidebar/lib
|
1209
|
+
- vendor/plugins/upcoming_sidebar/Rakefile
|
1210
|
+
- vendor/plugins/upcoming_sidebar/test
|
1211
|
+
- vendor/plugins/upcoming_sidebar/views
|
1212
|
+
- vendor/plugins/upcoming_sidebar/lib/upcoming.rb
|
1213
|
+
- vendor/plugins/upcoming_sidebar/lib/upcoming_sidebar.rb
|
1214
|
+
- vendor/plugins/upcoming_sidebar/test/upcoming_sidebar_test.rb
|
1215
|
+
- vendor/plugins/upcoming_sidebar/views/content.rhtml
|
828
1216
|
- vendor/plugins/upload_progress/CHANGELOG
|
829
1217
|
- vendor/plugins/upload_progress/init.rb
|
830
1218
|
- vendor/plugins/upload_progress/lib
|
@@ -842,6 +1230,22 @@ files:
|
|
842
1230
|
- vendor/plugins/upload_progress/test/multipart_progress_testx.rb
|
843
1231
|
- vendor/plugins/upload_progress/test/upload_progress_helper_testx.rb
|
844
1232
|
- vendor/plugins/upload_progress/test/upload_progress_testx.rb
|
1233
|
+
- vendor/plugins/xbox_sidebar/init.rb
|
1234
|
+
- vendor/plugins/xbox_sidebar/lib
|
1235
|
+
- vendor/plugins/xbox_sidebar/Rakefile
|
1236
|
+
- vendor/plugins/xbox_sidebar/test
|
1237
|
+
- vendor/plugins/xbox_sidebar/views
|
1238
|
+
- vendor/plugins/xbox_sidebar/lib/xbox_sidebar.rb
|
1239
|
+
- vendor/plugins/xbox_sidebar/test/xbox_sidebar_test.rb
|
1240
|
+
- vendor/plugins/xbox_sidebar/views/content.rhtml
|
1241
|
+
- vendor/plugins/xml_sidebar/init.rb
|
1242
|
+
- vendor/plugins/xml_sidebar/lib
|
1243
|
+
- vendor/plugins/xml_sidebar/Rakefile
|
1244
|
+
- vendor/plugins/xml_sidebar/test
|
1245
|
+
- vendor/plugins/xml_sidebar/views
|
1246
|
+
- vendor/plugins/xml_sidebar/lib/xml_sidebar.rb
|
1247
|
+
- vendor/plugins/xml_sidebar/test/xml_sidebar_test.rb
|
1248
|
+
- vendor/plugins/xml_sidebar/views/content.rhtml
|
845
1249
|
- vendor/redcloth/bin
|
846
1250
|
- vendor/redcloth/doc
|
847
1251
|
- vendor/redcloth/install.rb
|
@@ -1014,7 +1418,7 @@ dependencies:
|
|
1014
1418
|
requirements:
|
1015
1419
|
- - "="
|
1016
1420
|
- !ruby/object:Gem::Version
|
1017
|
-
version: 1.
|
1421
|
+
version: "1.2"
|
1018
1422
|
version:
|
1019
1423
|
- !ruby/object:Gem::Dependency
|
1020
1424
|
name: mongrel
|