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,833 @@
|
|
1
|
+
// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
2
|
+
// (c) 2005, 2006 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
|
3
|
+
// (c) 2005, 2006 Jon Tirsen (http://www.tirsen.com)
|
4
|
+
// Contributors:
|
5
|
+
// Richard Livsey
|
6
|
+
// Rahul Bhargava
|
7
|
+
// Rob Wills
|
8
|
+
//
|
9
|
+
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
10
|
+
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
11
|
+
|
12
|
+
// Autocompleter.Base handles all the autocompletion functionality
|
13
|
+
// that's independent of the data source for autocompletion. This
|
14
|
+
// includes drawing the autocompletion menu, observing keyboard
|
15
|
+
// and mouse events, and similar.
|
16
|
+
//
|
17
|
+
// Specific autocompleters need to provide, at the very least,
|
18
|
+
// a getUpdatedChoices function that will be invoked every time
|
19
|
+
// the text inside the monitored textbox changes. This method
|
20
|
+
// should get the text for which to provide autocompletion by
|
21
|
+
// invoking this.getToken(), NOT by directly accessing
|
22
|
+
// this.element.value. This is to allow incremental tokenized
|
23
|
+
// autocompletion. Specific auto-completion logic (AJAX, etc)
|
24
|
+
// belongs in getUpdatedChoices.
|
25
|
+
//
|
26
|
+
// Tokenized incremental autocompletion is enabled automatically
|
27
|
+
// when an autocompleter is instantiated with the 'tokens' option
|
28
|
+
// in the options parameter, e.g.:
|
29
|
+
// new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' });
|
30
|
+
// will incrementally autocomplete with a comma as the token.
|
31
|
+
// Additionally, ',' in the above example can be replaced with
|
32
|
+
// a token array, e.g. { tokens: [',', '\n'] } which
|
33
|
+
// enables autocompletion on multiple tokens. This is most
|
34
|
+
// useful when one of the tokens is \n (a newline), as it
|
35
|
+
// allows smart autocompletion after linebreaks.
|
36
|
+
|
37
|
+
if(typeof Effect == 'undefined')
|
38
|
+
throw("controls.js requires including script.aculo.us' effects.js library");
|
39
|
+
|
40
|
+
var Autocompleter = {}
|
41
|
+
Autocompleter.Base = function() {};
|
42
|
+
Autocompleter.Base.prototype = {
|
43
|
+
baseInitialize: function(element, update, options) {
|
44
|
+
this.element = $(element);
|
45
|
+
this.update = $(update);
|
46
|
+
this.hasFocus = false;
|
47
|
+
this.changed = false;
|
48
|
+
this.active = false;
|
49
|
+
this.index = 0;
|
50
|
+
this.entryCount = 0;
|
51
|
+
|
52
|
+
if(this.setOptions)
|
53
|
+
this.setOptions(options);
|
54
|
+
else
|
55
|
+
this.options = options || {};
|
56
|
+
|
57
|
+
this.options.paramName = this.options.paramName || this.element.name;
|
58
|
+
this.options.tokens = this.options.tokens || [];
|
59
|
+
this.options.frequency = this.options.frequency || 0.4;
|
60
|
+
this.options.minChars = this.options.minChars || 1;
|
61
|
+
this.options.onShow = this.options.onShow ||
|
62
|
+
function(element, update){
|
63
|
+
if(!update.style.position || update.style.position=='absolute') {
|
64
|
+
update.style.position = 'absolute';
|
65
|
+
Position.clone(element, update, {
|
66
|
+
setHeight: false,
|
67
|
+
offsetTop: element.offsetHeight
|
68
|
+
});
|
69
|
+
}
|
70
|
+
Effect.Appear(update,{duration:0.15});
|
71
|
+
};
|
72
|
+
this.options.onHide = this.options.onHide ||
|
73
|
+
function(element, update){ new Effect.Fade(update,{duration:0.15}) };
|
74
|
+
|
75
|
+
if(typeof(this.options.tokens) == 'string')
|
76
|
+
this.options.tokens = new Array(this.options.tokens);
|
77
|
+
|
78
|
+
this.observer = null;
|
79
|
+
|
80
|
+
this.element.setAttribute('autocomplete','off');
|
81
|
+
|
82
|
+
Element.hide(this.update);
|
83
|
+
|
84
|
+
Event.observe(this.element, "blur", this.onBlur.bindAsEventListener(this));
|
85
|
+
Event.observe(this.element, "keypress", this.onKeyPress.bindAsEventListener(this));
|
86
|
+
},
|
87
|
+
|
88
|
+
show: function() {
|
89
|
+
if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update);
|
90
|
+
if(!this.iefix &&
|
91
|
+
(navigator.appVersion.indexOf('MSIE')>0) &&
|
92
|
+
(navigator.userAgent.indexOf('Opera')<0) &&
|
93
|
+
(Element.getStyle(this.update, 'position')=='absolute')) {
|
94
|
+
new Insertion.After(this.update,
|
95
|
+
'<iframe id="' + this.update.id + '_iefix" '+
|
96
|
+
'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' +
|
97
|
+
'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');
|
98
|
+
this.iefix = $(this.update.id+'_iefix');
|
99
|
+
}
|
100
|
+
if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50);
|
101
|
+
},
|
102
|
+
|
103
|
+
fixIEOverlapping: function() {
|
104
|
+
Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)});
|
105
|
+
this.iefix.style.zIndex = 1;
|
106
|
+
this.update.style.zIndex = 2;
|
107
|
+
Element.show(this.iefix);
|
108
|
+
},
|
109
|
+
|
110
|
+
hide: function() {
|
111
|
+
this.stopIndicator();
|
112
|
+
if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update);
|
113
|
+
if(this.iefix) Element.hide(this.iefix);
|
114
|
+
},
|
115
|
+
|
116
|
+
startIndicator: function() {
|
117
|
+
if(this.options.indicator) Element.show(this.options.indicator);
|
118
|
+
},
|
119
|
+
|
120
|
+
stopIndicator: function() {
|
121
|
+
if(this.options.indicator) Element.hide(this.options.indicator);
|
122
|
+
},
|
123
|
+
|
124
|
+
onKeyPress: function(event) {
|
125
|
+
if(this.active)
|
126
|
+
switch(event.keyCode) {
|
127
|
+
case Event.KEY_TAB:
|
128
|
+
case Event.KEY_RETURN:
|
129
|
+
this.selectEntry();
|
130
|
+
Event.stop(event);
|
131
|
+
case Event.KEY_ESC:
|
132
|
+
this.hide();
|
133
|
+
this.active = false;
|
134
|
+
Event.stop(event);
|
135
|
+
return;
|
136
|
+
case Event.KEY_LEFT:
|
137
|
+
case Event.KEY_RIGHT:
|
138
|
+
return;
|
139
|
+
case Event.KEY_UP:
|
140
|
+
this.markPrevious();
|
141
|
+
this.render();
|
142
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) Event.stop(event);
|
143
|
+
return;
|
144
|
+
case Event.KEY_DOWN:
|
145
|
+
this.markNext();
|
146
|
+
this.render();
|
147
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) Event.stop(event);
|
148
|
+
return;
|
149
|
+
}
|
150
|
+
else
|
151
|
+
if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN ||
|
152
|
+
(navigator.appVersion.indexOf('AppleWebKit') > 0 && event.keyCode == 0)) return;
|
153
|
+
|
154
|
+
this.changed = true;
|
155
|
+
this.hasFocus = true;
|
156
|
+
|
157
|
+
if(this.observer) clearTimeout(this.observer);
|
158
|
+
this.observer =
|
159
|
+
setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000);
|
160
|
+
},
|
161
|
+
|
162
|
+
activate: function() {
|
163
|
+
this.changed = false;
|
164
|
+
this.hasFocus = true;
|
165
|
+
this.getUpdatedChoices();
|
166
|
+
},
|
167
|
+
|
168
|
+
onHover: function(event) {
|
169
|
+
var element = Event.findElement(event, 'LI');
|
170
|
+
if(this.index != element.autocompleteIndex)
|
171
|
+
{
|
172
|
+
this.index = element.autocompleteIndex;
|
173
|
+
this.render();
|
174
|
+
}
|
175
|
+
Event.stop(event);
|
176
|
+
},
|
177
|
+
|
178
|
+
onClick: function(event) {
|
179
|
+
var element = Event.findElement(event, 'LI');
|
180
|
+
this.index = element.autocompleteIndex;
|
181
|
+
this.selectEntry();
|
182
|
+
this.hide();
|
183
|
+
},
|
184
|
+
|
185
|
+
onBlur: function(event) {
|
186
|
+
// needed to make click events working
|
187
|
+
setTimeout(this.hide.bind(this), 250);
|
188
|
+
this.hasFocus = false;
|
189
|
+
this.active = false;
|
190
|
+
},
|
191
|
+
|
192
|
+
render: function() {
|
193
|
+
if(this.entryCount > 0) {
|
194
|
+
for (var i = 0; i < this.entryCount; i++)
|
195
|
+
this.index==i ?
|
196
|
+
Element.addClassName(this.getEntry(i),"selected") :
|
197
|
+
Element.removeClassName(this.getEntry(i),"selected");
|
198
|
+
|
199
|
+
if(this.hasFocus) {
|
200
|
+
this.show();
|
201
|
+
this.active = true;
|
202
|
+
}
|
203
|
+
} else {
|
204
|
+
this.active = false;
|
205
|
+
this.hide();
|
206
|
+
}
|
207
|
+
},
|
208
|
+
|
209
|
+
markPrevious: function() {
|
210
|
+
if(this.index > 0) this.index--
|
211
|
+
else this.index = this.entryCount-1;
|
212
|
+
this.getEntry(this.index).scrollIntoView(true);
|
213
|
+
},
|
214
|
+
|
215
|
+
markNext: function() {
|
216
|
+
if(this.index < this.entryCount-1) this.index++
|
217
|
+
else this.index = 0;
|
218
|
+
this.getEntry(this.index).scrollIntoView(false);
|
219
|
+
},
|
220
|
+
|
221
|
+
getEntry: function(index) {
|
222
|
+
return this.update.firstChild.childNodes[index];
|
223
|
+
},
|
224
|
+
|
225
|
+
getCurrentEntry: function() {
|
226
|
+
return this.getEntry(this.index);
|
227
|
+
},
|
228
|
+
|
229
|
+
selectEntry: function() {
|
230
|
+
this.active = false;
|
231
|
+
this.updateElement(this.getCurrentEntry());
|
232
|
+
},
|
233
|
+
|
234
|
+
updateElement: function(selectedElement) {
|
235
|
+
if (this.options.updateElement) {
|
236
|
+
this.options.updateElement(selectedElement);
|
237
|
+
return;
|
238
|
+
}
|
239
|
+
var value = '';
|
240
|
+
if (this.options.select) {
|
241
|
+
var nodes = document.getElementsByClassName(this.options.select, selectedElement) || [];
|
242
|
+
if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);
|
243
|
+
} else
|
244
|
+
value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');
|
245
|
+
|
246
|
+
var lastTokenPos = this.findLastToken();
|
247
|
+
if (lastTokenPos != -1) {
|
248
|
+
var newValue = this.element.value.substr(0, lastTokenPos + 1);
|
249
|
+
var whitespace = this.element.value.substr(lastTokenPos + 1).match(/^\s+/);
|
250
|
+
if (whitespace)
|
251
|
+
newValue += whitespace[0];
|
252
|
+
this.element.value = newValue + value;
|
253
|
+
} else {
|
254
|
+
this.element.value = value;
|
255
|
+
}
|
256
|
+
this.element.focus();
|
257
|
+
|
258
|
+
if (this.options.afterUpdateElement)
|
259
|
+
this.options.afterUpdateElement(this.element, selectedElement);
|
260
|
+
},
|
261
|
+
|
262
|
+
updateChoices: function(choices) {
|
263
|
+
if(!this.changed && this.hasFocus) {
|
264
|
+
this.update.innerHTML = choices;
|
265
|
+
Element.cleanWhitespace(this.update);
|
266
|
+
Element.cleanWhitespace(this.update.down());
|
267
|
+
|
268
|
+
if(this.update.firstChild && this.update.down().childNodes) {
|
269
|
+
this.entryCount =
|
270
|
+
this.update.down().childNodes.length;
|
271
|
+
for (var i = 0; i < this.entryCount; i++) {
|
272
|
+
var entry = this.getEntry(i);
|
273
|
+
entry.autocompleteIndex = i;
|
274
|
+
this.addObservers(entry);
|
275
|
+
}
|
276
|
+
} else {
|
277
|
+
this.entryCount = 0;
|
278
|
+
}
|
279
|
+
|
280
|
+
this.stopIndicator();
|
281
|
+
this.index = 0;
|
282
|
+
|
283
|
+
if(this.entryCount==1 && this.options.autoSelect) {
|
284
|
+
this.selectEntry();
|
285
|
+
this.hide();
|
286
|
+
} else {
|
287
|
+
this.render();
|
288
|
+
}
|
289
|
+
}
|
290
|
+
},
|
291
|
+
|
292
|
+
addObservers: function(element) {
|
293
|
+
Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this));
|
294
|
+
Event.observe(element, "click", this.onClick.bindAsEventListener(this));
|
295
|
+
},
|
296
|
+
|
297
|
+
onObserverEvent: function() {
|
298
|
+
this.changed = false;
|
299
|
+
if(this.getToken().length>=this.options.minChars) {
|
300
|
+
this.startIndicator();
|
301
|
+
this.getUpdatedChoices();
|
302
|
+
} else {
|
303
|
+
this.active = false;
|
304
|
+
this.hide();
|
305
|
+
}
|
306
|
+
},
|
307
|
+
|
308
|
+
getToken: function() {
|
309
|
+
var tokenPos = this.findLastToken();
|
310
|
+
if (tokenPos != -1)
|
311
|
+
var ret = this.element.value.substr(tokenPos + 1).replace(/^\s+/,'').replace(/\s+$/,'');
|
312
|
+
else
|
313
|
+
var ret = this.element.value;
|
314
|
+
|
315
|
+
return /\n/.test(ret) ? '' : ret;
|
316
|
+
},
|
317
|
+
|
318
|
+
findLastToken: function() {
|
319
|
+
var lastTokenPos = -1;
|
320
|
+
|
321
|
+
for (var i=0; i<this.options.tokens.length; i++) {
|
322
|
+
var thisTokenPos = this.element.value.lastIndexOf(this.options.tokens[i]);
|
323
|
+
if (thisTokenPos > lastTokenPos)
|
324
|
+
lastTokenPos = thisTokenPos;
|
325
|
+
}
|
326
|
+
return lastTokenPos;
|
327
|
+
}
|
328
|
+
}
|
329
|
+
|
330
|
+
Ajax.Autocompleter = Class.create();
|
331
|
+
Object.extend(Object.extend(Ajax.Autocompleter.prototype, Autocompleter.Base.prototype), {
|
332
|
+
initialize: function(element, update, url, options) {
|
333
|
+
this.baseInitialize(element, update, options);
|
334
|
+
this.options.asynchronous = true;
|
335
|
+
this.options.onComplete = this.onComplete.bind(this);
|
336
|
+
this.options.defaultParams = this.options.parameters || null;
|
337
|
+
this.url = url;
|
338
|
+
},
|
339
|
+
|
340
|
+
getUpdatedChoices: function() {
|
341
|
+
entry = encodeURIComponent(this.options.paramName) + '=' +
|
342
|
+
encodeURIComponent(this.getToken());
|
343
|
+
|
344
|
+
this.options.parameters = this.options.callback ?
|
345
|
+
this.options.callback(this.element, entry) : entry;
|
346
|
+
|
347
|
+
if(this.options.defaultParams)
|
348
|
+
this.options.parameters += '&' + this.options.defaultParams;
|
349
|
+
|
350
|
+
new Ajax.Request(this.url, this.options);
|
351
|
+
},
|
352
|
+
|
353
|
+
onComplete: function(request) {
|
354
|
+
this.updateChoices(request.responseText);
|
355
|
+
}
|
356
|
+
|
357
|
+
});
|
358
|
+
|
359
|
+
// The local array autocompleter. Used when you'd prefer to
|
360
|
+
// inject an array of autocompletion options into the page, rather
|
361
|
+
// than sending out Ajax queries, which can be quite slow sometimes.
|
362
|
+
//
|
363
|
+
// The constructor takes four parameters. The first two are, as usual,
|
364
|
+
// the id of the monitored textbox, and id of the autocompletion menu.
|
365
|
+
// The third is the array you want to autocomplete from, and the fourth
|
366
|
+
// is the options block.
|
367
|
+
//
|
368
|
+
// Extra local autocompletion options:
|
369
|
+
// - choices - How many autocompletion choices to offer
|
370
|
+
//
|
371
|
+
// - partialSearch - If false, the autocompleter will match entered
|
372
|
+
// text only at the beginning of strings in the
|
373
|
+
// autocomplete array. Defaults to true, which will
|
374
|
+
// match text at the beginning of any *word* in the
|
375
|
+
// strings in the autocomplete array. If you want to
|
376
|
+
// search anywhere in the string, additionally set
|
377
|
+
// the option fullSearch to true (default: off).
|
378
|
+
//
|
379
|
+
// - fullSsearch - Search anywhere in autocomplete array strings.
|
380
|
+
//
|
381
|
+
// - partialChars - How many characters to enter before triggering
|
382
|
+
// a partial match (unlike minChars, which defines
|
383
|
+
// how many characters are required to do any match
|
384
|
+
// at all). Defaults to 2.
|
385
|
+
//
|
386
|
+
// - ignoreCase - Whether to ignore case when autocompleting.
|
387
|
+
// Defaults to true.
|
388
|
+
//
|
389
|
+
// It's possible to pass in a custom function as the 'selector'
|
390
|
+
// option, if you prefer to write your own autocompletion logic.
|
391
|
+
// In that case, the other options above will not apply unless
|
392
|
+
// you support them.
|
393
|
+
|
394
|
+
Autocompleter.Local = Class.create();
|
395
|
+
Autocompleter.Local.prototype = Object.extend(new Autocompleter.Base(), {
|
396
|
+
initialize: function(element, update, array, options) {
|
397
|
+
this.baseInitialize(element, update, options);
|
398
|
+
this.options.array = array;
|
399
|
+
},
|
400
|
+
|
401
|
+
getUpdatedChoices: function() {
|
402
|
+
this.updateChoices(this.options.selector(this));
|
403
|
+
},
|
404
|
+
|
405
|
+
setOptions: function(options) {
|
406
|
+
this.options = Object.extend({
|
407
|
+
choices: 10,
|
408
|
+
partialSearch: true,
|
409
|
+
partialChars: 2,
|
410
|
+
ignoreCase: true,
|
411
|
+
fullSearch: false,
|
412
|
+
selector: function(instance) {
|
413
|
+
var ret = []; // Beginning matches
|
414
|
+
var partial = []; // Inside matches
|
415
|
+
var entry = instance.getToken();
|
416
|
+
var count = 0;
|
417
|
+
|
418
|
+
for (var i = 0; i < instance.options.array.length &&
|
419
|
+
ret.length < instance.options.choices ; i++) {
|
420
|
+
|
421
|
+
var elem = instance.options.array[i];
|
422
|
+
var foundPos = instance.options.ignoreCase ?
|
423
|
+
elem.toLowerCase().indexOf(entry.toLowerCase()) :
|
424
|
+
elem.indexOf(entry);
|
425
|
+
|
426
|
+
while (foundPos != -1) {
|
427
|
+
if (foundPos == 0 && elem.length != entry.length) {
|
428
|
+
ret.push("<li><strong>" + elem.substr(0, entry.length) + "</strong>" +
|
429
|
+
elem.substr(entry.length) + "</li>");
|
430
|
+
break;
|
431
|
+
} else if (entry.length >= instance.options.partialChars &&
|
432
|
+
instance.options.partialSearch && foundPos != -1) {
|
433
|
+
if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos-1,1))) {
|
434
|
+
partial.push("<li>" + elem.substr(0, foundPos) + "<strong>" +
|
435
|
+
elem.substr(foundPos, entry.length) + "</strong>" + elem.substr(
|
436
|
+
foundPos + entry.length) + "</li>");
|
437
|
+
break;
|
438
|
+
}
|
439
|
+
}
|
440
|
+
|
441
|
+
foundPos = instance.options.ignoreCase ?
|
442
|
+
elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) :
|
443
|
+
elem.indexOf(entry, foundPos + 1);
|
444
|
+
|
445
|
+
}
|
446
|
+
}
|
447
|
+
if (partial.length)
|
448
|
+
ret = ret.concat(partial.slice(0, instance.options.choices - ret.length))
|
449
|
+
return "<ul>" + ret.join('') + "</ul>";
|
450
|
+
}
|
451
|
+
}, options || {});
|
452
|
+
}
|
453
|
+
});
|
454
|
+
|
455
|
+
// AJAX in-place editor
|
456
|
+
//
|
457
|
+
// see documentation on http://wiki.script.aculo.us/scriptaculous/show/Ajax.InPlaceEditor
|
458
|
+
|
459
|
+
// Use this if you notice weird scrolling problems on some browsers,
|
460
|
+
// the DOM might be a bit confused when this gets called so do this
|
461
|
+
// waits 1 ms (with setTimeout) until it does the activation
|
462
|
+
Field.scrollFreeActivate = function(field) {
|
463
|
+
setTimeout(function() {
|
464
|
+
Field.activate(field);
|
465
|
+
}, 1);
|
466
|
+
}
|
467
|
+
|
468
|
+
Ajax.InPlaceEditor = Class.create();
|
469
|
+
Ajax.InPlaceEditor.defaultHighlightColor = "#FFFF99";
|
470
|
+
Ajax.InPlaceEditor.prototype = {
|
471
|
+
initialize: function(element, url, options) {
|
472
|
+
this.url = url;
|
473
|
+
this.element = $(element);
|
474
|
+
|
475
|
+
this.options = Object.extend({
|
476
|
+
paramName: "value",
|
477
|
+
okButton: true,
|
478
|
+
okText: "ok",
|
479
|
+
cancelLink: true,
|
480
|
+
cancelText: "cancel",
|
481
|
+
savingText: "Saving...",
|
482
|
+
clickToEditText: "Click to edit",
|
483
|
+
okText: "ok",
|
484
|
+
rows: 1,
|
485
|
+
onComplete: function(transport, element) {
|
486
|
+
new Effect.Highlight(element, {startcolor: this.options.highlightcolor});
|
487
|
+
},
|
488
|
+
onFailure: function(transport) {
|
489
|
+
alert("Error communicating with the server: " + transport.responseText.stripTags());
|
490
|
+
},
|
491
|
+
callback: function(form) {
|
492
|
+
return Form.serialize(form);
|
493
|
+
},
|
494
|
+
handleLineBreaks: true,
|
495
|
+
loadingText: 'Loading...',
|
496
|
+
savingClassName: 'inplaceeditor-saving',
|
497
|
+
loadingClassName: 'inplaceeditor-loading',
|
498
|
+
formClassName: 'inplaceeditor-form',
|
499
|
+
highlightcolor: Ajax.InPlaceEditor.defaultHighlightColor,
|
500
|
+
highlightendcolor: "#FFFFFF",
|
501
|
+
externalControl: null,
|
502
|
+
submitOnBlur: false,
|
503
|
+
ajaxOptions: {},
|
504
|
+
evalScripts: false
|
505
|
+
}, options || {});
|
506
|
+
|
507
|
+
if(!this.options.formId && this.element.id) {
|
508
|
+
this.options.formId = this.element.id + "-inplaceeditor";
|
509
|
+
if ($(this.options.formId)) {
|
510
|
+
// there's already a form with that name, don't specify an id
|
511
|
+
this.options.formId = null;
|
512
|
+
}
|
513
|
+
}
|
514
|
+
|
515
|
+
if (this.options.externalControl) {
|
516
|
+
this.options.externalControl = $(this.options.externalControl);
|
517
|
+
}
|
518
|
+
|
519
|
+
this.originalBackground = Element.getStyle(this.element, 'background-color');
|
520
|
+
if (!this.originalBackground) {
|
521
|
+
this.originalBackground = "transparent";
|
522
|
+
}
|
523
|
+
|
524
|
+
this.element.title = this.options.clickToEditText;
|
525
|
+
|
526
|
+
this.onclickListener = this.enterEditMode.bindAsEventListener(this);
|
527
|
+
this.mouseoverListener = this.enterHover.bindAsEventListener(this);
|
528
|
+
this.mouseoutListener = this.leaveHover.bindAsEventListener(this);
|
529
|
+
Event.observe(this.element, 'click', this.onclickListener);
|
530
|
+
Event.observe(this.element, 'mouseover', this.mouseoverListener);
|
531
|
+
Event.observe(this.element, 'mouseout', this.mouseoutListener);
|
532
|
+
if (this.options.externalControl) {
|
533
|
+
Event.observe(this.options.externalControl, 'click', this.onclickListener);
|
534
|
+
Event.observe(this.options.externalControl, 'mouseover', this.mouseoverListener);
|
535
|
+
Event.observe(this.options.externalControl, 'mouseout', this.mouseoutListener);
|
536
|
+
}
|
537
|
+
},
|
538
|
+
enterEditMode: function(evt) {
|
539
|
+
if (this.saving) return;
|
540
|
+
if (this.editing) return;
|
541
|
+
this.editing = true;
|
542
|
+
this.onEnterEditMode();
|
543
|
+
if (this.options.externalControl) {
|
544
|
+
Element.hide(this.options.externalControl);
|
545
|
+
}
|
546
|
+
Element.hide(this.element);
|
547
|
+
this.createForm();
|
548
|
+
this.element.parentNode.insertBefore(this.form, this.element);
|
549
|
+
if (!this.options.loadTextURL) Field.scrollFreeActivate(this.editField);
|
550
|
+
// stop the event to avoid a page refresh in Safari
|
551
|
+
if (evt) {
|
552
|
+
Event.stop(evt);
|
553
|
+
}
|
554
|
+
return false;
|
555
|
+
},
|
556
|
+
createForm: function() {
|
557
|
+
this.form = document.createElement("form");
|
558
|
+
this.form.id = this.options.formId;
|
559
|
+
Element.addClassName(this.form, this.options.formClassName)
|
560
|
+
this.form.onsubmit = this.onSubmit.bind(this);
|
561
|
+
|
562
|
+
this.createEditField();
|
563
|
+
|
564
|
+
if (this.options.textarea) {
|
565
|
+
var br = document.createElement("br");
|
566
|
+
this.form.appendChild(br);
|
567
|
+
}
|
568
|
+
|
569
|
+
if (this.options.okButton) {
|
570
|
+
okButton = document.createElement("input");
|
571
|
+
okButton.type = "submit";
|
572
|
+
okButton.value = this.options.okText;
|
573
|
+
okButton.className = 'editor_ok_button';
|
574
|
+
this.form.appendChild(okButton);
|
575
|
+
}
|
576
|
+
|
577
|
+
if (this.options.cancelLink) {
|
578
|
+
cancelLink = document.createElement("a");
|
579
|
+
cancelLink.href = "#";
|
580
|
+
cancelLink.appendChild(document.createTextNode(this.options.cancelText));
|
581
|
+
cancelLink.onclick = this.onclickCancel.bind(this);
|
582
|
+
cancelLink.className = 'editor_cancel';
|
583
|
+
this.form.appendChild(cancelLink);
|
584
|
+
}
|
585
|
+
},
|
586
|
+
hasHTMLLineBreaks: function(string) {
|
587
|
+
if (!this.options.handleLineBreaks) return false;
|
588
|
+
return string.match(/<br/i) || string.match(/<p>/i);
|
589
|
+
},
|
590
|
+
convertHTMLLineBreaks: function(string) {
|
591
|
+
return string.replace(/<br>/gi, "\n").replace(/<br\/>/gi, "\n").replace(/<\/p>/gi, "\n").replace(/<p>/gi, "");
|
592
|
+
},
|
593
|
+
createEditField: function() {
|
594
|
+
var text;
|
595
|
+
if(this.options.loadTextURL) {
|
596
|
+
text = this.options.loadingText;
|
597
|
+
} else {
|
598
|
+
text = this.getText();
|
599
|
+
}
|
600
|
+
|
601
|
+
var obj = this;
|
602
|
+
|
603
|
+
if (this.options.rows == 1 && !this.hasHTMLLineBreaks(text)) {
|
604
|
+
this.options.textarea = false;
|
605
|
+
var textField = document.createElement("input");
|
606
|
+
textField.obj = this;
|
607
|
+
textField.type = "text";
|
608
|
+
textField.name = this.options.paramName;
|
609
|
+
textField.value = text;
|
610
|
+
textField.style.backgroundColor = this.options.highlightcolor;
|
611
|
+
textField.className = 'editor_field';
|
612
|
+
var size = this.options.size || this.options.cols || 0;
|
613
|
+
if (size != 0) textField.size = size;
|
614
|
+
if (this.options.submitOnBlur)
|
615
|
+
textField.onblur = this.onSubmit.bind(this);
|
616
|
+
this.editField = textField;
|
617
|
+
} else {
|
618
|
+
this.options.textarea = true;
|
619
|
+
var textArea = document.createElement("textarea");
|
620
|
+
textArea.obj = this;
|
621
|
+
textArea.name = this.options.paramName;
|
622
|
+
textArea.value = this.convertHTMLLineBreaks(text);
|
623
|
+
textArea.rows = this.options.rows;
|
624
|
+
textArea.cols = this.options.cols || 40;
|
625
|
+
textArea.className = 'editor_field';
|
626
|
+
if (this.options.submitOnBlur)
|
627
|
+
textArea.onblur = this.onSubmit.bind(this);
|
628
|
+
this.editField = textArea;
|
629
|
+
}
|
630
|
+
|
631
|
+
if(this.options.loadTextURL) {
|
632
|
+
this.loadExternalText();
|
633
|
+
}
|
634
|
+
this.form.appendChild(this.editField);
|
635
|
+
},
|
636
|
+
getText: function() {
|
637
|
+
return this.element.innerHTML;
|
638
|
+
},
|
639
|
+
loadExternalText: function() {
|
640
|
+
Element.addClassName(this.form, this.options.loadingClassName);
|
641
|
+
this.editField.disabled = true;
|
642
|
+
new Ajax.Request(
|
643
|
+
this.options.loadTextURL,
|
644
|
+
Object.extend({
|
645
|
+
asynchronous: true,
|
646
|
+
onComplete: this.onLoadedExternalText.bind(this)
|
647
|
+
}, this.options.ajaxOptions)
|
648
|
+
);
|
649
|
+
},
|
650
|
+
onLoadedExternalText: function(transport) {
|
651
|
+
Element.removeClassName(this.form, this.options.loadingClassName);
|
652
|
+
this.editField.disabled = false;
|
653
|
+
this.editField.value = transport.responseText.stripTags();
|
654
|
+
Field.scrollFreeActivate(this.editField);
|
655
|
+
},
|
656
|
+
onclickCancel: function() {
|
657
|
+
this.onComplete();
|
658
|
+
this.leaveEditMode();
|
659
|
+
return false;
|
660
|
+
},
|
661
|
+
onFailure: function(transport) {
|
662
|
+
this.options.onFailure(transport);
|
663
|
+
if (this.oldInnerHTML) {
|
664
|
+
this.element.innerHTML = this.oldInnerHTML;
|
665
|
+
this.oldInnerHTML = null;
|
666
|
+
}
|
667
|
+
return false;
|
668
|
+
},
|
669
|
+
onSubmit: function() {
|
670
|
+
// onLoading resets these so we need to save them away for the Ajax call
|
671
|
+
var form = this.form;
|
672
|
+
var value = this.editField.value;
|
673
|
+
|
674
|
+
// do this first, sometimes the ajax call returns before we get a chance to switch on Saving...
|
675
|
+
// which means this will actually switch on Saving... *after* we've left edit mode causing Saving...
|
676
|
+
// to be displayed indefinitely
|
677
|
+
this.onLoading();
|
678
|
+
|
679
|
+
if (this.options.evalScripts) {
|
680
|
+
new Ajax.Request(
|
681
|
+
this.url, Object.extend({
|
682
|
+
parameters: this.options.callback(form, value),
|
683
|
+
onComplete: this.onComplete.bind(this),
|
684
|
+
onFailure: this.onFailure.bind(this),
|
685
|
+
asynchronous:true,
|
686
|
+
evalScripts:true
|
687
|
+
}, this.options.ajaxOptions));
|
688
|
+
} else {
|
689
|
+
new Ajax.Updater(
|
690
|
+
{ success: this.element,
|
691
|
+
// don't update on failure (this could be an option)
|
692
|
+
failure: null },
|
693
|
+
this.url, Object.extend({
|
694
|
+
parameters: this.options.callback(form, value),
|
695
|
+
onComplete: this.onComplete.bind(this),
|
696
|
+
onFailure: this.onFailure.bind(this)
|
697
|
+
}, this.options.ajaxOptions));
|
698
|
+
}
|
699
|
+
// stop the event to avoid a page refresh in Safari
|
700
|
+
if (arguments.length > 1) {
|
701
|
+
Event.stop(arguments[0]);
|
702
|
+
}
|
703
|
+
return false;
|
704
|
+
},
|
705
|
+
onLoading: function() {
|
706
|
+
this.saving = true;
|
707
|
+
this.removeForm();
|
708
|
+
this.leaveHover();
|
709
|
+
this.showSaving();
|
710
|
+
},
|
711
|
+
showSaving: function() {
|
712
|
+
this.oldInnerHTML = this.element.innerHTML;
|
713
|
+
this.element.innerHTML = this.options.savingText;
|
714
|
+
Element.addClassName(this.element, this.options.savingClassName);
|
715
|
+
this.element.style.backgroundColor = this.originalBackground;
|
716
|
+
Element.show(this.element);
|
717
|
+
},
|
718
|
+
removeForm: function() {
|
719
|
+
if(this.form) {
|
720
|
+
if (this.form.parentNode) Element.remove(this.form);
|
721
|
+
this.form = null;
|
722
|
+
}
|
723
|
+
},
|
724
|
+
enterHover: function() {
|
725
|
+
if (this.saving) return;
|
726
|
+
this.element.style.backgroundColor = this.options.highlightcolor;
|
727
|
+
if (this.effect) {
|
728
|
+
this.effect.cancel();
|
729
|
+
}
|
730
|
+
Element.addClassName(this.element, this.options.hoverClassName)
|
731
|
+
},
|
732
|
+
leaveHover: function() {
|
733
|
+
if (this.options.backgroundColor) {
|
734
|
+
this.element.style.backgroundColor = this.oldBackground;
|
735
|
+
}
|
736
|
+
Element.removeClassName(this.element, this.options.hoverClassName)
|
737
|
+
if (this.saving) return;
|
738
|
+
this.effect = new Effect.Highlight(this.element, {
|
739
|
+
startcolor: this.options.highlightcolor,
|
740
|
+
endcolor: this.options.highlightendcolor,
|
741
|
+
restorecolor: this.originalBackground
|
742
|
+
});
|
743
|
+
},
|
744
|
+
leaveEditMode: function() {
|
745
|
+
Element.removeClassName(this.element, this.options.savingClassName);
|
746
|
+
this.removeForm();
|
747
|
+
this.leaveHover();
|
748
|
+
this.element.style.backgroundColor = this.originalBackground;
|
749
|
+
Element.show(this.element);
|
750
|
+
if (this.options.externalControl) {
|
751
|
+
Element.show(this.options.externalControl);
|
752
|
+
}
|
753
|
+
this.editing = false;
|
754
|
+
this.saving = false;
|
755
|
+
this.oldInnerHTML = null;
|
756
|
+
this.onLeaveEditMode();
|
757
|
+
},
|
758
|
+
onComplete: function(transport) {
|
759
|
+
this.leaveEditMode();
|
760
|
+
this.options.onComplete.bind(this)(transport, this.element);
|
761
|
+
},
|
762
|
+
onEnterEditMode: function() {},
|
763
|
+
onLeaveEditMode: function() {},
|
764
|
+
dispose: function() {
|
765
|
+
if (this.oldInnerHTML) {
|
766
|
+
this.element.innerHTML = this.oldInnerHTML;
|
767
|
+
}
|
768
|
+
this.leaveEditMode();
|
769
|
+
Event.stopObserving(this.element, 'click', this.onclickListener);
|
770
|
+
Event.stopObserving(this.element, 'mouseover', this.mouseoverListener);
|
771
|
+
Event.stopObserving(this.element, 'mouseout', this.mouseoutListener);
|
772
|
+
if (this.options.externalControl) {
|
773
|
+
Event.stopObserving(this.options.externalControl, 'click', this.onclickListener);
|
774
|
+
Event.stopObserving(this.options.externalControl, 'mouseover', this.mouseoverListener);
|
775
|
+
Event.stopObserving(this.options.externalControl, 'mouseout', this.mouseoutListener);
|
776
|
+
}
|
777
|
+
}
|
778
|
+
};
|
779
|
+
|
780
|
+
Ajax.InPlaceCollectionEditor = Class.create();
|
781
|
+
Object.extend(Ajax.InPlaceCollectionEditor.prototype, Ajax.InPlaceEditor.prototype);
|
782
|
+
Object.extend(Ajax.InPlaceCollectionEditor.prototype, {
|
783
|
+
createEditField: function() {
|
784
|
+
if (!this.cached_selectTag) {
|
785
|
+
var selectTag = document.createElement("select");
|
786
|
+
var collection = this.options.collection || [];
|
787
|
+
var optionTag;
|
788
|
+
collection.each(function(e,i) {
|
789
|
+
optionTag = document.createElement("option");
|
790
|
+
optionTag.value = (e instanceof Array) ? e[0] : e;
|
791
|
+
if((typeof this.options.value == 'undefined') &&
|
792
|
+
((e instanceof Array) ? this.element.innerHTML == e[1] : e == optionTag.value)) optionTag.selected = true;
|
793
|
+
if(this.options.value==optionTag.value) optionTag.selected = true;
|
794
|
+
optionTag.appendChild(document.createTextNode((e instanceof Array) ? e[1] : e));
|
795
|
+
selectTag.appendChild(optionTag);
|
796
|
+
}.bind(this));
|
797
|
+
this.cached_selectTag = selectTag;
|
798
|
+
}
|
799
|
+
|
800
|
+
this.editField = this.cached_selectTag;
|
801
|
+
if(this.options.loadTextURL) this.loadExternalText();
|
802
|
+
this.form.appendChild(this.editField);
|
803
|
+
this.options.callback = function(form, value) {
|
804
|
+
return "value=" + encodeURIComponent(value);
|
805
|
+
}
|
806
|
+
}
|
807
|
+
});
|
808
|
+
|
809
|
+
// Delayed observer, like Form.Element.Observer,
|
810
|
+
// but waits for delay after last key input
|
811
|
+
// Ideal for live-search fields
|
812
|
+
|
813
|
+
Form.Element.DelayedObserver = Class.create();
|
814
|
+
Form.Element.DelayedObserver.prototype = {
|
815
|
+
initialize: function(element, delay, callback) {
|
816
|
+
this.delay = delay || 0.5;
|
817
|
+
this.element = $(element);
|
818
|
+
this.callback = callback;
|
819
|
+
this.timer = null;
|
820
|
+
this.lastValue = $F(this.element);
|
821
|
+
Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));
|
822
|
+
},
|
823
|
+
delayedListener: function(event) {
|
824
|
+
if(this.lastValue == $F(this.element)) return;
|
825
|
+
if(this.timer) clearTimeout(this.timer);
|
826
|
+
this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000);
|
827
|
+
this.lastValue = $F(this.element);
|
828
|
+
},
|
829
|
+
onTimerEvent: function() {
|
830
|
+
this.timer = null;
|
831
|
+
this.callback(this.element, $F(this.element));
|
832
|
+
}
|
833
|
+
};
|