railscart 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/License.txt +26 -0
- data/Manifest.txt +462 -0
- data/README.txt +1 -0
- data/Rakefile +4 -0
- data/bin/railscart +114 -0
- data/config/hoe.rb +78 -0
- data/config/requirements.rb +19 -0
- data/lib/railscart.rb +5 -0
- data/lib/railscart/version.rb +9 -0
- data/log/debug.log +0 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +74 -0
- data/setup.rb +1585 -0
- data/starter-app/README +182 -0
- data/starter-app/Rakefile +10 -0
- data/starter-app/app/controllers/application.rb +14 -0
- data/starter-app/app/helpers/application_helper.rb +3 -0
- data/starter-app/app/models/role.rb +3 -0
- data/starter-app/app/models/tag.rb +37 -0
- data/starter-app/app/models/tagging.rb +16 -0
- data/starter-app/app/models/user.rb +101 -0
- data/starter-app/app/views/layouts/application.rhtml +20 -0
- data/starter-app/config/boot.rb +45 -0
- data/starter-app/config/database.yml +23 -0
- data/starter-app/config/environment.rb +119 -0
- data/starter-app/config/environments/development.rb +21 -0
- data/starter-app/config/environments/production.rb +21 -0
- data/starter-app/config/environments/test.rb +19 -0
- data/starter-app/config/routes.rb +28 -0
- data/starter-app/db/migrate/001_add_sessions.rb +16 -0
- data/starter-app/db/migrate/002_create_tags_and_taggings.rb +28 -0
- data/starter-app/db/migrate/003_railscart_to_version_19.rb +9 -0
- data/starter-app/db/migrate/004_railscart_to_version_20.rb +9 -0
- data/starter-app/db/migrate/005_create_users.rb +17 -0
- data/starter-app/db/migrate/006_create_roles.rb +20 -0
- data/starter-app/db/sample/addresses.yml +29 -0
- data/starter-app/db/sample/categories.yml +35 -0
- data/starter-app/db/sample/countries.yml +4 -0
- data/starter-app/db/sample/line_items.yml +32 -0
- data/starter-app/db/sample/option_groups.yml +16 -0
- data/starter-app/db/sample/option_values.yml +13 -0
- data/starter-app/db/sample/options.yml +3 -0
- data/starter-app/db/sample/orders.yml +17 -0
- data/starter-app/db/sample/products.yml +70 -0
- data/starter-app/db/sample/roles.yml +3 -0
- data/starter-app/db/sample/skus.yml +35 -0
- data/starter-app/db/sample/states.yml +204 -0
- data/starter-app/db/sample/taggings.yml +16 -0
- data/starter-app/db/sample/tags.yml +6 -0
- data/starter-app/db/sample/txns.yml +13 -0
- data/starter-app/db/sample/users.yml +10 -0
- data/starter-app/db/sample/variations.yml +20 -0
- data/starter-app/doc/README_FOR_APP +2 -0
- data/starter-app/lib/authenticated_system.rb +116 -0
- data/starter-app/lib/authenticated_test_helper.rb +10 -0
- data/starter-app/lib/custom_fixtures.rb +7 -0
- data/starter-app/lib/hijacker.rb +78 -0
- data/starter-app/lib/role_requirement_system.rb +142 -0
- data/starter-app/lib/role_requirement_test_helper.rb +86 -0
- data/starter-app/lib/tagging_extensions.rb +104 -0
- data/starter-app/lib/tasks/rc_sample_data.rake +31 -0
- data/starter-app/lib/tasks/sample/images/ror_bag.jpg +0 -0
- data/starter-app/lib/tasks/sample/images/ror_baseball_jersey.jpg +0 -0
- data/starter-app/lib/tasks/sample/images/ror_jr_spaghetti.jpg +0 -0
- data/starter-app/lib/tasks/sample/images/ror_mug.jpg +0 -0
- data/starter-app/lib/tasks/sample/images/ror_ringer_tshirt.jpg +0 -0
- data/starter-app/lib/tasks/sample/images/ror_stein.jpg +0 -0
- data/starter-app/lib/tasks/sample/images/ror_tote.jpg +0 -0
- data/starter-app/public/.htaccess +40 -0
- data/starter-app/public/404.html +30 -0
- data/starter-app/public/500.html +30 -0
- data/starter-app/public/dispatch.cgi +10 -0
- data/starter-app/public/dispatch.fcgi +24 -0
- data/starter-app/public/dispatch.rb +10 -0
- data/starter-app/public/favicon.ico +0 -0
- data/starter-app/public/images/rails.png +0 -0
- data/starter-app/public/index.html +277 -0
- data/starter-app/public/javascripts/application.js +2 -0
- data/starter-app/public/javascripts/controls.js +833 -0
- data/starter-app/public/javascripts/dragdrop.js +942 -0
- data/starter-app/public/javascripts/effects.js +1088 -0
- data/starter-app/public/javascripts/prototype.js +4184 -0
- data/starter-app/public/robots.txt +1 -0
- data/starter-app/public/stylesheets/application.css +186 -0
- data/starter-app/public/stylesheets/cart/_controller.css +4 -0
- data/starter-app/public/stylesheets/checkout/_controller.css +13 -0
- data/starter-app/script/about +3 -0
- data/starter-app/script/breakpointer +3 -0
- data/starter-app/script/console +3 -0
- data/starter-app/script/destroy +3 -0
- data/starter-app/script/generate +3 -0
- data/starter-app/script/performance/benchmarker +3 -0
- data/starter-app/script/performance/profiler +3 -0
- data/starter-app/script/plugin +3 -0
- data/starter-app/script/process/inspector +3 -0
- data/starter-app/script/process/reaper +3 -0
- data/starter-app/script/process/spawner +3 -0
- data/starter-app/script/runner +3 -0
- data/starter-app/script/server +3 -0
- data/starter-app/test/fixtures/users.yml +7 -0
- data/starter-app/test/test_helper.rb +28 -0
- data/starter-app/test/unit/user_test.rb +8 -0
- data/starter-app/vendor/plugins/acts_as_list/README +23 -0
- data/starter-app/vendor/plugins/acts_as_list/init.rb +3 -0
- data/starter-app/vendor/plugins/acts_as_list/lib/active_record/acts/list.rb +256 -0
- data/starter-app/vendor/plugins/acts_as_list/test/list_test.rb +332 -0
- data/starter-app/vendor/plugins/acts_as_tree/README +26 -0
- data/starter-app/vendor/plugins/acts_as_tree/Rakefile +22 -0
- data/starter-app/vendor/plugins/acts_as_tree/init.rb +1 -0
- data/starter-app/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +96 -0
- data/starter-app/vendor/plugins/acts_as_tree/test/abstract_unit.rb +0 -0
- data/starter-app/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb +219 -0
- data/starter-app/vendor/plugins/acts_as_tree/test/database.yml +0 -0
- data/starter-app/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
- data/starter-app/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
- data/starter-app/vendor/plugins/acts_as_tree/test/schema.rb +0 -0
- data/starter-app/vendor/plugins/calendar_date_select/CHANGELOG +170 -0
- data/starter-app/vendor/plugins/calendar_date_select/MIT-LICENSE +20 -0
- data/starter-app/vendor/plugins/calendar_date_select/README +10 -0
- data/starter-app/vendor/plugins/calendar_date_select/init.rb +15 -0
- data/starter-app/vendor/plugins/calendar_date_select/js_test/functional/.tmp_cds_test.html +306 -0
- data/starter-app/vendor/plugins/calendar_date_select/js_test/functional/cds_test.html +324 -0
- data/starter-app/vendor/plugins/calendar_date_select/js_test/prototype.js +4184 -0
- data/starter-app/vendor/plugins/calendar_date_select/js_test/test.css +40 -0
- data/starter-app/vendor/plugins/calendar_date_select/js_test/unit/cds_helper_methods.html +46 -0
- data/starter-app/vendor/plugins/calendar_date_select/js_test/unittest.js +564 -0
- data/starter-app/vendor/plugins/calendar_date_select/lib/calendar_date_select.rb +192 -0
- data/starter-app/vendor/plugins/calendar_date_select/lib/includes_helper.rb +22 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/images/calendar_date_select/calendar.gif +0 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/calendar_date_select.js +439 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_american.js +34 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_finnish.js +24 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_hyphen_ampm.js +36 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/format_italian.js +24 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/javascripts/calendar_date_select/locale/fi.js +10 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/blue.css +130 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/default.css +135 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/plain.css +128 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/red.css +135 -0
- data/starter-app/vendor/plugins/calendar_date_select/public/stylesheets/calendar_date_select/silver.css +133 -0
- data/starter-app/vendor/plugins/calendar_date_select/test/functional/calendar_date_select_test.rb +95 -0
- data/starter-app/vendor/plugins/calendar_date_select/test/functional/helper_methods_test.rb +15 -0
- data/starter-app/vendor/plugins/calendar_date_select/test/test_helper.rb +26 -0
- data/starter-app/vendor/plugins/engines/CHANGELOG +258 -0
- data/starter-app/vendor/plugins/engines/MIT-LICENSE +21 -0
- data/starter-app/vendor/plugins/engines/README +63 -0
- data/starter-app/vendor/plugins/engines/Rakefile +32 -0
- data/starter-app/vendor/plugins/engines/about.yml +7 -0
- data/starter-app/vendor/plugins/engines/boot.rb +18 -0
- data/starter-app/vendor/plugins/engines/generators/plugin_migration/USAGE +45 -0
- data/starter-app/vendor/plugins/engines/generators/plugin_migration/plugin_migration_generator.rb +79 -0
- data/starter-app/vendor/plugins/engines/generators/plugin_migration/templates/plugin_migration.erb +13 -0
- data/starter-app/vendor/plugins/engines/init.rb +2 -0
- data/starter-app/vendor/plugins/engines/lib/engines.rb +169 -0
- data/starter-app/vendor/plugins/engines/lib/engines/assets.rb +38 -0
- data/starter-app/vendor/plugins/engines/lib/engines/plugin.rb +125 -0
- data/starter-app/vendor/plugins/engines/lib/engines/plugin/list.rb +30 -0
- data/starter-app/vendor/plugins/engines/lib/engines/plugin/loader.rb +18 -0
- data/starter-app/vendor/plugins/engines/lib/engines/plugin/locator.rb +11 -0
- data/starter-app/vendor/plugins/engines/lib/engines/plugin/migrator.rb +60 -0
- data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/action_mailer.rb +85 -0
- data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/active_record.rb +24 -0
- data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/asset_helpers.rb +119 -0
- data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb +145 -0
- data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/migrations.rb +161 -0
- data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/rails.rb +11 -0
- data/starter-app/vendor/plugins/engines/lib/engines/rails_extensions/routing.rb +84 -0
- data/starter-app/vendor/plugins/engines/lib/engines/testing.rb +87 -0
- data/starter-app/vendor/plugins/engines/tasks/engines.rake +148 -0
- data/starter-app/vendor/plugins/in_place_editing/README +14 -0
- data/starter-app/vendor/plugins/in_place_editing/Rakefile +22 -0
- data/starter-app/vendor/plugins/in_place_editing/init.rb +2 -0
- data/starter-app/vendor/plugins/in_place_editing/lib/in_place_editing.rb +25 -0
- data/starter-app/vendor/plugins/in_place_editing/lib/in_place_macros_helper.rb +71 -0
- data/starter-app/vendor/plugins/in_place_editing/test/in_place_editing_test.rb +69 -0
- data/starter-app/vendor/plugins/paginating_find/CHANGELOG +117 -0
- data/starter-app/vendor/plugins/paginating_find/README +89 -0
- data/starter-app/vendor/plugins/paginating_find/init.rb +2 -0
- data/starter-app/vendor/plugins/paginating_find/lib/paginating_find.rb +135 -0
- data/starter-app/vendor/plugins/paginating_find/lib/paging_enumerator.rb +158 -0
- data/starter-app/vendor/plugins/paginating_find/lib/paging_helper.rb +47 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/Rakefile +10 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/app/controllers/application.rb +2 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/config/boot.rb +44 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/config/database.yml +6 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/config/environment.rb +53 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/config/environments/test.rb +19 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/config/routes.rb +22 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/db/schema.rb +16 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/script/breakpointer +3 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/script/console +3 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/fixtures/articles.yml +19 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/fixtures/authors.yml +7 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/fixtures/edits.yml +11 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/fixtures/models.rb +18 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/test_helper.rb +33 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/unit/abstract_test.rb +7 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/unit/group_test.rb +40 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/unit/paginating_find_test.rb +194 -0
- data/starter-app/vendor/plugins/paginating_find/test_app/test/unit/paging_enumerator_test.rb +143 -0
- data/starter-app/vendor/plugins/railscart/.rakeTasks +7 -0
- data/starter-app/vendor/plugins/railscart/CHANGELOG +1 -0
- data/starter-app/vendor/plugins/railscart/LICENSE +26 -0
- data/starter-app/vendor/plugins/railscart/README +2 -0
- data/starter-app/vendor/plugins/railscart/Rakefile +10 -0
- data/starter-app/vendor/plugins/railscart/VERSION +1 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/account_controller.rb +48 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/base_controller.rb +7 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/categories_controller.rb +107 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/option_groups_controller.rb +36 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/option_values_controller.rb +42 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/options_controller.rb +52 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/orders_controller.rb +194 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/overview_controller.rb +14 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/products_controller.rb +147 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/reports_controller.rb +53 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/users_controller.rb +45 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/admin/variations_controller.rb +73 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/cart_controller.rb +45 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/checkout_controller.rb +179 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/rails_cart/base_controller.rb +41 -0
- data/starter-app/vendor/plugins/railscart/app/controllers/store_controller.rb +20 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/account_helper.rb +2 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/admin/base_helper.rb +15 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/admin/categories_helper.rb +3 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/admin/option_groups_helper.rb +2 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/admin/option_values_helper.rb +2 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/admin/orders_helper.rb +11 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/admin/overview_helper.rb +12 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/admin/users_helper.rb +2 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/admin/variations_helper.rb +2 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/cart_helper.rb +6 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/checkout_helper.rb +17 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/rails_cart/base_helper.rb +67 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/search_helper.rb +10 -0
- data/starter-app/vendor/plugins/railscart/app/helpers/store_helper.rb +3 -0
- data/starter-app/vendor/plugins/railscart/app/models/address.rb +17 -0
- data/starter-app/vendor/plugins/railscart/app/models/cart.rb +37 -0
- data/starter-app/vendor/plugins/railscart/app/models/cart_item.rb +28 -0
- data/starter-app/vendor/plugins/railscart/app/models/category.rb +66 -0
- data/starter-app/vendor/plugins/railscart/app/models/country.rb +3 -0
- data/starter-app/vendor/plugins/railscart/app/models/line_item.rb +24 -0
- data/starter-app/vendor/plugins/railscart/app/models/option.rb +4 -0
- data/starter-app/vendor/plugins/railscart/app/models/option_group.rb +6 -0
- data/starter-app/vendor/plugins/railscart/app/models/option_value.rb +4 -0
- data/starter-app/vendor/plugins/railscart/app/models/order.rb +86 -0
- data/starter-app/vendor/plugins/railscart/app/models/order_mailer.rb +20 -0
- data/starter-app/vendor/plugins/railscart/app/models/payment.rb +49 -0
- data/starter-app/vendor/plugins/railscart/app/models/product.rb +76 -0
- data/starter-app/vendor/plugins/railscart/app/models/search_criteria.rb +27 -0
- data/starter-app/vendor/plugins/railscart/app/models/sku.rb +7 -0
- data/starter-app/vendor/plugins/railscart/app/models/state.rb +3 -0
- data/starter-app/vendor/plugins/railscart/app/models/tax_treatment.rb +2 -0
- data/starter-app/vendor/plugins/railscart/app/models/txn.rb +7 -0
- data/starter-app/vendor/plugins/railscart/app/models/variation.rb +5 -0
- data/starter-app/vendor/plugins/railscart/app/views/account/index.rhtml +3 -0
- data/starter-app/vendor/plugins/railscart/app/views/account/login.rhtml +12 -0
- data/starter-app/vendor/plugins/railscart/app/views/account/signup.rhtml +16 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/categories/_form.rhtml +27 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/categories/edit.rhtml +9 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/categories/list.rhtml +47 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/categories/new.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/option_groups/_form.rhtml +19 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/option_groups/new.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/option_values/_form.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/option_values/edit.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/option_values/list.rhtml +22 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/option_values/new.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/options/_form.rhtml +7 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/options/edit.rhtml +26 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/options/list.rhtml +23 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/options/new.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/orders/_address.rhtml +37 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/orders/index.rhtml +99 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/orders/show.rhtml +43 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/overview/index.rhtml +0 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/products/_form.rhtml +55 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/products/_menu.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/products/_new_variation.rhtml +0 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/products/edit.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/products/index.rhtml +66 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/products/new.rhtml +13 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/products/show.rhtml +26 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/reports/index.rhtml +29 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/reports/sales_total.rhtml +28 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/users/_form.rhtml +29 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/users/_menu.rhtml +5 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/users/edit.rhtml +8 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/users/index.rhtml +26 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/users/new.rhtml +6 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/users/show.rhtml +9 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/variations/_form.rhtml +33 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/variations/_option_values.rhtml +5 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/variations/list.rhtml +23 -0
- data/starter-app/vendor/plugins/railscart/app/views/admin/variations/new.rhtml +14 -0
- data/starter-app/vendor/plugins/railscart/app/views/cart/index.rhtml +49 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/_address.rhtml +51 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/_address_ro.rhtml +18 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/_cart_item.rhtml +5 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/_extra.rhtml +1 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/addresses.rhtml +49 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/cvv.rhtml +15 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/empty_cart.rhtml +4 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/final_confirmation.rhtml +92 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/incomplete.rhtml +7 -0
- data/starter-app/vendor/plugins/railscart/app/views/checkout/thank_you.rhtml +11 -0
- data/starter-app/vendor/plugins/railscart/app/views/layouts/admin.rhtml +69 -0
- data/starter-app/vendor/plugins/railscart/app/views/layouts/products.rhtml +20 -0
- data/starter-app/vendor/plugins/railscart/app/views/layouts/simple.rhtml +37 -0
- data/starter-app/vendor/plugins/railscart/app/views/order_mailer/cancel.rhtml +15 -0
- data/starter-app/vendor/plugins/railscart/app/views/order_mailer/confirm.rhtml +18 -0
- data/starter-app/vendor/plugins/railscart/app/views/shared/_order_details.rhtml +35 -0
- data/starter-app/vendor/plugins/railscart/app/views/shared/_paginate.rhtml +34 -0
- data/starter-app/vendor/plugins/railscart/app/views/shared/_report_criteria.rhtml +32 -0
- data/starter-app/vendor/plugins/railscart/app/views/shared/_tax_treatments.rhtml +12 -0
- data/starter-app/vendor/plugins/railscart/app/views/shared/_variations.rhtml +60 -0
- data/starter-app/vendor/plugins/railscart/app/views/store/_menu.rhtml +7 -0
- data/starter-app/vendor/plugins/railscart/app/views/store/_products.rhtml +10 -0
- data/starter-app/vendor/plugins/railscart/app/views/store/list.rhtml +16 -0
- data/starter-app/vendor/plugins/railscart/app/views/store/show.rhtml +71 -0
- data/starter-app/vendor/plugins/railscart/assets/.htaccess +40 -0
- data/starter-app/vendor/plugins/railscart/assets/404.html +30 -0
- data/starter-app/vendor/plugins/railscart/assets/500.html +30 -0
- data/starter-app/vendor/plugins/railscart/assets/dispatch.cgi +10 -0
- data/starter-app/vendor/plugins/railscart/assets/dispatch.fcgi +24 -0
- data/starter-app/vendor/plugins/railscart/assets/dispatch.rb +10 -0
- data/starter-app/vendor/plugins/railscart/assets/favicon.ico +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/amex_cid.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/creditcard.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/discover_cid.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/master_cid.jpg +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/products/ror_bag.jpg +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/products/ror_baseball_jersey.jpg +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/products/ror_jr_spaghetti.jpg +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/products/ror_mug.jpg +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/products/ror_ringer_tshirt.jpg +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/products/ror_stein.jpg +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/products/ror_tote.jpg +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/rails.png +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/railscart/progress.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/railscart/railscart_logo142x65.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/railscart/railscart_logo245x112.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/railscart/spinner.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/spinner.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/images/visa_cid.gif +0 -0
- data/starter-app/vendor/plugins/railscart/assets/javascripts/application.js +2 -0
- data/starter-app/vendor/plugins/railscart/assets/javascripts/controls.js +833 -0
- data/starter-app/vendor/plugins/railscart/assets/javascripts/dragdrop.js +942 -0
- data/starter-app/vendor/plugins/railscart/assets/javascripts/effects.js +1088 -0
- data/starter-app/vendor/plugins/railscart/assets/javascripts/lowpro.js +307 -0
- data/starter-app/vendor/plugins/railscart/assets/javascripts/prototype.js +2515 -0
- data/starter-app/vendor/plugins/railscart/assets/robots.txt +1 -0
- data/starter-app/vendor/plugins/railscart/assets/stylesheets/cart/_controller.css +71 -0
- data/starter-app/vendor/plugins/railscart/assets/stylesheets/checkout/_controller.css +31 -0
- data/starter-app/vendor/plugins/railscart/assets/stylesheets/fullscreen.css +63 -0
- data/starter-app/vendor/plugins/railscart/assets/stylesheets/orders/_controller.css +3 -0
- data/starter-app/vendor/plugins/railscart/assets/stylesheets/products/_controller.css +13 -0
- data/starter-app/vendor/plugins/railscart/assets/stylesheets/railscart-admin.css +295 -0
- data/starter-app/vendor/plugins/railscart/assets/stylesheets/railscart.css +66 -0
- data/starter-app/vendor/plugins/railscart/assets/stylesheets/store/_controller.css +23 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/001_create_addresses.rb +22 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/002_create_cart_items.rb +14 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/003_create_carts.rb +12 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/004_create_categories.rb +15 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/005_create_categories_products.rb +12 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/006_create_line_items.rb +17 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/007_create_option_groups.rb +12 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/008_create_option_values.rb +11 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/009_create_options.rb +11 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/010_create_orders.rb +24 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/011_create_products.rb +22 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/012_ignore_users.rb +9 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/013_create_txns.rb +21 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/014_ignore_roles.rb +9 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/015_create_variations.rb +14 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/016_create_tax_treatments.rb +23 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/017_create_skus.rb +13 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/018_create_countries.rb +11 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/019_create_states.rb +13 -0
- data/starter-app/vendor/plugins/railscart/db/migrate/020_modify_users.rb +9 -0
- data/starter-app/vendor/plugins/railscart/init.rb +16 -0
- data/starter-app/vendor/plugins/railscart/install.rb +3 -0
- data/starter-app/vendor/plugins/railscart/lib/constants/enumerable_constants.rb +207 -0
- data/starter-app/vendor/plugins/railscart/lib/format.rb +12 -0
- data/starter-app/vendor/plugins/railscart/lib/gateway/bogus_gateway.rb +63 -0
- data/starter-app/vendor/plugins/railscart/lib/shipping/flat_rate.rb +10 -0
- data/starter-app/vendor/plugins/railscart/lib/tasks/rc_bootstrap.rake +24 -0
- data/starter-app/vendor/plugins/railscart/lib/tax/sales_tax.rb +26 -0
- data/starter-app/vendor/plugins/railscart/routes.rb +3 -0
- data/starter-app/vendor/plugins/railscart/script/about +3 -0
- data/starter-app/vendor/plugins/railscart/script/breakpointer +3 -0
- data/starter-app/vendor/plugins/railscart/script/console +3 -0
- data/starter-app/vendor/plugins/railscart/script/destroy +3 -0
- data/starter-app/vendor/plugins/railscart/script/generate +3 -0
- data/starter-app/vendor/plugins/railscart/script/performance/benchmarker +3 -0
- data/starter-app/vendor/plugins/railscart/script/performance/profiler +3 -0
- data/starter-app/vendor/plugins/railscart/script/plugin +3 -0
- data/starter-app/vendor/plugins/railscart/script/process/inspector +3 -0
- data/starter-app/vendor/plugins/railscart/script/process/reaper +3 -0
- data/starter-app/vendor/plugins/railscart/script/process/spawner +3 -0
- data/starter-app/vendor/plugins/railscart/script/runner +3 -0
- data/starter-app/vendor/plugins/railscart/script/server +3 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/addresses.yml +29 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/categories.yml +40 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/line_items.yml +32 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/orders.yml +17 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/products.yml +63 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/products_tags.yml +10 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/roles.yml +6 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/roles_users.yml +3 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/skus.yml +5 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/tags.yml +7 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/tax_treatments.yml +7 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/txns.yml +13 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/users.yml +40 -0
- data/starter-app/vendor/plugins/railscart/test/fixtures/variations.yml +16 -0
- data/starter-app/vendor/plugins/railscart/test/functional/account_controller_test.rb +129 -0
- data/starter-app/vendor/plugins/railscart/test/functional/admin/base_controller_test.rb +18 -0
- data/starter-app/vendor/plugins/railscart/test/functional/admin/option_groups_controller_test.rb +18 -0
- data/starter-app/vendor/plugins/railscart/test/functional/admin/option_values_controller_test.rb +18 -0
- data/starter-app/vendor/plugins/railscart/test/functional/admin/orders_controller_test.rb +18 -0
- data/starter-app/vendor/plugins/railscart/test/functional/admin/overview_controller_test.rb +18 -0
- data/starter-app/vendor/plugins/railscart/test/functional/admin/products_controller_test.rb +125 -0
- data/starter-app/vendor/plugins/railscart/test/functional/admin/users_controller_test.rb +58 -0
- data/starter-app/vendor/plugins/railscart/test/functional/admin/variations_controller_test.rb +18 -0
- data/starter-app/vendor/plugins/railscart/test/functional/application_controller_test.rb +30 -0
- data/starter-app/vendor/plugins/railscart/test/functional/cart_controller_test.rb +76 -0
- data/starter-app/vendor/plugins/railscart/test/functional/checkout_controller_test.rb +20 -0
- data/starter-app/vendor/plugins/railscart/test/integration/authentication_test.rb +53 -0
- data/starter-app/vendor/plugins/railscart/test/integration/product_admin_test.rb +135 -0
- data/starter-app/vendor/plugins/railscart/test/integration/user_stories_test.rb +59 -0
- data/starter-app/vendor/plugins/railscart/test/integration/variations_test.rb +24 -0
- data/starter-app/vendor/plugins/railscart/test/test_helper.rb +45 -0
- data/starter-app/vendor/plugins/railscart/test/unit/address_test.rb +10 -0
- data/starter-app/vendor/plugins/railscart/test/unit/cart_item_test.rb +55 -0
- data/starter-app/vendor/plugins/railscart/test/unit/cart_test.rb +35 -0
- data/starter-app/vendor/plugins/railscart/test/unit/category_test.rb +52 -0
- data/starter-app/vendor/plugins/railscart/test/unit/line_item_test.rb +61 -0
- data/starter-app/vendor/plugins/railscart/test/unit/option_group_test.rb +12 -0
- data/starter-app/vendor/plugins/railscart/test/unit/order_test.rb +49 -0
- data/starter-app/vendor/plugins/railscart/test/unit/product_test.rb +107 -0
- data/starter-app/vendor/plugins/railscart/test/unit/role_test.rb +10 -0
- data/starter-app/vendor/plugins/railscart/test/unit/sales_tax_test.rb +46 -0
- data/starter-app/vendor/plugins/railscart/test/unit/sku_test.rb +10 -0
- data/starter-app/vendor/plugins/railscart/test/unit/tag_test.rb +9 -0
- data/starter-app/vendor/plugins/railscart/test/unit/tax_treatment_test.rb +10 -0
- data/starter-app/vendor/plugins/railscart/test/unit/txn_test.rb +10 -0
- data/starter-app/vendor/plugins/railscart/test/unit/variation_test.rb +9 -0
- data/starter-app/vendor/plugins/railscart/uninstall.rb +1 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +17 -0
- data/test/test_helper.rb +2 -0
- data/test/test_railscart.rb +11 -0
- data/website/index.html +93 -0
- data/website/index.txt +39 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.rhtml +48 -0
- metadata +557 -0
@@ -0,0 +1,1088 @@
|
|
1
|
+
// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
2
|
+
// Contributors:
|
3
|
+
// Justin Palmer (http://encytemedia.com/)
|
4
|
+
// Mark Pilgrim (http://diveintomark.org/)
|
5
|
+
// Martin Bialasinki
|
6
|
+
//
|
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/
|
9
|
+
|
10
|
+
// converts rgb() and #xxx to #xxxxxx format,
|
11
|
+
// returns self (or first argument) if not convertable
|
12
|
+
String.prototype.parseColor = function() {
|
13
|
+
var color = '#';
|
14
|
+
if(this.slice(0,4) == 'rgb(') {
|
15
|
+
var cols = this.slice(4,this.length-1).split(',');
|
16
|
+
var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
|
17
|
+
} else {
|
18
|
+
if(this.slice(0,1) == '#') {
|
19
|
+
if(this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
|
20
|
+
if(this.length==7) color = this.toLowerCase();
|
21
|
+
}
|
22
|
+
}
|
23
|
+
return(color.length==7 ? color : (arguments[0] || this));
|
24
|
+
}
|
25
|
+
|
26
|
+
/*--------------------------------------------------------------------------*/
|
27
|
+
|
28
|
+
Element.collectTextNodes = function(element) {
|
29
|
+
return $A($(element).childNodes).collect( function(node) {
|
30
|
+
return (node.nodeType==3 ? node.nodeValue :
|
31
|
+
(node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
|
32
|
+
}).flatten().join('');
|
33
|
+
}
|
34
|
+
|
35
|
+
Element.collectTextNodesIgnoreClass = function(element, className) {
|
36
|
+
return $A($(element).childNodes).collect( function(node) {
|
37
|
+
return (node.nodeType==3 ? node.nodeValue :
|
38
|
+
((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
|
39
|
+
Element.collectTextNodesIgnoreClass(node, className) : ''));
|
40
|
+
}).flatten().join('');
|
41
|
+
}
|
42
|
+
|
43
|
+
Element.setContentZoom = function(element, percent) {
|
44
|
+
element = $(element);
|
45
|
+
element.setStyle({fontSize: (percent/100) + 'em'});
|
46
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
|
47
|
+
return element;
|
48
|
+
}
|
49
|
+
|
50
|
+
Element.getOpacity = function(element){
|
51
|
+
element = $(element);
|
52
|
+
var opacity;
|
53
|
+
if (opacity = element.getStyle('opacity'))
|
54
|
+
return parseFloat(opacity);
|
55
|
+
if (opacity = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
|
56
|
+
if(opacity[1]) return parseFloat(opacity[1]) / 100;
|
57
|
+
return 1.0;
|
58
|
+
}
|
59
|
+
|
60
|
+
Element.setOpacity = function(element, value){
|
61
|
+
element= $(element);
|
62
|
+
if (value == 1){
|
63
|
+
element.setStyle({ opacity:
|
64
|
+
(/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ?
|
65
|
+
0.999999 : 1.0 });
|
66
|
+
if(/MSIE/.test(navigator.userAgent) && !window.opera)
|
67
|
+
element.setStyle({filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')});
|
68
|
+
} else {
|
69
|
+
if(value < 0.00001) value = 0;
|
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+')' });
|
75
|
+
}
|
76
|
+
return element;
|
77
|
+
}
|
78
|
+
|
79
|
+
Element.getInlineOpacity = function(element){
|
80
|
+
return $(element).style.opacity || '';
|
81
|
+
}
|
82
|
+
|
83
|
+
Element.forceRerendering = function(element) {
|
84
|
+
try {
|
85
|
+
element = $(element);
|
86
|
+
var n = document.createTextNode(' ');
|
87
|
+
element.appendChild(n);
|
88
|
+
element.removeChild(n);
|
89
|
+
} catch(e) { }
|
90
|
+
};
|
91
|
+
|
92
|
+
/*--------------------------------------------------------------------------*/
|
93
|
+
|
94
|
+
Array.prototype.call = function() {
|
95
|
+
var args = arguments;
|
96
|
+
this.each(function(f){ f.apply(this, args) });
|
97
|
+
}
|
98
|
+
|
99
|
+
/*--------------------------------------------------------------------------*/
|
100
|
+
|
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
|
+
},
|
106
|
+
tagifyText: function(element) {
|
107
|
+
if(typeof Builder == 'undefined')
|
108
|
+
throw("Effect.tagifyText requires including script.aculo.us' builder.js library");
|
109
|
+
|
110
|
+
var tagifyStyle = 'position:relative';
|
111
|
+
if(/MSIE/.test(navigator.userAgent) && !window.opera) tagifyStyle += ';zoom:1';
|
112
|
+
|
113
|
+
element = $(element);
|
114
|
+
$A(element.childNodes).each( function(child) {
|
115
|
+
if(child.nodeType==3) {
|
116
|
+
child.nodeValue.toArray().each( function(character) {
|
117
|
+
element.insertBefore(
|
118
|
+
Builder.node('span',{style: tagifyStyle},
|
119
|
+
character == ' ' ? String.fromCharCode(160) : character),
|
120
|
+
child);
|
121
|
+
});
|
122
|
+
Element.remove(child);
|
123
|
+
}
|
124
|
+
});
|
125
|
+
},
|
126
|
+
multiple: function(element, effect) {
|
127
|
+
var elements;
|
128
|
+
if(((typeof element == 'object') ||
|
129
|
+
(typeof element == 'function')) &&
|
130
|
+
(element.length))
|
131
|
+
elements = element;
|
132
|
+
else
|
133
|
+
elements = $(element).childNodes;
|
134
|
+
|
135
|
+
var options = Object.extend({
|
136
|
+
speed: 0.1,
|
137
|
+
delay: 0.0
|
138
|
+
}, arguments[2] || {});
|
139
|
+
var masterDelay = options.delay;
|
140
|
+
|
141
|
+
$A(elements).each( function(element, index) {
|
142
|
+
new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));
|
143
|
+
});
|
144
|
+
},
|
145
|
+
PAIRS: {
|
146
|
+
'slide': ['SlideDown','SlideUp'],
|
147
|
+
'blind': ['BlindDown','BlindUp'],
|
148
|
+
'appear': ['Appear','Fade']
|
149
|
+
},
|
150
|
+
toggle: function(element, effect) {
|
151
|
+
element = $(element);
|
152
|
+
effect = (effect || 'appear').toLowerCase();
|
153
|
+
var options = Object.extend({
|
154
|
+
queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
|
155
|
+
}, arguments[2] || {});
|
156
|
+
Effect[element.visible() ?
|
157
|
+
Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
|
158
|
+
}
|
159
|
+
};
|
160
|
+
|
161
|
+
var Effect2 = Effect; // deprecated
|
162
|
+
|
163
|
+
/* ------------- transitions ------------- */
|
164
|
+
|
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
|
+
};
|
194
|
+
|
195
|
+
/* ------------- core effects ------------- */
|
196
|
+
|
197
|
+
Effect.ScopedQueue = Class.create();
|
198
|
+
Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
|
199
|
+
initialize: function() {
|
200
|
+
this.effects = [];
|
201
|
+
this.interval = null;
|
202
|
+
},
|
203
|
+
_each: function(iterator) {
|
204
|
+
this.effects._each(iterator);
|
205
|
+
},
|
206
|
+
add: function(effect) {
|
207
|
+
var timestamp = new Date().getTime();
|
208
|
+
|
209
|
+
var position = (typeof effect.options.queue == 'string') ?
|
210
|
+
effect.options.queue : effect.options.queue.position;
|
211
|
+
|
212
|
+
switch(position) {
|
213
|
+
case 'front':
|
214
|
+
// move unstarted effects after this effect
|
215
|
+
this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {
|
216
|
+
e.startOn += effect.finishOn;
|
217
|
+
e.finishOn += effect.finishOn;
|
218
|
+
});
|
219
|
+
break;
|
220
|
+
case 'with-last':
|
221
|
+
timestamp = this.effects.pluck('startOn').max() || timestamp;
|
222
|
+
break;
|
223
|
+
case 'end':
|
224
|
+
// start effect after last queued effect has finished
|
225
|
+
timestamp = this.effects.pluck('finishOn').max() || timestamp;
|
226
|
+
break;
|
227
|
+
}
|
228
|
+
|
229
|
+
effect.startOn += timestamp;
|
230
|
+
effect.finishOn += timestamp;
|
231
|
+
|
232
|
+
if(!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
|
233
|
+
this.effects.push(effect);
|
234
|
+
|
235
|
+
if(!this.interval)
|
236
|
+
this.interval = setInterval(this.loop.bind(this), 40);
|
237
|
+
},
|
238
|
+
remove: function(effect) {
|
239
|
+
this.effects = this.effects.reject(function(e) { return e==effect });
|
240
|
+
if(this.effects.length == 0) {
|
241
|
+
clearInterval(this.interval);
|
242
|
+
this.interval = null;
|
243
|
+
}
|
244
|
+
},
|
245
|
+
loop: function() {
|
246
|
+
var timePos = new Date().getTime();
|
247
|
+
this.effects.invoke('loop', timePos);
|
248
|
+
}
|
249
|
+
});
|
250
|
+
|
251
|
+
Effect.Queues = {
|
252
|
+
instances: $H(),
|
253
|
+
get: function(queueName) {
|
254
|
+
if(typeof queueName != 'string') return queueName;
|
255
|
+
|
256
|
+
if(!this.instances[queueName])
|
257
|
+
this.instances[queueName] = new Effect.ScopedQueue();
|
258
|
+
|
259
|
+
return this.instances[queueName];
|
260
|
+
}
|
261
|
+
}
|
262
|
+
Effect.Queue = Effect.Queues.get('global');
|
263
|
+
|
264
|
+
Effect.DefaultOptions = {
|
265
|
+
transition: Effect.Transitions.sinoidal,
|
266
|
+
duration: 1.0, // seconds
|
267
|
+
fps: 25.0, // max. 25fps due to Effect.Queue implementation
|
268
|
+
sync: false, // true for combining
|
269
|
+
from: 0.0,
|
270
|
+
to: 1.0,
|
271
|
+
delay: 0.0,
|
272
|
+
queue: 'parallel'
|
273
|
+
}
|
274
|
+
|
275
|
+
Effect.Base = function() {};
|
276
|
+
Effect.Base.prototype = {
|
277
|
+
position: null,
|
278
|
+
start: function(options) {
|
279
|
+
this.options = Object.extend(Object.extend({},Effect.DefaultOptions), options || {});
|
280
|
+
this.currentFrame = 0;
|
281
|
+
this.state = 'idle';
|
282
|
+
this.startOn = this.options.delay*1000;
|
283
|
+
this.finishOn = this.startOn + (this.options.duration*1000);
|
284
|
+
this.event('beforeStart');
|
285
|
+
if(!this.options.sync)
|
286
|
+
Effect.Queues.get(typeof this.options.queue == 'string' ?
|
287
|
+
'global' : this.options.queue.scope).add(this);
|
288
|
+
},
|
289
|
+
loop: function(timePos) {
|
290
|
+
if(timePos >= this.startOn) {
|
291
|
+
if(timePos >= this.finishOn) {
|
292
|
+
this.render(1.0);
|
293
|
+
this.cancel();
|
294
|
+
this.event('beforeFinish');
|
295
|
+
if(this.finish) this.finish();
|
296
|
+
this.event('afterFinish');
|
297
|
+
return;
|
298
|
+
}
|
299
|
+
var pos = (timePos - this.startOn) / (this.finishOn - this.startOn);
|
300
|
+
var frame = Math.round(pos * this.options.fps * this.options.duration);
|
301
|
+
if(frame > this.currentFrame) {
|
302
|
+
this.render(pos);
|
303
|
+
this.currentFrame = frame;
|
304
|
+
}
|
305
|
+
}
|
306
|
+
},
|
307
|
+
render: function(pos) {
|
308
|
+
if(this.state == 'idle') {
|
309
|
+
this.state = 'running';
|
310
|
+
this.event('beforeSetup');
|
311
|
+
if(this.setup) this.setup();
|
312
|
+
this.event('afterSetup');
|
313
|
+
}
|
314
|
+
if(this.state == 'running') {
|
315
|
+
if(this.options.transition) pos = this.options.transition(pos);
|
316
|
+
pos *= (this.options.to-this.options.from);
|
317
|
+
pos += this.options.from;
|
318
|
+
this.position = pos;
|
319
|
+
this.event('beforeUpdate');
|
320
|
+
if(this.update) this.update(pos);
|
321
|
+
this.event('afterUpdate');
|
322
|
+
}
|
323
|
+
},
|
324
|
+
cancel: function() {
|
325
|
+
if(!this.options.sync)
|
326
|
+
Effect.Queues.get(typeof this.options.queue == 'string' ?
|
327
|
+
'global' : this.options.queue.scope).remove(this);
|
328
|
+
this.state = 'finished';
|
329
|
+
},
|
330
|
+
event: function(eventName) {
|
331
|
+
if(this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
|
332
|
+
if(this.options[eventName]) this.options[eventName](this);
|
333
|
+
},
|
334
|
+
inspect: function() {
|
335
|
+
return '#<Effect:' + $H(this).inspect() + ',options:' + $H(this.options).inspect() + '>';
|
336
|
+
}
|
337
|
+
}
|
338
|
+
|
339
|
+
Effect.Parallel = Class.create();
|
340
|
+
Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
|
341
|
+
initialize: function(effects) {
|
342
|
+
this.effects = effects || [];
|
343
|
+
this.start(arguments[1]);
|
344
|
+
},
|
345
|
+
update: function(position) {
|
346
|
+
this.effects.invoke('render', position);
|
347
|
+
},
|
348
|
+
finish: function(position) {
|
349
|
+
this.effects.each( function(effect) {
|
350
|
+
effect.render(1.0);
|
351
|
+
effect.cancel();
|
352
|
+
effect.event('beforeFinish');
|
353
|
+
if(effect.finish) effect.finish(position);
|
354
|
+
effect.event('afterFinish');
|
355
|
+
});
|
356
|
+
}
|
357
|
+
});
|
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
|
+
|
370
|
+
Effect.Opacity = Class.create();
|
371
|
+
Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
|
372
|
+
initialize: function(element) {
|
373
|
+
this.element = $(element);
|
374
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
375
|
+
// make this work on IE on elements without 'layout'
|
376
|
+
if(/MSIE/.test(navigator.userAgent) && !window.opera && (!this.element.currentStyle.hasLayout))
|
377
|
+
this.element.setStyle({zoom: 1});
|
378
|
+
var options = Object.extend({
|
379
|
+
from: this.element.getOpacity() || 0.0,
|
380
|
+
to: 1.0
|
381
|
+
}, arguments[1] || {});
|
382
|
+
this.start(options);
|
383
|
+
},
|
384
|
+
update: function(position) {
|
385
|
+
this.element.setOpacity(position);
|
386
|
+
}
|
387
|
+
});
|
388
|
+
|
389
|
+
Effect.Move = Class.create();
|
390
|
+
Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
|
391
|
+
initialize: function(element) {
|
392
|
+
this.element = $(element);
|
393
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
394
|
+
var options = Object.extend({
|
395
|
+
x: 0,
|
396
|
+
y: 0,
|
397
|
+
mode: 'relative'
|
398
|
+
}, arguments[1] || {});
|
399
|
+
this.start(options);
|
400
|
+
},
|
401
|
+
setup: function() {
|
402
|
+
// Bug in Opera: Opera returns the "real" position of a static element or
|
403
|
+
// relative element that does not have top/left explicitly set.
|
404
|
+
// ==> Always set top and left for position relative elements in your stylesheets
|
405
|
+
// (to 0 if you do not need them)
|
406
|
+
this.element.makePositioned();
|
407
|
+
this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
|
408
|
+
this.originalTop = parseFloat(this.element.getStyle('top') || '0');
|
409
|
+
if(this.options.mode == 'absolute') {
|
410
|
+
// absolute movement, so we need to calc deltaX and deltaY
|
411
|
+
this.options.x = this.options.x - this.originalLeft;
|
412
|
+
this.options.y = this.options.y - this.originalTop;
|
413
|
+
}
|
414
|
+
},
|
415
|
+
update: function(position) {
|
416
|
+
this.element.setStyle({
|
417
|
+
left: Math.round(this.options.x * position + this.originalLeft) + 'px',
|
418
|
+
top: Math.round(this.options.y * position + this.originalTop) + 'px'
|
419
|
+
});
|
420
|
+
}
|
421
|
+
});
|
422
|
+
|
423
|
+
// for backwards compatibility
|
424
|
+
Effect.MoveBy = function(element, toTop, toLeft) {
|
425
|
+
return new Effect.Move(element,
|
426
|
+
Object.extend({ x: toLeft, y: toTop }, arguments[3] || {}));
|
427
|
+
};
|
428
|
+
|
429
|
+
Effect.Scale = Class.create();
|
430
|
+
Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
|
431
|
+
initialize: function(element, percent) {
|
432
|
+
this.element = $(element);
|
433
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
434
|
+
var options = Object.extend({
|
435
|
+
scaleX: true,
|
436
|
+
scaleY: true,
|
437
|
+
scaleContent: true,
|
438
|
+
scaleFromCenter: false,
|
439
|
+
scaleMode: 'box', // 'box' or 'contents' or {} with provided values
|
440
|
+
scaleFrom: 100.0,
|
441
|
+
scaleTo: percent
|
442
|
+
}, arguments[2] || {});
|
443
|
+
this.start(options);
|
444
|
+
},
|
445
|
+
setup: function() {
|
446
|
+
this.restoreAfterFinish = this.options.restoreAfterFinish || false;
|
447
|
+
this.elementPositioning = this.element.getStyle('position');
|
448
|
+
|
449
|
+
this.originalStyle = {};
|
450
|
+
['top','left','width','height','fontSize'].each( function(k) {
|
451
|
+
this.originalStyle[k] = this.element.style[k];
|
452
|
+
}.bind(this));
|
453
|
+
|
454
|
+
this.originalTop = this.element.offsetTop;
|
455
|
+
this.originalLeft = this.element.offsetLeft;
|
456
|
+
|
457
|
+
var fontSize = this.element.getStyle('font-size') || '100%';
|
458
|
+
['em','px','%','pt'].each( function(fontSizeType) {
|
459
|
+
if(fontSize.indexOf(fontSizeType)>0) {
|
460
|
+
this.fontSize = parseFloat(fontSize);
|
461
|
+
this.fontSizeType = fontSizeType;
|
462
|
+
}
|
463
|
+
}.bind(this));
|
464
|
+
|
465
|
+
this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;
|
466
|
+
|
467
|
+
this.dims = null;
|
468
|
+
if(this.options.scaleMode=='box')
|
469
|
+
this.dims = [this.element.offsetHeight, this.element.offsetWidth];
|
470
|
+
if(/^content/.test(this.options.scaleMode))
|
471
|
+
this.dims = [this.element.scrollHeight, this.element.scrollWidth];
|
472
|
+
if(!this.dims)
|
473
|
+
this.dims = [this.options.scaleMode.originalHeight,
|
474
|
+
this.options.scaleMode.originalWidth];
|
475
|
+
},
|
476
|
+
update: function(position) {
|
477
|
+
var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
|
478
|
+
if(this.options.scaleContent && this.fontSize)
|
479
|
+
this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
|
480
|
+
this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
|
481
|
+
},
|
482
|
+
finish: function(position) {
|
483
|
+
if(this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
|
484
|
+
},
|
485
|
+
setDimensions: function(height, width) {
|
486
|
+
var d = {};
|
487
|
+
if(this.options.scaleX) d.width = Math.round(width) + 'px';
|
488
|
+
if(this.options.scaleY) d.height = Math.round(height) + 'px';
|
489
|
+
if(this.options.scaleFromCenter) {
|
490
|
+
var topd = (height - this.dims[0])/2;
|
491
|
+
var leftd = (width - this.dims[1])/2;
|
492
|
+
if(this.elementPositioning == 'absolute') {
|
493
|
+
if(this.options.scaleY) d.top = this.originalTop-topd + 'px';
|
494
|
+
if(this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
|
495
|
+
} else {
|
496
|
+
if(this.options.scaleY) d.top = -topd + 'px';
|
497
|
+
if(this.options.scaleX) d.left = -leftd + 'px';
|
498
|
+
}
|
499
|
+
}
|
500
|
+
this.element.setStyle(d);
|
501
|
+
}
|
502
|
+
});
|
503
|
+
|
504
|
+
Effect.Highlight = Class.create();
|
505
|
+
Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), {
|
506
|
+
initialize: function(element) {
|
507
|
+
this.element = $(element);
|
508
|
+
if(!this.element) throw(Effect._elementDoesNotExistError);
|
509
|
+
var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || {});
|
510
|
+
this.start(options);
|
511
|
+
},
|
512
|
+
setup: function() {
|
513
|
+
// Prevent executing on elements not in the layout flow
|
514
|
+
if(this.element.getStyle('display')=='none') { this.cancel(); return; }
|
515
|
+
// Disable background image during the effect
|
516
|
+
this.oldStyle = {
|
517
|
+
backgroundImage: this.element.getStyle('background-image') };
|
518
|
+
this.element.setStyle({backgroundImage: 'none'});
|
519
|
+
if(!this.options.endcolor)
|
520
|
+
this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
|
521
|
+
if(!this.options.restorecolor)
|
522
|
+
this.options.restorecolor = this.element.getStyle('background-color');
|
523
|
+
// init color calculations
|
524
|
+
this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
|
525
|
+
this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this));
|
526
|
+
},
|
527
|
+
update: function(position) {
|
528
|
+
this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
|
529
|
+
return m+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart()); }.bind(this)) });
|
530
|
+
},
|
531
|
+
finish: function() {
|
532
|
+
this.element.setStyle(Object.extend(this.oldStyle, {
|
533
|
+
backgroundColor: this.options.restorecolor
|
534
|
+
}));
|
535
|
+
}
|
536
|
+
});
|
537
|
+
|
538
|
+
Effect.ScrollTo = Class.create();
|
539
|
+
Object.extend(Object.extend(Effect.ScrollTo.prototype, Effect.Base.prototype), {
|
540
|
+
initialize: function(element) {
|
541
|
+
this.element = $(element);
|
542
|
+
this.start(arguments[1] || {});
|
543
|
+
},
|
544
|
+
setup: function() {
|
545
|
+
Position.prepare();
|
546
|
+
var offsets = Position.cumulativeOffset(this.element);
|
547
|
+
if(this.options.offset) offsets[1] += this.options.offset;
|
548
|
+
var max = window.innerHeight ?
|
549
|
+
window.height - window.innerHeight :
|
550
|
+
document.body.scrollHeight -
|
551
|
+
(document.documentElement.clientHeight ?
|
552
|
+
document.documentElement.clientHeight : document.body.clientHeight);
|
553
|
+
this.scrollStart = Position.deltaY;
|
554
|
+
this.delta = (offsets[1] > max ? max : offsets[1]) - this.scrollStart;
|
555
|
+
},
|
556
|
+
update: function(position) {
|
557
|
+
Position.prepare();
|
558
|
+
window.scrollTo(Position.deltaX,
|
559
|
+
this.scrollStart + (position*this.delta));
|
560
|
+
}
|
561
|
+
});
|
562
|
+
|
563
|
+
/* ------------- combination effects ------------- */
|
564
|
+
|
565
|
+
Effect.Fade = function(element) {
|
566
|
+
element = $(element);
|
567
|
+
var oldOpacity = element.getInlineOpacity();
|
568
|
+
var options = Object.extend({
|
569
|
+
from: element.getOpacity() || 1.0,
|
570
|
+
to: 0.0,
|
571
|
+
afterFinishInternal: function(effect) {
|
572
|
+
if(effect.options.to!=0) return;
|
573
|
+
effect.element.hide().setStyle({opacity: oldOpacity});
|
574
|
+
}}, arguments[1] || {});
|
575
|
+
return new Effect.Opacity(element,options);
|
576
|
+
}
|
577
|
+
|
578
|
+
Effect.Appear = function(element) {
|
579
|
+
element = $(element);
|
580
|
+
var options = Object.extend({
|
581
|
+
from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
|
582
|
+
to: 1.0,
|
583
|
+
// force Safari to render floated elements properly
|
584
|
+
afterFinishInternal: function(effect) {
|
585
|
+
effect.element.forceRerendering();
|
586
|
+
},
|
587
|
+
beforeSetup: function(effect) {
|
588
|
+
effect.element.setOpacity(effect.options.from).show();
|
589
|
+
}}, arguments[1] || {});
|
590
|
+
return new Effect.Opacity(element,options);
|
591
|
+
}
|
592
|
+
|
593
|
+
Effect.Puff = function(element) {
|
594
|
+
element = $(element);
|
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
|
+
};
|
603
|
+
return new Effect.Parallel(
|
604
|
+
[ new Effect.Scale(element, 200,
|
605
|
+
{ sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }),
|
606
|
+
new Effect.Opacity(element, { sync: true, to: 0.0 } ) ],
|
607
|
+
Object.extend({ duration: 1.0,
|
608
|
+
beforeSetupInternal: function(effect) {
|
609
|
+
Position.absolutize(effect.effects[0].element)
|
610
|
+
},
|
611
|
+
afterFinishInternal: function(effect) {
|
612
|
+
effect.effects[0].element.hide().setStyle(oldStyle); }
|
613
|
+
}, arguments[1] || {})
|
614
|
+
);
|
615
|
+
}
|
616
|
+
|
617
|
+
Effect.BlindUp = function(element) {
|
618
|
+
element = $(element);
|
619
|
+
element.makeClipping();
|
620
|
+
return new Effect.Scale(element, 0,
|
621
|
+
Object.extend({ scaleContent: false,
|
622
|
+
scaleX: false,
|
623
|
+
restoreAfterFinish: true,
|
624
|
+
afterFinishInternal: function(effect) {
|
625
|
+
effect.element.hide().undoClipping();
|
626
|
+
}
|
627
|
+
}, arguments[1] || {})
|
628
|
+
);
|
629
|
+
}
|
630
|
+
|
631
|
+
Effect.BlindDown = function(element) {
|
632
|
+
element = $(element);
|
633
|
+
var elementDimensions = element.getDimensions();
|
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] || {}));
|
647
|
+
}
|
648
|
+
|
649
|
+
Effect.SwitchOff = function(element) {
|
650
|
+
element = $(element);
|
651
|
+
var oldOpacity = element.getInlineOpacity();
|
652
|
+
return new Effect.Appear(element, Object.extend({
|
653
|
+
duration: 0.4,
|
654
|
+
from: 0,
|
655
|
+
transition: Effect.Transitions.flicker,
|
656
|
+
afterFinishInternal: function(effect) {
|
657
|
+
new Effect.Scale(effect.element, 1, {
|
658
|
+
duration: 0.3, scaleFromCenter: true,
|
659
|
+
scaleX: false, scaleContent: false, restoreAfterFinish: true,
|
660
|
+
beforeSetup: function(effect) {
|
661
|
+
effect.element.makePositioned().makeClipping();
|
662
|
+
},
|
663
|
+
afterFinishInternal: function(effect) {
|
664
|
+
effect.element.hide().undoClipping().undoPositioned().setStyle({opacity: oldOpacity});
|
665
|
+
}
|
666
|
+
})
|
667
|
+
}
|
668
|
+
}, arguments[1] || {}));
|
669
|
+
}
|
670
|
+
|
671
|
+
Effect.DropOut = function(element) {
|
672
|
+
element = $(element);
|
673
|
+
var oldStyle = {
|
674
|
+
top: element.getStyle('top'),
|
675
|
+
left: element.getStyle('left'),
|
676
|
+
opacity: element.getInlineOpacity() };
|
677
|
+
return new Effect.Parallel(
|
678
|
+
[ new Effect.Move(element, {x: 0, y: 100, sync: true }),
|
679
|
+
new Effect.Opacity(element, { sync: true, to: 0.0 }) ],
|
680
|
+
Object.extend(
|
681
|
+
{ duration: 0.5,
|
682
|
+
beforeSetup: function(effect) {
|
683
|
+
effect.effects[0].element.makePositioned();
|
684
|
+
},
|
685
|
+
afterFinishInternal: function(effect) {
|
686
|
+
effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);
|
687
|
+
}
|
688
|
+
}, arguments[1] || {}));
|
689
|
+
}
|
690
|
+
|
691
|
+
Effect.Shake = function(element) {
|
692
|
+
element = $(element);
|
693
|
+
var oldStyle = {
|
694
|
+
top: element.getStyle('top'),
|
695
|
+
left: element.getStyle('left') };
|
696
|
+
return new Effect.Move(element,
|
697
|
+
{ x: 20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
|
698
|
+
new Effect.Move(effect.element,
|
699
|
+
{ x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
|
700
|
+
new Effect.Move(effect.element,
|
701
|
+
{ x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
|
702
|
+
new Effect.Move(effect.element,
|
703
|
+
{ x: -40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
|
704
|
+
new Effect.Move(effect.element,
|
705
|
+
{ x: 40, y: 0, duration: 0.1, afterFinishInternal: function(effect) {
|
706
|
+
new Effect.Move(effect.element,
|
707
|
+
{ x: -20, y: 0, duration: 0.05, afterFinishInternal: function(effect) {
|
708
|
+
effect.element.undoPositioned().setStyle(oldStyle);
|
709
|
+
}}) }}) }}) }}) }}) }});
|
710
|
+
}
|
711
|
+
|
712
|
+
Effect.SlideDown = function(element) {
|
713
|
+
element = $(element).cleanWhitespace();
|
714
|
+
// SlideDown need to have the content of the element wrapped in a container element with fixed height!
|
715
|
+
var oldInnerBottom = element.down().getStyle('bottom');
|
716
|
+
var elementDimensions = element.getDimensions();
|
717
|
+
return new Effect.Scale(element, 100, Object.extend({
|
718
|
+
scaleContent: false,
|
719
|
+
scaleX: false,
|
720
|
+
scaleFrom: window.opera ? 0 : 1,
|
721
|
+
scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
|
722
|
+
restoreAfterFinish: true,
|
723
|
+
afterSetup: function(effect) {
|
724
|
+
effect.element.makePositioned();
|
725
|
+
effect.element.down().makePositioned();
|
726
|
+
if(window.opera) effect.element.setStyle({top: ''});
|
727
|
+
effect.element.makeClipping().setStyle({height: '0px'}).show();
|
728
|
+
},
|
729
|
+
afterUpdateInternal: function(effect) {
|
730
|
+
effect.element.down().setStyle({bottom:
|
731
|
+
(effect.dims[0] - effect.element.clientHeight) + 'px' });
|
732
|
+
},
|
733
|
+
afterFinishInternal: function(effect) {
|
734
|
+
effect.element.undoClipping().undoPositioned();
|
735
|
+
effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); }
|
736
|
+
}, arguments[1] || {})
|
737
|
+
);
|
738
|
+
}
|
739
|
+
|
740
|
+
Effect.SlideUp = function(element) {
|
741
|
+
element = $(element).cleanWhitespace();
|
742
|
+
var oldInnerBottom = element.down().getStyle('bottom');
|
743
|
+
return new Effect.Scale(element, window.opera ? 0 : 1,
|
744
|
+
Object.extend({ scaleContent: false,
|
745
|
+
scaleX: false,
|
746
|
+
scaleMode: 'box',
|
747
|
+
scaleFrom: 100,
|
748
|
+
restoreAfterFinish: true,
|
749
|
+
beforeStartInternal: function(effect) {
|
750
|
+
effect.element.makePositioned();
|
751
|
+
effect.element.down().makePositioned();
|
752
|
+
if(window.opera) effect.element.setStyle({top: ''});
|
753
|
+
effect.element.makeClipping().show();
|
754
|
+
},
|
755
|
+
afterUpdateInternal: function(effect) {
|
756
|
+
effect.element.down().setStyle({bottom:
|
757
|
+
(effect.dims[0] - effect.element.clientHeight) + 'px' });
|
758
|
+
},
|
759
|
+
afterFinishInternal: function(effect) {
|
760
|
+
effect.element.hide().undoClipping().undoPositioned().setStyle({bottom: oldInnerBottom});
|
761
|
+
effect.element.down().undoPositioned();
|
762
|
+
}
|
763
|
+
}, arguments[1] || {})
|
764
|
+
);
|
765
|
+
}
|
766
|
+
|
767
|
+
// Bug in opera makes the TD containing this element expand for a instance after finish
|
768
|
+
Effect.Squish = function(element) {
|
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
|
+
}
|
777
|
+
});
|
778
|
+
}
|
779
|
+
|
780
|
+
Effect.Grow = function(element) {
|
781
|
+
element = $(element);
|
782
|
+
var options = Object.extend({
|
783
|
+
direction: 'center',
|
784
|
+
moveTransition: Effect.Transitions.sinoidal,
|
785
|
+
scaleTransition: Effect.Transitions.sinoidal,
|
786
|
+
opacityTransition: Effect.Transitions.full
|
787
|
+
}, arguments[1] || {});
|
788
|
+
var oldStyle = {
|
789
|
+
top: element.style.top,
|
790
|
+
left: element.style.left,
|
791
|
+
height: element.style.height,
|
792
|
+
width: element.style.width,
|
793
|
+
opacity: element.getInlineOpacity() };
|
794
|
+
|
795
|
+
var dims = element.getDimensions();
|
796
|
+
var initialMoveX, initialMoveY;
|
797
|
+
var moveX, moveY;
|
798
|
+
|
799
|
+
switch (options.direction) {
|
800
|
+
case 'top-left':
|
801
|
+
initialMoveX = initialMoveY = moveX = moveY = 0;
|
802
|
+
break;
|
803
|
+
case 'top-right':
|
804
|
+
initialMoveX = dims.width;
|
805
|
+
initialMoveY = moveY = 0;
|
806
|
+
moveX = -dims.width;
|
807
|
+
break;
|
808
|
+
case 'bottom-left':
|
809
|
+
initialMoveX = moveX = 0;
|
810
|
+
initialMoveY = dims.height;
|
811
|
+
moveY = -dims.height;
|
812
|
+
break;
|
813
|
+
case 'bottom-right':
|
814
|
+
initialMoveX = dims.width;
|
815
|
+
initialMoveY = dims.height;
|
816
|
+
moveX = -dims.width;
|
817
|
+
moveY = -dims.height;
|
818
|
+
break;
|
819
|
+
case 'center':
|
820
|
+
initialMoveX = dims.width / 2;
|
821
|
+
initialMoveY = dims.height / 2;
|
822
|
+
moveX = -dims.width / 2;
|
823
|
+
moveY = -dims.height / 2;
|
824
|
+
break;
|
825
|
+
}
|
826
|
+
|
827
|
+
return new Effect.Move(element, {
|
828
|
+
x: initialMoveX,
|
829
|
+
y: initialMoveY,
|
830
|
+
duration: 0.01,
|
831
|
+
beforeSetup: function(effect) {
|
832
|
+
effect.element.hide().makeClipping().makePositioned();
|
833
|
+
},
|
834
|
+
afterFinishInternal: function(effect) {
|
835
|
+
new Effect.Parallel(
|
836
|
+
[ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
|
837
|
+
new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }),
|
838
|
+
new Effect.Scale(effect.element, 100, {
|
839
|
+
scaleMode: { originalHeight: dims.height, originalWidth: dims.width },
|
840
|
+
sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
|
841
|
+
], Object.extend({
|
842
|
+
beforeSetup: function(effect) {
|
843
|
+
effect.effects[0].element.setStyle({height: '0px'}).show();
|
844
|
+
},
|
845
|
+
afterFinishInternal: function(effect) {
|
846
|
+
effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle);
|
847
|
+
}
|
848
|
+
}, options)
|
849
|
+
)
|
850
|
+
}
|
851
|
+
});
|
852
|
+
}
|
853
|
+
|
854
|
+
Effect.Shrink = function(element) {
|
855
|
+
element = $(element);
|
856
|
+
var options = Object.extend({
|
857
|
+
direction: 'center',
|
858
|
+
moveTransition: Effect.Transitions.sinoidal,
|
859
|
+
scaleTransition: Effect.Transitions.sinoidal,
|
860
|
+
opacityTransition: Effect.Transitions.none
|
861
|
+
}, arguments[1] || {});
|
862
|
+
var oldStyle = {
|
863
|
+
top: element.style.top,
|
864
|
+
left: element.style.left,
|
865
|
+
height: element.style.height,
|
866
|
+
width: element.style.width,
|
867
|
+
opacity: element.getInlineOpacity() };
|
868
|
+
|
869
|
+
var dims = element.getDimensions();
|
870
|
+
var moveX, moveY;
|
871
|
+
|
872
|
+
switch (options.direction) {
|
873
|
+
case 'top-left':
|
874
|
+
moveX = moveY = 0;
|
875
|
+
break;
|
876
|
+
case 'top-right':
|
877
|
+
moveX = dims.width;
|
878
|
+
moveY = 0;
|
879
|
+
break;
|
880
|
+
case 'bottom-left':
|
881
|
+
moveX = 0;
|
882
|
+
moveY = dims.height;
|
883
|
+
break;
|
884
|
+
case 'bottom-right':
|
885
|
+
moveX = dims.width;
|
886
|
+
moveY = dims.height;
|
887
|
+
break;
|
888
|
+
case 'center':
|
889
|
+
moveX = dims.width / 2;
|
890
|
+
moveY = dims.height / 2;
|
891
|
+
break;
|
892
|
+
}
|
893
|
+
|
894
|
+
return new Effect.Parallel(
|
895
|
+
[ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }),
|
896
|
+
new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}),
|
897
|
+
new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
|
898
|
+
], Object.extend({
|
899
|
+
beforeStartInternal: function(effect) {
|
900
|
+
effect.effects[0].element.makePositioned().makeClipping();
|
901
|
+
},
|
902
|
+
afterFinishInternal: function(effect) {
|
903
|
+
effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); }
|
904
|
+
}, options)
|
905
|
+
);
|
906
|
+
}
|
907
|
+
|
908
|
+
Effect.Pulsate = function(element) {
|
909
|
+
element = $(element);
|
910
|
+
var options = arguments[1] || {};
|
911
|
+
var oldOpacity = element.getInlineOpacity();
|
912
|
+
var transition = options.transition || Effect.Transitions.sinoidal;
|
913
|
+
var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos, options.pulses)) };
|
914
|
+
reverser.bind(transition);
|
915
|
+
return new Effect.Opacity(element,
|
916
|
+
Object.extend(Object.extend({ duration: 2.0, from: 0,
|
917
|
+
afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
|
918
|
+
}, options), {transition: reverser}));
|
919
|
+
}
|
920
|
+
|
921
|
+
Effect.Fold = function(element) {
|
922
|
+
element = $(element);
|
923
|
+
var oldStyle = {
|
924
|
+
top: element.style.top,
|
925
|
+
left: element.style.left,
|
926
|
+
width: element.style.width,
|
927
|
+
height: element.style.height };
|
928
|
+
element.makeClipping();
|
929
|
+
return new Effect.Scale(element, 5, Object.extend({
|
930
|
+
scaleContent: false,
|
931
|
+
scaleX: false,
|
932
|
+
afterFinishInternal: function(effect) {
|
933
|
+
new Effect.Scale(element, 1, {
|
934
|
+
scaleContent: false,
|
935
|
+
scaleY: false,
|
936
|
+
afterFinishInternal: function(effect) {
|
937
|
+
effect.element.hide().undoClipping().setStyle(oldStyle);
|
938
|
+
} });
|
939
|
+
}}, arguments[1] || {}));
|
940
|
+
};
|
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
|
+
|
1076
|
+
['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom',
|
1077
|
+
'collectTextNodes','collectTextNodesIgnoreClass','morph'].each(
|
1078
|
+
function(f) { Element.Methods[f] = Element[f]; }
|
1079
|
+
);
|
1080
|
+
|
1081
|
+
Element.Methods.visualEffect = function(element, effect, options) {
|
1082
|
+
s = effect.gsub(/_/, '-').camelize();
|
1083
|
+
effect_class = s.charAt(0).toUpperCase() + s.substring(1);
|
1084
|
+
new Effect[effect_class](element, options);
|
1085
|
+
return $(element);
|
1086
|
+
};
|
1087
|
+
|
1088
|
+
Element.addMethods();
|