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
@@ -1,15 +1,16 @@
|
|
1
|
-
// Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
1
|
+
// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
2
2
|
// Contributors:
|
3
3
|
// Justin Palmer (http://encytemedia.com/)
|
4
4
|
// Mark Pilgrim (http://diveintomark.org/)
|
5
5
|
// Martin Bialasinki
|
6
6
|
//
|
7
|
-
//
|
7
|
+
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
8
|
+
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
8
9
|
|
9
10
|
// converts rgb() and #xxx to #xxxxxx format,
|
10
11
|
// returns self (or first argument) if not convertable
|
11
12
|
String.prototype.parseColor = function() {
|
12
|
-
var color = '#';
|
13
|
+
var color = '#';
|
13
14
|
if(this.slice(0,4) == 'rgb(') {
|
14
15
|
var cols = this.slice(4,this.length-1).split(',');
|
15
16
|
var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
|
@@ -41,15 +42,17 @@ Element.collectTextNodesIgnoreClass = function(element, className) {
|
|
41
42
|
|
42
43
|
Element.setContentZoom = function(element, percent) {
|
43
44
|
element = $(element);
|
44
|
-
|
45
|
+
element.setStyle({fontSize: (percent/100) + 'em'});
|
45
46
|
if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
|
47
|
+
return element;
|
46
48
|
}
|
47
49
|
|
48
|
-
Element.getOpacity = function(element){
|
50
|
+
Element.getOpacity = function(element){
|
51
|
+
element = $(element);
|
49
52
|
var opacity;
|
50
|
-
if (opacity =
|
53
|
+
if (opacity = element.getStyle('opacity'))
|
51
54
|
return parseFloat(opacity);
|
52
|
-
if (opacity = (
|
55
|
+
if (opacity = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
|
53
56
|
if(opacity[1]) return parseFloat(opacity[1]) / 100;
|
54
57
|
return 1.0;
|
55
58
|
}
|
@@ -57,34 +60,26 @@ Element.getOpacity = function(element){
|
|
57
60
|
Element.setOpacity = function(element, value){
|
58
61
|
element= $(element);
|
59
62
|
if (value == 1){
|
60
|
-
|
63
|
+
element.setStyle({ opacity:
|
61
64
|
(/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ?
|
62
|
-
0.999999 :
|
63
|
-
if(/MSIE/.test(navigator.userAgent))
|
64
|
-
|
65
|
+
0.999999 : 1.0 });
|
66
|
+
if(/MSIE/.test(navigator.userAgent) && !window.opera)
|
67
|
+
element.setStyle({filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')});
|
65
68
|
} else {
|
66
69
|
if(value < 0.00001) value = 0;
|
67
|
-
|
68
|
-
if(/MSIE/.test(navigator.userAgent))
|
69
|
-
|
70
|
-
|
71
|
-
|
70
|
+
element.setStyle({opacity: value});
|
71
|
+
if(/MSIE/.test(navigator.userAgent) && !window.opera)
|
72
|
+
element.setStyle(
|
73
|
+
{ filter: element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'') +
|
74
|
+
'alpha(opacity='+value*100+')' });
|
72
75
|
}
|
76
|
+
return element;
|
73
77
|
}
|
74
78
|
|
75
79
|
Element.getInlineOpacity = function(element){
|
76
80
|
return $(element).style.opacity || '';
|
77
81
|
}
|
78
82
|
|
79
|
-
Element.childrenWithClassName = function(element, className, findFirst) {
|
80
|
-
var classNameRegExp = new RegExp("(^|\\s)" + className + "(\\s|$)");
|
81
|
-
var results = $A($(element).getElementsByTagName('*'))[findFirst ? 'detect' : 'select']( function(c) {
|
82
|
-
return (c.className && c.className.match(classNameRegExp));
|
83
|
-
});
|
84
|
-
if(!results) results = [];
|
85
|
-
return results;
|
86
|
-
}
|
87
|
-
|
88
83
|
Element.forceRerendering = function(element) {
|
89
84
|
try {
|
90
85
|
element = $(element);
|
@@ -104,9 +99,17 @@ Array.prototype.call = function() {
|
|
104
99
|
/*--------------------------------------------------------------------------*/
|
105
100
|
|
106
101
|
var Effect = {
|
102
|
+
_elementDoesNotExistError: {
|
103
|
+
name: 'ElementDoesNotExistError',
|
104
|
+
message: 'The specified DOM element does not exist, but is required for this effect to operate'
|
105
|
+
},
|
107
106
|
tagifyText: function(element) {
|
107
|
+
if(typeof Builder == 'undefined')
|
108
|
+
throw("Effect.tagifyText requires including script.aculo.us' builder.js library");
|
109
|
+
|
108
110
|
var tagifyStyle = 'position:relative';
|
109
|
-
if(/MSIE/.test(navigator.userAgent)) tagifyStyle += ';zoom:1';
|
111
|
+
if(/MSIE/.test(navigator.userAgent) && !window.opera) tagifyStyle += ';zoom:1';
|
112
|
+
|
110
113
|
element = $(element);
|
111
114
|
$A(element.childNodes).each( function(child) {
|
112
115
|
if(child.nodeType==3) {
|
@@ -159,33 +162,35 @@ var Effect2 = Effect; // deprecated
|
|
159
162
|
|
160
163
|
/* ------------- transitions ------------- */
|
161
164
|
|
162
|
-
Effect.Transitions = {
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
}
|
167
|
-
|
168
|
-
|
169
|
-
}
|
170
|
-
|
171
|
-
|
172
|
-
}
|
173
|
-
|
174
|
-
|
175
|
-
}
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
165
|
+
Effect.Transitions = {
|
166
|
+
linear: Prototype.K,
|
167
|
+
sinoidal: function(pos) {
|
168
|
+
return (-Math.cos(pos*Math.PI)/2) + 0.5;
|
169
|
+
},
|
170
|
+
reverse: function(pos) {
|
171
|
+
return 1-pos;
|
172
|
+
},
|
173
|
+
flicker: function(pos) {
|
174
|
+
return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
|
175
|
+
},
|
176
|
+
wobble: function(pos) {
|
177
|
+
return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
|
178
|
+
},
|
179
|
+
pulse: function(pos, pulses) {
|
180
|
+
pulses = pulses || 5;
|
181
|
+
return (
|
182
|
+
Math.round((pos % (1/pulses)) * pulses) == 0 ?
|
183
|
+
((pos * pulses * 2) - Math.floor(pos * pulses * 2)) :
|
184
|
+
1 - ((pos * pulses * 2) - Math.floor(pos * pulses * 2))
|
185
|
+
);
|
186
|
+
},
|
187
|
+
none: function(pos) {
|
188
|
+
return 0;
|
189
|
+
},
|
190
|
+
full: function(pos) {
|
191
|
+
return 1;
|
192
|
+
}
|
193
|
+
};
|
189
194
|
|
190
195
|
/* ------------- core effects ------------- */
|
191
196
|
|
@@ -212,6 +217,9 @@ Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
|
|
212
217
|
e.finishOn += effect.finishOn;
|
213
218
|
});
|
214
219
|
break;
|
220
|
+
case 'with-last':
|
221
|
+
timestamp = this.effects.pluck('startOn').max() || timestamp;
|
222
|
+
break;
|
215
223
|
case 'end':
|
216
224
|
// start effect after last queued effect has finished
|
217
225
|
timestamp = this.effects.pluck('finishOn').max() || timestamp;
|
@@ -348,12 +356,24 @@ Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
|
|
348
356
|
}
|
349
357
|
});
|
350
358
|
|
359
|
+
Effect.Event = Class.create();
|
360
|
+
Object.extend(Object.extend(Effect.Event.prototype, Effect.Base.prototype), {
|
361
|
+
initialize: function() {
|
362
|
+
var options = Object.extend({
|
363
|
+
duration: 0
|
364
|
+
}, arguments[0] || {});
|
365
|
+
this.start(options);
|
366
|
+
},
|
367
|
+
update: Prototype.emptyFunction
|
368
|
+
});
|
369
|
+
|
351
370
|
Effect.Opacity = Class.create();
|
352
371
|
Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
|
353
372
|
initialize: function(element) {
|
354
373
|
this.element = $(element);
|
374
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
355
375
|
// make this work on IE on elements without 'layout'
|
356
|
-
if(/MSIE/.test(navigator.userAgent) && (!this.element.hasLayout))
|
376
|
+
if(/MSIE/.test(navigator.userAgent) && !window.opera && (!this.element.currentStyle.hasLayout))
|
357
377
|
this.element.setStyle({zoom: 1});
|
358
378
|
var options = Object.extend({
|
359
379
|
from: this.element.getOpacity() || 0.0,
|
@@ -370,6 +390,7 @@ Effect.Move = Class.create();
|
|
370
390
|
Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
|
371
391
|
initialize: function(element) {
|
372
392
|
this.element = $(element);
|
393
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
373
394
|
var options = Object.extend({
|
374
395
|
x: 0,
|
375
396
|
y: 0,
|
@@ -393,8 +414,8 @@ Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
|
|
393
414
|
},
|
394
415
|
update: function(position) {
|
395
416
|
this.element.setStyle({
|
396
|
-
left: this.options.x * position + this.originalLeft + 'px',
|
397
|
-
top: this.options.y * position + this.originalTop + 'px'
|
417
|
+
left: Math.round(this.options.x * position + this.originalLeft) + 'px',
|
418
|
+
top: Math.round(this.options.y * position + this.originalTop) + 'px'
|
398
419
|
});
|
399
420
|
}
|
400
421
|
});
|
@@ -408,7 +429,8 @@ Effect.MoveBy = function(element, toTop, toLeft) {
|
|
408
429
|
Effect.Scale = Class.create();
|
409
430
|
Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
|
410
431
|
initialize: function(element, percent) {
|
411
|
-
this.element = $(element)
|
432
|
+
this.element = $(element);
|
433
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
412
434
|
var options = Object.extend({
|
413
435
|
scaleX: true,
|
414
436
|
scaleY: true,
|
@@ -433,7 +455,7 @@ Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
|
|
433
455
|
this.originalLeft = this.element.offsetLeft;
|
434
456
|
|
435
457
|
var fontSize = this.element.getStyle('font-size') || '100%';
|
436
|
-
['em','px','%'].each( function(fontSizeType) {
|
458
|
+
['em','px','%','pt'].each( function(fontSizeType) {
|
437
459
|
if(fontSize.indexOf(fontSizeType)>0) {
|
438
460
|
this.fontSize = parseFloat(fontSize);
|
439
461
|
this.fontSizeType = fontSizeType;
|
@@ -458,12 +480,12 @@ Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
|
|
458
480
|
this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
|
459
481
|
},
|
460
482
|
finish: function(position) {
|
461
|
-
if
|
483
|
+
if(this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
|
462
484
|
},
|
463
485
|
setDimensions: function(height, width) {
|
464
486
|
var d = {};
|
465
|
-
if(this.options.scaleX) d.width = width + 'px';
|
466
|
-
if(this.options.scaleY) d.height = height + 'px';
|
487
|
+
if(this.options.scaleX) d.width = Math.round(width) + 'px';
|
488
|
+
if(this.options.scaleY) d.height = Math.round(height) + 'px';
|
467
489
|
if(this.options.scaleFromCenter) {
|
468
490
|
var topd = (height - this.dims[0])/2;
|
469
491
|
var leftd = (width - this.dims[1])/2;
|
@@ -483,6 +505,7 @@ Effect.Highlight = Class.create();
|
|
483
505
|
Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), {
|
484
506
|
initialize: function(element) {
|
485
507
|
this.element = $(element);
|
508
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
486
509
|
var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || {});
|
487
510
|
this.start(options);
|
488
511
|
},
|
@@ -547,8 +570,7 @@ Effect.Fade = function(element) {
|
|
547
570
|
to: 0.0,
|
548
571
|
afterFinishInternal: function(effect) {
|
549
572
|
if(effect.options.to!=0) return;
|
550
|
-
effect.element.hide();
|
551
|
-
effect.element.setStyle({opacity: oldOpacity});
|
573
|
+
effect.element.hide().setStyle({opacity: oldOpacity});
|
552
574
|
}}, arguments[1] || {});
|
553
575
|
return new Effect.Opacity(element,options);
|
554
576
|
}
|
@@ -563,25 +585,31 @@ Effect.Appear = function(element) {
|
|
563
585
|
effect.element.forceRerendering();
|
564
586
|
},
|
565
587
|
beforeSetup: function(effect) {
|
566
|
-
effect.element.setOpacity(effect.options.from);
|
567
|
-
effect.element.show();
|
588
|
+
effect.element.setOpacity(effect.options.from).show();
|
568
589
|
}}, arguments[1] || {});
|
569
590
|
return new Effect.Opacity(element,options);
|
570
591
|
}
|
571
592
|
|
572
593
|
Effect.Puff = function(element) {
|
573
594
|
element = $(element);
|
574
|
-
var oldStyle = {
|
595
|
+
var oldStyle = {
|
596
|
+
opacity: element.getInlineOpacity(),
|
597
|
+
position: element.getStyle('position'),
|
598
|
+
top: element.style.top,
|
599
|
+
left: element.style.left,
|
600
|
+
width: element.style.width,
|
601
|
+
height: element.style.height
|
602
|
+
};
|
575
603
|
return new Effect.Parallel(
|
576
604
|
[ new Effect.Scale(element, 200,
|
577
605
|
{ sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }),
|
578
606
|
new Effect.Opacity(element, { sync: true, to: 0.0 } ) ],
|
579
607
|
Object.extend({ duration: 1.0,
|
580
608
|
beforeSetupInternal: function(effect) {
|
581
|
-
effect.effects[0].element
|
609
|
+
Position.absolutize(effect.effects[0].element)
|
610
|
+
},
|
582
611
|
afterFinishInternal: function(effect) {
|
583
|
-
effect.effects[0].element.hide();
|
584
|
-
effect.effects[0].element.setStyle(oldStyle); }
|
612
|
+
effect.effects[0].element.hide().setStyle(oldStyle); }
|
585
613
|
}, arguments[1] || {})
|
586
614
|
);
|
587
615
|
}
|
@@ -589,13 +617,12 @@ Effect.Puff = function(element) {
|
|
589
617
|
Effect.BlindUp = function(element) {
|
590
618
|
element = $(element);
|
591
619
|
element.makeClipping();
|
592
|
-
return new Effect.Scale(element, 0,
|
620
|
+
return new Effect.Scale(element, 0,
|
593
621
|
Object.extend({ scaleContent: false,
|
594
622
|
scaleX: false,
|
595
623
|
restoreAfterFinish: true,
|
596
624
|
afterFinishInternal: function(effect) {
|
597
|
-
effect.element.hide();
|
598
|
-
effect.element.undoClipping();
|
625
|
+
effect.element.hide().undoClipping();
|
599
626
|
}
|
600
627
|
}, arguments[1] || {})
|
601
628
|
);
|
@@ -604,28 +631,25 @@ Effect.BlindUp = function(element) {
|
|
604
631
|
Effect.BlindDown = function(element) {
|
605
632
|
element = $(element);
|
606
633
|
var elementDimensions = element.getDimensions();
|
607
|
-
return new Effect.Scale(element, 100,
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
}
|
621
|
-
}, arguments[1] || {})
|
622
|
-
);
|
634
|
+
return new Effect.Scale(element, 100, Object.extend({
|
635
|
+
scaleContent: false,
|
636
|
+
scaleX: false,
|
637
|
+
scaleFrom: 0,
|
638
|
+
scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
|
639
|
+
restoreAfterFinish: true,
|
640
|
+
afterSetup: function(effect) {
|
641
|
+
effect.element.makeClipping().setStyle({height: '0px'}).show();
|
642
|
+
},
|
643
|
+
afterFinishInternal: function(effect) {
|
644
|
+
effect.element.undoClipping();
|
645
|
+
}
|
646
|
+
}, arguments[1] || {}));
|
623
647
|
}
|
624
648
|
|
625
649
|
Effect.SwitchOff = function(element) {
|
626
650
|
element = $(element);
|
627
651
|
var oldOpacity = element.getInlineOpacity();
|
628
|
-
return new Effect.Appear(element, {
|
652
|
+
return new Effect.Appear(element, Object.extend({
|
629
653
|
duration: 0.4,
|
630
654
|
from: 0,
|
631
655
|
transition: Effect.Transitions.flicker,
|
@@ -634,18 +658,14 @@ Effect.SwitchOff = function(element) {
|
|
634
658
|
duration: 0.3, scaleFromCenter: true,
|
635
659
|
scaleX: false, scaleContent: false, restoreAfterFinish: true,
|
636
660
|
beforeSetup: function(effect) {
|
637
|
-
effect.element.makePositioned();
|
638
|
-
effect.element.makeClipping();
|
661
|
+
effect.element.makePositioned().makeClipping();
|
639
662
|
},
|
640
663
|
afterFinishInternal: function(effect) {
|
641
|
-
effect.element.hide();
|
642
|
-
effect.element.undoClipping();
|
643
|
-
effect.element.undoPositioned();
|
644
|
-
effect.element.setStyle({opacity: oldOpacity});
|
664
|
+
effect.element.hide().undoClipping().undoPositioned().setStyle({opacity: oldOpacity});
|
645
665
|
}
|
646
666
|
})
|
647
667
|
}
|
648
|
-
});
|
668
|
+
}, arguments[1] || {}));
|
649
669
|
}
|
650
670
|
|
651
671
|
Effect.DropOut = function(element) {
|
@@ -663,9 +683,7 @@ Effect.DropOut = function(element) {
|
|
663
683
|
effect.effects[0].element.makePositioned();
|
664
684
|
},
|
665
685
|
afterFinishInternal: function(effect) {
|
666
|
-
effect.effects[0].element.hide();
|
667
|
-
effect.effects[0].element.undoPositioned();
|
668
|
-
effect.effects[0].element.setStyle(oldStyle);
|
686
|
+
effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);
|
669
687
|
}
|
670
688
|
}, arguments[1] || {}));
|
671
689
|
}
|
@@ -687,54 +705,42 @@ Effect.Shake = function(element) {
|
|
687
705
|
{ x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
|
688
706
|
new Effect.Move(effect.element,
|
689
707
|
{ x: -20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
|
690
|
-
effect.element.undoPositioned();
|
691
|
-
effect.element.setStyle(oldStyle);
|
708
|
+
effect.element.undoPositioned().setStyle(oldStyle);
|
692
709
|
}}) }}) }}) }}) }}) }});
|
693
710
|
}
|
694
711
|
|
695
712
|
Effect.SlideDown = function(element) {
|
696
|
-
element = $(element);
|
697
|
-
element.cleanWhitespace();
|
713
|
+
element = $(element).cleanWhitespace();
|
698
714
|
// SlideDown need to have the content of the element wrapped in a container element with fixed height!
|
699
|
-
var oldInnerBottom =
|
715
|
+
var oldInnerBottom = element.down().getStyle('bottom');
|
700
716
|
var elementDimensions = element.getDimensions();
|
701
717
|
return new Effect.Scale(element, 100, Object.extend({
|
702
718
|
scaleContent: false,
|
703
719
|
scaleX: false,
|
704
|
-
scaleFrom: 0,
|
720
|
+
scaleFrom: window.opera ? 0 : 1,
|
705
721
|
scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
|
706
722
|
restoreAfterFinish: true,
|
707
723
|
afterSetup: function(effect) {
|
708
724
|
effect.element.makePositioned();
|
709
|
-
effect.element.
|
725
|
+
effect.element.down().makePositioned();
|
710
726
|
if(window.opera) effect.element.setStyle({top: ''});
|
711
|
-
effect.element.makeClipping();
|
712
|
-
|
713
|
-
effect.element.show(); },
|
727
|
+
effect.element.makeClipping().setStyle({height: '0px'}).show();
|
728
|
+
},
|
714
729
|
afterUpdateInternal: function(effect) {
|
715
|
-
effect.element.
|
730
|
+
effect.element.down().setStyle({bottom:
|
716
731
|
(effect.dims[0] - effect.element.clientHeight) + 'px' });
|
717
732
|
},
|
718
733
|
afterFinishInternal: function(effect) {
|
719
|
-
effect.element.undoClipping();
|
720
|
-
|
721
|
-
if(/MSIE/.test(navigator.userAgent)){
|
722
|
-
effect.element.undoPositioned();
|
723
|
-
effect.element.firstChild.undoPositioned();
|
724
|
-
}else{
|
725
|
-
effect.element.firstChild.undoPositioned();
|
726
|
-
effect.element.undoPositioned();
|
727
|
-
}
|
728
|
-
effect.element.firstChild.setStyle({bottom: oldInnerBottom}); }
|
734
|
+
effect.element.undoClipping().undoPositioned();
|
735
|
+
effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); }
|
729
736
|
}, arguments[1] || {})
|
730
737
|
);
|
731
738
|
}
|
732
|
-
|
739
|
+
|
733
740
|
Effect.SlideUp = function(element) {
|
734
|
-
element = $(element);
|
735
|
-
element.
|
736
|
-
|
737
|
-
return new Effect.Scale(element, 0,
|
741
|
+
element = $(element).cleanWhitespace();
|
742
|
+
var oldInnerBottom = element.down().getStyle('bottom');
|
743
|
+
return new Effect.Scale(element, window.opera ? 0 : 1,
|
738
744
|
Object.extend({ scaleContent: false,
|
739
745
|
scaleX: false,
|
740
746
|
scaleMode: 'box',
|
@@ -742,32 +748,32 @@ Effect.SlideUp = function(element) {
|
|
742
748
|
restoreAfterFinish: true,
|
743
749
|
beforeStartInternal: function(effect) {
|
744
750
|
effect.element.makePositioned();
|
745
|
-
effect.element.
|
751
|
+
effect.element.down().makePositioned();
|
746
752
|
if(window.opera) effect.element.setStyle({top: ''});
|
747
|
-
effect.element.makeClipping();
|
748
|
-
|
753
|
+
effect.element.makeClipping().show();
|
754
|
+
},
|
749
755
|
afterUpdateInternal: function(effect) {
|
750
|
-
effect.element.
|
751
|
-
(effect.dims[0] - effect.element.clientHeight) + 'px' });
|
756
|
+
effect.element.down().setStyle({bottom:
|
757
|
+
(effect.dims[0] - effect.element.clientHeight) + 'px' });
|
758
|
+
},
|
752
759
|
afterFinishInternal: function(effect) {
|
753
|
-
effect.element.hide();
|
754
|
-
effect.element.
|
755
|
-
|
756
|
-
effect.element.undoPositioned();
|
757
|
-
effect.element.setStyle({bottom: oldInnerBottom}); }
|
760
|
+
effect.element.hide().undoClipping().undoPositioned().setStyle({bottom: oldInnerBottom});
|
761
|
+
effect.element.down().undoPositioned();
|
762
|
+
}
|
758
763
|
}, arguments[1] || {})
|
759
764
|
);
|
760
765
|
}
|
761
766
|
|
762
767
|
// Bug in opera makes the TD containing this element expand for a instance after finish
|
763
768
|
Effect.Squish = function(element) {
|
764
|
-
return new Effect.Scale(element, window.opera ? 1 : 0,
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
769
|
+
return new Effect.Scale(element, window.opera ? 1 : 0, {
|
770
|
+
restoreAfterFinish: true,
|
771
|
+
beforeSetup: function(effect) {
|
772
|
+
effect.element.makeClipping();
|
773
|
+
},
|
774
|
+
afterFinishInternal: function(effect) {
|
775
|
+
effect.element.hide().undoClipping();
|
776
|
+
}
|
771
777
|
});
|
772
778
|
}
|
773
779
|
|
@@ -823,9 +829,7 @@ Effect.Grow = function(element) {
|
|
823
829
|
y: initialMoveY,
|
824
830
|
duration: 0.01,
|
825
831
|
beforeSetup: function(effect) {
|
826
|
-
effect.element.hide();
|
827
|
-
effect.element.makeClipping();
|
828
|
-
effect.element.makePositioned();
|
832
|
+
effect.element.hide().makeClipping().makePositioned();
|
829
833
|
},
|
830
834
|
afterFinishInternal: function(effect) {
|
831
835
|
new Effect.Parallel(
|
@@ -836,13 +840,10 @@ Effect.Grow = function(element) {
|
|
836
840
|
sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
|
837
841
|
], Object.extend({
|
838
842
|
beforeSetup: function(effect) {
|
839
|
-
effect.effects[0].element.setStyle({height: '0px'});
|
840
|
-
effect.effects[0].element.show();
|
843
|
+
effect.effects[0].element.setStyle({height: '0px'}).show();
|
841
844
|
},
|
842
845
|
afterFinishInternal: function(effect) {
|
843
|
-
effect.effects[0].element.undoClipping();
|
844
|
-
effect.effects[0].element.undoPositioned();
|
845
|
-
effect.effects[0].element.setStyle(oldStyle);
|
846
|
+
effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle);
|
846
847
|
}
|
847
848
|
}, options)
|
848
849
|
)
|
@@ -896,13 +897,10 @@ Effect.Shrink = function(element) {
|
|
896
897
|
new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
|
897
898
|
], Object.extend({
|
898
899
|
beforeStartInternal: function(effect) {
|
899
|
-
effect.effects[0].element.makePositioned();
|
900
|
-
|
900
|
+
effect.effects[0].element.makePositioned().makeClipping();
|
901
|
+
},
|
901
902
|
afterFinishInternal: function(effect) {
|
902
|
-
effect.effects[0].element.hide();
|
903
|
-
effect.effects[0].element.undoClipping();
|
904
|
-
effect.effects[0].element.undoPositioned();
|
905
|
-
effect.effects[0].element.setStyle(oldStyle); }
|
903
|
+
effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); }
|
906
904
|
}, options)
|
907
905
|
);
|
908
906
|
}
|
@@ -912,10 +910,10 @@ Effect.Pulsate = function(element) {
|
|
912
910
|
var options = arguments[1] || {};
|
913
911
|
var oldOpacity = element.getInlineOpacity();
|
914
912
|
var transition = options.transition || Effect.Transitions.sinoidal;
|
915
|
-
var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos)) };
|
913
|
+
var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos, options.pulses)) };
|
916
914
|
reverser.bind(transition);
|
917
915
|
return new Effect.Opacity(element,
|
918
|
-
Object.extend(Object.extend({ duration:
|
916
|
+
Object.extend(Object.extend({ duration: 2.0, from: 0,
|
919
917
|
afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
|
920
918
|
}, options), {transition: reverser}));
|
921
919
|
}
|
@@ -927,7 +925,7 @@ Effect.Fold = function(element) {
|
|
927
925
|
left: element.style.left,
|
928
926
|
width: element.style.width,
|
929
927
|
height: element.style.height };
|
930
|
-
|
928
|
+
element.makeClipping();
|
931
929
|
return new Effect.Scale(element, 5, Object.extend({
|
932
930
|
scaleContent: false,
|
933
931
|
scaleX: false,
|
@@ -936,15 +934,147 @@ Effect.Fold = function(element) {
|
|
936
934
|
scaleContent: false,
|
937
935
|
scaleY: false,
|
938
936
|
afterFinishInternal: function(effect) {
|
939
|
-
effect.element.hide();
|
940
|
-
effect.element.undoClipping();
|
941
|
-
effect.element.setStyle(oldStyle);
|
937
|
+
effect.element.hide().undoClipping().setStyle(oldStyle);
|
942
938
|
} });
|
943
939
|
}}, arguments[1] || {}));
|
944
940
|
};
|
945
941
|
|
942
|
+
Effect.Morph = Class.create();
|
943
|
+
Object.extend(Object.extend(Effect.Morph.prototype, Effect.Base.prototype), {
|
944
|
+
initialize: function(element) {
|
945
|
+
this.element = $(element);
|
946
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
947
|
+
var options = Object.extend({
|
948
|
+
style: ''
|
949
|
+
}, arguments[1] || {});
|
950
|
+
this.start(options);
|
951
|
+
},
|
952
|
+
setup: function(){
|
953
|
+
function parseColor(color){
|
954
|
+
if(!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff';
|
955
|
+
color = color.parseColor();
|
956
|
+
return $R(0,2).map(function(i){
|
957
|
+
return parseInt( color.slice(i*2+1,i*2+3), 16 )
|
958
|
+
});
|
959
|
+
}
|
960
|
+
this.transforms = this.options.style.parseStyle().map(function(property){
|
961
|
+
var originalValue = this.element.getStyle(property[0]);
|
962
|
+
return $H({
|
963
|
+
style: property[0],
|
964
|
+
originalValue: property[1].unit=='color' ?
|
965
|
+
parseColor(originalValue) : parseFloat(originalValue || 0),
|
966
|
+
targetValue: property[1].unit=='color' ?
|
967
|
+
parseColor(property[1].value) : property[1].value,
|
968
|
+
unit: property[1].unit
|
969
|
+
});
|
970
|
+
}.bind(this)).reject(function(transform){
|
971
|
+
return (
|
972
|
+
(transform.originalValue == transform.targetValue) ||
|
973
|
+
(
|
974
|
+
transform.unit != 'color' &&
|
975
|
+
(isNaN(transform.originalValue) || isNaN(transform.targetValue))
|
976
|
+
)
|
977
|
+
)
|
978
|
+
});
|
979
|
+
},
|
980
|
+
update: function(position) {
|
981
|
+
var style = $H(), value = null;
|
982
|
+
this.transforms.each(function(transform){
|
983
|
+
value = transform.unit=='color' ?
|
984
|
+
$R(0,2).inject('#',function(m,v,i){
|
985
|
+
return m+(Math.round(transform.originalValue[i]+
|
986
|
+
(transform.targetValue[i] - transform.originalValue[i])*position)).toColorPart() }) :
|
987
|
+
transform.originalValue + Math.round(
|
988
|
+
((transform.targetValue - transform.originalValue) * position) * 1000)/1000 + transform.unit;
|
989
|
+
style[transform.style] = value;
|
990
|
+
});
|
991
|
+
this.element.setStyle(style);
|
992
|
+
}
|
993
|
+
});
|
994
|
+
|
995
|
+
Effect.Transform = Class.create();
|
996
|
+
Object.extend(Effect.Transform.prototype, {
|
997
|
+
initialize: function(tracks){
|
998
|
+
this.tracks = [];
|
999
|
+
this.options = arguments[1] || {};
|
1000
|
+
this.addTracks(tracks);
|
1001
|
+
},
|
1002
|
+
addTracks: function(tracks){
|
1003
|
+
tracks.each(function(track){
|
1004
|
+
var data = $H(track).values().first();
|
1005
|
+
this.tracks.push($H({
|
1006
|
+
ids: $H(track).keys().first(),
|
1007
|
+
effect: Effect.Morph,
|
1008
|
+
options: { style: data }
|
1009
|
+
}));
|
1010
|
+
}.bind(this));
|
1011
|
+
return this;
|
1012
|
+
},
|
1013
|
+
play: function(){
|
1014
|
+
return new Effect.Parallel(
|
1015
|
+
this.tracks.map(function(track){
|
1016
|
+
var elements = [$(track.ids) || $$(track.ids)].flatten();
|
1017
|
+
return elements.map(function(e){ return new track.effect(e, Object.extend({ sync:true }, track.options)) });
|
1018
|
+
}).flatten(),
|
1019
|
+
this.options
|
1020
|
+
);
|
1021
|
+
}
|
1022
|
+
});
|
1023
|
+
|
1024
|
+
Element.CSS_PROPERTIES = ['azimuth', 'backgroundAttachment', 'backgroundColor', 'backgroundImage',
|
1025
|
+
'backgroundPosition', 'backgroundRepeat', 'borderBottomColor', 'borderBottomStyle',
|
1026
|
+
'borderBottomWidth', 'borderCollapse', 'borderLeftColor', 'borderLeftStyle', 'borderLeftWidth',
|
1027
|
+
'borderRightColor', 'borderRightStyle', 'borderRightWidth', 'borderSpacing', 'borderTopColor',
|
1028
|
+
'borderTopStyle', 'borderTopWidth', 'bottom', 'captionSide', 'clear', 'clip', 'color', 'content',
|
1029
|
+
'counterIncrement', 'counterReset', 'cssFloat', 'cueAfter', 'cueBefore', 'cursor', 'direction',
|
1030
|
+
'display', 'elevation', 'emptyCells', 'fontFamily', 'fontSize', 'fontSizeAdjust', 'fontStretch',
|
1031
|
+
'fontStyle', 'fontVariant', 'fontWeight', 'height', 'left', 'letterSpacing', 'lineHeight',
|
1032
|
+
'listStyleImage', 'listStylePosition', 'listStyleType', 'marginBottom', 'marginLeft', 'marginRight',
|
1033
|
+
'marginTop', 'markerOffset', 'marks', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'opacity',
|
1034
|
+
'orphans', 'outlineColor', 'outlineOffset', 'outlineStyle', 'outlineWidth', 'overflowX', 'overflowY',
|
1035
|
+
'paddingBottom', 'paddingLeft', 'paddingRight', 'paddingTop', 'page', 'pageBreakAfter', 'pageBreakBefore',
|
1036
|
+
'pageBreakInside', 'pauseAfter', 'pauseBefore', 'pitch', 'pitchRange', 'position', 'quotes',
|
1037
|
+
'richness', 'right', 'size', 'speakHeader', 'speakNumeral', 'speakPunctuation', 'speechRate', 'stress',
|
1038
|
+
'tableLayout', 'textAlign', 'textDecoration', 'textIndent', 'textShadow', 'textTransform', 'top',
|
1039
|
+
'unicodeBidi', 'verticalAlign', 'visibility', 'voiceFamily', 'volume', 'whiteSpace', 'widows',
|
1040
|
+
'width', 'wordSpacing', 'zIndex'];
|
1041
|
+
|
1042
|
+
Element.CSS_LENGTH = /^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;
|
1043
|
+
|
1044
|
+
String.prototype.parseStyle = function(){
|
1045
|
+
var element = Element.extend(document.createElement('div'));
|
1046
|
+
element.innerHTML = '<div style="' + this + '"></div>';
|
1047
|
+
var style = element.down().style, styleRules = $H();
|
1048
|
+
|
1049
|
+
Element.CSS_PROPERTIES.each(function(property){
|
1050
|
+
if(style[property]) styleRules[property] = style[property];
|
1051
|
+
});
|
1052
|
+
|
1053
|
+
var result = $H();
|
1054
|
+
|
1055
|
+
styleRules.each(function(pair){
|
1056
|
+
var property = pair[0], value = pair[1], unit = null;
|
1057
|
+
|
1058
|
+
if(value.parseColor('#zzzzzz') != '#zzzzzz') {
|
1059
|
+
value = value.parseColor();
|
1060
|
+
unit = 'color';
|
1061
|
+
} else if(Element.CSS_LENGTH.test(value))
|
1062
|
+
var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/),
|
1063
|
+
value = parseFloat(components[1]), unit = (components.length == 3) ? components[2] : null;
|
1064
|
+
|
1065
|
+
result[property.underscore().dasherize()] = $H({ value:value, unit:unit });
|
1066
|
+
}.bind(this));
|
1067
|
+
|
1068
|
+
return result;
|
1069
|
+
};
|
1070
|
+
|
1071
|
+
Element.morph = function(element, style) {
|
1072
|
+
new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || {}));
|
1073
|
+
return element;
|
1074
|
+
};
|
1075
|
+
|
946
1076
|
['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom',
|
947
|
-
'collectTextNodes','collectTextNodesIgnoreClass','
|
1077
|
+
'collectTextNodes','collectTextNodesIgnoreClass','morph'].each(
|
948
1078
|
function(f) { Element.Methods[f] = Element[f]; }
|
949
1079
|
);
|
950
1080
|
|