admin_assistant 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +16 -0
- data/Rakefile +34 -6
- data/VERSION +1 -0
- data/admin_assistant.gemspec +440 -0
- data/doc/img/blog_posts-index.png +0 -0
- data/install.rb +25 -4
- data/lib/admin_assistant/active_record_column.rb +133 -45
- data/lib/admin_assistant/association_target.rb +16 -3
- data/lib/admin_assistant/belongs_to_column.rb +18 -10
- data/lib/admin_assistant/builder.rb +67 -30
- data/lib/admin_assistant/column.rb +153 -71
- data/lib/admin_assistant/date_time_range_end_point_selector.rb +340 -0
- data/lib/admin_assistant/default_search_column.rb +3 -7
- data/lib/admin_assistant/form_view.rb +114 -10
- data/lib/admin_assistant/has_many_column.rb +56 -0
- data/lib/admin_assistant/index.rb +220 -83
- data/lib/admin_assistant/polymorphic_belongs_to_column.rb +1 -1
- data/lib/admin_assistant/request/base.rb +196 -67
- data/lib/admin_assistant/request/create.rb +55 -7
- data/lib/admin_assistant/request/edit.rb +1 -2
- data/lib/admin_assistant/request/index.rb +16 -9
- data/lib/admin_assistant/request/new.rb +19 -7
- data/lib/admin_assistant/request/update.rb +28 -13
- data/lib/admin_assistant/search.rb +17 -2
- data/lib/admin_assistant/virtual_column.rb +15 -7
- data/lib/admin_assistant.rb +101 -81
- data/lib/javascripts/admin_assistant.js +1 -1
- data/lib/stylesheets/activescaffold.css +6 -1
- data/lib/stylesheets/default.css +17 -0
- data/lib/views/form.html.erb +7 -3
- data/lib/views/index.html.erb +13 -8
- data/lib/views/multi_form.html.erb +71 -0
- data/lib/views/show.html.erb +4 -4
- data/test_rails_app/README +256 -0
- data/test_rails_app/Rakefile +13 -0
- data/test_rails_app/app/controllers/admin/appointments2_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/appointments_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/blog_posts2_controller.rb +138 -0
- data/test_rails_app/app/controllers/admin/blog_posts3_controller.rb +76 -0
- data/test_rails_app/app/controllers/admin/blog_posts4_controller.rb +21 -0
- data/test_rails_app/app/controllers/admin/blog_posts5_controller.rb +27 -0
- data/test_rails_app/app/controllers/admin/blog_posts6_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/blog_posts_controller.rb +8 -0
- data/test_rails_app/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/blog_posts_read_only_controller.rb +19 -0
- data/test_rails_app/app/controllers/admin/bookmarks_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/comments2_controller.rb +14 -0
- data/test_rails_app/app/controllers/admin/comments_controller.rb +12 -0
- data/test_rails_app/app/controllers/admin/file_column_images2_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/file_column_images_controller.rb +6 -0
- data/test_rails_app/app/controllers/admin/images2_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/images_controller.rb +6 -0
- data/test_rails_app/app/controllers/admin/misconfigured1_controller.rb +7 -0
- data/test_rails_app/app/controllers/admin/not_migrated_yets_controller.rb +9 -0
- data/test_rails_app/app/controllers/admin/product_categories2_controller.rb +7 -0
- data/test_rails_app/app/controllers/admin/product_categories_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/products2_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/products_controller.rb +31 -0
- data/test_rails_app/app/controllers/admin/television_airings_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/television_time_slots_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/users2_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/users_controller.rb +63 -0
- data/test_rails_app/app/controllers/application.rb +16 -0
- data/test_rails_app/app/controllers/application_controller.rb +16 -0
- data/test_rails_app/app/controllers/blog_posts_controller.rb +5 -0
- data/test_rails_app/app/helpers/admin/appointments2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/appointments_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts2_helper.rb +27 -0
- data/test_rails_app/app/helpers/admin/blog_posts3_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts4_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts6_helper.rb +16 -0
- data/test_rails_app/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb +29 -0
- data/test_rails_app/app/helpers/admin/blog_posts_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts_read_only_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/bookmarks_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/comments2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/comments_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/file_column_images2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/file_column_images_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/images2_helper.rb +8 -0
- data/test_rails_app/app/helpers/admin/images_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/misconfigured1_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/not_migrated_yets_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/product_categories2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/product_categories_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/products2_helper.rb +3 -0
- data/test_rails_app/app/helpers/admin/products_helper.rb +6 -0
- data/test_rails_app/app/helpers/admin/television_airings_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/television_time_slots_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/users2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/users_helper.rb +25 -0
- data/test_rails_app/app/helpers/application_helper.rb +3 -0
- data/test_rails_app/app/helpers/blog_posts_helper.rb +2 -0
- data/test_rails_app/app/models/appointment.rb +5 -0
- data/test_rails_app/app/models/blog_post.rb +14 -0
- data/test_rails_app/app/models/blog_post_tag.rb +6 -0
- data/test_rails_app/app/models/bookmark.rb +6 -0
- data/test_rails_app/app/models/comment.rb +4 -0
- data/test_rails_app/app/models/file_column_image.rb +3 -0
- data/test_rails_app/app/models/image.rb +3 -0
- data/test_rails_app/app/models/not_migrated_yet.rb +2 -0
- data/test_rails_app/app/models/product.rb +7 -0
- data/test_rails_app/app/models/product_category.rb +9 -0
- data/test_rails_app/app/models/tag.rb +4 -0
- data/test_rails_app/app/models/television_airing.rb +3 -0
- data/test_rails_app/app/models/television_time_slot.rb +11 -0
- data/test_rails_app/app/models/user.rb +14 -0
- data/test_rails_app/app/views/admin/appointments/_subject_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/appointments2/_time_input.html.erb +31 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_form.html.erb +5 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_index.html.erb +1 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_tags_input.html.erb +16 -0
- data/test_rails_app/app/views/admin/blog_posts2/_before_index.html.erb +2 -0
- data/test_rails_app/app/views/admin/blog_posts5/_after_index_header.html.erb +8 -0
- data/test_rails_app/app/views/admin/blog_posts_read_only/_body_for_show.html.erb +1 -0
- data/test_rails_app/app/views/admin/products/_name_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/products/_percent_off_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/products/_price_input.html.erb +10 -0
- data/test_rails_app/app/views/blog_posts/show.html.erb +13 -0
- data/test_rails_app/app/views/layouts/admin.html.erb +31 -0
- data/test_rails_app/config/boot.rb +109 -0
- data/test_rails_app/config/database.yml +28 -0
- data/test_rails_app/config/environment.rb +78 -0
- data/test_rails_app/config/environments/development.rb +17 -0
- data/test_rails_app/config/environments/production.rb +24 -0
- data/test_rails_app/config/environments/test.rb +24 -0
- data/test_rails_app/config/initializers/inflections.rb +10 -0
- data/test_rails_app/config/initializers/mime_types.rb +5 -0
- data/test_rails_app/config/initializers/new_rails_defaults.rb +17 -0
- data/test_rails_app/config/locales/en.yml +5 -0
- data/test_rails_app/config/routes.rb +43 -0
- data/test_rails_app/db/migrate/20090213215514_create_blog_posts.rb +12 -0
- data/test_rails_app/db/migrate/20090217225542_add_body_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090221220917_create_tags.rb +13 -0
- data/test_rails_app/db/migrate/20090221220947_create_blog_post_tags.rb +14 -0
- data/test_rails_app/db/migrate/20090222162204_add_textile_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090222163231_add_published_at_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090301191722_create_images.rb +16 -0
- data/test_rails_app/db/migrate/20090305165345_create_accounts.rb +14 -0
- data/test_rails_app/db/migrate/20090307225027_rename_accounts_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090307225750_add_user_id_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090309185114_change_blog_posts_textile.rb +9 -0
- data/test_rails_app/db/migrate/20090309193635_create_products.rb +14 -0
- data/test_rails_app/db/migrate/20090309203056_create_comments.rb +15 -0
- data/test_rails_app/db/migrate/20090323005947_create_file_column_images.rb +12 -0
- data/test_rails_app/db/migrate/20090326160049_add_birthday_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090326223606_add_state_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090503134004_add_file_column_image_to_products.rb +9 -0
- data/test_rails_app/db/migrate/20090617173651_create_bookmarks.rb +15 -0
- data/test_rails_app/db/migrate/20090624165355_add_tags_string_to_blog_post.rb +9 -0
- data/test_rails_app/db/migrate/20090625144313_add_avatar_fields_to_user.rb +11 -0
- data/test_rails_app/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090701171857_add_force_textile_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090704163647_add_deleted_at_to_products.rb +9 -0
- data/test_rails_app/db/migrate/20090704173800_add_sale_fields_to_products.rb +13 -0
- data/test_rails_app/db/migrate/20090714024501_create_product_categories.rb +15 -0
- data/test_rails_app/db/migrate/20090819162835_add_admin_level_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20091115134559_add_first_and_last_names_to_users.rb +11 -0
- data/test_rails_app/db/migrate/20091221011256_add_position_to_product_categories.rb +9 -0
- data/test_rails_app/db/migrate/20091222160814_create_appointments.rb +14 -0
- data/test_rails_app/db/migrate/20091227224547_add_user_id_to_appointments.rb +9 -0
- data/test_rails_app/db/migrate/20100214213359_create_television_time_slots.rb +13 -0
- data/test_rails_app/db/migrate/20100214213451_create_television_airings.rb +15 -0
- data/test_rails_app/doc/README_FOR_APP +5 -0
- data/test_rails_app/lib/tasks/rspec.rake +163 -0
- data/test_rails_app/public/404.html +30 -0
- data/test_rails_app/public/422.html +30 -0
- data/test_rails_app/public/500.html +33 -0
- data/test_rails_app/public/dispatch.cgi +10 -0
- data/test_rails_app/public/dispatch.fcgi +24 -0
- data/test_rails_app/public/dispatch.rb +10 -0
- data/test_rails_app/public/favicon.ico +0 -0
- data/test_rails_app/public/images/rails.png +0 -0
- data/test_rails_app/public/index.html +274 -0
- data/test_rails_app/public/javascripts/application.js +2 -0
- data/test_rails_app/public/javascripts/controls.js +963 -0
- data/test_rails_app/public/javascripts/dragdrop.js +973 -0
- data/test_rails_app/public/javascripts/effects.js +1128 -0
- data/test_rails_app/public/javascripts/prototype.js +4320 -0
- data/test_rails_app/public/robots.txt +5 -0
- data/test_rails_app/public/stylesheets/admin.css +3 -0
- data/test_rails_app/public/stylesheets/scaffold.css +54 -0
- data/test_rails_app/script/about +4 -0
- data/test_rails_app/script/autospec +5 -0
- data/test_rails_app/script/console +3 -0
- data/test_rails_app/script/dbconsole +3 -0
- data/test_rails_app/script/destroy +3 -0
- data/test_rails_app/script/generate +3 -0
- data/test_rails_app/script/performance/benchmarker +3 -0
- data/test_rails_app/script/performance/profiler +3 -0
- data/test_rails_app/script/performance/request +3 -0
- data/test_rails_app/script/plugin +3 -0
- data/test_rails_app/script/populate_tables.rb +49 -0
- data/test_rails_app/script/process/inspector +3 -0
- data/test_rails_app/script/process/reaper +3 -0
- data/test_rails_app/script/process/spawner +3 -0
- data/test_rails_app/script/runner +3 -0
- data/test_rails_app/script/server +3 -0
- data/test_rails_app/script/spec +5 -0
- data/test_rails_app/script/spec_server +125 -0
- data/test_rails_app/spec/controllers/admin/appointments2_controller_spec.rb +88 -0
- data/test_rails_app/spec/controllers/admin/appointments_controller_spec.rb +419 -0
- data/test_rails_app/spec/controllers/admin/blog_posts2_controller_spec.rb +1021 -0
- data/test_rails_app/spec/controllers/admin/blog_posts3_controller_spec.rb +532 -0
- data/test_rails_app/spec/controllers/admin/blog_posts4_controller_spec.rb +231 -0
- data/test_rails_app/spec/controllers/admin/blog_posts5_controller_spec.rb +77 -0
- data/test_rails_app/spec/controllers/admin/blog_posts6_controller_spec.rb +49 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_controller_spec.rb +987 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_custom_new_and_edit_controller_spec.rb +99 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_read_only_controller_spec.rb +94 -0
- data/test_rails_app/spec/controllers/admin/bookmarks_controller_spec.rb +505 -0
- data/test_rails_app/spec/controllers/admin/comments2_controller_spec.rb +70 -0
- data/test_rails_app/spec/controllers/admin/comments_controller_spec.rb +82 -0
- data/test_rails_app/spec/controllers/admin/file_column_images2_controller_spec.rb +25 -0
- data/test_rails_app/spec/controllers/admin/file_column_images_controller_spec.rb +82 -0
- data/test_rails_app/spec/controllers/admin/images2_controller_spec.rb +44 -0
- data/test_rails_app/spec/controllers/admin/images_controller_spec.rb +97 -0
- data/test_rails_app/spec/controllers/admin/misconfigured1_controller_spec.rb +21 -0
- data/test_rails_app/spec/controllers/admin/not_migrated_yets_controller_spec.rb +10 -0
- data/test_rails_app/spec/controllers/admin/product_categories2_controller_spec.rb +215 -0
- data/test_rails_app/spec/controllers/admin/product_categories_controller_spec.rb +19 -0
- data/test_rails_app/spec/controllers/admin/products2_controller_spec.rb +203 -0
- data/test_rails_app/spec/controllers/admin/products_controller_spec.rb +255 -0
- data/test_rails_app/spec/controllers/admin/television_airings_controller_spec.rb +32 -0
- data/test_rails_app/spec/controllers/admin/television_time_slots_controller_spec.rb +10 -0
- data/test_rails_app/spec/controllers/admin/users2_controller_spec.rb +65 -0
- data/test_rails_app/spec/controllers/admin/users_controller_spec.rb +344 -0
- data/test_rails_app/spec/controllers/blog_posts_controller_spec.rb +13 -0
- data/test_rails_app/spec/data/ruby_throated.jpg +0 -0
- data/test_rails_app/spec/data/tweenbot.jpg +0 -0
- data/test_rails_app/spec/fixtures/appointments.yml +9 -0
- data/test_rails_app/spec/fixtures/blog_post_tags.yml +9 -0
- data/test_rails_app/spec/fixtures/blog_posts.yml +7 -0
- data/test_rails_app/spec/fixtures/bookmarks.yml +11 -0
- data/test_rails_app/spec/fixtures/comments.yml +11 -0
- data/test_rails_app/spec/fixtures/file_column_images.yml +7 -0
- data/test_rails_app/spec/fixtures/images.yml +7 -0
- data/test_rails_app/spec/fixtures/not_migrated_yets.yml +7 -0
- data/test_rails_app/spec/fixtures/product_categories.yml +7 -0
- data/test_rails_app/spec/fixtures/products.yml +9 -0
- data/test_rails_app/spec/fixtures/tags.yml +7 -0
- data/test_rails_app/spec/fixtures/television_airings.yml +11 -0
- data/test_rails_app/spec/fixtures/television_time_slots.yml +7 -0
- data/test_rails_app/spec/fixtures/users.yml +9 -0
- data/test_rails_app/spec/helpers/admin/appointments2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/appointments_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts3_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts4_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_custom_new_and_edit_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_read_only_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/bookmarks_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/comments2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/comments_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/file_column_images2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/file_column_images_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/images2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/images_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/misconfigured1_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/not_migrated_yets_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/product_categories2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/product_categories_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/products2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/products_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/television_airings_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/television_time_slots_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/users2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/users_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/blog_posts_helper_spec.rb +11 -0
- data/test_rails_app/spec/models/appointment_spec.rb +16 -0
- data/test_rails_app/spec/models/blog_post_spec.rb +13 -0
- data/test_rails_app/spec/models/blog_post_tag_spec.rb +14 -0
- data/test_rails_app/spec/models/bookmark_spec.rb +15 -0
- data/test_rails_app/spec/models/comment_spec.rb +15 -0
- data/test_rails_app/spec/models/file_column_image_spec.rb +12 -0
- data/test_rails_app/spec/models/image_spec.rb +12 -0
- data/test_rails_app/spec/models/not_migrated_yet_spec.rb +15 -0
- data/test_rails_app/spec/models/product_category_spec.rb +15 -0
- data/test_rails_app/spec/models/product_spec.rb +14 -0
- data/test_rails_app/spec/models/tag_spec.rb +13 -0
- data/test_rails_app/spec/models/television_airing_spec.rb +15 -0
- data/test_rails_app/spec/models/television_time_slot_spec.rb +13 -0
- data/test_rails_app/spec/models/user_spec.rb +14 -0
- data/test_rails_app/spec/rcov.opts +2 -0
- data/test_rails_app/spec/spec.opts +4 -0
- data/test_rails_app/spec/spec_helper.rb +88 -0
- data/test_rails_app/spec/spec_or_test_helper.rb +49 -0
- data/test_rails_app/test/fixtures/file_column_images.yml +7 -0
- data/test_rails_app/test/integration/admin_blog_posts2_integration_test.rb +16 -0
- data/test_rails_app/test/integration/admin_blog_posts5_integration_test.rb +19 -0
- data/test_rails_app/test/integration/admin_blog_posts_integration_test.rb +25 -0
- data/test_rails_app/test/test_helper.rb +28 -0
- data/test_rails_app/vendor/plugins/file_column/CHANGELOG +69 -0
- data/test_rails_app/vendor/plugins/file_column/README +54 -0
- data/test_rails_app/vendor/plugins/file_column/Rakefile +36 -0
- data/test_rails_app/vendor/plugins/file_column/TODO +6 -0
- data/test_rails_app/vendor/plugins/file_column/init.rb +13 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_column.rb +723 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_column_helper.rb +150 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_compat.rb +28 -0
- data/test_rails_app/vendor/plugins/file_column/lib/magick_file_column.rb +260 -0
- data/test_rails_app/vendor/plugins/file_column/lib/rails_file_column.rb +19 -0
- data/test_rails_app/vendor/plugins/file_column/lib/test_case.rb +124 -0
- data/test_rails_app/vendor/plugins/file_column/lib/validations.rb +112 -0
- data/test_rails_app/vendor/plugins/file_column/test/abstract_unit.rb +63 -0
- data/test_rails_app/vendor/plugins/file_column/test/connection.rb +17 -0
- data/test_rails_app/vendor/plugins/file_column/test/file_column_helper_test.rb +97 -0
- data/test_rails_app/vendor/plugins/file_column/test/file_column_test.rb +650 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/entry.rb +32 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/invalid-image.jpg +1 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/kerb.jpg +0 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/mysql.sql +25 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/schema.rb +10 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/skanthak.png +0 -0
- data/test_rails_app/vendor/plugins/file_column/test/magick_test.rb +380 -0
- data/test_rails_app/vendor/plugins/file_column/test/magick_view_only_test.rb +21 -0
- data/vendor/ar_query/ar_query.gemspec +16 -0
- data/website/_layouts/api.html +39 -0
- data/website/_layouts/default.html +34 -0
- data/website/api/core.markdown +106 -0
- data/website/api/destroy.markdown +25 -0
- data/website/api/form.markdown +291 -0
- data/website/api/idx.markdown +286 -0
- data/website/api/index.markdown +147 -0
- data/website/api/search.markdown +108 -0
- data/website/api/show.markdown +22 -0
- data/website/community.markdown +27 -0
- data/website/css/lightbox.css +29 -0
- data/website/css/main.css +70 -0
- data/website/design_principles.markdown +50 -0
- data/website/getting_started.markdown +10 -0
- data/website/img/blog_posts-index.png +0 -0
- data/website/img/blog_posts-search.png +0 -0
- data/website/img/lightbox/bullet.gif +0 -0
- data/website/img/lightbox/close.gif +0 -0
- data/website/img/lightbox/closelabel.gif +0 -0
- data/website/img/lightbox/donate-button.gif +0 -0
- data/website/img/lightbox/download-icon.gif +0 -0
- data/website/img/lightbox/image-1.jpg +0 -0
- data/website/img/lightbox/loading.gif +0 -0
- data/website/img/lightbox/nextlabel.gif +0 -0
- data/website/img/lightbox/prevlabel.gif +0 -0
- data/website/img/lightbox/thumb-1.jpg +0 -0
- data/website/img/screen1-thumb.png +0 -0
- data/website/img/screen1.png +0 -0
- data/website/img/screen10-thumb.png +0 -0
- data/website/img/screen10.png +0 -0
- data/website/img/screen11-thumb.png +0 -0
- data/website/img/screen11.png +0 -0
- data/website/img/screen2-thumb.png +0 -0
- data/website/img/screen2.png +0 -0
- data/website/img/screen3-thumb.png +0 -0
- data/website/img/screen3.png +0 -0
- data/website/img/screen4-thumb.png +0 -0
- data/website/img/screen4.png +0 -0
- data/website/img/screen5-thumb.png +0 -0
- data/website/img/screen5.png +0 -0
- data/website/img/screen6-thumb.png +0 -0
- data/website/img/screen6.png +0 -0
- data/website/img/screen7-thumb.png +0 -0
- data/website/img/screen7.png +0 -0
- data/website/img/screen8-thumb.png +0 -0
- data/website/img/screen8.png +0 -0
- data/website/img/screen9-thumb.png +0 -0
- data/website/img/screen9.png +0 -0
- data/website/img/user-form.png +0 -0
- data/website/index.markdown +35 -0
- data/website/js/builder.js +136 -0
- data/website/js/effects.js +1122 -0
- data/website/js/lightbox.js +497 -0
- data/website/js/prototype.js +4221 -0
- data/website/js/scriptaculous.js +58 -0
- data/website/quick_start.markdown +44 -0
- data/website/screenshots.markdown +27 -0
- data/website/tutorial.markdown +56 -0
- metadata +391 -23
@@ -0,0 +1,497 @@
|
|
1
|
+
// -----------------------------------------------------------------------------------
|
2
|
+
//
|
3
|
+
// Lightbox v2.04
|
4
|
+
// by Lokesh Dhakar - http://www.lokeshdhakar.com
|
5
|
+
// Last Modification: 2/9/08
|
6
|
+
//
|
7
|
+
// For more information, visit:
|
8
|
+
// http://lokeshdhakar.com/projects/lightbox2/
|
9
|
+
//
|
10
|
+
// Licensed under the Creative Commons Attribution 2.5 License - http://creativecommons.org/licenses/by/2.5/
|
11
|
+
// - Free for use in both personal and commercial projects
|
12
|
+
// - Attribution requires leaving author name, author link, and the license info intact.
|
13
|
+
//
|
14
|
+
// Thanks: Scott Upton(uptonic.com), Peter-Paul Koch(quirksmode.com), and Thomas Fuchs(mir.aculo.us) for ideas, libs, and snippets.
|
15
|
+
// Artemy Tregubenko (arty.name) for cleanup and help in updating to latest ver of proto-aculous.
|
16
|
+
//
|
17
|
+
// -----------------------------------------------------------------------------------
|
18
|
+
/*
|
19
|
+
|
20
|
+
Table of Contents
|
21
|
+
-----------------
|
22
|
+
Configuration
|
23
|
+
|
24
|
+
Lightbox Class Declaration
|
25
|
+
- initialize()
|
26
|
+
- updateImageList()
|
27
|
+
- start()
|
28
|
+
- changeImage()
|
29
|
+
- resizeImageContainer()
|
30
|
+
- showImage()
|
31
|
+
- updateDetails()
|
32
|
+
- updateNav()
|
33
|
+
- enableKeyboardNav()
|
34
|
+
- disableKeyboardNav()
|
35
|
+
- keyboardAction()
|
36
|
+
- preloadNeighborImages()
|
37
|
+
- end()
|
38
|
+
|
39
|
+
Function Calls
|
40
|
+
- document.observe()
|
41
|
+
|
42
|
+
*/
|
43
|
+
// -----------------------------------------------------------------------------------
|
44
|
+
|
45
|
+
//
|
46
|
+
// Configurationl
|
47
|
+
//
|
48
|
+
LightboxOptions = Object.extend({
|
49
|
+
fileLoadingImage: './img/lightbox/loading.gif',
|
50
|
+
fileBottomNavCloseImage: './img/lightbox/closelabel.gif',
|
51
|
+
|
52
|
+
overlayOpacity: 0.8, // controls transparency of shadow overlay
|
53
|
+
|
54
|
+
animate: true, // toggles resizing animations
|
55
|
+
resizeSpeed: 10, // controls the speed of the image resizing animations (1=slowest and 10=fastest)
|
56
|
+
|
57
|
+
borderSize: 10, //if you adjust the padding in the CSS, you will need to update this variable
|
58
|
+
|
59
|
+
// When grouping images this is used to write: Image # of #.
|
60
|
+
// Change it for non-english localization
|
61
|
+
labelImage: "Image",
|
62
|
+
labelOf: "of"
|
63
|
+
}, window.LightboxOptions || {});
|
64
|
+
|
65
|
+
// -----------------------------------------------------------------------------------
|
66
|
+
|
67
|
+
var Lightbox = Class.create();
|
68
|
+
|
69
|
+
Lightbox.prototype = {
|
70
|
+
imageArray: [],
|
71
|
+
activeImage: undefined,
|
72
|
+
|
73
|
+
// initialize()
|
74
|
+
// Constructor runs on completion of the DOM loading. Calls updateImageList and then
|
75
|
+
// the function inserts html at the bottom of the page which is used to display the shadow
|
76
|
+
// overlay and the image container.
|
77
|
+
//
|
78
|
+
initialize: function() {
|
79
|
+
|
80
|
+
this.updateImageList();
|
81
|
+
|
82
|
+
this.keyboardAction = this.keyboardAction.bindAsEventListener(this);
|
83
|
+
|
84
|
+
if (LightboxOptions.resizeSpeed > 10) LightboxOptions.resizeSpeed = 10;
|
85
|
+
if (LightboxOptions.resizeSpeed < 1) LightboxOptions.resizeSpeed = 1;
|
86
|
+
|
87
|
+
this.resizeDuration = LightboxOptions.animate ? ((11 - LightboxOptions.resizeSpeed) * 0.15) : 0;
|
88
|
+
this.overlayDuration = LightboxOptions.animate ? 0.2 : 0; // shadow fade in/out duration
|
89
|
+
|
90
|
+
// When Lightbox starts it will resize itself from 250 by 250 to the current image dimension.
|
91
|
+
// If animations are turned off, it will be hidden as to prevent a flicker of a
|
92
|
+
// white 250 by 250 box.
|
93
|
+
var size = (LightboxOptions.animate ? 250 : 1) + 'px';
|
94
|
+
|
95
|
+
|
96
|
+
// Code inserts html at the bottom of the page that looks similar to this:
|
97
|
+
//
|
98
|
+
// <div id="overlay"></div>
|
99
|
+
// <div id="lightbox">
|
100
|
+
// <div id="outerImageContainer">
|
101
|
+
// <div id="imageContainer">
|
102
|
+
// <img id="lightboxImage">
|
103
|
+
// <div style="" id="hoverNav">
|
104
|
+
// <a href="#" id="prevLink"></a>
|
105
|
+
// <a href="#" id="nextLink"></a>
|
106
|
+
// </div>
|
107
|
+
// <div id="loading">
|
108
|
+
// <a href="#" id="loadingLink">
|
109
|
+
// <img src="images/loading.gif">
|
110
|
+
// </a>
|
111
|
+
// </div>
|
112
|
+
// </div>
|
113
|
+
// </div>
|
114
|
+
// <div id="imageDataContainer">
|
115
|
+
// <div id="imageData">
|
116
|
+
// <div id="imageDetails">
|
117
|
+
// <span id="caption"></span>
|
118
|
+
// <span id="numberDisplay"></span>
|
119
|
+
// </div>
|
120
|
+
// <div id="bottomNav">
|
121
|
+
// <a href="#" id="bottomNavClose">
|
122
|
+
// <img src="images/close.gif">
|
123
|
+
// </a>
|
124
|
+
// </div>
|
125
|
+
// </div>
|
126
|
+
// </div>
|
127
|
+
// </div>
|
128
|
+
|
129
|
+
|
130
|
+
var objBody = $$('body')[0];
|
131
|
+
|
132
|
+
objBody.appendChild(Builder.node('div',{id:'overlay'}));
|
133
|
+
|
134
|
+
objBody.appendChild(Builder.node('div',{id:'lightbox'}, [
|
135
|
+
Builder.node('div',{id:'outerImageContainer'},
|
136
|
+
Builder.node('div',{id:'imageContainer'}, [
|
137
|
+
Builder.node('img',{id:'lightboxImage'}),
|
138
|
+
Builder.node('div',{id:'hoverNav'}, [
|
139
|
+
Builder.node('a',{id:'prevLink', href: '#' }),
|
140
|
+
Builder.node('a',{id:'nextLink', href: '#' })
|
141
|
+
]),
|
142
|
+
Builder.node('div',{id:'loading'},
|
143
|
+
Builder.node('a',{id:'loadingLink', href: '#' },
|
144
|
+
Builder.node('img', {src: LightboxOptions.fileLoadingImage})
|
145
|
+
)
|
146
|
+
)
|
147
|
+
])
|
148
|
+
),
|
149
|
+
Builder.node('div', {id:'imageDataContainer'},
|
150
|
+
Builder.node('div',{id:'imageData'}, [
|
151
|
+
Builder.node('div',{id:'imageDetails'}, [
|
152
|
+
Builder.node('span',{id:'caption'}),
|
153
|
+
Builder.node('span',{id:'numberDisplay'})
|
154
|
+
]),
|
155
|
+
Builder.node('div',{id:'bottomNav'},
|
156
|
+
Builder.node('a',{id:'bottomNavClose', href: '#' },
|
157
|
+
Builder.node('img', { src: LightboxOptions.fileBottomNavCloseImage })
|
158
|
+
)
|
159
|
+
)
|
160
|
+
])
|
161
|
+
)
|
162
|
+
]));
|
163
|
+
|
164
|
+
|
165
|
+
$('overlay').hide().observe('click', (function() { this.end(); }).bind(this));
|
166
|
+
$('lightbox').hide().observe('click', (function(event) { if (event.element().id == 'lightbox') this.end(); }).bind(this));
|
167
|
+
$('outerImageContainer').setStyle({ width: size, height: size });
|
168
|
+
$('prevLink').observe('click', (function(event) { event.stop(); this.changeImage(this.activeImage - 1); }).bindAsEventListener(this));
|
169
|
+
$('nextLink').observe('click', (function(event) { event.stop(); this.changeImage(this.activeImage + 1); }).bindAsEventListener(this));
|
170
|
+
$('loadingLink').observe('click', (function(event) { event.stop(); this.end(); }).bind(this));
|
171
|
+
$('bottomNavClose').observe('click', (function(event) { event.stop(); this.end(); }).bind(this));
|
172
|
+
|
173
|
+
var th = this;
|
174
|
+
(function(){
|
175
|
+
var ids =
|
176
|
+
'overlay lightbox outerImageContainer imageContainer lightboxImage hoverNav prevLink nextLink loading loadingLink ' +
|
177
|
+
'imageDataContainer imageData imageDetails caption numberDisplay bottomNav bottomNavClose';
|
178
|
+
$w(ids).each(function(id){ th[id] = $(id); });
|
179
|
+
}).defer();
|
180
|
+
},
|
181
|
+
|
182
|
+
//
|
183
|
+
// updateImageList()
|
184
|
+
// Loops through anchor tags looking for 'lightbox' references and applies onclick
|
185
|
+
// events to appropriate links. You can rerun after dynamically adding images w/ajax.
|
186
|
+
//
|
187
|
+
updateImageList: function() {
|
188
|
+
this.updateImageList = Prototype.emptyFunction;
|
189
|
+
|
190
|
+
document.observe('click', (function(event){
|
191
|
+
var target = event.findElement('a[rel^=lightbox]') || event.findElement('area[rel^=lightbox]');
|
192
|
+
if (target) {
|
193
|
+
event.stop();
|
194
|
+
this.start(target);
|
195
|
+
}
|
196
|
+
}).bind(this));
|
197
|
+
},
|
198
|
+
|
199
|
+
//
|
200
|
+
// start()
|
201
|
+
// Display overlay and lightbox. If image is part of a set, add siblings to imageArray.
|
202
|
+
//
|
203
|
+
start: function(imageLink) {
|
204
|
+
|
205
|
+
$$('select', 'object', 'embed').each(function(node){ node.style.visibility = 'hidden' });
|
206
|
+
|
207
|
+
// stretch overlay to fill page and fade in
|
208
|
+
var arrayPageSize = this.getPageSize();
|
209
|
+
$('overlay').setStyle({ width: arrayPageSize[0] + 'px', height: arrayPageSize[1] + 'px' });
|
210
|
+
|
211
|
+
new Effect.Appear(this.overlay, { duration: this.overlayDuration, from: 0.0, to: LightboxOptions.overlayOpacity });
|
212
|
+
|
213
|
+
this.imageArray = [];
|
214
|
+
var imageNum = 0;
|
215
|
+
|
216
|
+
if ((imageLink.rel == 'lightbox')){
|
217
|
+
// if image is NOT part of a set, add single image to imageArray
|
218
|
+
this.imageArray.push([imageLink.href, imageLink.title]);
|
219
|
+
} else {
|
220
|
+
// if image is part of a set..
|
221
|
+
this.imageArray =
|
222
|
+
$$(imageLink.tagName + '[href][rel="' + imageLink.rel + '"]').
|
223
|
+
collect(function(anchor){ return [anchor.href, anchor.title]; }).
|
224
|
+
uniq();
|
225
|
+
|
226
|
+
while (this.imageArray[imageNum][0] != imageLink.href) { imageNum++; }
|
227
|
+
}
|
228
|
+
|
229
|
+
// calculate top and left offset for the lightbox
|
230
|
+
var arrayPageScroll = document.viewport.getScrollOffsets();
|
231
|
+
var lightboxTop = arrayPageScroll[1] + (document.viewport.getHeight() / 10);
|
232
|
+
var lightboxLeft = arrayPageScroll[0];
|
233
|
+
this.lightbox.setStyle({ top: lightboxTop + 'px', left: lightboxLeft + 'px' }).show();
|
234
|
+
|
235
|
+
this.changeImage(imageNum);
|
236
|
+
},
|
237
|
+
|
238
|
+
//
|
239
|
+
// changeImage()
|
240
|
+
// Hide most elements and preload image in preparation for resizing image container.
|
241
|
+
//
|
242
|
+
changeImage: function(imageNum) {
|
243
|
+
|
244
|
+
this.activeImage = imageNum; // update global var
|
245
|
+
|
246
|
+
// hide elements during transition
|
247
|
+
if (LightboxOptions.animate) this.loading.show();
|
248
|
+
this.lightboxImage.hide();
|
249
|
+
this.hoverNav.hide();
|
250
|
+
this.prevLink.hide();
|
251
|
+
this.nextLink.hide();
|
252
|
+
// HACK: Opera9 does not currently support scriptaculous opacity and appear fx
|
253
|
+
this.imageDataContainer.setStyle({opacity: .0001});
|
254
|
+
this.numberDisplay.hide();
|
255
|
+
|
256
|
+
var imgPreloader = new Image();
|
257
|
+
|
258
|
+
// once image is preloaded, resize image container
|
259
|
+
|
260
|
+
|
261
|
+
imgPreloader.onload = (function(){
|
262
|
+
this.lightboxImage.src = this.imageArray[this.activeImage][0];
|
263
|
+
this.resizeImageContainer(imgPreloader.width, imgPreloader.height);
|
264
|
+
}).bind(this);
|
265
|
+
imgPreloader.src = this.imageArray[this.activeImage][0];
|
266
|
+
},
|
267
|
+
|
268
|
+
//
|
269
|
+
// resizeImageContainer()
|
270
|
+
//
|
271
|
+
resizeImageContainer: function(imgWidth, imgHeight) {
|
272
|
+
|
273
|
+
// get current width and height
|
274
|
+
var widthCurrent = this.outerImageContainer.getWidth();
|
275
|
+
var heightCurrent = this.outerImageContainer.getHeight();
|
276
|
+
|
277
|
+
// get new width and height
|
278
|
+
var widthNew = (imgWidth + LightboxOptions.borderSize * 2);
|
279
|
+
var heightNew = (imgHeight + LightboxOptions.borderSize * 2);
|
280
|
+
|
281
|
+
// scalars based on change from old to new
|
282
|
+
var xScale = (widthNew / widthCurrent) * 100;
|
283
|
+
var yScale = (heightNew / heightCurrent) * 100;
|
284
|
+
|
285
|
+
// calculate size difference between new and old image, and resize if necessary
|
286
|
+
var wDiff = widthCurrent - widthNew;
|
287
|
+
var hDiff = heightCurrent - heightNew;
|
288
|
+
|
289
|
+
if (hDiff != 0) new Effect.Scale(this.outerImageContainer, yScale, {scaleX: false, duration: this.resizeDuration, queue: 'front'});
|
290
|
+
if (wDiff != 0) new Effect.Scale(this.outerImageContainer, xScale, {scaleY: false, duration: this.resizeDuration, delay: this.resizeDuration});
|
291
|
+
|
292
|
+
// if new and old image are same size and no scaling transition is necessary,
|
293
|
+
// do a quick pause to prevent image flicker.
|
294
|
+
var timeout = 0;
|
295
|
+
if ((hDiff == 0) && (wDiff == 0)){
|
296
|
+
timeout = 100;
|
297
|
+
if (Prototype.Browser.IE) timeout = 250;
|
298
|
+
}
|
299
|
+
|
300
|
+
(function(){
|
301
|
+
this.prevLink.setStyle({ height: imgHeight + 'px' });
|
302
|
+
this.nextLink.setStyle({ height: imgHeight + 'px' });
|
303
|
+
this.imageDataContainer.setStyle({ width: widthNew + 'px' });
|
304
|
+
|
305
|
+
this.showImage();
|
306
|
+
}).bind(this).delay(timeout / 1000);
|
307
|
+
},
|
308
|
+
|
309
|
+
//
|
310
|
+
// showImage()
|
311
|
+
// Display image and begin preloading neighbors.
|
312
|
+
//
|
313
|
+
showImage: function(){
|
314
|
+
this.loading.hide();
|
315
|
+
new Effect.Appear(this.lightboxImage, {
|
316
|
+
duration: this.resizeDuration,
|
317
|
+
queue: 'end',
|
318
|
+
afterFinish: (function(){ this.updateDetails(); }).bind(this)
|
319
|
+
});
|
320
|
+
this.preloadNeighborImages();
|
321
|
+
},
|
322
|
+
|
323
|
+
//
|
324
|
+
// updateDetails()
|
325
|
+
// Display caption, image number, and bottom nav.
|
326
|
+
//
|
327
|
+
updateDetails: function() {
|
328
|
+
|
329
|
+
// if caption is not null
|
330
|
+
if (this.imageArray[this.activeImage][1] != ""){
|
331
|
+
this.caption.update(this.imageArray[this.activeImage][1]).show();
|
332
|
+
}
|
333
|
+
|
334
|
+
// if image is part of set display 'Image x of x'
|
335
|
+
if (this.imageArray.length > 1){
|
336
|
+
this.numberDisplay.update( LightboxOptions.labelImage + ' ' + (this.activeImage + 1) + ' ' + LightboxOptions.labelOf + ' ' + this.imageArray.length).show();
|
337
|
+
}
|
338
|
+
|
339
|
+
new Effect.Parallel(
|
340
|
+
[
|
341
|
+
new Effect.SlideDown(this.imageDataContainer, { sync: true, duration: this.resizeDuration, from: 0.0, to: 1.0 }),
|
342
|
+
new Effect.Appear(this.imageDataContainer, { sync: true, duration: this.resizeDuration })
|
343
|
+
],
|
344
|
+
{
|
345
|
+
duration: this.resizeDuration,
|
346
|
+
afterFinish: (function() {
|
347
|
+
// update overlay size and update nav
|
348
|
+
var arrayPageSize = this.getPageSize();
|
349
|
+
this.overlay.setStyle({ height: arrayPageSize[1] + 'px' });
|
350
|
+
this.updateNav();
|
351
|
+
}).bind(this)
|
352
|
+
}
|
353
|
+
);
|
354
|
+
},
|
355
|
+
|
356
|
+
//
|
357
|
+
// updateNav()
|
358
|
+
// Display appropriate previous and next hover navigation.
|
359
|
+
//
|
360
|
+
updateNav: function() {
|
361
|
+
|
362
|
+
this.hoverNav.show();
|
363
|
+
|
364
|
+
// if not first image in set, display prev image button
|
365
|
+
if (this.activeImage > 0) this.prevLink.show();
|
366
|
+
|
367
|
+
// if not last image in set, display next image button
|
368
|
+
if (this.activeImage < (this.imageArray.length - 1)) this.nextLink.show();
|
369
|
+
|
370
|
+
this.enableKeyboardNav();
|
371
|
+
},
|
372
|
+
|
373
|
+
//
|
374
|
+
// enableKeyboardNav()
|
375
|
+
//
|
376
|
+
enableKeyboardNav: function() {
|
377
|
+
document.observe('keydown', this.keyboardAction);
|
378
|
+
},
|
379
|
+
|
380
|
+
//
|
381
|
+
// disableKeyboardNav()
|
382
|
+
//
|
383
|
+
disableKeyboardNav: function() {
|
384
|
+
document.stopObserving('keydown', this.keyboardAction);
|
385
|
+
},
|
386
|
+
|
387
|
+
//
|
388
|
+
// keyboardAction()
|
389
|
+
//
|
390
|
+
keyboardAction: function(event) {
|
391
|
+
var keycode = event.keyCode;
|
392
|
+
|
393
|
+
var escapeKey;
|
394
|
+
if (event.DOM_VK_ESCAPE) { // mozilla
|
395
|
+
escapeKey = event.DOM_VK_ESCAPE;
|
396
|
+
} else { // ie
|
397
|
+
escapeKey = 27;
|
398
|
+
}
|
399
|
+
|
400
|
+
var key = String.fromCharCode(keycode).toLowerCase();
|
401
|
+
|
402
|
+
if (key.match(/x|o|c/) || (keycode == escapeKey)){ // close lightbox
|
403
|
+
this.end();
|
404
|
+
} else if ((key == 'p') || (keycode == 37)){ // display previous image
|
405
|
+
if (this.activeImage != 0){
|
406
|
+
this.disableKeyboardNav();
|
407
|
+
this.changeImage(this.activeImage - 1);
|
408
|
+
}
|
409
|
+
} else if ((key == 'n') || (keycode == 39)){ // display next image
|
410
|
+
if (this.activeImage != (this.imageArray.length - 1)){
|
411
|
+
this.disableKeyboardNav();
|
412
|
+
this.changeImage(this.activeImage + 1);
|
413
|
+
}
|
414
|
+
}
|
415
|
+
},
|
416
|
+
|
417
|
+
//
|
418
|
+
// preloadNeighborImages()
|
419
|
+
// Preload previous and next images.
|
420
|
+
//
|
421
|
+
preloadNeighborImages: function(){
|
422
|
+
var preloadNextImage, preloadPrevImage;
|
423
|
+
if (this.imageArray.length > this.activeImage + 1){
|
424
|
+
preloadNextImage = new Image();
|
425
|
+
preloadNextImage.src = this.imageArray[this.activeImage + 1][0];
|
426
|
+
}
|
427
|
+
if (this.activeImage > 0){
|
428
|
+
preloadPrevImage = new Image();
|
429
|
+
preloadPrevImage.src = this.imageArray[this.activeImage - 1][0];
|
430
|
+
}
|
431
|
+
|
432
|
+
},
|
433
|
+
|
434
|
+
//
|
435
|
+
// end()
|
436
|
+
//
|
437
|
+
end: function() {
|
438
|
+
this.disableKeyboardNav();
|
439
|
+
this.lightbox.hide();
|
440
|
+
new Effect.Fade(this.overlay, { duration: this.overlayDuration });
|
441
|
+
$$('select', 'object', 'embed').each(function(node){ node.style.visibility = 'visible' });
|
442
|
+
},
|
443
|
+
|
444
|
+
//
|
445
|
+
// getPageSize()
|
446
|
+
//
|
447
|
+
getPageSize: function() {
|
448
|
+
|
449
|
+
var xScroll, yScroll;
|
450
|
+
|
451
|
+
if (window.innerHeight && window.scrollMaxY) {
|
452
|
+
xScroll = window.innerWidth + window.scrollMaxX;
|
453
|
+
yScroll = window.innerHeight + window.scrollMaxY;
|
454
|
+
} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
|
455
|
+
xScroll = document.body.scrollWidth;
|
456
|
+
yScroll = document.body.scrollHeight;
|
457
|
+
} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
|
458
|
+
xScroll = document.body.offsetWidth;
|
459
|
+
yScroll = document.body.offsetHeight;
|
460
|
+
}
|
461
|
+
|
462
|
+
var windowWidth, windowHeight;
|
463
|
+
|
464
|
+
if (self.innerHeight) { // all except Explorer
|
465
|
+
if(document.documentElement.clientWidth){
|
466
|
+
windowWidth = document.documentElement.clientWidth;
|
467
|
+
} else {
|
468
|
+
windowWidth = self.innerWidth;
|
469
|
+
}
|
470
|
+
windowHeight = self.innerHeight;
|
471
|
+
} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
|
472
|
+
windowWidth = document.documentElement.clientWidth;
|
473
|
+
windowHeight = document.documentElement.clientHeight;
|
474
|
+
} else if (document.body) { // other Explorers
|
475
|
+
windowWidth = document.body.clientWidth;
|
476
|
+
windowHeight = document.body.clientHeight;
|
477
|
+
}
|
478
|
+
|
479
|
+
// for small pages with total height less then height of the viewport
|
480
|
+
if(yScroll < windowHeight){
|
481
|
+
pageHeight = windowHeight;
|
482
|
+
} else {
|
483
|
+
pageHeight = yScroll;
|
484
|
+
}
|
485
|
+
|
486
|
+
// for small pages with total width less then width of the viewport
|
487
|
+
if(xScroll < windowWidth){
|
488
|
+
pageWidth = xScroll;
|
489
|
+
} else {
|
490
|
+
pageWidth = windowWidth;
|
491
|
+
}
|
492
|
+
|
493
|
+
return [pageWidth,pageHeight];
|
494
|
+
}
|
495
|
+
}
|
496
|
+
|
497
|
+
document.observe('dom:loaded', function () { new Lightbox(); });
|