typo 4.0.3 → 4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES-4.1 +83 -0
- data/MAINTAINERS +3 -7
- data/README +1 -1
- data/{components/sidebars/README → README.SIDEBARS} +3 -0
- data/Rakefile +1 -1
- data/TODO-4.1 +16 -0
- data/app/apis/blogger_service.rb +3 -3
- data/app/apis/meta_weblog_service.rb +4 -21
- data/app/apis/movable_type_service.rb +5 -5
- data/app/controllers/accounts_controller.rb +6 -3
- data/app/controllers/admin/blacklist_controller.rb +1 -1
- data/app/controllers/admin/cache_controller.rb +3 -7
- data/app/controllers/admin/content_controller.rb +46 -24
- data/app/controllers/admin/feedback_controller.rb +3 -3
- data/app/controllers/admin/general_controller.rb +3 -3
- data/app/controllers/admin/pages_controller.rb +7 -3
- data/app/controllers/admin/sidebar_controller.rb +19 -26
- data/app/controllers/admin/textfilters_controller.rb +3 -1
- data/app/controllers/admin/themes_controller.rb +1 -1
- data/app/controllers/admin/users_controller.rb +1 -1
- data/app/controllers/application.rb +25 -27
- data/app/controllers/articles_controller.rb +14 -18
- data/app/controllers/content_controller.rb +7 -7
- data/app/controllers/live_controller.rb +1 -1
- data/app/controllers/redirect_controller.rb +2 -0
- data/app/controllers/textfilter_controller.rb +0 -3
- data/app/controllers/theme_controller.rb +10 -5
- data/app/controllers/xml_controller.rb +7 -9
- data/app/helpers/admin/base_helper.rb +10 -5
- data/app/helpers/admin/content_helper.rb +6 -0
- data/app/helpers/admin/feedback_helper.rb +1 -1
- data/app/helpers/admin/pages_helper.rb +5 -0
- data/app/helpers/application_helper.rb +84 -51
- data/app/helpers/articles_helper.rb +29 -29
- data/app/helpers/mail_helper.rb +3 -2
- data/app/helpers/sidebar_helper.rb +25 -16
- data/app/helpers/xml_helper.rb +0 -16
- data/app/models/article.rb +90 -32
- data/app/models/blog.rb +82 -74
- data/app/models/blog_sweeper.rb +33 -8
- data/app/models/categorization.rb +4 -0
- data/app/models/category.rb +21 -4
- data/app/models/comment.rb +23 -21
- data/app/models/content.rb +106 -64
- data/app/models/content_state/base.rb +12 -3
- data/app/models/content_state/draft.rb +2 -3
- data/app/models/content_state/factory.rb +1 -1
- data/app/models/content_state/ham.rb +0 -1
- data/app/models/content_state/just_marked_as_ham.rb +8 -1
- data/app/models/content_state/just_marked_as_spam.rb +4 -1
- data/app/models/content_state/just_presumed_ham.rb +14 -14
- data/app/models/content_state/just_published.rb +11 -18
- data/app/models/content_state/just_withdrawn.rb +11 -0
- data/app/models/content_state/new.rb +0 -1
- data/app/models/content_state/presumed_ham.rb +9 -3
- data/app/models/content_state/presumed_spam.rb +4 -1
- data/app/models/content_state/publication_pending.rb +4 -4
- data/app/models/content_state/published.rb +7 -8
- data/app/models/content_state/spam.rb +0 -1
- data/app/models/content_state/unclassified.rb +12 -3
- data/app/models/content_state/withdrawn.rb +5 -6
- data/app/models/email_notifier.rb +1 -1
- data/app/models/feedback.rb +31 -11
- data/app/models/notification.rb +4 -0
- data/app/models/notification_mailer.rb +8 -8
- data/app/models/page.rb +19 -5
- data/app/models/ping.rb +27 -40
- data/app/models/sidebar.rb +241 -11
- data/app/models/tag.rb +12 -1
- data/app/models/text_filter.rb +33 -39
- data/app/models/theme.rb +9 -0
- data/app/models/trackback.rb +1 -5
- data/app/models/user.rb +7 -5
- data/app/views/accounts/login.rhtml +19 -15
- data/app/views/accounts/logout.rhtml +4 -4
- data/app/views/accounts/signup.rhtml +9 -9
- data/app/views/admin/base/_recent_comments.rhtml +2 -2
- data/app/views/admin/base/_recent_trackbacks.rhtml +2 -2
- data/app/views/admin/blacklist/_blacklist_patterns.rhtml +4 -4
- data/app/views/admin/blacklist/_form.rhtml +3 -3
- data/app/views/admin/blacklist/_quick_post.rhtml +7 -6
- data/app/views/admin/blacklist/destroy.rhtml +5 -5
- data/app/views/admin/blacklist/edit.rhtml +7 -7
- data/app/views/admin/blacklist/list.rhtml +2 -2
- data/app/views/admin/cache/list.rhtml +2 -2
- data/app/views/admin/categories/_categories.rhtml +3 -3
- data/app/views/admin/categories/_form.rhtml +1 -1
- data/app/views/admin/categories/_quick_post.rhtml +5 -5
- data/app/views/admin/categories/destroy.rhtml +7 -7
- data/app/views/admin/categories/edit.rhtml +6 -6
- data/app/views/admin/categories/list.rhtml +7 -4
- data/app/views/admin/categories/reorder.rhtml +1 -1
- data/app/views/admin/categories/show.rhtml +6 -6
- data/app/views/admin/comments/_form.rhtml +4 -4
- data/app/views/admin/comments/comments.rhtml +1 -1
- data/app/views/admin/comments/destroy.rhtml +6 -6
- data/app/views/admin/comments/edit.rhtml +8 -8
- data/app/views/admin/comments/list.rhtml +11 -11
- data/app/views/admin/comments/new.rhtml +7 -7
- data/app/views/admin/comments/show.rhtml +7 -7
- data/app/views/admin/content/_articles.rhtml +12 -10
- data/app/views/admin/content/_attachment.rhtml +15 -17
- data/app/views/admin/content/_form.rhtml +68 -45
- data/app/views/admin/content/_pages.rhtml +2 -2
- data/app/views/admin/content/_quick_post.rhtml +6 -6
- data/app/views/admin/content/_show_categories.rhtml +2 -2
- data/app/views/admin/content/_show_resources.rhtml +2 -2
- data/app/views/admin/content/destroy.rhtml +8 -8
- data/app/views/admin/content/edit.rhtml +8 -26
- data/app/views/admin/content/list.rhtml +4 -4
- data/app/views/admin/content/new.rhtml +5 -25
- data/app/views/admin/content/preview.rhtml +9 -2
- data/app/views/admin/content/show.rhtml +10 -9
- data/app/views/admin/feedback/_item.rhtml +2 -2
- data/app/views/admin/feedback/list.rhtml +21 -20
- data/app/views/admin/general/index.rhtml +261 -239
- data/app/views/admin/general/update_database.rhtml +15 -15
- data/app/views/admin/pages/_form.rhtml +32 -15
- data/app/views/admin/pages/_pages.rhtml +9 -8
- data/app/views/admin/pages/_quick_post.rhtml +2 -2
- data/app/views/admin/pages/destroy.rhtml +7 -7
- data/app/views/admin/pages/edit.rhtml +7 -26
- data/app/views/admin/pages/list.rhtml +4 -3
- data/app/views/admin/pages/new.rhtml +5 -22
- data/app/views/admin/pages/preview.rhtml +1 -1
- data/app/views/admin/pages/show.rhtml +5 -5
- data/app/views/admin/resources/_itunes_category_edit.rhtml +2 -2
- data/app/views/admin/resources/_metadata_add.rhtml +13 -13
- data/app/views/admin/resources/_metadata_edit.rhtml +14 -14
- data/app/views/admin/resources/_mime_edit.rhtml +5 -5
- data/app/views/admin/resources/_pages.rhtml +2 -2
- data/app/views/admin/resources/_resources.rhtml +8 -8
- data/app/views/admin/resources/destroy.rhtml +7 -7
- data/app/views/admin/resources/list.rhtml +6 -3
- data/app/views/admin/resources/new.rhtml +7 -3
- data/app/views/admin/shared/_edit.rhtml +17 -0
- data/app/views/admin/sidebar/_active.rhtml +5 -5
- data/app/views/admin/sidebar/_availables.rhtml +1 -1
- data/app/views/admin/sidebar/_publish.rhtml +1 -1
- data/app/views/admin/sidebar/_target.rhtml +1 -1
- data/app/views/admin/sidebar/index.rhtml +9 -5
- data/app/views/admin/textfilters/_form.rhtml +13 -5
- data/app/views/admin/textfilters/_macros.rhtml +4 -4
- data/app/views/admin/textfilters/_textfilters.rhtml +6 -6
- data/app/views/admin/textfilters/destroy.rhtml +5 -8
- data/app/views/admin/textfilters/edit.rhtml +2 -5
- data/app/views/admin/textfilters/list.rhtml +4 -2
- data/app/views/admin/textfilters/macro_help.rhtml +1 -1
- data/app/views/admin/textfilters/new.rhtml +9 -7
- data/app/views/admin/textfilters/show.rhtml +5 -5
- data/app/views/admin/textfilters/show_help.rhtml +3 -3
- data/app/views/admin/themes/index.rhtml +8 -2
- data/app/views/admin/trackbacks/_form.rhtml +4 -4
- data/app/views/admin/trackbacks/destroy.rhtml +4 -4
- data/app/views/admin/trackbacks/edit.rhtml +6 -6
- data/app/views/admin/trackbacks/list.rhtml +10 -10
- data/app/views/admin/trackbacks/new.rhtml +6 -6
- data/app/views/admin/trackbacks/show.rhtml +8 -8
- data/app/views/admin/users/_form.rhtml +10 -10
- data/app/views/admin/users/_user.rhtml +6 -6
- data/app/views/admin/users/destroy.rhtml +7 -7
- data/app/views/admin/users/edit.rhtml +9 -5
- data/app/views/admin/users/list.rhtml +2 -2
- data/app/views/admin/users/new.rhtml +9 -7
- data/app/views/admin/users/show.rhtml +10 -10
- data/app/views/articles/_article.rhtml +3 -3
- data/app/views/articles/_comment.rhtml +3 -3
- data/app/views/articles/_comment_box.rhtml +6 -6
- data/app/views/articles/_trackback.rhtml +1 -1
- data/app/views/articles/archives.rhtml +3 -3
- data/app/views/articles/comment_preview.rhtml +2 -2
- data/app/views/articles/groupings.rhtml +1 -1
- data/app/views/articles/index.rhtml +2 -2
- data/app/views/articles/read.rhtml +15 -15
- data/app/views/articles/view_page.rhtml +1 -1
- data/app/views/layouts/administration.rhtml +11 -17
- data/app/views/layouts/minimal.rhtml +13 -0
- data/app/views/live/search.rhtml +1 -1
- data/app/views/notification_mailer/_mail_footer.rhtml +2 -2
- data/app/views/notification_mailer/article.rhtml +1 -1
- data/app/views/notification_mailer/comment.rhtml +4 -4
- data/app/views/settings/done.rhtml +1 -1
- data/app/views/settings/install.rhtml +3 -3
- data/app/views/shared/_search.rhtml +4 -4
- data/app/views/xml/_atom10_item_article.rxml +9 -7
- data/app/views/xml/_atom10_item_comment.rxml +2 -3
- data/app/views/xml/_atom10_item_trackback.rxml +1 -1
- data/app/views/xml/_googlesitemap_item_article.rxml +2 -2
- data/app/views/xml/_googlesitemap_item_category.rxml +1 -1
- data/app/views/xml/_googlesitemap_item_page.rxml +2 -2
- data/app/views/xml/_googlesitemap_item_tag.rxml +2 -2
- data/app/views/xml/_itunes_item_resource.rxml +2 -4
- data/app/views/xml/_rss20_item_article.rxml +4 -10
- data/app/views/xml/_rss20_item_comment.rxml +2 -2
- data/app/views/xml/rsd.rxml +4 -4
- data/bin/typo +0 -1
- data/config/boot.rb +4 -3
- data/config/environment.rb +37 -28
- data/config/environments/test.rb +1 -1
- data/config/routes.rb +6 -5
- data/db/migrate/051_fix_canonical_server_url.rb +17 -0
- data/db/migrate/052_remove_cached_html.rb +11 -0
- data/db/migrate/053_promote_canonical_server_url.rb +22 -0
- data/db/migrate/054_upgrade_sidebar_objects.rb +26 -0
- data/db/migrate/055_link_sidebars_to_blog.rb +17 -0
- data/db/migrate/056_create_notifications.rb +32 -0
- data/db/migrate/057_add_categorization_model.rb +45 -0
- data/db/migrate/058_separate_entries_and_feedback.rb +68 -0
- data/db/migrate/059_cleanup_feedback_table.rb +25 -0
- data/db/migrate/060_cleanup_contents_table.rb +29 -0
- data/db/migrate/061_convert_title_prefix_setting.rb +25 -0
- data/db/schema.mysql.sql +139 -108
- data/db/schema.postgresql.sql +140 -108
- data/db/schema.rb +97 -75
- data/db/schema.sqlite.sql +140 -108
- data/db/schema.sqlserver.sql +144 -109
- data/db/schema_version +1 -1
- data/lang/fr_FR.rb +469 -0
- data/lib/email_notify.rb +4 -4
- data/lib/generators/sidebar/sidebar_generator.rb +15 -6
- data/lib/generators/sidebar/templates/Rakefile +22 -0
- data/lib/generators/sidebar/templates/content.rhtml +10 -0
- data/lib/generators/sidebar/templates/init.rb +4 -0
- data/lib/generators/sidebar/templates/sidebar.rb +16 -0
- data/lib/generators/sidebar/templates/unit_test.rb +8 -0
- data/lib/jabber_notify.rb +8 -7
- data/lib/memory_profiler.rb +60 -0
- data/lib/rails_patch/active_record.rb +0 -27
- data/lib/route_cache.rb +15 -0
- data/lib/sidebars/component_plugin.rb +3 -0
- data/lib/sidebars/consolidated_plugin.rb +26 -0
- data/lib/sidebars/plugin.rb +8 -13
- data/lib/spam_protection.rb +35 -23
- data/lib/tasks/release.rake +7 -7
- data/lib/text_filter_plugin.rb +55 -15
- data/lib/typo_deprecated.rb +19 -0
- data/lib/typo_version.rb +1 -1
- data/public/images/bracket.gif +0 -0
- data/public/images/cancel.png +0 -0
- data/public/images/checked.png +0 -0
- data/public/images/delete.png +0 -0
- data/public/images/edit.png +0 -0
- data/public/images/help.png +0 -0
- data/public/images/show.png +0 -0
- data/public/javascripts/codecollapse.js +8 -0
- data/public/javascripts/controls.js +41 -23
- data/public/javascripts/dragdrop.js +105 -76
- data/public/javascripts/effects.js +293 -163
- data/public/javascripts/prototype.js +900 -391
- data/public/stylesheets/administration.css +390 -318
- data/public/stylesheets/codecollapse.css +3 -0
- data/public/stylesheets/minimal.css +142 -0
- data/public/stylesheets/textmate/dawn.css +209 -0
- data/public/stylesheets/textmate/iplastic.css +142 -0
- data/public/stylesheets/textmate/space_cadet.css +99 -0
- data/public/stylesheets/textmate/textmate.css +48 -0
- data/public/stylesheets/textmate/twilight.css +227 -0
- data/script/process/inspector +3 -0
- data/spec/controllers/accounts_controller_spec.rb +184 -0
- data/spec/controllers/articles_controller_spec.rb +47 -0
- data/spec/fixtures/articles_tags.yml +19 -0
- data/spec/fixtures/blacklist_patterns.yml +10 -0
- data/spec/fixtures/blogs.yml +77 -0
- data/spec/fixtures/categories.yml +35 -0
- data/{test/fixtures/articles_categories.yml → spec/fixtures/categorizations.yml} +0 -0
- data/spec/fixtures/contents.yml +215 -0
- data/spec/fixtures/feedback.yml +159 -0
- data/spec/fixtures/notifications.yml +0 -0
- data/spec/fixtures/page_caches.yml +7 -0
- data/spec/fixtures/redirects.yml +13 -0
- data/spec/fixtures/resources.yml +24 -0
- data/spec/fixtures/sidebars.yml +12 -0
- data/spec/fixtures/tags.yml +13 -0
- data/spec/fixtures/text_filters.yml +42 -0
- data/spec/fixtures/triggers.yml +1 -0
- data/spec/fixtures/users.yml +56 -0
- data/spec/fixtures/whiteboards.yml +13 -0
- data/spec/helpers/admin_base_helper_spec.rb +13 -0
- data/spec/models/amazon_sidebar_spec.rb +40 -0
- data/spec/models/audioscrobbler_spec.rb +134 -0
- data/spec/models/blog_spec.rb +28 -0
- data/spec/models/cache_support_spec.rb +55 -0
- data/spec/models/category_spec.rb +48 -0
- data/spec/models/configuration_spec.rb +108 -0
- data/spec/models/content_state_spec.rb +1010 -0
- data/spec/models/delegate_to_content_state_spec.rb +126 -0
- data/spec/models/delicious_spec.rb +101 -0
- data/spec/models/flickr_spec.rb +128 -0
- data/spec/models/metafragment_spec.rb +65 -0
- data/spec/models/page_cache_spec.rb +35 -0
- data/spec/models/page_spec.rb +88 -0
- data/spec/models/ping_spec.rb +133 -0
- data/spec/models/redirect_spec.rb +17 -0
- data/spec/models/resource_spec.rb +43 -0
- data/spec/models/static_sidebar_spec.rb +17 -0
- data/spec/models/tag_spec.rb +54 -0
- data/spec/models/text_filter_spec.rb +38 -0
- data/spec/models/theme_spec.rb +45 -0
- data/spec/models/trackback_spec.rb +60 -0
- data/spec/models/trigger_spec.rb +41 -0
- data/spec/models/user_spec.rb +105 -0
- data/test/fixtures/blogs.yml +5 -4
- data/test/fixtures/categorizations.yml +31 -0
- data/test/fixtures/contents.yml +2 -160
- data/test/fixtures/feedback.yml +159 -0
- data/test/fixtures/sidebars.yml +11 -4
- data/test/functional/accounts_controller_test.rb +6 -10
- data/test/functional/admin/article_preview_test.rb +21 -6
- data/test/functional/admin/blacklist_controller_test.rb +11 -11
- data/test/functional/admin/categories_controller_test.rb +13 -13
- data/test/functional/admin/comments_controller_test.rb +21 -21
- data/test/functional/admin/content_controller_test.rb +30 -38
- data/test/functional/admin/feedback_controller_test.rb +12 -12
- data/test/functional/admin/general_controller_test.rb +2 -2
- data/test/functional/admin/pages_controller_test.rb +3 -18
- data/test/functional/admin/resources_controller_test.rb +7 -7
- data/test/functional/admin/textfilters_controller_test.rb +2 -2
- data/test/functional/admin/themes_controller_test.rb +1 -1
- data/test/functional/admin/trackbacks_controller_test.rb +21 -21
- data/test/functional/admin/users_controller_test.rb +21 -18
- data/test/functional/articles_controller_test.rb +62 -46
- data/test/functional/backend_controller_test.rb +6 -6
- data/test/functional/redirect_controller_test.rb +3 -3
- data/test/functional/textfilter_controller_test.rb +10 -12
- data/test/functional/theme_controller_test.rb +1 -1
- data/test/functional/xml_controller_test.rb +7 -5
- data/test/mocks/themes/azure/layouts/default.rhtml +2 -2
- data/test/test_helper.rb +75 -0
- data/test/unit/amazon_sidebar_test.rb +36 -0
- data/test/unit/article_test.rb +36 -4
- data/test/unit/blog_test.rb +5 -36
- data/test/unit/cache_support_test.rb +62 -0
- data/test/unit/category_test.rb +6 -1
- data/test/unit/comment_test.rb +34 -9
- data/test/unit/content_state/factory_test.rb +8 -0
- data/test/unit/content_state/feedback_states_test.rb +71 -0
- data/test/unit/magnolia_test.rb +1 -1
- data/test/unit/notification_test.rb +10 -0
- data/test/unit/page_test.rb +20 -0
- data/test/unit/ping_test.rb +1 -1
- data/test/unit/sidebar_test.rb +2 -7
- data/test/unit/static_sidebar_test.rb +19 -0
- data/test/unit/tag_test.rb +6 -1
- data/test/unit/text_filter_test.rb +21 -21
- data/test/unit/theme_test.rb +1 -1
- data/test/unit/trackback_test.rb +16 -1
- data/themes/azure/layouts/default.rhtml +2 -2
- data/themes/scribbish/layouts/default.rhtml +2 -2
- data/themes/scribbish/stylesheets/content.css +6 -8
- data/themes/scribbish/views/articles/_article.rhtml +10 -10
- data/themes/scribbish/views/articles/_comment.rhtml +16 -12
- data/themes/scribbish/views/articles/_comment_form.rhtml +25 -22
- data/themes/scribbish/views/articles/_search.rhtml +14 -13
- data/themes/scribbish/views/articles/comment_preview.rhtml +3 -3
- data/themes/scribbish/views/articles/index.rhtml +1 -1
- data/themes/scribbish/views/articles/read.rhtml +8 -8
- data/vendor/cached_model/History.txt +30 -0
- data/vendor/cached_model/LICENSE.txt +30 -0
- data/vendor/cached_model/Manifest.txt +7 -0
- data/vendor/cached_model/README.txt +96 -0
- data/vendor/cached_model/Rakefile +25 -0
- data/vendor/cached_model/lib/cached_model.rb +287 -0
- data/vendor/cached_model/test/test_cached_model.rb +593 -0
- data/vendor/flickr/flickr.rb +1 -1
- data/vendor/memcache-client/History.txt +25 -0
- data/vendor/memcache-client/LICENSE.txt +30 -0
- data/vendor/memcache-client/Manifest.txt +8 -0
- data/vendor/memcache-client/README.txt +46 -0
- data/vendor/memcache-client/Rakefile +23 -0
- data/vendor/memcache-client/lib/memcache.rb +491 -0
- data/vendor/memcache-client/lib/memcache_util.rb +71 -0
- data/vendor/memcache-client/test/test_mem_cache.rb +284 -0
- data/vendor/plugins/action_view_patch/Rakefile +22 -0
- data/vendor/plugins/action_view_patch/init.rb +1 -0
- data/vendor/plugins/action_view_patch/lib/action_view_patch.rb +18 -0
- data/vendor/plugins/action_view_patch/test/action_view_patch_test.rb +56 -0
- data/vendor/plugins/aimpresence_sidebar/Rakefile +22 -0
- data/vendor/plugins/aimpresence_sidebar/init.rb +4 -0
- data/vendor/plugins/aimpresence_sidebar/lib/aimpresence_sidebar.rb +21 -0
- data/vendor/plugins/aimpresence_sidebar/test/aimpresence_sidebar_test.rb +33 -0
- data/vendor/plugins/aimpresence_sidebar/views/content.rhtml +4 -0
- data/vendor/plugins/amazon_sidebar/init.rb +5 -0
- data/vendor/plugins/amazon_sidebar/lib/amazon_sidebar.rb +16 -0
- data/vendor/plugins/amazon_sidebar/views/content.rhtml +4 -0
- data/vendor/plugins/archives_sidebar/Rakefile +22 -0
- data/vendor/plugins/archives_sidebar/init.rb +5 -0
- data/{components/plugins/sidebars/archives_controller.rb → vendor/plugins/archives_sidebar/lib/archives_sidebar.rb} +7 -6
- data/vendor/plugins/archives_sidebar/test/archives_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/archives → vendor/plugins/archives_sidebar/views}/content.rhtml +2 -2
- data/vendor/plugins/audioscrobbler_sidebar/Rakefile +22 -0
- data/vendor/plugins/audioscrobbler_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/audioscrobbler_sidebar/lib}/audioscrobbler.rb +0 -0
- data/{components/plugins/sidebars/audioscrobbler_controller.rb → vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb} +7 -4
- data/vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/audioscrobbler → vendor/plugins/audioscrobbler_sidebar/views}/content.rhtml +4 -4
- data/vendor/plugins/backpack_sidebar/Rakefile +22 -0
- data/vendor/plugins/backpack_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/backpack_sidebar/lib}/backpack.rb +0 -0
- data/{components/plugins/sidebars/backpack_controller.rb → vendor/plugins/backpack_sidebar/lib/backpack_sidebar.rb} +6 -3
- data/vendor/plugins/backpack_sidebar/test/backpack_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/backpack → vendor/plugins/backpack_sidebar/views}/content.rhtml +4 -4
- data/vendor/plugins/category_sidebar/Rakefile +22 -0
- data/vendor/plugins/category_sidebar/init.rb +5 -0
- data/{components/plugins/sidebars/category_controller.rb → vendor/plugins/category_sidebar/lib/category_sidebar.rb} +3 -5
- data/vendor/plugins/category_sidebar/test/category_sidebar_test.rb +8 -0
- data/vendor/plugins/category_sidebar/views/content.rhtml +10 -0
- data/vendor/plugins/delicious_sidebar/Rakefile +22 -0
- data/vendor/plugins/delicious_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/delicious_sidebar/lib}/delicious.rb +0 -0
- data/{components/plugins/sidebars/delicious_controller.rb → vendor/plugins/delicious_sidebar/lib/delicious_sidebar.rb} +16 -10
- data/vendor/plugins/delicious_sidebar/test/delicious_sidebar_test.rb +8 -0
- data/vendor/plugins/delicious_sidebar/views/content.rhtml +20 -0
- data/vendor/plugins/flickr_sidebar/Rakefile +22 -0
- data/vendor/plugins/flickr_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/flickr_sidebar/lib}/flickr.rb +1 -1
- data/vendor/plugins/flickr_sidebar/lib/flickr_sidebar.rb +15 -0
- data/vendor/plugins/flickr_sidebar/test/flickr_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/flickr → vendor/plugins/flickr_sidebar/views}/content.rhtml +5 -5
- data/vendor/plugins/fortythree_sidebar/Rakefile +22 -0
- data/vendor/plugins/fortythree_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/fortythree_sidebar/lib}/fortythree.rb +0 -0
- data/{components/plugins/sidebars/fortythree_controller.rb → vendor/plugins/fortythree_sidebar/lib/fortythree_sidebar.rb} +5 -4
- data/vendor/plugins/fortythree_sidebar/test/fortythree_sidebar_test.rb +8 -0
- data/vendor/plugins/fortythree_sidebar/views/content.rhtml +8 -0
- data/vendor/plugins/fortythreeplaces_sidebar/Rakefile +22 -0
- data/vendor/plugins/fortythreeplaces_sidebar/init.rb +5 -0
- data/vendor/plugins/fortythreeplaces_sidebar/lib/fortythree.rb +62 -0
- data/{components/plugins/sidebars/fortythreeplaces_controller.rb → vendor/plugins/fortythreeplaces_sidebar/lib/fortythreeplaces_sidebar.rb} +5 -4
- data/vendor/plugins/fortythreeplaces_sidebar/test/fortythreeplaces_sidebar_test.rb +8 -0
- data/vendor/plugins/fortythreeplaces_sidebar/views/content.rhtml +8 -0
- data/vendor/plugins/haml/MIT-LICENSE +20 -0
- data/vendor/plugins/haml/REFERENCE +662 -0
- data/vendor/plugins/haml/Rakefile +171 -0
- data/vendor/plugins/haml/VERSION +1 -0
- data/vendor/plugins/haml/bin/haml +18 -0
- data/vendor/plugins/haml/init.rb +3 -0
- data/vendor/plugins/haml/lib/haml/buffer.rb +224 -0
- data/vendor/plugins/haml/lib/haml/engine.rb +557 -0
- data/vendor/plugins/haml/lib/haml/helpers.rb +220 -0
- data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +54 -0
- data/vendor/plugins/haml/lib/haml/template.rb +138 -0
- data/vendor/plugins/haml/test/benchmark.rb +62 -0
- data/vendor/plugins/haml/test/engine_test.rb +93 -0
- data/vendor/plugins/haml/test/helper_test.rb +105 -0
- data/vendor/plugins/haml/test/mocks/article.rb +6 -0
- data/vendor/plugins/haml/test/profile.rb +45 -0
- data/vendor/plugins/haml/test/results/content_for_layout.xhtml +16 -0
- data/vendor/plugins/haml/test/results/eval_suppressed.xhtml +2 -0
- data/vendor/plugins/haml/test/results/helpers.xhtml +50 -0
- data/vendor/plugins/haml/test/results/helpful.xhtml +5 -0
- data/vendor/plugins/haml/test/results/just_stuff.xhtml +38 -0
- data/vendor/plugins/haml/test/results/list.xhtml +12 -0
- data/vendor/plugins/haml/test/results/original_engine.xhtml +24 -0
- data/vendor/plugins/haml/test/results/partials.xhtml +20 -0
- data/vendor/plugins/haml/test/results/silent_script.xhtml +74 -0
- data/vendor/plugins/haml/test/results/standard.xhtml +42 -0
- data/vendor/plugins/haml/test/results/tag_parsing.xhtml +28 -0
- data/vendor/plugins/haml/test/results/very_basic.xhtml +7 -0
- data/vendor/plugins/haml/test/results/whitespace_handling.xhtml +51 -0
- data/vendor/plugins/haml/test/rhtml/standard.rhtml +51 -0
- data/vendor/plugins/haml/test/runner.rb +15 -0
- data/vendor/plugins/haml/test/template_test.rb +137 -0
- data/vendor/plugins/haml/test/templates/_partial.haml +7 -0
- data/vendor/plugins/haml/test/templates/_text_area.haml +3 -0
- data/vendor/plugins/haml/test/templates/content_for_layout.haml +10 -0
- data/vendor/plugins/haml/test/templates/eval_suppressed.haml +5 -0
- data/vendor/plugins/haml/test/templates/helpers.haml +39 -0
- data/vendor/plugins/haml/test/templates/helpful.haml +6 -0
- data/vendor/plugins/haml/test/templates/just_stuff.haml +34 -0
- data/vendor/plugins/haml/test/templates/list.haml +12 -0
- data/vendor/plugins/haml/test/templates/original_engine.haml +17 -0
- data/vendor/plugins/haml/test/templates/partialize.haml +1 -0
- data/vendor/plugins/haml/test/templates/partials.haml +12 -0
- data/vendor/plugins/haml/test/templates/silent_script.haml +40 -0
- data/vendor/plugins/haml/test/templates/standard.haml +40 -0
- data/vendor/plugins/haml/test/templates/tag_parsing.haml +24 -0
- data/vendor/plugins/haml/test/templates/very_basic.haml +4 -0
- data/vendor/plugins/haml/test/templates/whitespace_handling.haml +66 -0
- data/vendor/plugins/localization/CHANGELOG +1 -0
- data/vendor/plugins/localization/README +85 -0
- data/vendor/plugins/localization/init.rb +3 -0
- data/vendor/plugins/localization/lib/localization.rb +46 -0
- data/vendor/plugins/magnolia_sidebar/Rakefile +22 -0
- data/vendor/plugins/magnolia_sidebar/init.rb +5 -0
- data/{app/models/aggregations/magnolia.rb → vendor/plugins/magnolia_sidebar/lib/magnolia_aggregation.rb} +0 -0
- data/vendor/plugins/magnolia_sidebar/lib/magnolia_sidebar.rb +16 -0
- data/vendor/plugins/magnolia_sidebar/test/magnolia_sidebar_test.rb +8 -0
- data/vendor/plugins/magnolia_sidebar/views/content.rhtml +12 -0
- data/vendor/plugins/recent_comments_sidebar/Rakefile +22 -0
- data/vendor/plugins/recent_comments_sidebar/init.rb +5 -0
- data/vendor/plugins/recent_comments_sidebar/lib/recent_comments_sidebar.rb +16 -0
- data/vendor/plugins/recent_comments_sidebar/test/recent_comments_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/recent_comments → vendor/plugins/recent_comments_sidebar/views}/content.rhtml +2 -2
- data/vendor/plugins/static_sidebar/init.rb +4 -0
- data/{components/plugins/sidebars/static_controller.rb → vendor/plugins/static_sidebar/lib/static_sidebar.rb} +4 -7
- data/vendor/plugins/static_sidebar/views/content.rhtml +2 -0
- data/vendor/plugins/tada_sidebar/Rakefile +22 -0
- data/vendor/plugins/tada_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/tada_sidebar/lib}/tada.rb +0 -0
- data/{components/plugins/sidebars/tada_controller.rb → vendor/plugins/tada_sidebar/lib/tada_sidebar.rb} +8 -4
- data/vendor/plugins/tada_sidebar/test/tada_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/tada → vendor/plugins/tada_sidebar/views}/content.rhtml +4 -4
- data/vendor/plugins/tag_sidebar/Rakefile +22 -0
- data/vendor/plugins/tag_sidebar/init.rb +5 -0
- data/vendor/plugins/tag_sidebar/lib/tag_sidebar.rb +24 -0
- data/vendor/plugins/tag_sidebar/test/tag_sidebar_test.rb +8 -0
- data/vendor/plugins/tag_sidebar/views/content.rhtml +8 -0
- data/vendor/plugins/technorati_sidebar/Rakefile +22 -0
- data/vendor/plugins/technorati_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/technorati_sidebar/lib}/technorati.rb +0 -0
- data/{components/plugins/sidebars/technorati_controller.rb → vendor/plugins/technorati_sidebar/lib/technorati_sidebar.rb} +8 -4
- data/vendor/plugins/technorati_sidebar/test/technorati_sidebar_test.rb +8 -0
- data/vendor/plugins/technorati_sidebar/views/content.rhtml +8 -0
- data/vendor/plugins/typo_textfilter_amazon/README +5 -0
- data/vendor/plugins/typo_textfilter_amazon/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_amazon/init.rb +4 -0
- data/vendor/plugins/typo_textfilter_amazon/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_amazon/lib/typo_textfilter_amazon.rb +45 -0
- data/vendor/plugins/typo_textfilter_amazon/tasks/typo_textfilter_amazon_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_amazon/test/typo_textfilter_amazon_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_code/README +4 -0
- data/vendor/plugins/typo_textfilter_code/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_code/init.rb +4 -0
- data/vendor/plugins/typo_textfilter_code/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_code/lib/typo_textfilter_code.rb +62 -0
- data/vendor/plugins/typo_textfilter_code/tasks/typo_textfilter_code_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_code/test/typo_textfilter_code_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_flickr/README +4 -0
- data/vendor/plugins/typo_textfilter_flickr/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_flickr/init.rb +4 -0
- data/vendor/plugins/typo_textfilter_flickr/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_flickr/lib/typo_textfilter_flickr.rb +79 -0
- data/vendor/plugins/typo_textfilter_flickr/tasks/typo_textfilter_flickr_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_flickr/test/typo_textfilter_flickr_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/README +4 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/lib/typo_textfilter_htmlfilter.rb +12 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/tasks/typo_textfilter_htmlfilter_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_htmlfilter/test/typo_textfilter_htmlfilter_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_lightbox/README +4 -0
- data/vendor/plugins/typo_textfilter_lightbox/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_lightbox/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_lightbox/install.rb +1 -0
- data/{components/plugins/textfilters/lightbox_controller.rb → vendor/plugins/typo_textfilter_lightbox/lib/typo_textfilter_lightbox.rb} +64 -61
- data/vendor/plugins/typo_textfilter_lightbox/tasks/typo_textfilter_lightbox_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_lightbox/test/typo_textfilter_lightbox_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_markdown/README +4 -0
- data/vendor/plugins/typo_textfilter_markdown/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_markdown/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_markdown/install.rb +1 -0
- data/{components/plugins/textfilters/markdown_controller.rb → vendor/plugins/typo_textfilter_markdown/lib/typo_textfilter_markdown.rb} +13 -9
- data/vendor/plugins/typo_textfilter_markdown/tasks/typo_textfilter_markdown_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_markdown/test/typo_textfilter_markdown_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_none/README +4 -0
- data/vendor/plugins/typo_textfilter_none/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_none/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_none/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_none/lib/typo_textfilter_none.rb +12 -0
- data/vendor/plugins/typo_textfilter_none/tasks/typo_textfilter_none_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_none/test/typo_textfilter_none_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_smartypants/README +4 -0
- data/vendor/plugins/typo_textfilter_smartypants/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_smartypants/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_smartypants/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_smartypants/lib/typo_textfilter_smartypants.rb +12 -0
- data/vendor/plugins/typo_textfilter_smartypants/tasks/typo_textfilter_smartypants_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_smartypants/test/typo_textfilter_smartypants_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_sparkline/README +4 -0
- data/vendor/plugins/typo_textfilter_sparkline/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_sparkline/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_sparkline/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_sparkline/lib/typo_textfilter_sparkline.rb +92 -0
- data/vendor/plugins/typo_textfilter_sparkline/tasks/typo_textfilter_sparkline_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_sparkline/test/typo_textfilter_sparkline_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_textile/README +4 -0
- data/vendor/plugins/typo_textfilter_textile/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_textile/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_textile/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb +18 -0
- data/vendor/plugins/typo_textfilter_textile/tasks/typo_textfilter_textile_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_textile/test/typo_textfilter_textile_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/README +4 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/init.rb +2 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/lib/typo_textfilter_textile_and_markdown.rb +12 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/tasks/typo_textfilter_textile_and_markdown_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_textile_and_markdown/test/typo_textfilter_textile_and_markdown_test.rb +8 -0
- data/vendor/plugins/typo_textfilter_tmcode/README +4 -0
- data/vendor/plugins/typo_textfilter_tmcode/Rakefile +22 -0
- data/vendor/plugins/typo_textfilter_tmcode/init.rb +3 -0
- data/vendor/plugins/typo_textfilter_tmcode/install.rb +1 -0
- data/vendor/plugins/typo_textfilter_tmcode/lib/typo_textfilter_tmcode.rb +86 -0
- data/vendor/plugins/typo_textfilter_tmcode/tasks/typo_textfilter_tmcode_tasks.rake +4 -0
- data/vendor/plugins/typo_textfilter_tmcode/test/typo_textfilter_tmcode_test.rb +8 -0
- data/vendor/plugins/upcoming_sidebar/Rakefile +22 -0
- data/vendor/plugins/upcoming_sidebar/init.rb +5 -0
- data/{app/models/aggregations → vendor/plugins/upcoming_sidebar/lib}/upcoming.rb +0 -0
- data/vendor/plugins/upcoming_sidebar/lib/upcoming_sidebar.rb +15 -0
- data/vendor/plugins/upcoming_sidebar/test/upcoming_sidebar_test.rb +8 -0
- data/{components/plugins/sidebars/upcoming → vendor/plugins/upcoming_sidebar/views}/content.rhtml +3 -3
- data/vendor/plugins/xbox_sidebar/Rakefile +22 -0
- data/vendor/plugins/xbox_sidebar/init.rb +5 -0
- data/{components/plugins/sidebars/xbox_controller.rb → vendor/plugins/xbox_sidebar/lib/xbox_sidebar.rb} +1 -1
- data/vendor/plugins/xbox_sidebar/test/xbox_sidebar_test.rb +8 -0
- data/vendor/plugins/xbox_sidebar/views/content.rhtml +2 -0
- data/vendor/plugins/xml_sidebar/Rakefile +22 -0
- data/vendor/plugins/xml_sidebar/init.rb +5 -0
- data/{components/plugins/sidebars/xml_controller.rb → vendor/plugins/xml_sidebar/lib/xml_sidebar.rb} +1 -1
- data/vendor/plugins/xml_sidebar/test/xml_sidebar_test.rb +8 -0
- data/vendor/plugins/xml_sidebar/views/content.rhtml +12 -0
- metadata +505 -101
- data/app/controllers/sidebar_controller.rb +0 -50
- data/app/models/content_observer.rb +0 -5
- data/components/plugins/sidebars/aimpresence/content.rhtml +0 -4
- data/components/plugins/sidebars/aimpresence_controller.rb +0 -10
- data/components/plugins/sidebars/amazon/content.rhtml +0 -4
- data/components/plugins/sidebars/amazon_controller.rb +0 -17
- data/components/plugins/sidebars/category/content.rhtml +0 -10
- data/components/plugins/sidebars/delicious/content.rhtml +0 -20
- data/components/plugins/sidebars/flickr_controller.rb +0 -16
- data/components/plugins/sidebars/fortythree/content.rhtml +0 -8
- data/components/plugins/sidebars/fortythreeplaces/content.rhtml +0 -8
- data/components/plugins/sidebars/magnolia/content.rhtml +0 -12
- data/components/plugins/sidebars/magnolia_controller.rb +0 -17
- data/components/plugins/sidebars/recent_comments_controller.rb +0 -23
- data/components/plugins/sidebars/static/content.rhtml +0 -2
- data/components/plugins/sidebars/tag/content.rhtml +0 -8
- data/components/plugins/sidebars/tag_controller.rb +0 -18
- data/components/plugins/sidebars/technorati/content.rhtml +0 -8
- data/components/plugins/sidebars/upcoming_controller.rb +0 -11
- data/components/plugins/sidebars/xbox/content.rhtml +0 -2
- data/components/plugins/sidebars/xml/content.rhtml +0 -12
- data/components/plugins/textfilters/amazon_controller.rb +0 -39
- data/components/plugins/textfilters/code_controller.rb +0 -59
- data/components/plugins/textfilters/flickr_controller.rb +0 -75
- data/components/plugins/textfilters/htmlfilter_controller.rb +0 -8
- data/components/plugins/textfilters/macropost_controller.rb +0 -14
- data/components/plugins/textfilters/macropre_controller.rb +0 -14
- data/components/plugins/textfilters/none_controller.rb +0 -8
- data/components/plugins/textfilters/smartypants_controller.rb +0 -8
- data/components/plugins/textfilters/sparkline_controller.rb +0 -88
- data/components/plugins/textfilters/textile_and_markdown_controller.rb +0 -8
- data/components/plugins/textfilters/textile_controller.rb +0 -14
- data/db/schema.mysql-v3.sql +0 -218
- data/lib/generators/sidebar/templates/components/plugins/sidebars/controller_template.rb +0 -20
- data/lib/generators/sidebar/templates/components/plugins/sidebars/views/content_template.rhtml +0 -4
- data/lib/rails_patch/components.rb +0 -14
- data/public/images/checked.gif +0 -0
- data/test/unit/observer_test.rb +0 -40
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<%= link_to "Previous page", { :id => pages.current.previous } if pages.current.previous -%>
|
|
1
|
+
<%= link_to _("Previous page"), { :id => pages.current.previous } if pages.current.previous -%>
|
|
2
2
|
<%= pagination_links pages, :name => 'id' -%>
|
|
3
|
-
<%= link_to "Next page", { :id => pages.current.next } if pages.current.next -%>
|
|
3
|
+
<%= link_to _("Next page"), { :id => pages.current.next } if pages.current.next -%>
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
<% form_tag :action=>"new" do %>
|
|
2
2
|
<p>
|
|
3
|
-
<label for="articles_title"
|
|
3
|
+
<label for="articles_title"><%= _("Title")%>:</label><br />
|
|
4
4
|
<%= text_field 'article', 'title' %>
|
|
5
5
|
</p>
|
|
6
6
|
<p>
|
|
7
7
|
<p>
|
|
8
|
-
<label for="categories[]"
|
|
8
|
+
<label for="categories[]"><%= _("Categories")%>:</label><br />
|
|
9
9
|
<select name="categories[]" multiple="multiple" size="3" style="width:250px;">
|
|
10
10
|
<%= options_from_collection_for_select(@categories, "id", "name", @selected) %>
|
|
11
11
|
</select>
|
|
12
12
|
</p>
|
|
13
13
|
<p>
|
|
14
|
-
<label for="articles_body"
|
|
14
|
+
<label for="articles_body"><%= _("Article")%>:</label><br />
|
|
15
15
|
<%= text_area 'article', 'body', :rows => 10 %>
|
|
16
16
|
</p>
|
|
17
17
|
<div id="operations">
|
|
18
|
-
<%= save("Save Post") %> or <a href="#" onclick="new Effect.BlindUp('quick-post', {duration: 0.4}); return false;" >Cancel</a>
|
|
18
|
+
<%= save(_("Save Post")) %> or <a href="#" onclick="new Effect.BlindUp('quick-post', {duration: 0.4}); return false;" >Cancel</a>
|
|
19
19
|
</div>
|
|
20
|
-
|
|
20
|
+
<% end %>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<h4
|
|
1
|
+
<h4><%= _("Currently this article is listed in following categories")%>:</h4>
|
|
2
2
|
<% for category in @article.categories %>
|
|
3
3
|
<%= link_to_remote "- #{category.name}", :url => { :action => "category_remove", :id => @article.id, :category_id => category.id }, :update => 'categories' %><br/>
|
|
4
4
|
<% end %>
|
|
5
5
|
|
|
6
|
-
<h4
|
|
6
|
+
<h4><%= _("You can add it to the following categories")%>:</h4>
|
|
7
7
|
<% for category in @categories - @article.categories %>
|
|
8
8
|
<%= link_to_remote "+ #{category.name}", :url => { :action => "category_add", :id => @article.id, :category_id => category.id }, :update => 'categories' %><br/>
|
|
9
9
|
<% end %>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<h4
|
|
1
|
+
<h4><%= _("Currently this article has the following resources")%></h4>
|
|
2
2
|
<% for resource in @article.resources %>
|
|
3
3
|
<%= link_to_remote "- #{resource.filename}", :url => { :action => "resource_remove", :id => @article.id, :resource_id => resource.id}, :update => 'resources' %><br/>
|
|
4
4
|
<% end %>
|
|
5
5
|
|
|
6
|
-
<h4
|
|
6
|
+
<h4><%= _("You can associate the following resources")%></h4>
|
|
7
7
|
<% for resource in @resources - @article.resources %>
|
|
8
8
|
<%= link_to_remote "+ #{resource.filename}", :url => { :action => "resource_add", :id => @article.id, :resource_id => resource.id}, :update => 'resources' %><br/>
|
|
9
9
|
<% end %>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
<% @page_heading = 'Articles' %>
|
|
1
|
+
<% @page_heading = _('Articles') %>
|
|
2
2
|
|
|
3
3
|
<% content_for('tasks') do %>
|
|
4
|
-
<%= task_show "Show this article", @article.id %>
|
|
5
|
-
<% end %>
|
|
4
|
+
<%= task_show _("Show this article"), @article.id %>
|
|
5
|
+
<% end %>
|
|
6
6
|
|
|
7
|
-
<p
|
|
8
|
-
|
|
9
|
-
<%=
|
|
10
|
-
<%= confirm_delete("Delete this article") %>
|
|
11
|
-
|
|
7
|
+
<p><%= _("Are you sure you want to delete this article")%> ( <%=h @article.title -%> )?</p>
|
|
8
|
+
<% form_tag :controller => '/admin/content', :action => 'destroy' do %>
|
|
9
|
+
<%= hidden_field_tag "id", @article.id %>
|
|
10
|
+
<%= confirm_delete(_("Delete this article")) %>
|
|
11
|
+
<% end %>
|
|
@@ -1,28 +1,10 @@
|
|
|
1
|
-
<% @page_heading = '
|
|
2
|
-
|
|
3
|
-
<% content_for('tasks') do %>
|
|
4
|
-
<%= task_new 'Create new article' %>
|
|
5
|
-
<li><%= link_to 'View article on your blog', article_url(@article) %></li>
|
|
6
|
-
<% end %>
|
|
7
|
-
|
|
8
|
-
<%= start_form_tag({ :action => "edit", :id => @article }, :id => "article_form", :enctype => "multipart/form-data") %>
|
|
9
|
-
<h3>Editing article</h3>
|
|
10
|
-
|
|
11
|
-
<div class="form">
|
|
12
|
-
<!-- LIVE PREVIEW -->
|
|
13
|
-
<div id="preview" class="post" style="display:none;"></div>
|
|
14
|
-
<!-- /LIVE PREVIEW -->
|
|
15
|
-
<%= render_partial "form" %>
|
|
16
|
-
</div>
|
|
1
|
+
<% @page_heading = _('Edit Article') %>
|
|
17
2
|
|
|
18
|
-
|
|
19
|
-
<%=
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
3
|
+
<% content_for('tasks') do %>
|
|
4
|
+
<%= task_overview %>
|
|
5
|
+
|
|
6
|
+
<li><%= link_to _('View article on your blog'), @article.permalink_url %></li>
|
|
7
|
+
<% end %>
|
|
23
8
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
:update => "preview",
|
|
27
|
-
:complete => "Element.show('preview')",
|
|
28
|
-
:url => { :action => "preview" } %>
|
|
9
|
+
<h3><%= _("Edit Article")%></h3>
|
|
10
|
+
<%= render :partial => "admin/shared/edit", :locals => { :form_type => "article", :form_action => { :action => "edit", :id => @article } } %>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<% @page_heading = 'Articles' %>
|
|
1
|
+
<% @page_heading = _('Manage Articles') %>
|
|
2
2
|
|
|
3
3
|
<% content_for('tasks') do %>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
<%= tab _("Manage Pages"), :controller=>"pages", :action=>"list" %>
|
|
5
|
+
<%= tab _("Manage Categories"), :controller=>"categories", :action=>"index"%>
|
|
6
|
+
<%= tab _("Manage Resources"), :controller=>"resources", :action=>"list" %>
|
|
7
7
|
<% end %>
|
|
8
8
|
<div id="quick-navigate" style="display:none;position:absolute;">
|
|
9
9
|
<%= render :partial => 'admin/content/pages', :object => @articles_pages -%>
|
|
@@ -1,27 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
<% content_for('tasks') do %>
|
|
2
|
+
<%= tab _("Write a Page"), :controller=>"pages", :action=>"new" %>
|
|
3
|
+
<% end %>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<% @page_heading = _('Write an Article') %>
|
|
4
6
|
|
|
5
|
-
<%=
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<div class="form">
|
|
9
|
-
<!-- LIVE PREVIEW -->
|
|
10
|
-
<div id="preview" class="post" style="display: none;"></div>
|
|
11
|
-
<!-- /LIVE PREVIEW -->
|
|
12
|
-
<%= render_partial "form" %>
|
|
13
|
-
</div>
|
|
14
|
-
|
|
15
|
-
<div id="operations">
|
|
16
|
-
<%= save("Save this article") %> or <%= cancel %>
|
|
17
|
-
</div>
|
|
18
|
-
|
|
19
|
-
<%= end_form_tag %>
|
|
20
|
-
|
|
21
|
-
<%= observe_form "article_form",
|
|
22
|
-
:frequency => 2,
|
|
23
|
-
:update => "preview",
|
|
24
|
-
:complete => "Element.show('preview')",
|
|
25
|
-
:url => { :action => "preview" } %>
|
|
26
|
-
|
|
27
|
-
|
|
7
|
+
<%= render :partial => "admin/shared/edit", :locals => { :form_type => "article", :form_action => { :action => "new" } } %>
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
-
<
|
|
1
|
+
<div class="post">
|
|
2
|
+
<h2><%= @article[:title] %></h2>
|
|
3
|
+
<p class="auth">
|
|
4
|
+
<%_("Posted by")%>
|
|
5
|
+
<%= author_link(@article) %>
|
|
6
|
+
<%= js_distance_of_time_in_words_to_now @article[:published_at] %>
|
|
7
|
+
</p>
|
|
2
8
|
|
|
3
|
-
<%= @article.
|
|
9
|
+
<%= @article.html %>
|
|
10
|
+
</div>
|
|
@@ -1,25 +1,26 @@
|
|
|
1
|
-
<% @page_heading = '
|
|
1
|
+
<% @page_heading = _('Preview Article') %>
|
|
2
2
|
|
|
3
3
|
<% content_for('tasks') do %>
|
|
4
|
-
<%= task_edit 'Edit this article', @article.id %>
|
|
5
|
-
<li><%= link_to 'View article on your blog',
|
|
4
|
+
<%= task_edit _('Edit this article'), @article.id %>
|
|
5
|
+
<li><%= link_to _('View article on your blog'), @article.permalink_url %></li>
|
|
6
|
+
<%= task_overview %>
|
|
6
7
|
<% end %>
|
|
7
8
|
|
|
8
9
|
<h3><%=h @article.title %></h3>
|
|
9
10
|
|
|
10
11
|
<div class="form">
|
|
11
|
-
<div><%= @article.
|
|
12
|
-
<p class="meta"><label
|
|
13
|
-
<p class="meta"><label
|
|
14
|
-
<p class="meta"><label
|
|
12
|
+
<div><%= @article.html %></div>
|
|
13
|
+
<p class="meta"><label><%= _("Posted date")%>:</label> <%=h @article.published_at.to_formatted_s(:long_weekday) %> by <%=h @article.author %></p>
|
|
14
|
+
<p class="meta"><label><%= _("Last updated")%>:</label> <%=h @article.updated_at.to_formatted_s(:long_weekday) %></p>
|
|
15
|
+
<p class="meta"><label><%= _("Online")%>:</label> <%=h (@article.published? ? "Yes" : "No") %></p>
|
|
15
16
|
</div>
|
|
16
17
|
|
|
17
|
-
<h3
|
|
18
|
+
<h3><%= _("Categories")%></h3>
|
|
18
19
|
<div id="categories" class="form">
|
|
19
20
|
<%= render :partial => 'show_categories' -%>
|
|
20
21
|
</div>
|
|
21
22
|
|
|
22
|
-
<h3
|
|
23
|
+
<h3><%= _("Attachments")%></h3>
|
|
23
24
|
<div id="resources" class="form">
|
|
24
25
|
<%= render :partial => 'show_resources' -%>
|
|
25
26
|
</div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<tr class="<%= state_class(item) %>">
|
|
2
2
|
<td class="field"><input class= "feedback_check" type="checkbox" name="feedback_check[<%= item.id %>]"/></td>
|
|
3
|
-
<td class="
|
|
3
|
+
<td class="operation"><%=h item.state %></td>
|
|
4
4
|
<td class="field"><%=h item.class %></td>
|
|
5
5
|
<td class="field"><%= link_to_article_edit item.article %></td>
|
|
6
6
|
<td class="field">
|
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
<td class="field"><%=h truncate(item.body,80)%></td>
|
|
14
14
|
<td class="field"><%=h item.ip %></td>
|
|
15
15
|
<td class="field"><%=h distance_of_time_in_words_to_now(item.created_at) %> ago</td>
|
|
16
|
-
<td class="
|
|
16
|
+
<td class="operation"><%= link_to image_tag('delete.png'), {:action => 'delete', :id => item.id, :search => params[:search], :page => params[:page] }, :confirm => "Are you sure?", :method => :post %></td>
|
|
17
17
|
</tr>
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
<% @page_heading = "Comments and Trackbacks for #{ this_blog.settings['blog_name'] }" %>
|
|
1
|
+
<% @page_heading = _("Comments and Trackbacks for") + " #{ this_blog.settings['blog_name'] }" %>
|
|
2
2
|
|
|
3
3
|
<% content_for('tasks') do %>
|
|
4
|
-
<%= task_showmod 'Limit to spam' %>
|
|
5
|
-
<%= task_showmod
|
|
6
|
-
<%= task_showmod 'Limit to unconfirmed spam' %>
|
|
4
|
+
<%= task_showmod _('Limit to spam') %>
|
|
5
|
+
<%= task_showmod _("Limit to unconfirmed") %>
|
|
6
|
+
<%= task_showmod _('Limit to unconfirmed spam') %>
|
|
7
|
+
<%= tab _("Blacklist"), :controller=>"blacklist", :action=>"index"%>
|
|
7
8
|
<% end %>
|
|
8
9
|
|
|
9
10
|
<div class="search">
|
|
10
|
-
|
|
11
|
-
<label for="search"
|
|
12
|
-
|
|
11
|
+
<% form_tag({:action => 'index'}, :method => :get) do %>
|
|
12
|
+
<label for="search"><%= _("Feedback Search")%>:</label><input type="text" id="feedback_search" name="search" value="<%=h params[:search] %>" size="15" />
|
|
13
|
+
<% end %>
|
|
13
14
|
</div>
|
|
14
15
|
|
|
15
16
|
<div class="list">
|
|
16
|
-
|
|
17
|
+
<% form_tag({:action => 'bulkops'}, :method => :post) do %>
|
|
17
18
|
<br/>
|
|
18
19
|
<%= submit_tag "Delete Checked Items" %>
|
|
19
20
|
<%= submit_tag "Mark Checked Items as Ham" %>
|
|
@@ -25,15 +26,15 @@
|
|
|
25
26
|
|
|
26
27
|
<table>
|
|
27
28
|
<tr>
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
<th
|
|
33
|
-
|
|
34
|
-
<th
|
|
35
|
-
<th
|
|
36
|
-
<th
|
|
29
|
+
<th><input class="feedback_check" type="checkbox" name="checkall" id="checkall" onclick="check_all(this);"/></th>
|
|
30
|
+
<th><%= _("Status")%></th>
|
|
31
|
+
<th><%= _("Type")%></th>
|
|
32
|
+
<th><%= _("Article")%></th>
|
|
33
|
+
<th><%= _("Author")%></th>
|
|
34
|
+
<th><%= _("Body")%></th>
|
|
35
|
+
<th><%= _("IP")%></th>
|
|
36
|
+
<th><%= _("Posted date")%></th>
|
|
37
|
+
<th><%= _("Delete") %></th>
|
|
37
38
|
</tr>
|
|
38
39
|
<%= render :partial => 'item', :collection => @feedback %>
|
|
39
40
|
</table>
|
|
@@ -41,10 +42,10 @@
|
|
|
41
42
|
<%= submit_tag "Mark Checked Items as Ham" %>
|
|
42
43
|
<%= submit_tag "Mark Checked Items as Spam" %>
|
|
43
44
|
<%= submit_tag "Confirm Classification of Checked Items" %>
|
|
44
|
-
|
|
45
|
+
<% end %>
|
|
45
46
|
</div>
|
|
46
47
|
|
|
47
|
-
<%= link_to "Previous page", { :page => @pages.current.previous, :search => params[:search] } if @pages.current.previous %>
|
|
48
|
+
<%= link_to _("Previous page"), { :page => @pages.current.previous, :search => params[:search] } if @pages.current.previous %>
|
|
48
49
|
<%= pagination_links(@pages, :params => {:search => params[:search]}) %>
|
|
49
|
-
<%= link_to "Next page", { :page => @pages.current.next, :search => params[:search] } if @pages.current.next %>
|
|
50
|
+
<%= link_to _("Next page"), { :page => @pages.current.next, :search => params[:search] } if @pages.current.next %>
|
|
50
51
|
|
|
@@ -1,246 +1,268 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<div class="tasks">
|
|
6
|
-
<h3>Which settings group would you like to edit?</h3>
|
|
7
|
-
<ul>
|
|
8
|
-
<li><a href="#gensettings" onclick="new Effect.ScrollTo('gensettings'); return false">General Settings</a></li>
|
|
9
|
-
<li><a href="#textfilter" onclick="new Effect.ScrollTo('textfilter'); return false">Text Filter</a></li>
|
|
10
|
-
<li><a href="#spam" onclick="new Effect.ScrollTo('spam'); return false">Spam Protection</a></li>
|
|
11
|
-
<li><a href="#resources" onclick="new Effect.ScrollTo('resources'); return false">Resource Defaults</a></li>
|
|
12
|
-
<li><a href="#misc" onclick="new Effect.ScrollTo('misc'); return false">Cache</a></li>
|
|
13
|
-
</ul>
|
|
14
|
-
<div style="clear:both;"></div>
|
|
15
|
-
</div>
|
|
1
|
+
<% @page_heading = _('Blog settings') %>
|
|
2
|
+
|
|
3
|
+
<% form_tag :action => 'update' do %>
|
|
16
4
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
<label for="blog_title_prefix">Prefix page title with blog name</label>
|
|
31
|
-
</p>
|
|
32
|
-
<p>
|
|
33
|
-
<label for="canonical_server_url">Canonical Server Url:</label>
|
|
34
|
-
<input name="setting[canonical_server_url]" id="canonical_server_url" type="text" value="<%= this_blog.canonical_server_url %>" />
|
|
35
|
-
</p>
|
|
36
|
-
<p>
|
|
37
|
-
<input name="setting[default_allow_comments]" id="default_allow_comments" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.default_allow_comments%> />
|
|
38
|
-
<input name="setting[default_allow_comments]" type="hidden" value="0"/>
|
|
39
|
-
<label for="default_allow_comments">Enable comments by default</label>
|
|
40
|
-
</p>
|
|
41
|
-
<p>
|
|
42
|
-
<input name="setting[default_allow_pings]" id="default_allow_pings" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.default_allow_pings%> />
|
|
43
|
-
<input name="setting[default_allow_pings]" type="hidden" value="0"/>
|
|
44
|
-
<label for="default_allow_pings">Enable Trackbacks by default</label>
|
|
45
|
-
</p>
|
|
46
|
-
<p>
|
|
47
|
-
<label for="limit_article_display">Display </label>
|
|
48
|
-
<input name="setting[limit_article_display]" size="4" id="limit_article_display" type="text" value="<%= this_blog.limit_article_display %>" /> articles on my homepage by default.
|
|
49
|
-
</p>
|
|
50
|
-
<p>
|
|
51
|
-
<label for="limit_rss_display">Display </label>
|
|
52
|
-
<input name="setting[limit_rss_display]" size="4" id="limit_rss_display" type="text" value="<%= this_blog.limit_rss_display %>" /> articles in my rss feed by default.
|
|
53
|
-
</p>
|
|
54
|
-
<p>
|
|
55
|
-
<input name="setting[show_extended_on_rss]" id="show_extended_on_rss" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.show_extended_on_rss%> />
|
|
56
|
-
<input name="setting[show_extended_on_rss]" type="hidden" value="0"/>
|
|
57
|
-
<label for="show_extended_on_rss">Show full article on rss feed</label>
|
|
58
|
-
</p>
|
|
59
|
-
|
|
60
|
-
<hr />
|
|
61
|
-
|
|
62
|
-
<p>Should the blog show mailto: links to your email address?</p>
|
|
63
|
-
<p><input name="setting[link_to_author]" id="link_to_author" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.link_to_author%> /><input name="setting[link_to_author]" type="hidden" value="0"/> <label for="link_to_author">Enable E-Mail public display</label></p>
|
|
64
|
-
|
|
65
|
-
<hr />
|
|
66
|
-
|
|
67
|
-
<p>Should the blog use of the <a href="http://www.gravatar.com/">Globally Recognized Avatar (Gravatar)</a> service in comments?</p>
|
|
68
|
-
<p>
|
|
69
|
-
<input name="setting[use_gravatar]" id="use_gravatar" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.use_gravatar %> />
|
|
70
|
-
<input name="setting[use_gravatar]" type="hidden" value="0"/>
|
|
71
|
-
<label for="use_gravatar">Enable Gravatar integration</label>
|
|
72
|
-
</p>
|
|
73
|
-
|
|
74
|
-
<hr />
|
|
75
|
-
|
|
76
|
-
<p>Would you like to include your latitude and longitude in your blog's HTML pages? See <a href="http://geourl.org">GeoURL</a> for details. <br/>Example: <tt>47.774,-122.201</tt></p>
|
|
77
|
-
|
|
78
|
-
<p>
|
|
79
|
-
<label for="geourl_location">Latitude, Longitude:</label>
|
|
80
|
-
<input name="setting[geourl_location]" size="20" id="geourl_location" type="text" value="<%= this_blog.geourl_location %>" />
|
|
81
|
-
</p>
|
|
82
|
-
|
|
83
|
-
<hr/>
|
|
84
|
-
|
|
85
|
-
<p>This setting allows you to disable trackbacks for every article in
|
|
86
|
-
your blog. It won't remove existing trackbacks, but it will prevent
|
|
87
|
-
any further attempt to add a trackback anywhere on your blog. You can
|
|
88
|
-
enable or disable trackbacks per-article using the article's extended
|
|
89
|
-
settings. See also the
|
|
90
|
-
<a href="#gensettings" onclick="new Effect.ScrollTo('gensettings'); return false">"Enable Trackbacks by default" setting</a> above.
|
|
91
|
-
</p>
|
|
92
|
-
<p>
|
|
93
|
-
<input name="setting[global_pings_disable]" id="global_pings_disable" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.global_pings_disable%> />
|
|
94
|
-
<input name="setting[global_pings_disable]" type="hidden" value="0"/>
|
|
95
|
-
<label for="global_pings_disable">Disable trackbacks site-wide</label>
|
|
96
|
-
|
|
97
|
-
</p>
|
|
98
|
-
|
|
99
|
-
<hr />
|
|
100
|
-
|
|
101
|
-
<p>Should Typo send trackbacks to websites that you link to? This should be disabled
|
|
102
|
-
for private blogs, as it will leak non-public information to sites that you're discussing.
|
|
103
|
-
For public blogs, there's no real point in disabling this.</p>
|
|
104
|
-
<p>
|
|
105
|
-
<input name="setting[send_outbound_pings]" id="send_outbound_pings" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.send_outbound_pings%> />
|
|
106
|
-
<input name="setting[send_outbound_pings]" type="hidden" value="0"/>
|
|
107
|
-
<label for="send_outbound_pings">Send trackbacks to external sites</label>
|
|
108
|
-
|
|
109
|
-
</p>
|
|
110
|
-
|
|
111
|
-
<p>
|
|
112
|
-
<label for="ping_urls">URLs to ping automatically:</label><br/>
|
|
113
|
-
<textarea name="setting[ping_urls]" id="ping_urls" rows="5" cols="50"><%=h this_blog.ping_urls %></textarea>
|
|
114
|
-
</p>
|
|
115
|
-
|
|
116
|
-
<p class="r"><%= save("Save My Settings") %></p>
|
|
5
|
+
<div class="tasks">
|
|
6
|
+
<h3><%= _("Which settings group would you like to edit")%>?</h3>
|
|
7
|
+
<ul>
|
|
8
|
+
<li><a href="#gensettings" onclick="new Effect.ScrollTo('gensettings'); return false"><%= _("General Settings")%></a></li>
|
|
9
|
+
<li><a href="#read" onclick="new Effect.ScrollTo('read'); return false"><%= _("Read")%></a></li>
|
|
10
|
+
<li><a href="#write" onclick="new Effect.ScrollTo('write'); return false"><%= _("Write")%></a></li>
|
|
11
|
+
<li><a href="#discuss" onclick="new Effect.ScrollTo('discuss'); return false"><%= _("Discuss")%></a></li>
|
|
12
|
+
<li><a href="#notification" onclick="new Effect.ScrollTo('notification'); return false"><%= _("Notification")%></a></li>
|
|
13
|
+
<li><a href="#spam" onclick="new Effect.ScrollTo('spam'); return false"><%= _("Spam Protection")%></a></li>
|
|
14
|
+
<li><a href="#resources" onclick="new Effect.ScrollTo('resources'); return false"><%= _("Resource Settings")%></a></li>
|
|
15
|
+
<li><a href="#misc" onclick="new Effect.ScrollTo('misc'); return false"><%= _("Cache")%></a></li>
|
|
16
|
+
</ul>
|
|
17
|
+
<p style="clear:both;"></p>
|
|
117
18
|
</div>
|
|
118
19
|
|
|
20
|
+
<div class="admin">
|
|
21
|
+
<fieldset id="gensettings" class="set" style="margin-top:10px;">
|
|
22
|
+
<legend><%= _("General settings")%></legend>
|
|
119
23
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
</div>
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
<div id="spam" class="set">
|
|
158
|
-
<h3>Spam Protection</h3>
|
|
159
|
-
<p>Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots.</p>
|
|
160
|
-
<p>
|
|
161
|
-
<input name="setting[sp_global]" id="sp_global" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.sp_global%> /><input name="setting[sp_global]" type="hidden" value="0"/>
|
|
162
|
-
<label for="sp_global">Enable spam protection</label>
|
|
163
|
-
</p>
|
|
164
|
-
<p>Typo can (optionally) use the <a href="http://akismet.com">Akismet</a> spam-filtering service. You need to register with
|
|
165
|
-
Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here.
|
|
166
|
-
</p>
|
|
167
|
-
<p>
|
|
168
|
-
<label for="sp_akismet_key">Akismet Key</label>
|
|
169
|
-
<input name="setting[sp_akismet_key]" id="sp_akismet_key" type="text" value="<%=h this_blog.sp_akismet_key %>"/>
|
|
170
|
-
</p>
|
|
171
|
-
<p>You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled,
|
|
172
|
-
so non-Ajax comments are either from spammers or users without Javascript.
|
|
173
|
-
</p>
|
|
174
|
-
<p>
|
|
175
|
-
<input name="setting[sp_allow_non_ajax_comments]" id="sp_allow_non_ajax_comments" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.sp_allow_non_ajax_comments%> />
|
|
176
|
-
<input name="setting[sp_allow_non_ajax_comments]" type="hidden" value="0" />
|
|
177
|
-
<label for="sp_allow_non_ajax_comments">Allow non-ajax comments</label>
|
|
178
|
-
<br /><small>(Spam bots usually don't know anything about ajax comments)</small>
|
|
179
|
-
</p>
|
|
180
|
-
<p>
|
|
181
|
-
<label for="sp_article_auto_close">Disable comments after</label>
|
|
182
|
-
<input name="setting[sp_article_auto_close]" size="4" id="sp_article_auto_close" type="text" value="<%= this_blog.sp_article_auto_close %>" /> days
|
|
183
|
-
<br /><small>(Set to 0 to never disable comments)</small>
|
|
184
|
-
</p>
|
|
185
|
-
<p>Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them.</p>
|
|
186
|
-
<p>
|
|
187
|
-
<label for="sp_url_limit">Max URLs:</label>
|
|
188
|
-
<input name="setting[sp_url_limit]" size="4" id="sp_url_limit" type="text" value="<%= this_blog.sp_url_limit %>" /> links
|
|
189
|
-
<br /><small>(Set to 0 to never reject comments)</small>
|
|
190
|
-
</p>
|
|
191
|
-
<p class="r"><%= save("Save My Settings") %></p>
|
|
192
|
-
</div>
|
|
193
|
-
<div id="resources" class="set">
|
|
194
|
-
<h3>Resource Defaults</h3>
|
|
195
|
-
<p>
|
|
196
|
-
The below settings act as defaults when you choose to publish an enclosure with iTunes metadata.
|
|
197
|
-
</p>
|
|
198
|
-
<p>
|
|
199
|
-
<label for="itunes_author">Author:</label>
|
|
200
|
-
<input name="setting[itunes_author]" size="25" id="itunes_author" type="text" value="<%= this_blog.itunes_author %>" />
|
|
201
|
-
</p>
|
|
202
|
-
<p>
|
|
203
|
-
<label for="itunes_subtitle">Subtitle:</label>
|
|
204
|
-
<input name="setting[itunes_subtitle]" size="25" id="itunes_subtitle" type="text" value="<%= this_blog.itunes_subtitle %>" /><small>(setting for channel)</small>
|
|
205
|
-
</p>
|
|
206
|
-
<p>
|
|
207
|
-
<label for="itunes_summary">Summary:<small>(setting for channel)</small>
|
|
208
|
-
</label> <br />
|
|
209
|
-
<textarea name="setting[itunes_summary]" cols="40" rows="3"><%=h this_blog.itunes_summary %></textarea>
|
|
210
|
-
</p>
|
|
211
|
-
<p>
|
|
212
|
-
<label for="itunes_email">Email:</label>
|
|
213
|
-
<input name="setting[itunes_email]" size="25" id="itunes_email" type="text" value="<%= this_blog.itunes_email %>" /> <small> Not Published by Apple</small>
|
|
214
|
-
</p>
|
|
215
|
-
<p>
|
|
216
|
-
<label for="itunes_name">Optional Name:</label>
|
|
217
|
-
<input name="setting[itunes_name]" size="25" id="itunes_name" type="text" value="<%= this_blog.itunes_name %>" /> <small> Not Published by Apple</small>
|
|
218
|
-
|
|
219
|
-
</p>
|
|
220
|
-
<p>
|
|
221
|
-
<label for="itunes_copyright">Copyright Information:</label>
|
|
222
|
-
<input name="setting[itunes_copyright]" size="25" id="itunes_copyright" type="text" value="<%= this_blog.itunes_copyright %>" />
|
|
223
|
-
</p>
|
|
224
|
-
<p>
|
|
225
|
-
<label for="itunes_explicit">Explicit:</label>
|
|
226
|
-
<input name="setting[itunes_explicit]" id="itunes_explicit" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.itunes_explicit%> /><input name="setting[itunes_explicit]" type="hidden" value="0" />
|
|
227
|
-
</p>
|
|
228
|
-
<p class="r"><%= save("Save My Settings") %></p>
|
|
229
|
-
</div>
|
|
230
|
-
</div>
|
|
231
|
-
|
|
232
|
-
<div id="misc" class="set">
|
|
233
|
-
<h3>Cache</h3>
|
|
234
|
-
<%= link_to 'Empty Fragment Cache', :controller => 'cache', :action => 'sweep' %><br />
|
|
235
|
-
<%= link_to 'Rebuild cached HTML', :controller => 'cache', :action => 'sweep_html' %><br />
|
|
236
|
-
<div id="users">
|
|
237
|
-
<p>There are <%= @page_cache_size %> entries in the cache</p>
|
|
238
|
-
</div>
|
|
239
|
-
</div>
|
|
24
|
+
<ul>
|
|
25
|
+
<li>
|
|
26
|
+
<label for="blog_name" class="float"><%= _("Blog name")%>:</label>
|
|
27
|
+
<input name="setting[blog_name]" id="blog_name" type="text" value="<%=h this_blog.blog_name %>" size="<%= this_blog.blog_name.length %>" />
|
|
28
|
+
</li>
|
|
29
|
+
<li>
|
|
30
|
+
<label class="float" for="blog_subtitle"><%= _("Blog subtitle")%>:</label>
|
|
31
|
+
<input name="setting[blog_subtitle]" id="blog_subtitle" type="text" value="<%=h this_blog.blog_subtitle %>" size="<%= this_blog.blog_subtitle.length%>" />
|
|
32
|
+
</li>
|
|
33
|
+
<li>
|
|
34
|
+
<label class="float" for="base_url"><%= _("Blog URL")%>:</label>
|
|
35
|
+
<input name="setting[base_url]" id="base_url" type="text" value="<%=h this_blog.base_url %>" size="<%= this_blog.base_url.length %> " />
|
|
36
|
+
</li>
|
|
37
|
+
<li>
|
|
38
|
+
<label class="float" for="geourl_location"><%= _("Latitude, Longitude")%>:</label>
|
|
39
|
+
<input name="setting[geourl_location]" size="20" id="geourl_location" type="text" value="<%= this_blog.geourl_location %>" />
|
|
40
|
+
<span class="float"><%= _("Display")%> <a href="http://geourl.org"><%= _("your lattitude and longitude")%></a> (<%= _("exemple")%> <tt>47.774,-122.201</tt>)</span>
|
|
41
|
+
</li>
|
|
42
|
+
<li>
|
|
43
|
+
<label class="float"><%= _("Show blog name")%>:</label>
|
|
44
|
+
<input type="radio" name="setting[title_prefix]" value="1" id="blog_title_prefix_1" <%= 'checked="checked"' if this_blog.title_prefix == 1 %>/>
|
|
45
|
+
<label for="blog_title_prefix_1"><%= _("At the beginning of page title")%></label>
|
|
46
|
+
<span class="float">
|
|
47
|
+
<input type="radio" name="setting[title_prefix]" value="2" id="blog_title_prefix_2" <%= 'checked="checked"' if this_blog.title_prefix == 2 %>/>
|
|
48
|
+
<label for="blog_title_prefix_2"><%= _("At the end of page title")%></label>
|
|
49
|
+
</span>
|
|
50
|
+
<span class="float">
|
|
51
|
+
<input type="radio" name="setting[title_prefix]" value="0" id="blog_title_prefix_0" <%= 'checked="checked"' if this_blog.title_prefix == 0 %>/>
|
|
52
|
+
<label for="blog_title_prefix_0"><%= _("Don't show blog name in page title")%></label>
|
|
53
|
+
</span>
|
|
54
|
+
</li>
|
|
55
|
+
</ul>
|
|
56
|
+
<p class="r"><%= save(_("Save Settings")) %></p>
|
|
57
|
+
</fieldset>
|
|
240
58
|
|
|
59
|
+
<fieldset id="read" class="set">
|
|
60
|
+
<legend><%= _("Read")%></legend>
|
|
241
61
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
62
|
+
<ul>
|
|
63
|
+
<li>
|
|
64
|
+
<label for="limit_article_display" class="float"><%= _("Display")%> </label>
|
|
65
|
+
<input name="setting[limit_article_display]" size="4" id="limit_article_display" type="text" value="<%= this_blog.limit_article_display %>" />
|
|
66
|
+
<%= _("articles on my homepage by default")%>
|
|
67
|
+
</li>
|
|
68
|
+
<li>
|
|
69
|
+
<label for="limit_rss_display" class="float"><%= _("Display")%> </label>
|
|
70
|
+
<input name="setting[limit_rss_display]" size="4" id="limit_rss_display" type="text" value="<%= this_blog.limit_rss_display %>" />
|
|
71
|
+
<%= _("articles in my news feed by default")%>.
|
|
72
|
+
</li>
|
|
73
|
+
<li class="checkbox">
|
|
74
|
+
<label class="float" for="show_extended_on_rss"><%= _("Show full article on feed")%>:</label>
|
|
75
|
+
<input name="setting[show_extended_on_rss]" id="show_extended_on_rss" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.show_extended_on_rss%> />
|
|
76
|
+
<input name="setting[show_extended_on_rss]" type="hidden" value="0" />
|
|
77
|
+
</li>
|
|
78
|
+
</ul>
|
|
79
|
+
<p class="r"><%= save(_("Save Settings")) %></p>
|
|
80
|
+
</fieldset>
|
|
81
|
+
|
|
82
|
+
<fieldset id="write" class="set">
|
|
83
|
+
<legend><%= _("Write")%></legend>
|
|
84
|
+
|
|
85
|
+
<ul>
|
|
86
|
+
<li>
|
|
87
|
+
<label class="float" for="text_filter"><%= _("Article filter")%>:</label>
|
|
88
|
+
<select name="setting[text_filter]" id="text_filter">
|
|
89
|
+
<%= options_for_select text_filter_options, TextFilter.find_by_name(this_blog.text_filter) %>
|
|
90
|
+
</select>
|
|
91
|
+
</li>
|
|
92
|
+
<li>
|
|
93
|
+
<label for="comment_text_filter" class="float"><%= _("Comments filter")%>:</label>
|
|
94
|
+
<select name="setting[comment_text_filter]" id="comment_text_filter">
|
|
95
|
+
<%= options_for_select text_filter_options, TextFilter.find_by_name(this_blog.comment_text_filter) %>
|
|
96
|
+
</select>
|
|
97
|
+
</li>
|
|
98
|
+
<li>
|
|
99
|
+
<%= _("When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.")%>
|
|
100
|
+
</li>
|
|
101
|
+
<li class="checkbox">
|
|
102
|
+
<label class="float" for="send_outbound_pings"><%= _("Send trackbacks")%>:</label>
|
|
103
|
+
<input name="setting[send_outbound_pings]" id="send_outbound_pings" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.send_outbound_pings%> />
|
|
104
|
+
<input name="setting[send_outbound_pings]" type="hidden" value="0" />
|
|
105
|
+
</li>
|
|
106
|
+
<li>
|
|
107
|
+
<label class="float" for="ping_urls"><%= _("URLs to ping automatically")%>:</label>
|
|
108
|
+
<textarea name="setting[ping_urls]" id="ping_urls" rows="5" cols="50"><%=h this_blog.ping_urls %></textarea>
|
|
109
|
+
</li>
|
|
110
|
+
</ul>
|
|
111
|
+
<p class="r"><%= save(_("Save Settings")) %></p>
|
|
112
|
+
</fieldset>
|
|
113
|
+
|
|
114
|
+
<fieldset id="discuss" class="set">
|
|
115
|
+
<legend><%= _("Discuss")%></legend>
|
|
116
|
+
<ul>
|
|
117
|
+
<li>
|
|
118
|
+
<%= _("This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.")%>
|
|
119
|
+
</li>
|
|
120
|
+
<li class="checkbox">
|
|
121
|
+
<label class="float" for="global_pings_disable"><%= _("Disable trackbacks site-wide")%>:</label>
|
|
122
|
+
<input name="setting[global_pings_disable]" id="global_pings_disable" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.global_pings_disable%> />
|
|
123
|
+
<input name="setting[global_pings_disable]" type="hidden" value="0" />
|
|
124
|
+
</li>
|
|
125
|
+
<li class="checkbox">
|
|
126
|
+
<label class="float" for="default_allow_pings"><%= _("Enable Trackbacks by default")%>:</label>
|
|
127
|
+
<input name="setting[default_allow_pings]" id="default_allow_pings" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.default_allow_pings%> />
|
|
128
|
+
<input name="setting[default_allow_pings]" type="hidden" value="0" />
|
|
129
|
+
</li>
|
|
130
|
+
<li><%= _("You can enable site wide comment moderation. If you do so, no comment or trackback will appear on your blog unless you validate it")%>.</li>
|
|
131
|
+
<li class="checkbox">
|
|
132
|
+
<label class="float" for="default_moderate_comments"><%= _("Enable comments moderation")%>:</label>
|
|
133
|
+
<input name="setting[default_moderate_comments]" id="default_moderate_comments" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.default_moderate_comments %> />
|
|
134
|
+
<input name="setting[default_moderate_comments]" type="hidden" value="0" />
|
|
135
|
+
</li>
|
|
136
|
+
<li class="checkbox">
|
|
137
|
+
<label class="float" for="default_allow_comments"><%= _("Enable comments by default")%>:</label>
|
|
138
|
+
<input name="setting[default_allow_comments]" id="default_allow_comments" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.default_allow_comments%> />
|
|
139
|
+
<input name="setting[default_allow_comments]" type="hidden" value="0" />
|
|
140
|
+
</li>
|
|
141
|
+
<li class="checkbox">
|
|
142
|
+
<label class="float" for="link_to_author"><%= _("Show your email address") %>:</label>
|
|
143
|
+
<input name="setting[link_to_author]" id="link_to_author" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.link_to_author%> />
|
|
144
|
+
<input name="setting[link_to_author]" type="hidden" value="0" />
|
|
145
|
+
</li>
|
|
146
|
+
<li class="checkbox">
|
|
147
|
+
<label class="float" for="use_gravatar"><%= _("Enable gravatars")%>:</label>
|
|
148
|
+
<input name="setting[use_gravatar]" id="use_gravatar" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.use_gravatar %> />
|
|
149
|
+
<input name="setting[use_gravatar]" type="hidden" value="0" />
|
|
150
|
+
</li>
|
|
151
|
+
<li>
|
|
152
|
+
<%= _("You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.")%>
|
|
153
|
+
</li>
|
|
154
|
+
<li class="checkbox">
|
|
155
|
+
<label for="sp_allow_non_ajax_comments" class="float"><%= _("Allow non-ajax comments") %>:</label>
|
|
156
|
+
<input name="setting[sp_allow_non_ajax_comments]" id="sp_allow_non_ajax_comments" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.sp_allow_non_ajax_comments%> />
|
|
157
|
+
<input name="setting[sp_allow_non_ajax_comments]" type="hidden" value="0" />
|
|
158
|
+
</li>
|
|
159
|
+
<li>
|
|
160
|
+
<label for="sp_article_auto_close" class="float"><%= _("Disable comments after")%></label>
|
|
161
|
+
<input name="setting[sp_article_auto_close]" size="4" id="sp_article_auto_close" type="text" value="<%= this_blog.sp_article_auto_close %>" /> <%= _("days") %>
|
|
162
|
+
<span class="float"><%= _("Set to 0 to never disable comments")%></span>
|
|
163
|
+
</li>
|
|
164
|
+
<li>
|
|
165
|
+
<p><%= _("Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them")%>.</p>
|
|
166
|
+
<label class="float" for="sp_url_limit"><%= _("Max Links")%>:</label>
|
|
167
|
+
<input name="setting[sp_url_limit]" size="4" id="sp_url_limit" type="text" value="<%= this_blog.sp_url_limit %>" />
|
|
168
|
+
<span class="float"><%= _("Set to 0 to never reject comments")%></span>
|
|
169
|
+
</li>
|
|
170
|
+
</ul>
|
|
171
|
+
|
|
172
|
+
<p class="r"><%= save(_("Save Settings")) %></p>
|
|
173
|
+
</fieldset>
|
|
245
174
|
|
|
246
|
-
|
|
175
|
+
<fieldset id="notification" class="set">
|
|
176
|
+
<legend><%= _("Notification")%></legend>
|
|
177
|
+
<ul>
|
|
178
|
+
<li><%= _("Typo can notify you when new articles or comments are posted")%></li>
|
|
179
|
+
<li>
|
|
180
|
+
<label class="float" for="email_from"><%= _("Source Email")%>:</label>
|
|
181
|
+
<input name="setting[email_from]" size="25" id="email_from" type="text" value="<%= this_blog.email_from %>" />
|
|
182
|
+
<span class="float"><%= _("Email address used by Typo to send notifications")%>.</span>
|
|
183
|
+
</li>
|
|
184
|
+
<li>
|
|
185
|
+
<label for="jabber_address" class="float"><%=_("Jabber account")%>:</label>
|
|
186
|
+
<input name="setting[jabber_address]" size="20" id="jabber_address" type="text" value="<%= this_blog.jabber_address %>" />
|
|
187
|
+
<span class="float"><%= _("Jabber account to use when sending Jabber notifications") %>.</span>
|
|
188
|
+
</li>
|
|
189
|
+
<li>
|
|
190
|
+
<label class="float" for="jabber_password"><%= _("Jabber password")%>:</label>
|
|
191
|
+
<input name="setting[jabber_password]" size="20" id="jabber_password" type="password" value="<%= this_blog.jabber_password %>" />
|
|
192
|
+
</li>
|
|
193
|
+
</ul>
|
|
194
|
+
<p class="r"><%= save(_("Save Settings")) %></p>
|
|
195
|
+
</fieldset>
|
|
196
|
+
|
|
197
|
+
<fieldset id="spam" class="set">
|
|
198
|
+
<legend><%= _("Spam protection")%></legend>
|
|
199
|
+
|
|
200
|
+
<ul>
|
|
201
|
+
<li><%= _("Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots")%>.</li>
|
|
202
|
+
<li class="checkbox">
|
|
203
|
+
<label for="sp_global" class="float"><%= _("Enable spam protection")%>:</label>
|
|
204
|
+
<input name="setting[sp_global]" id="sp_global" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.sp_global%> /><input name="setting[sp_global]" type="hidden" value="0" />
|
|
205
|
+
</li>
|
|
206
|
+
<li><%= _("Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", '<a href="http://akismet.com">Akismet</a>')%> .
|
|
207
|
+
</li>
|
|
208
|
+
<li>
|
|
209
|
+
<label class="float" for="sp_akismet_key"><%= _("Akismet Key")%>:</label>
|
|
210
|
+
<input name="setting[sp_akismet_key]" id="sp_akismet_key" type="text" value="<%=h this_blog.sp_akismet_key %>" />
|
|
211
|
+
</li>
|
|
212
|
+
</ul>
|
|
213
|
+
<p class="r"><%= save(_("Save Settings")) %></p>
|
|
214
|
+
</fieldset>
|
|
215
|
+
|
|
216
|
+
<fieldset id="resources" class="set">
|
|
217
|
+
<legend><%= _("Resource Settings")%></legend>
|
|
218
|
+
<ul>
|
|
219
|
+
<li><%= _("The below settings act as defaults when you choose to publish an enclosure with iTunes metadata")%>.</li>
|
|
220
|
+
<li>
|
|
221
|
+
<label for="itunes_author" class="float"><%= _("Author")%>:</label>
|
|
222
|
+
<input name="setting[itunes_author]" size="25" id="itunes_author" type="text" value="<%= this_blog.itunes_author %>" />
|
|
223
|
+
</li>
|
|
224
|
+
<li>
|
|
225
|
+
<label for="itunes_subtitle" class="float"><%= _("Subtitle")%>: <span class="mandatory">*</span></label>
|
|
226
|
+
<input name="setting[itunes_subtitle]" size="25" id="itunes_subtitle" type="text" value="<%= this_blog.itunes_subtitle %>" />
|
|
227
|
+
</li>
|
|
228
|
+
<li>
|
|
229
|
+
<label class="float" for="itunes_summary"><%= _("Summary")%>: <span class="mandatory">*</span></label>
|
|
230
|
+
<textarea name="setting[itunes_summary]" cols="40" rows="3"><%=h this_blog.itunes_summary %></textarea>
|
|
231
|
+
<span class="float mandatory">* <%= _("Setting for channel")%></span>
|
|
232
|
+
</li>
|
|
233
|
+
<li>
|
|
234
|
+
<label class="float" for="itunes_email"><%= _("Email")%>: <span class="mandatory">**</span></label>
|
|
235
|
+
<input name="setting[itunes_email]" size="25" id="itunes_email" type="text" value="<%= this_blog.itunes_email %>" />
|
|
236
|
+
</li>
|
|
237
|
+
<li>
|
|
238
|
+
<label class="float" for="itunes_name"><%= _("Optional Name")%>: <span class="mandatory">**</span></label>
|
|
239
|
+
<input name="setting[itunes_name]" size="25" id="itunes_name" type="text" value="<%= this_blog.itunes_name %>" />
|
|
240
|
+
<span class="float mandatory">** <%= _("Not published by Apple")%></span>
|
|
241
|
+
</li>
|
|
242
|
+
<li>
|
|
243
|
+
<label class="float" for="itunes_copyright"><%= _("Copyright Information")%>:</label>
|
|
244
|
+
<input name="setting[itunes_copyright]" size="25" id="itunes_copyright" type="text" value="<%= this_blog.itunes_copyright %>" />
|
|
245
|
+
</li>
|
|
246
|
+
<li class="checkbox">
|
|
247
|
+
<label class="float" for="itunes_explicit"><%= _("Explicit")%>:</label>
|
|
248
|
+
<input name="setting[itunes_explicit]" id="itunes_explicit" type="checkbox" value="1" <%= 'checked="checked"' if this_blog.itunes_explicit%> />
|
|
249
|
+
<input name="setting[itunes_explicit]" type="hidden" value="0" />
|
|
250
|
+
</li>
|
|
251
|
+
</ul>
|
|
252
|
+
<p class="r"><%= save(_("Save Settings")) %></p>
|
|
253
|
+
</fieldset>
|
|
254
|
+
|
|
255
|
+
<fieldset id="misc" class="set">
|
|
256
|
+
<legend><%= _("Cache")%></legend>
|
|
257
|
+
<ul>
|
|
258
|
+
<li><%= link_to _('Empty Fragment Cache'), :controller => '/admin/cache', :action => 'sweep' %></li>
|
|
259
|
+
<li><%= link_to _('Rebuild cached HTML'), :controller => '/admin/cache', :action => 'sweep_html' %></li>
|
|
260
|
+
<p id="users"><%= _("There are %d entries in the cache", @page_cache_size) %></p>
|
|
261
|
+
</ul>
|
|
262
|
+
</fieldset>
|
|
263
|
+
|
|
264
|
+
<div id="operations" class="tasks">
|
|
265
|
+
<%= save(_("Save Settings")) %>
|
|
266
|
+
</div>
|
|
267
|
+
</div>
|
|
268
|
+
<% end %>
|