radiant 0.6.4 → 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of radiant might be problematic. Click here for more details.
- data/CHANGELOG +188 -35
- data/CONTRIBUTORS +25 -2
- data/INSTALL +1 -1
- data/app/controllers/admin/abstract_model_controller.rb +13 -13
- data/app/controllers/admin/export_controller.rb +1 -2
- data/app/controllers/admin/extension_controller.rb +0 -5
- data/app/controllers/admin/page_controller.rb +2 -0
- data/app/controllers/application.rb +1 -1
- data/app/controllers/site_controller.rb +8 -1
- data/app/helpers/admin/node_helper.rb +21 -18
- data/app/helpers/application_helper.rb +4 -13
- data/app/models/layout.rb +2 -2
- data/app/models/page.rb +25 -21
- data/app/models/page_context.rb +3 -5
- data/app/models/response_cache.rb +19 -27
- data/app/models/snippet.rb +2 -2
- data/app/models/standard_tags.rb +148 -26
- data/app/models/user.rb +2 -2
- data/app/views/admin/extension/index.html.erb +40 -0
- data/app/views/admin/layout/edit.html.erb +39 -0
- data/app/views/admin/layout/{index.rhtml → index.html.erb} +0 -0
- data/app/views/admin/layout/{remove.rhtml → remove.html.erb} +0 -0
- data/app/views/admin/page/_meta_row.html.erb +4 -0
- data/app/views/admin/page/{_node.rhtml → _node.html.erb} +0 -0
- data/app/views/admin/page/{_part.rhtml → _part.html.erb} +0 -0
- data/app/views/admin/page/_tag_reference.html.erb +4 -0
- data/app/views/admin/page/{children.rhtml → children.html.erb} +0 -0
- data/app/views/admin/page/edit.html.erb +140 -0
- data/app/views/admin/page/index.html.erb +31 -0
- data/app/views/admin/page/{remove.rhtml → remove.html.erb} +0 -0
- data/app/views/admin/snippet/{edit.rhtml → edit.html.erb} +0 -0
- data/app/views/admin/snippet/{index.rhtml → index.html.erb} +0 -0
- data/app/views/admin/snippet/{remove.rhtml → remove.html.erb} +0 -0
- data/app/views/admin/user/edit.html.erb +54 -0
- data/app/views/admin/user/{index.rhtml → index.html.erb} +0 -0
- data/app/views/admin/user/preferences.html.erb +29 -0
- data/app/views/admin/user/{remove.rhtml → remove.html.erb} +0 -0
- data/app/views/admin/welcome/{login.rhtml → login.html.erb} +0 -0
- data/app/views/layouts/{application.rhtml → application.html.erb} +0 -0
- data/app/views/site/{not_found.rhtml → not_found.html.erb} +0 -0
- data/bin/radiant +0 -0
- data/config/boot.rb +136 -26
- data/config/environment.rb +61 -53
- data/config/environments/development.rb +2 -3
- data/config/environments/test.rb +14 -7
- data/db/migrate/015_add_optimistic_locking.rb +6 -6
- data/db/migrate/017_rename_created_by_updated_by_columns.rb +15 -0
- data/db/migrate/018_add_description_and_keywords_to_pages.rb +11 -0
- data/db/schema.rb +66 -59
- data/db/templates/styled-blog.yml +3 -3
- data/lib/annotatable.rb +16 -0
- data/lib/autotest/discover.rb +3 -0
- data/lib/autotest/radiant_rails_rspec.rb +111 -0
- data/lib/generators/extension/USAGE +16 -14
- data/lib/generators/extension/extension_generator.rb +29 -7
- data/lib/generators/extension/templates/RSpecRakefile +120 -0
- data/lib/generators/extension/templates/Rakefile +0 -0
- data/lib/generators/extension/templates/spec.opts +6 -0
- data/lib/generators/extension/templates/spec_helper.rb +37 -0
- data/lib/generators/extension/templates/test_helper.rb +9 -2
- data/lib/generators/extension_controller/USAGE +4 -2
- data/lib/generators/extension_controller/extension_controller_generator.rb +50 -0
- data/lib/generators/extension_controller/templates/controller_spec.rb +23 -0
- data/lib/generators/extension_controller/templates/helper_spec.rb +11 -0
- data/lib/generators/extension_controller/templates/view_spec.rb +12 -0
- data/lib/generators/extension_model/USAGE +3 -2
- data/lib/generators/extension_model/extension_model_generator.rb +34 -0
- data/lib/generators/extension_model/templates/model_spec.rb +11 -0
- data/lib/generators/instance/templates/instance_boot.rb +136 -33
- data/lib/generators/instance/templates/instance_environment.rb +85 -4
- data/lib/login_system.rb +16 -0
- data/lib/plugins/dependencies_fix/init.rb +5 -5
- data/lib/plugins/extension_patches/init.rb +0 -1
- data/lib/plugins/extension_patches/lib/fixture_loading_extension.rb +76 -75
- data/lib/plugins/extension_patches/lib/mailer_view_paths_extension.rb +19 -14
- data/lib/plugins/string_extensions/lib/string_extensions.rb +4 -0
- data/lib/plugins/symbol_extensions/init.rb +1 -0
- data/lib/plugins/symbol_extensions/lib/symbol_extensions.rb +7 -0
- data/lib/radiant.rb +2 -8
- data/lib/radiant/extension.rb +11 -43
- data/lib/radiant/extension_loader.rb +144 -135
- data/lib/radiant/initializer.rb +126 -33
- data/lib/radiant/setup.rb +1 -0
- data/lib/tasks/database.rake +44 -3
- data/lib/tasks/extensions.rake +29 -11
- data/lib/tasks/framework.rake +20 -6
- data/lib/tasks/instance.rake +5 -2
- data/lib/tasks/release.rake +1 -0
- data/public/dispatch.cgi +0 -0
- data/public/dispatch.fcgi +0 -0
- data/public/dispatch.rb +0 -0
- data/public/images/admin/brown-bottom-line.gif +0 -0
- data/public/images/admin/view-site.gif +0 -0
- data/public/javascripts/admin/admin.js +142 -0
- data/public/javascripts/{ruledtable.js → admin/ruledtable.js} +0 -0
- data/public/javascripts/admin/sitemap.js +131 -0
- data/public/javascripts/admin/tabcontrol.js +127 -0
- data/public/javascripts/pngfix.js +1 -1
- data/public/stylesheets/admin/main.css +11 -6
- data/script/about +0 -0
- data/script/breakpointer +0 -0
- data/script/console +0 -0
- data/script/destroy +0 -0
- data/script/generate +0 -0
- data/script/performance/benchmarker +0 -0
- data/script/performance/profiler +0 -0
- data/script/plugin +0 -0
- data/script/process/inspector +0 -0
- data/script/process/reaper +0 -0
- data/script/process/spawner +0 -0
- data/script/process/spinner +0 -0
- data/script/runner +0 -0
- data/script/server +0 -0
- data/script/spec +12 -0
- data/script/spec_server +99 -0
- data/script/version +0 -0
- data/spec/controllers/admin/abstract_model_controller_spec.rb +263 -0
- data/spec/controllers/admin/export_controller_spec.rb +16 -0
- data/spec/controllers/admin/extension_controller_spec.rb +21 -0
- data/spec/controllers/admin/layout_controller_spec.rb +42 -0
- data/spec/controllers/admin/page_controller_spec.rb +312 -0
- data/spec/controllers/admin/snippet_controller_spec.rb +27 -0
- data/spec/controllers/admin/user_controller_spec.rb +72 -0
- data/spec/controllers/admin/welcome_controller_spec.rb +37 -0
- data/spec/controllers/application_controller_spec.rb +41 -0
- data/spec/controllers/site_controller_spec.rb +109 -0
- data/spec/fixtures/sample.txt +1 -0
- data/spec/helpers/admin/abstract_model_helper_spec.rb +4 -0
- data/spec/helpers/admin/export_helper_spec.rb +4 -0
- data/spec/helpers/admin/extension_helper_spec.rb +4 -0
- data/spec/helpers/admin/layout_helper_spec.rb +4 -0
- data/spec/helpers/admin/node_helper_spec.rb +97 -0
- data/spec/helpers/admin/page_helper_spec.rb +41 -0
- data/spec/helpers/admin/snippet_helper_spec.rb +4 -0
- data/spec/helpers/admin/user_helper_spec.rb +4 -0
- data/spec/helpers/admin/welcome_helper_spec.rb +4 -0
- data/spec/helpers/application_helper_spec.rb +166 -0
- data/spec/helpers/site_helper_spec.rb +4 -0
- data/spec/lib/annotatable_spec.rb +86 -0
- data/spec/lib/autotest_spec.rb +81 -0
- data/spec/lib/inheritable_class_attributes_spec.rb +90 -0
- data/spec/lib/local_time_spec.rb +40 -0
- data/spec/lib/login_system_spec.rb +142 -0
- data/spec/lib/method_observer_spec.rb +48 -0
- data/spec/lib/radiant/admin_ui_spec.rb +133 -0
- data/spec/lib/radiant/extension_loader_spec.rb +179 -0
- data/spec/lib/radiant/extension_migrator_spec.rb +17 -0
- data/spec/lib/radiant/extension_spec.rb +69 -0
- data/spec/lib/radiant/initializer_spec.rb +80 -0
- data/spec/lib/radiant/taggable_spec.rb +150 -0
- data/spec/lib/radiant_spec.rb +26 -0
- data/spec/lib/simpleton_spec.rb +45 -0
- data/spec/matchers/login_system_matcher.rb +79 -0
- data/spec/matchers/render_matcher.rb +115 -0
- data/spec/models/env_dump_page_spec.rb +18 -0
- data/spec/models/file_not_found_page_spec.rb +31 -0
- data/spec/models/layout_spec.rb +29 -0
- data/spec/models/page_context_spec.rb +68 -0
- data/spec/models/page_part_spec.rb +47 -0
- data/spec/models/page_spec.rb +500 -0
- data/spec/models/radiant/config_spec.rb +57 -0
- data/spec/models/radiant/exporter_spec.rb +25 -0
- data/spec/models/response_cache_spec.rb +259 -0
- data/spec/models/snippet_spec.rb +41 -0
- data/spec/models/standard_tags_spec.rb +774 -0
- data/spec/models/status_spec.rb +53 -0
- data/spec/models/text_filter_spec.rb +40 -0
- data/spec/models/user_action_observer_spec.rb +34 -0
- data/spec/models/user_spec.rb +135 -0
- data/spec/rcov.opts +2 -0
- data/spec/scenarios/file_not_found_scenario.rb +13 -0
- data/spec/scenarios/home_page_scenario.rb +64 -0
- data/spec/scenarios/layouts_scenario.rb +58 -0
- data/spec/scenarios/markup_pages_scenario.rb +13 -0
- data/spec/scenarios/pages_scenario.rb +50 -0
- data/spec/scenarios/pages_with_layouts_scenario.rb +10 -0
- data/spec/scenarios/snippets_scenario.rb +34 -0
- data/spec/scenarios/users_and_pages_scenario.rb +9 -0
- data/spec/scenarios/users_scenario.rb +43 -0
- data/spec/spec.opts +3 -0
- data/spec/spec_helper.rb +64 -0
- data/stories/all.rb +4 -0
- data/stories/helper.rb +3 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension/{index.rhtml → index.html.erb} +0 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension/{override.rhtml → override.html.erb} +0 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension_mailer/{message.rhtml → message.text.html.erb} +0 -0
- data/test/fixtures/extensions/02_overriding/app/views/basic_extension/{override.rhtml → override.html.erb} +0 -0
- data/test/fixtures/page_parts.yml +6 -1
- data/test/fixtures/pages.yml +33 -19
- data/test/helpers/caching_test_helper.rb +39 -38
- data/test/helpers/extension_fixture_test_helper.rb +39 -39
- data/test/helpers/extension_tag_test_helper.rb +16 -16
- data/test/helpers/logging_test_helper.rb +10 -0
- data/test/helpers/render_test_helper.rb +3 -3
- data/test/helpers/validation_test_helper.rb +42 -42
- data/test/test_helper.rb +6 -4
- data/vendor/extensions/archive/Rakefile +105 -10
- data/vendor/extensions/archive/app/models/archive_day_index_page.rb +0 -0
- data/vendor/extensions/archive/app/models/archive_month_index_page.rb +0 -0
- data/vendor/extensions/archive/app/models/archive_page.rb +0 -0
- data/vendor/extensions/archive/app/models/archive_year_index_page.rb +0 -0
- data/vendor/extensions/archive/lib/archive_index_tags_and_methods.rb +0 -0
- data/vendor/extensions/archive/spec/models/archive_day_index_page_spec.rb +20 -0
- data/vendor/extensions/archive/spec/models/archive_month_index_page_spec.rb +20 -0
- data/vendor/extensions/archive/spec/models/archive_page_spec.rb +33 -0
- data/vendor/extensions/archive/spec/models/archive_year_index_page_spec.rb +20 -0
- data/vendor/extensions/archive/spec/scenarios/archive_scenario.rb +51 -0
- data/vendor/extensions/archive/spec/spec.opts +6 -0
- data/vendor/extensions/archive/spec/spec_helper.rb +37 -0
- data/vendor/extensions/archive/test/functional/archive_extension_test.rb +1 -1
- data/vendor/extensions/archive/test/helpers/archive_index_test_helper.rb +0 -0
- data/vendor/extensions/archive/test/test_helper.rb +11 -4
- data/vendor/extensions/archive/test/unit/archive_day_index_page_test.rb +0 -0
- data/vendor/extensions/archive/test/unit/archive_month_index_page_test.rb +0 -0
- data/vendor/extensions/archive/test/unit/archive_page_test.rb +0 -0
- data/vendor/extensions/archive/test/unit/archive_year_index_page_test.rb +0 -0
- data/vendor/extensions/markdown_filter/Rakefile +105 -10
- data/vendor/extensions/markdown_filter/lib/tasks/markdown_filter_extension_tasks.rake +28 -0
- data/vendor/extensions/markdown_filter/spec/models/markdown_filter_spec.rb +15 -0
- data/vendor/extensions/markdown_filter/spec/models/smarty_pants_filter_spec.rb +12 -0
- data/vendor/extensions/markdown_filter/spec/spec.opts +6 -0
- data/vendor/extensions/markdown_filter/spec/spec_helper.rb +37 -0
- data/vendor/extensions/markdown_filter/test/test_helper.rb +11 -2
- data/vendor/extensions/textile_filter/Rakefile +105 -10
- data/vendor/extensions/textile_filter/spec/models/textile_filter_spec.rb +11 -0
- data/vendor/extensions/textile_filter/spec/spec.opts +6 -0
- data/vendor/extensions/textile_filter/spec/spec_helper.rb +37 -0
- data/vendor/extensions/textile_filter/test/test_helper.rb +11 -2
- data/vendor/plugins/acts_as_tree/README +26 -0
- data/vendor/plugins/acts_as_tree/Rakefile +22 -0
- data/vendor/plugins/acts_as_tree/init.rb +1 -0
- data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +96 -0
- data/vendor/plugins/acts_as_tree/test/abstract_unit.rb +0 -0
- data/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb +219 -0
- data/vendor/plugins/acts_as_tree/test/database.yml +0 -0
- data/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
- data/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
- data/vendor/plugins/acts_as_tree/test/schema.rb +0 -0
- data/vendor/plugins/rspec/CHANGES +1079 -0
- data/vendor/plugins/rspec/MIT-LICENSE +20 -0
- data/vendor/plugins/rspec/README +71 -0
- data/vendor/plugins/rspec/Rakefile +279 -0
- data/vendor/plugins/rspec/TODO +2 -0
- data/vendor/plugins/rspec/UPGRADE +31 -0
- data/vendor/plugins/rspec/bin/spec +4 -0
- data/vendor/plugins/rspec/bin/spec_translator +8 -0
- data/vendor/plugins/rspec/examples/pure/autogenerated_docstrings_example.rb +19 -0
- data/vendor/plugins/rspec/examples/pure/before_and_after_example.rb +40 -0
- data/vendor/plugins/rspec/examples/pure/behave_as_example.rb +45 -0
- data/vendor/plugins/rspec/examples/pure/custom_expectation_matchers.rb +54 -0
- data/vendor/plugins/rspec/examples/pure/custom_formatter.rb +12 -0
- data/vendor/plugins/rspec/examples/pure/dynamic_spec.rb +9 -0
- data/vendor/plugins/rspec/examples/pure/file_accessor.rb +19 -0
- data/vendor/plugins/rspec/examples/pure/file_accessor_spec.rb +38 -0
- data/vendor/plugins/rspec/examples/pure/greeter_spec.rb +31 -0
- data/vendor/plugins/rspec/examples/pure/helper_method_example.rb +14 -0
- data/vendor/plugins/rspec/examples/pure/io_processor.rb +8 -0
- data/vendor/plugins/rspec/examples/pure/io_processor_spec.rb +21 -0
- data/vendor/plugins/rspec/examples/pure/legacy_spec.rb +11 -0
- data/vendor/plugins/rspec/examples/pure/mocking_example.rb +27 -0
- data/vendor/plugins/rspec/examples/pure/multi_threaded_behaviour_runner.rb +28 -0
- data/vendor/plugins/rspec/examples/pure/nested_classes_example.rb +36 -0
- data/vendor/plugins/rspec/examples/pure/partial_mock_example.rb +28 -0
- data/vendor/plugins/rspec/examples/pure/pending_example.rb +20 -0
- data/vendor/plugins/rspec/examples/pure/predicate_example.rb +27 -0
- data/vendor/plugins/rspec/examples/pure/priority.txt +1 -0
- data/vendor/plugins/rspec/examples/pure/shared_example_group_example.rb +81 -0
- data/vendor/plugins/rspec/examples/pure/shared_stack_examples.rb +38 -0
- data/vendor/plugins/rspec/examples/pure/spec_helper.rb +3 -0
- data/vendor/plugins/rspec/examples/pure/stack.rb +36 -0
- data/vendor/plugins/rspec/examples/pure/stack_spec.rb +63 -0
- data/vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb +67 -0
- data/vendor/plugins/rspec/examples/pure/stubbing_example.rb +69 -0
- data/vendor/plugins/rspec/examples/stories/adder.rb +13 -0
- data/vendor/plugins/rspec/examples/stories/addition +34 -0
- data/vendor/plugins/rspec/examples/stories/addition.rb +9 -0
- data/vendor/plugins/rspec/examples/stories/calculator.rb +65 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/README.txt +21 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/everything.rb +6 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/examples.rb +3 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb +35 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb +66 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story +21 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story +21 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story +42 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story +42 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story +17 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story +53 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb +52 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/helper.rb +6 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb +26 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/steps.rb +5 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.rb +3 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.txt +22 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/life.rb +3 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/life/game.rb +23 -0
- data/vendor/plugins/rspec/examples/stories/game-of-life/life/grid.rb +43 -0
- data/vendor/plugins/rspec/examples/stories/helper.rb +9 -0
- data/vendor/plugins/rspec/examples/stories/steps/addition_steps.rb +18 -0
- data/vendor/plugins/rspec/failing_examples/README.txt +7 -0
- data/vendor/plugins/rspec/failing_examples/diffing_spec.rb +36 -0
- data/vendor/plugins/rspec/failing_examples/failing_autogenerated_docstrings_example.rb +19 -0
- data/vendor/plugins/rspec/failing_examples/failure_in_setup.rb +10 -0
- data/vendor/plugins/rspec/failing_examples/failure_in_teardown.rb +10 -0
- data/vendor/plugins/rspec/failing_examples/mocking_example.rb +40 -0
- data/vendor/plugins/rspec/failing_examples/mocking_with_flexmock.rb +26 -0
- data/vendor/plugins/rspec/failing_examples/mocking_with_mocha.rb +25 -0
- data/vendor/plugins/rspec/failing_examples/mocking_with_rr.rb +27 -0
- data/vendor/plugins/rspec/failing_examples/partial_mock_example.rb +20 -0
- data/vendor/plugins/rspec/failing_examples/predicate_example.rb +29 -0
- data/vendor/plugins/rspec/failing_examples/raising_example.rb +47 -0
- data/vendor/plugins/rspec/failing_examples/spec_helper.rb +3 -0
- data/vendor/plugins/rspec/failing_examples/syntax_error_example.rb +7 -0
- data/vendor/plugins/rspec/failing_examples/team_spec.rb +44 -0
- data/vendor/plugins/rspec/failing_examples/timeout_behaviour.rb +7 -0
- data/vendor/plugins/rspec/init.rb +9 -0
- data/vendor/plugins/rspec/lib/autotest/discover.rb +3 -0
- data/vendor/plugins/rspec/lib/autotest/rspec.rb +72 -0
- data/vendor/plugins/rspec/lib/spec.rb +30 -0
- data/vendor/plugins/rspec/lib/spec/example.rb +12 -0
- data/vendor/plugins/rspec/lib/spec/example/configuration.rb +144 -0
- data/vendor/plugins/rspec/lib/spec/example/errors.rb +9 -0
- data/vendor/plugins/rspec/lib/spec/example/example_group.rb +16 -0
- data/vendor/plugins/rspec/lib/spec/example/example_group_factory.rb +58 -0
- data/vendor/plugins/rspec/lib/spec/example/example_group_methods.rb +433 -0
- data/vendor/plugins/rspec/lib/spec/example/example_matcher.rb +42 -0
- data/vendor/plugins/rspec/lib/spec/example/example_methods.rb +110 -0
- data/vendor/plugins/rspec/lib/spec/example/module_reopening_fix.rb +21 -0
- data/vendor/plugins/rspec/lib/spec/example/pending.rb +18 -0
- data/vendor/plugins/rspec/lib/spec/example/shared_example_group.rb +58 -0
- data/vendor/plugins/rspec/lib/spec/expectations.rb +56 -0
- data/vendor/plugins/rspec/lib/spec/expectations/differs/default.rb +66 -0
- data/vendor/plugins/rspec/lib/spec/expectations/errors.rb +12 -0
- data/vendor/plugins/rspec/lib/spec/expectations/extensions.rb +2 -0
- data/vendor/plugins/rspec/lib/spec/expectations/extensions/object.rb +71 -0
- data/vendor/plugins/rspec/lib/spec/expectations/extensions/string_and_symbol.rb +17 -0
- data/vendor/plugins/rspec/lib/spec/expectations/handler.rb +52 -0
- data/vendor/plugins/rspec/lib/spec/extensions.rb +4 -0
- data/vendor/plugins/rspec/lib/spec/extensions/class.rb +24 -0
- data/vendor/plugins/rspec/lib/spec/extensions/main.rb +102 -0
- data/vendor/plugins/rspec/lib/spec/extensions/metaclass.rb +7 -0
- data/vendor/plugins/rspec/lib/spec/extensions/object.rb +6 -0
- data/vendor/plugins/rspec/lib/spec/interop/test.rb +12 -0
- data/vendor/plugins/rspec/lib/spec/interop/test/unit/autorunner.rb +6 -0
- data/vendor/plugins/rspec/lib/spec/interop/test/unit/testcase.rb +61 -0
- data/vendor/plugins/rspec/lib/spec/interop/test/unit/testresult.rb +6 -0
- data/vendor/plugins/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
- data/vendor/plugins/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
- data/vendor/plugins/rspec/lib/spec/matchers.rb +156 -0
- data/vendor/plugins/rspec/lib/spec/matchers/be.rb +224 -0
- data/vendor/plugins/rspec/lib/spec/matchers/be_close.rb +37 -0
- data/vendor/plugins/rspec/lib/spec/matchers/change.rb +144 -0
- data/vendor/plugins/rspec/lib/spec/matchers/eql.rb +43 -0
- data/vendor/plugins/rspec/lib/spec/matchers/equal.rb +43 -0
- data/vendor/plugins/rspec/lib/spec/matchers/exist.rb +17 -0
- data/vendor/plugins/rspec/lib/spec/matchers/has.rb +34 -0
- data/vendor/plugins/rspec/lib/spec/matchers/have.rb +145 -0
- data/vendor/plugins/rspec/lib/spec/matchers/include.rb +70 -0
- data/vendor/plugins/rspec/lib/spec/matchers/match.rb +41 -0
- data/vendor/plugins/rspec/lib/spec/matchers/operator_matcher.rb +73 -0
- data/vendor/plugins/rspec/lib/spec/matchers/raise_error.rb +132 -0
- data/vendor/plugins/rspec/lib/spec/matchers/respond_to.rb +45 -0
- data/vendor/plugins/rspec/lib/spec/matchers/satisfy.rb +47 -0
- data/vendor/plugins/rspec/lib/spec/matchers/simple_matcher.rb +29 -0
- data/vendor/plugins/rspec/lib/spec/matchers/throw_symbol.rb +74 -0
- data/vendor/plugins/rspec/lib/spec/mocks.rb +211 -0
- data/vendor/plugins/rspec/lib/spec/mocks/argument_constraint_matchers.rb +31 -0
- data/vendor/plugins/rspec/lib/spec/mocks/argument_constraint_matchers.rb.orig +27 -0
- data/vendor/plugins/rspec/lib/spec/mocks/argument_expectation.rb +209 -0
- data/vendor/plugins/rspec/lib/spec/mocks/error_generator.rb +84 -0
- data/vendor/plugins/rspec/lib/spec/mocks/errors.rb +10 -0
- data/vendor/plugins/rspec/lib/spec/mocks/extensions/object.rb +3 -0
- data/vendor/plugins/rspec/lib/spec/mocks/message_expectation.rb +269 -0
- data/vendor/plugins/rspec/lib/spec/mocks/methods.rb +39 -0
- data/vendor/plugins/rspec/lib/spec/mocks/mock.rb +50 -0
- data/vendor/plugins/rspec/lib/spec/mocks/order_group.rb +29 -0
- data/vendor/plugins/rspec/lib/spec/mocks/proxy.rb +166 -0
- data/vendor/plugins/rspec/lib/spec/mocks/space.rb +28 -0
- data/vendor/plugins/rspec/lib/spec/mocks/spec_methods.rb +38 -0
- data/vendor/plugins/rspec/lib/spec/rake/spectask.rb +235 -0
- data/vendor/plugins/rspec/lib/spec/rake/verify_rcov.rb +52 -0
- data/vendor/plugins/rspec/lib/spec/runner.rb +202 -0
- data/vendor/plugins/rspec/lib/spec/runner/backtrace_tweaker.rb +57 -0
- data/vendor/plugins/rspec/lib/spec/runner/class_and_arguments_parser.rb +16 -0
- data/vendor/plugins/rspec/lib/spec/runner/command_line.rb +28 -0
- data/vendor/plugins/rspec/lib/spec/runner/drb_command_line.rb +20 -0
- data/vendor/plugins/rspec/lib/spec/runner/example_group_runner.rb +59 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/base_formatter.rb +77 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/base_text_formatter.rb +130 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +33 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/html_formatter.rb +333 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/profile_formatter.rb +47 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +30 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +39 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/story/html_formatter.rb +128 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/story/plain_text_formatter.rb +131 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
- data/vendor/plugins/rspec/lib/spec/runner/heckle_runner.rb +72 -0
- data/vendor/plugins/rspec/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
- data/vendor/plugins/rspec/lib/spec/runner/option_parser.rb +205 -0
- data/vendor/plugins/rspec/lib/spec/runner/options.rb +288 -0
- data/vendor/plugins/rspec/lib/spec/runner/reporter.rb +147 -0
- data/vendor/plugins/rspec/lib/spec/runner/spec_parser.rb +71 -0
- data/vendor/plugins/rspec/lib/spec/story.rb +10 -0
- data/vendor/plugins/rspec/lib/spec/story/extensions.rb +3 -0
- data/vendor/plugins/rspec/lib/spec/story/extensions/main.rb +86 -0
- data/vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb +9 -0
- data/vendor/plugins/rspec/lib/spec/story/extensions/string.rb +9 -0
- data/vendor/plugins/rspec/lib/spec/story/given_scenario.rb +14 -0
- data/vendor/plugins/rspec/lib/spec/story/runner.rb +56 -0
- data/vendor/plugins/rspec/lib/spec/story/runner/plain_text_story_runner.rb +48 -0
- data/vendor/plugins/rspec/lib/spec/story/runner/scenario_collector.rb +18 -0
- data/vendor/plugins/rspec/lib/spec/story/runner/scenario_runner.rb +48 -0
- data/vendor/plugins/rspec/lib/spec/story/runner/story_mediator.rb +123 -0
- data/vendor/plugins/rspec/lib/spec/story/runner/story_parser.rb +227 -0
- data/vendor/plugins/rspec/lib/spec/story/runner/story_runner.rb +70 -0
- data/vendor/plugins/rspec/lib/spec/story/scenario.rb +14 -0
- data/vendor/plugins/rspec/lib/spec/story/step.rb +58 -0
- data/vendor/plugins/rspec/lib/spec/story/step_group.rb +89 -0
- data/vendor/plugins/rspec/lib/spec/story/step_mother.rb +37 -0
- data/vendor/plugins/rspec/lib/spec/story/story.rb +39 -0
- data/vendor/plugins/rspec/lib/spec/story/world.rb +124 -0
- data/vendor/plugins/rspec/lib/spec/translator.rb +114 -0
- data/vendor/plugins/rspec/lib/spec/version.rb +22 -0
- data/vendor/plugins/rspec/plugins/mock_frameworks/flexmock.rb +23 -0
- data/vendor/plugins/rspec/plugins/mock_frameworks/mocha.rb +19 -0
- data/vendor/plugins/rspec/plugins/mock_frameworks/rr.rb +21 -0
- data/vendor/plugins/rspec/plugins/mock_frameworks/rspec.rb +18 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit.rb +4 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit/core.rb +50 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit/pre_commit.rb +54 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec.rb +111 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec_on_rails.rb +314 -0
- data/vendor/plugins/rspec/pre_commit/spec/pre_commit/pre_commit_spec.rb +15 -0
- data/vendor/plugins/rspec/pre_commit/spec/pre_commit/rspec_on_rails_spec.rb +51 -0
- data/vendor/plugins/rspec/pre_commit/spec/spec_helper.rb +3 -0
- data/vendor/plugins/rspec/pre_commit/spec/spec_suite.rb +11 -0
- data/vendor/plugins/rspec/rake_tasks/examples.rake +7 -0
- data/vendor/plugins/rspec/rake_tasks/examples_with_rcov.rake +9 -0
- data/vendor/plugins/rspec/rake_tasks/failing_examples_with_html.rake +9 -0
- data/vendor/plugins/rspec/rake_tasks/verify_rcov.rake +7 -0
- data/vendor/plugins/rspec/spec/README.jruby +15 -0
- data/vendor/plugins/rspec/spec/autotest/discover_spec.rb +19 -0
- data/vendor/plugins/rspec/spec/autotest/rspec_spec.rb +197 -0
- data/vendor/plugins/rspec/spec/autotest_helper.rb +6 -0
- data/vendor/plugins/rspec/spec/autotest_matchers.rb +47 -0
- data/vendor/plugins/rspec/spec/rspec_suite.rb +7 -0
- data/vendor/plugins/rspec/spec/ruby_forker.rb +13 -0
- data/vendor/plugins/rspec/spec/spec.opts +6 -0
- data/vendor/plugins/rspec/spec/spec/example/configuration_spec.rb +282 -0
- data/vendor/plugins/rspec/spec/spec/example/example_group_class_definition_spec.rb +48 -0
- data/vendor/plugins/rspec/spec/spec/example/example_group_factory_spec.rb +135 -0
- data/vendor/plugins/rspec/spec/spec/example/example_group_methods_spec.rb +523 -0
- data/vendor/plugins/rspec/spec/spec/example/example_group_spec.rb +711 -0
- data/vendor/plugins/rspec/spec/spec/example/example_matcher_spec.rb +96 -0
- data/vendor/plugins/rspec/spec/spec/example/example_methods_spec.rb +115 -0
- data/vendor/plugins/rspec/spec/spec/example/example_runner_spec.rb +194 -0
- data/vendor/plugins/rspec/spec/spec/example/example_spec.rb +53 -0
- data/vendor/plugins/rspec/spec/spec/example/nested_example_group_spec.rb +71 -0
- data/vendor/plugins/rspec/spec/spec/example/pending_module_spec.rb +31 -0
- data/vendor/plugins/rspec/spec/spec/example/predicate_matcher_spec.rb +21 -0
- data/vendor/plugins/rspec/spec/spec/example/shared_example_group_spec.rb +265 -0
- data/vendor/plugins/rspec/spec/spec/example/subclassing_example_group_spec.rb +25 -0
- data/vendor/plugins/rspec/spec/spec/expectations/differs/default_spec.rb +127 -0
- data/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb +107 -0
- data/vendor/plugins/rspec/spec/spec/expectations/fail_with_spec.rb +71 -0
- data/vendor/plugins/rspec/spec/spec/extensions/main_spec.rb +76 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/spec_spec.rb +45 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +14 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec.rb +45 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
- data/vendor/plugins/rspec/spec/spec/matchers/be_close_spec.rb +39 -0
- data/vendor/plugins/rspec/spec/spec/matchers/be_spec.rb +248 -0
- data/vendor/plugins/rspec/spec/spec/matchers/change_spec.rb +319 -0
- data/vendor/plugins/rspec/spec/spec/matchers/description_generation_spec.rb +153 -0
- data/vendor/plugins/rspec/spec/spec/matchers/eql_spec.rb +28 -0
- data/vendor/plugins/rspec/spec/spec/matchers/equal_spec.rb +28 -0
- data/vendor/plugins/rspec/spec/spec/matchers/exist_spec.rb +57 -0
- data/vendor/plugins/rspec/spec/spec/matchers/handler_spec.rb +129 -0
- data/vendor/plugins/rspec/spec/spec/matchers/has_spec.rb +53 -0
- data/vendor/plugins/rspec/spec/spec/matchers/have_spec.rb +291 -0
- data/vendor/plugins/rspec/spec/spec/matchers/include_spec.rb +45 -0
- data/vendor/plugins/rspec/spec/spec/matchers/match_spec.rb +37 -0
- data/vendor/plugins/rspec/spec/spec/matchers/matcher_methods_spec.rb +78 -0
- data/vendor/plugins/rspec/spec/spec/matchers/mock_constraint_matchers_spec.rb +24 -0
- data/vendor/plugins/rspec/spec/spec/matchers/operator_matcher_spec.rb +158 -0
- data/vendor/plugins/rspec/spec/spec/matchers/raise_error_spec.rb +315 -0
- data/vendor/plugins/rspec/spec/spec/matchers/respond_to_spec.rb +54 -0
- data/vendor/plugins/rspec/spec/spec/matchers/satisfy_spec.rb +36 -0
- data/vendor/plugins/rspec/spec/spec/matchers/simple_matcher_spec.rb +31 -0
- data/vendor/plugins/rspec/spec/spec/matchers/throw_symbol_spec.rb +54 -0
- data/vendor/plugins/rspec/spec/spec/mocks/any_number_of_times_spec.rb +29 -0
- data/vendor/plugins/rspec/spec/spec/mocks/argument_expectation_spec.rb +23 -0
- data/vendor/plugins/rspec/spec/spec/mocks/at_least_spec.rb +97 -0
- data/vendor/plugins/rspec/spec/spec/mocks/at_most_spec.rb +93 -0
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10263_spec.rb +24 -0
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_11545_spec.rb +33 -0
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
- data/vendor/plugins/rspec/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +123 -0
- data/vendor/plugins/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +32 -0
- data/vendor/plugins/rspec/spec/spec/mocks/mock_ordering_spec.rb +84 -0
- data/vendor/plugins/rspec/spec/spec/mocks/mock_space_spec.rb +54 -0
- data/vendor/plugins/rspec/spec/spec/mocks/mock_spec.rb +481 -0
- data/vendor/plugins/rspec/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
- data/vendor/plugins/rspec/spec/spec/mocks/null_object_mock_spec.rb +40 -0
- data/vendor/plugins/rspec/spec/spec/mocks/once_counts_spec.rb +53 -0
- data/vendor/plugins/rspec/spec/spec/mocks/options_hash_spec.rb +45 -0
- data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_spec.rb +106 -0
- data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
- data/vendor/plugins/rspec/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +160 -0
- data/vendor/plugins/rspec/spec/spec/mocks/precise_counts_spec.rb +52 -0
- data/vendor/plugins/rspec/spec/spec/mocks/record_messages_spec.rb +26 -0
- data/vendor/plugins/rspec/spec/spec/mocks/stub_spec.rb +181 -0
- data/vendor/plugins/rspec/spec/spec/mocks/twice_counts_spec.rb +67 -0
- data/vendor/plugins/rspec/spec/spec/package/bin_spec_spec.rb +14 -0
- data/vendor/plugins/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
- data/vendor/plugins/rspec/spec/spec/runner/command_line_spec.rb +147 -0
- data/vendor/plugins/rspec/spec/spec/runner/drb_command_line_spec.rb +92 -0
- data/vendor/plugins/rspec/spec/spec/runner/empty_file.txt +0 -0
- data/vendor/plugins/rspec/spec/spec/runner/examples.txt +2 -0
- data/vendor/plugins/rspec/spec/spec/runner/execution_context_spec.rb +37 -0
- data/vendor/plugins/rspec/spec/spec/runner/failed.txt +3 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +45 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.4.html +365 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +387 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5.html +371 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +381 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +371 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +66 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +65 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +137 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +103 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +129 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/story/html_formatter_spec.rb +61 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +335 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html +365 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +371 -0
- data/vendor/plugins/rspec/spec/spec/runner/heckle_runner_spec.rb +78 -0
- data/vendor/plugins/rspec/spec/spec/runner/heckler_spec.rb +13 -0
- data/vendor/plugins/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +45 -0
- data/vendor/plugins/rspec/spec/spec/runner/option_parser_spec.rb +384 -0
- data/vendor/plugins/rspec/spec/spec/runner/options_spec.rb +386 -0
- data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture.rb +7 -0
- data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +8 -0
- data/vendor/plugins/rspec/spec/spec/runner/output_one_time_spec.rb +16 -0
- data/vendor/plugins/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +56 -0
- data/vendor/plugins/rspec/spec/spec/runner/reporter_spec.rb +192 -0
- data/vendor/plugins/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
- data/vendor/plugins/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
- data/vendor/plugins/rspec/spec/spec/runner/resources/a_spec.rb +1 -0
- data/vendor/plugins/rspec/spec/spec/runner/spec.opts +2 -0
- data/vendor/plugins/rspec/spec/spec/runner/spec_drb.opts +1 -0
- data/vendor/plugins/rspec/spec/spec/runner/spec_parser/spec_parser_fixture.rb +70 -0
- data/vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb +79 -0
- data/vendor/plugins/rspec/spec/spec/runner/spec_spaced.opts +2 -0
- data/vendor/plugins/rspec/spec/spec/runner_spec.rb +11 -0
- data/vendor/plugins/rspec/spec/spec/spec_classes.rb +133 -0
- data/vendor/plugins/rspec/spec/spec/story/builders.rb +46 -0
- data/vendor/plugins/rspec/spec/spec/story/extensions/main_spec.rb +161 -0
- data/vendor/plugins/rspec/spec/spec/story/extensions_spec.rb +14 -0
- data/vendor/plugins/rspec/spec/spec/story/given_scenario_spec.rb +27 -0
- data/vendor/plugins/rspec/spec/spec/story/runner/plain_text_story_runner_spec.rb +92 -0
- data/vendor/plugins/rspec/spec/spec/story/runner/scenario_collector_spec.rb +27 -0
- data/vendor/plugins/rspec/spec/spec/story/runner/scenario_runner_spec.rb +191 -0
- data/vendor/plugins/rspec/spec/spec/story/runner/story_mediator_spec.rb +133 -0
- data/vendor/plugins/rspec/spec/spec/story/runner/story_parser_spec.rb +384 -0
- data/vendor/plugins/rspec/spec/spec/story/runner/story_runner_spec.rb +294 -0
- data/vendor/plugins/rspec/spec/spec/story/runner_spec.rb +106 -0
- data/vendor/plugins/rspec/spec/spec/story/scenario_spec.rb +20 -0
- data/vendor/plugins/rspec/spec/spec/story/step_group_spec.rb +157 -0
- data/vendor/plugins/rspec/spec/spec/story/step_mother_spec.rb +72 -0
- data/vendor/plugins/rspec/spec/spec/story/step_spec.rb +200 -0
- data/vendor/plugins/rspec/spec/spec/story/story_helper.rb +2 -0
- data/vendor/plugins/rspec/spec/spec/story/story_spec.rb +86 -0
- data/vendor/plugins/rspec/spec/spec/story/world_spec.rb +423 -0
- data/vendor/plugins/rspec/spec/spec/translator_spec.rb +265 -0
- data/vendor/plugins/rspec/spec/spec_helper.rb +103 -0
- data/vendor/plugins/rspec/stories/all.rb +5 -0
- data/vendor/plugins/rspec/stories/example_groups/autogenerated_docstrings +45 -0
- data/vendor/plugins/rspec/stories/example_groups/example_group_with_should_methods +17 -0
- data/vendor/plugins/rspec/stories/example_groups/nested_groups +17 -0
- data/vendor/plugins/rspec/stories/example_groups/output +25 -0
- data/vendor/plugins/rspec/stories/example_groups/stories.rb +7 -0
- data/vendor/plugins/rspec/stories/helper.rb +6 -0
- data/vendor/plugins/rspec/stories/interop/examples_and_tests_together +30 -0
- data/vendor/plugins/rspec/stories/interop/stories.rb +7 -0
- data/vendor/plugins/rspec/stories/interop/test_case_with_should_methods +17 -0
- data/vendor/plugins/rspec/stories/pending_stories/README +3 -0
- data/vendor/plugins/rspec/stories/resources/helpers/cmdline.rb +9 -0
- data/vendor/plugins/rspec/stories/resources/helpers/story_helper.rb +16 -0
- data/vendor/plugins/rspec/stories/resources/matchers/smart_match.rb +37 -0
- data/vendor/plugins/rspec/stories/resources/spec/example_group_with_should_methods.rb +12 -0
- data/vendor/plugins/rspec/stories/resources/spec/simple_spec.rb +8 -0
- data/vendor/plugins/rspec/stories/resources/steps/running_rspec.rb +50 -0
- data/vendor/plugins/rspec/stories/resources/stories/failing_story.rb +15 -0
- data/vendor/plugins/rspec/stories/resources/test/spec_and_test_together.rb +57 -0
- data/vendor/plugins/rspec/stories/resources/test/test_case_with_should_methods.rb +30 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/builder.js +136 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/controls.js +972 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/dragdrop.js +976 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/effects.js +1117 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/prototype.js +4140 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/rspec.js +149 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/scriptaculous.js +58 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/slider.js +276 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/sound.js +55 -0
- data/vendor/plugins/rspec/story_server/prototype/javascripts/unittest.js +568 -0
- data/vendor/plugins/rspec/story_server/prototype/lib/server.rb +24 -0
- data/vendor/plugins/rspec/story_server/prototype/stories.html +176 -0
- data/vendor/plugins/rspec/story_server/prototype/stylesheets/rspec.css +136 -0
- data/vendor/plugins/rspec/story_server/prototype/stylesheets/test.css +90 -0
- data/vendor/plugins/rspec_on_rails/MIT-LICENSE +31 -0
- data/vendor/plugins/rspec_on_rails/README +3 -0
- data/vendor/plugins/rspec_on_rails/Rakefile +9 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/CHANGES +1 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/rspec_generator.rb +35 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/all_stories.rb +4 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/previous_failures.txt +0 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/rcov.opts +2 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/script/spec +4 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/script/spec_server +102 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/spec.opts +4 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/spec_helper.rb +39 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/stories_helper.rb +3 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_controller/USAGE +33 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_controller/rspec_controller_generator.rb +49 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/controller_spec.rb +25 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/helper_spec.rb +11 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_controller/templates/view_spec.rb +12 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_model/USAGE +18 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_model/rspec_model_generator.rb +30 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_model/templates/model_spec.rb +11 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +167 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/controller_spec.rb +313 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +25 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/helper_spec.rb +11 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb +22 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/new_erb_spec.rb +26 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/routing_spec.rb +61 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/show_erb_spec.rb +22 -0
- data/vendor/plugins/rspec_on_rails/init.rb +9 -0
- data/vendor/plugins/rspec_on_rails/lib/autotest/discover.rb +1 -0
- data/vendor/plugins/rspec_on_rails/lib/autotest/rails_rspec.rb +81 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails.rb +51 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example.rb +46 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/assigns_hash_proxy.rb +43 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb +269 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/functional_example_group.rb +59 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/helper_example_group.rb +130 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/model_example_group.rb +14 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb +98 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/render_observer.rb +90 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/view_example_group.rb +178 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions.rb +12 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/base.rb +14 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/rescue.rb +21 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/action_controller/test_response.rb +11 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/action_view/base.rb +27 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/active_record/base.rb +30 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/object.rb +5 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/spec/example/configuration.rb +66 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/extensions/spec/matchers/have.rb +21 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers.rb +29 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/assert_select.rb +130 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/have_text.rb +55 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/redirect_to.rb +113 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/render_template.rb +70 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/story_adapter.rb +71 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/version.rb +23 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/autotest/mappings_spec.rb +36 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/autotest/rails_rspec_spec.rb +8 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/assigns_hash_proxy_spec.rb +60 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/configuration_spec.rb +83 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/controller_isolation_spec.rb +43 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/controller_spec_spec.rb +195 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/example_group_factory_spec.rb +112 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/helper_spec_spec.rb +133 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/model_spec_spec.rb +18 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/shared_behaviour_spec.rb +16 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/test_unit_assertion_accessibility_spec.rb +33 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/view_spec_spec.rb +264 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/extensions/action_controller_rescue_action_spec.rb +54 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/extensions/action_view_base_spec.rb +48 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/extensions/active_record_spec.rb +14 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/matchers/assert_select_spec.rb +783 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/matchers/description_generation_spec.rb +37 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/matchers/errors_on_spec.rb +13 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb +62 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/matchers/redirect_to_spec.rb +209 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/matchers/render_spec.rb +169 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/mocks/ar_classes.rb +10 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/mocks/mock_model_spec.rb +55 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/mocks/stub_model_spec.rb +54 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/sample_spec.rb +7 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/spec_server_spec.rb +89 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/spec_spec.rb +11 -0
- data/vendor/plugins/rspec_on_rails/spec/rails_suite.rb +7 -0
- data/vendor/plugins/rspec_on_rails/spec/spec_helper.rb +46 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/controllers/action_view_base_spec_controller.rb +2 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/controllers/controller_spec_controller.rb +68 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/controllers/redirect_spec_controller.rb +59 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/controllers/render_spec_controller.rb +26 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/controllers/rjs_spec_controller.rb +58 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/helpers/explicit_helper.rb +10 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/helpers/more_explicit_helper.rb +5 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/helpers/plugin_application_helper.rb +6 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/helpers/view_spec_helper.rb +13 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/_partial.rhtml +0 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml +0 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/controller_spec/action_with_template.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/_a_partial.rhtml +0 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.js.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.rhtml +0 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/render_spec/some_action.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/_replacement_partial.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/hide_div.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/hide_page_element.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/insert_html.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace_html.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/visual_effect.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/tag_spec/no_tags.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial.rhtml +2 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial_used_twice.rhtml +0 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/_spacer.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/accessor.rhtml +3 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/entry_form.rhtml +2 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/explicit_helper.rhtml +2 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/foo/show.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/implicit_helper.rhtml +2 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/multiple_helpers.rhtml +3 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/template_with_partial.rhtml +5 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml +3 -0
- data/vendor/plugins/rspec_on_rails/spec_resources/views/view_spec/template_with_partial_with_array.rhtml +1 -0
- data/vendor/plugins/rspec_on_rails/stories/all.rb +10 -0
- data/vendor/plugins/rspec_on_rails/stories/helper.rb +5 -0
- data/vendor/plugins/rspec_on_rails/stories/steps/people.rb +8 -0
- data/vendor/plugins/rspec_on_rails/stories/transactions_should_rollback +15 -0
- data/vendor/plugins/rspec_on_rails/stories/transactions_should_rollback.rb +25 -0
- data/vendor/plugins/rspec_on_rails/tasks/rspec.rake +137 -0
- data/vendor/plugins/scenarios/LICENSE +19 -0
- data/vendor/plugins/scenarios/README +262 -0
- data/vendor/plugins/scenarios/Rakefile +66 -0
- data/vendor/plugins/scenarios/TODO +1 -0
- data/vendor/plugins/scenarios/lib/scenarios.rb +34 -0
- data/vendor/plugins/scenarios/lib/scenarios/base.rb +73 -0
- data/vendor/plugins/scenarios/lib/scenarios/builtin/blank_scenario.rb +18 -0
- data/vendor/plugins/scenarios/lib/scenarios/configuration.rb +55 -0
- data/vendor/plugins/scenarios/lib/scenarios/extensions.rb +5 -0
- data/vendor/plugins/scenarios/lib/scenarios/extensions/active_record.rb +14 -0
- data/vendor/plugins/scenarios/lib/scenarios/extensions/delegating_attributes.rb +40 -0
- data/vendor/plugins/scenarios/lib/scenarios/extensions/object.rb +5 -0
- data/vendor/plugins/scenarios/lib/scenarios/extensions/string.rb +22 -0
- data/vendor/plugins/scenarios/lib/scenarios/extensions/symbol.rb +14 -0
- data/vendor/plugins/scenarios/lib/scenarios/extensions/test_case.rb +76 -0
- data/vendor/plugins/scenarios/lib/scenarios/loading.rb +51 -0
- data/vendor/plugins/scenarios/lib/scenarios/table_blasting.rb +20 -0
- data/vendor/plugins/scenarios/lib/scenarios/table_methods.rb +205 -0
- data/vendor/plugins/scenarios/spec/scenarios/complex_composite_scenario.rb +9 -0
- data/vendor/plugins/scenarios/spec/scenarios/composite_scenario.rb +9 -0
- data/vendor/plugins/scenarios/spec/scenarios/empty_scenario.rb +4 -0
- data/vendor/plugins/scenarios/spec/scenarios/people_scenario.rb +26 -0
- data/vendor/plugins/scenarios/spec/scenarios/places_scenario.rb +22 -0
- data/vendor/plugins/scenarios/spec/scenarios/things_scenario.rb +22 -0
- data/vendor/plugins/scenarios/spec/scenarios_spec.rb +189 -0
- data/vendor/plugins/scenarios/spec/spec.opts +7 -0
- data/vendor/plugins/scenarios/spec/spec_helper.rb +6 -0
- data/vendor/plugins/scenarios/tasks/scenario.rake +21 -0
- data/vendor/plugins/scenarios/test/scenarios_test.rb +39 -0
- data/vendor/plugins/scenarios/test/test_helper.rb +5 -0
- data/vendor/plugins/scenarios/testing/application.rb +2 -0
- data/vendor/plugins/scenarios/testing/database.yml +9 -0
- data/vendor/plugins/scenarios/testing/environment.rb +68 -0
- data/vendor/plugins/scenarios/testing/library.rb +128 -0
- data/vendor/plugins/scenarios/testing/models.rb +14 -0
- data/vendor/plugins/scenarios/testing/rspec_on_rails_3014.patch +52 -0
- data/vendor/plugins/scenarios/testing/rspec_on_rails_3119.patch +53 -0
- data/vendor/plugins/scenarios/testing/schema.rb +31 -0
- data/vendor/rails/Rakefile +21 -0
- data/vendor/rails/actionmailer/CHANGELOG +44 -26
- data/vendor/rails/actionmailer/MIT-LICENSE +1 -1
- data/vendor/rails/actionmailer/README +2 -2
- data/vendor/rails/actionmailer/Rakefile +4 -3
- data/vendor/rails/actionmailer/install.rb +1 -1
- data/vendor/rails/actionmailer/lib/action_mailer.rb +5 -3
- data/vendor/rails/actionmailer/lib/action_mailer/base.rb +57 -36
- data/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +4 -4
- data/vendor/rails/actionmailer/lib/action_mailer/part.rb +2 -5
- data/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +59 -0
- data/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +67 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor.rb +14 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/{text → text-format-0.6.3/text}/format.rb +0 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail.rb +4 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/Makefile +19 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/address.rb +245 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/attachments.rb +47 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/base64.rb +52 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/compat.rb +39 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/config.rb +71 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/core_extensions.rb +67 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/encode.rb +481 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail → tmail-1.1.0/tmail}/facade.rb +0 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/header.rb +931 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail → tmail-1.1.0/tmail}/info.rb +0 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/interface.rb +540 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail → tmail-1.1.0/tmail}/loader.rb +0 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mail.rb +462 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mailbox.rb +435 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail → tmail-1.1.0/tmail}/mbox.rb +0 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/net.rb +282 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/obsolete.rb +137 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/parser.rb +1475 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/parser.y +381 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/port.rb +379 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/quoting.rb +142 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner.rb +43 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner_r.rb +263 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/stringio.rb +279 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail → tmail-1.1.0/tmail}/tmail.rb +0 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/utils.rb +281 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb +38 -0
- data/vendor/rails/actionmailer/lib/action_mailer/version.rb +3 -3
- data/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
- data/vendor/rails/actionmailer/test/abstract_unit.rb +19 -0
- data/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
- data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.rhtml +0 -1
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.rhtml +0 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.rhtml +0 -1
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.rhtml +0 -1
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.rhtml +0 -5
- data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
- data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.rhtml +0 -1
- data/vendor/rails/actionmailer/test/fixtures/raw_base64_decoded_string +0 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_base64_encoded_string +1 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
- data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.rhtml +0 -1
- data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
- data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.rhtml +0 -3
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.rhtml +0 -1
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml +0 -10
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml +0 -2
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.rhtml +0 -1
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.erb +3 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.rhtml +0 -3
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.rhtml +0 -3
- data/vendor/rails/actionmailer/test/mail_helper_test.rb +10 -6
- data/vendor/rails/actionmailer/test/mail_render_test.rb +45 -2
- data/vendor/rails/actionmailer/test/mail_service_test.rb +150 -27
- data/vendor/rails/actionmailer/test/quoting_test.rb +57 -3
- data/vendor/rails/actionmailer/test/test_helper_test.rb +117 -0
- data/vendor/rails/actionmailer/test/tmail_test.rb +9 -0
- data/vendor/rails/actionmailer/test/url_test.rb +10 -2
- data/vendor/rails/actionpack/CHANGELOG +1439 -20
- data/vendor/rails/actionpack/MIT-LICENSE +1 -1
- data/vendor/rails/actionpack/README +5 -5
- data/vendor/rails/actionpack/RUNNING_UNIT_TESTS +4 -5
- data/vendor/rails/actionpack/Rakefile +5 -6
- data/vendor/rails/actionpack/install.rb +2 -2
- data/vendor/rails/actionpack/lib/action_controller.rb +11 -15
- data/vendor/rails/actionpack/lib/action_controller/assertions.rb +12 -25
- data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +18 -4
- data/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +8 -1
- data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +35 -12
- data/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +56 -12
- data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +105 -38
- data/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +28 -15
- data/vendor/rails/actionpack/lib/action_controller/base.rb +320 -262
- data/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +36 -31
- data/vendor/rails/actionpack/lib/action_controller/caching.rb +132 -66
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +16 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +106 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/session.rb +73 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +23 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +36 -55
- data/vendor/rails/actionpack/lib/action_controller/components.rb +19 -36
- data/vendor/rails/actionpack/lib/action_controller/cookies.rb +13 -9
- data/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +195 -0
- data/vendor/rails/actionpack/lib/action_controller/filters.rb +35 -34
- data/vendor/rails/actionpack/lib/action_controller/flash.rb +30 -35
- data/vendor/rails/actionpack/lib/action_controller/helpers.rb +123 -50
- data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +126 -0
- data/vendor/rails/actionpack/lib/action_controller/integration.rb +127 -108
- data/vendor/rails/actionpack/lib/action_controller/layout.rb +61 -48
- data/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +57 -68
- data/vendor/rails/actionpack/lib/action_controller/mime_type.rb +43 -80
- data/vendor/rails/actionpack/lib/action_controller/mime_types.rb +20 -0
- data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +88 -0
- data/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +91 -0
- data/vendor/rails/actionpack/lib/action_controller/request.rb +553 -88
- data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +132 -0
- data/vendor/rails/actionpack/lib/action_controller/request_profiler.rb +138 -0
- data/vendor/rails/actionpack/lib/action_controller/rescue.rb +185 -69
- data/vendor/rails/actionpack/lib/action_controller/resources.rb +211 -172
- data/vendor/rails/actionpack/lib/action_controller/response.rb +49 -8
- data/vendor/rails/actionpack/lib/action_controller/routing.rb +368 -242
- data/vendor/rails/actionpack/lib/action_controller/routing_optimisation.rb +119 -0
- data/vendor/rails/actionpack/lib/action_controller/session/active_record_store.rb +3 -2
- data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +164 -0
- data/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +9 -16
- data/vendor/rails/actionpack/lib/action_controller/session_management.rb +17 -8
- data/vendor/rails/actionpack/lib/action_controller/streaming.rb +6 -3
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/{_trace.rhtml → _trace.erb} +0 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/{layout.rhtml → layout.erb} +0 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/{missing_template.rhtml → missing_template.erb} +0 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/{routing_error.rhtml → routing_error.erb} +0 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/{unknown_action.rhtml → unknown_action.erb} +0 -0
- data/vendor/rails/actionpack/lib/action_controller/test_case.rb +53 -0
- data/vendor/rails/actionpack/lib/action_controller/test_process.rb +59 -46
- data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +48 -24
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +7 -4
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +11 -6
- data/vendor/rails/actionpack/lib/action_controller/verification.rb +27 -21
- data/vendor/rails/actionpack/lib/action_pack.rb +1 -1
- data/vendor/rails/actionpack/lib/action_pack/version.rb +4 -4
- data/vendor/rails/actionpack/lib/action_view.rb +8 -3
- data/vendor/rails/actionpack/lib/action_view/base.rb +238 -140
- data/vendor/rails/actionpack/lib/action_view/compiled_templates.rb +1 -2
- data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +35 -17
- data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +417 -87
- data/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +111 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +12 -5
- data/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +29 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +97 -63
- data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +295 -35
- data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +6 -2
- data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +354 -111
- data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +171 -109
- data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +332 -76
- data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +35 -11
- data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/controls.js +484 -354
- data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/dragdrop.js +88 -58
- data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/effects.js +396 -364
- data/vendor/rails/actionpack/lib/action_view/helpers/javascripts/prototype.js +2817 -1107
- data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +84 -60
- data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +419 -43
- data/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +59 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +223 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +63 -4
- data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +69 -39
- data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +221 -148
- data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +283 -165
- data/vendor/rails/actionpack/lib/action_view/partials.rb +134 -62
- data/vendor/rails/actionpack/lib/action_view/template_error.rb +4 -12
- data/vendor/rails/actionpack/lib/action_view/template_handler.rb +17 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +19 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +21 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +14 -0
- data/vendor/rails/actionpack/lib/actionpack.rb +1 -0
- data/vendor/rails/actionpack/test/abstract_unit.rb +21 -1
- data/vendor/rails/actionpack/test/action_view_test.rb +44 -0
- data/vendor/rails/actionpack/test/active_record_unit.rb +12 -20
- data/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +2 -2
- data/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +74 -0
- data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +21 -152
- data/vendor/rails/actionpack/test/controller/addresses_render_test.rb +2 -7
- data/vendor/rails/actionpack/test/controller/assert_select_test.rb +120 -14
- data/vendor/rails/actionpack/test/controller/base_test.rb +11 -13
- data/vendor/rails/actionpack/test/controller/caching_test.rb +125 -5
- data/vendor/rails/actionpack/test/controller/capture_test.rb +23 -16
- data/vendor/rails/actionpack/test/controller/cgi_test.rb +70 -395
- data/vendor/rails/actionpack/test/controller/components_test.rb +31 -42
- data/vendor/rails/actionpack/test/controller/content_type_test.rb +1 -1
- data/vendor/rails/actionpack/test/controller/cookie_test.rb +51 -15
- data/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +1 -42
- data/vendor/rails/actionpack/test/controller/dispatcher_test.rb +123 -0
- data/vendor/rails/actionpack/test/controller/fake_models.rb +5 -0
- data/vendor/rails/actionpack/test/controller/filters_test.rb +45 -7
- data/vendor/rails/actionpack/test/controller/flash_test.rb +46 -2
- data/vendor/rails/actionpack/test/controller/fragment_store_setting_test.rb +10 -8
- data/vendor/rails/actionpack/test/controller/helper_test.rb +23 -4
- data/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +124 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +69 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +250 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +239 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +51 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +125 -0
- data/vendor/rails/actionpack/test/controller/http_authentication_test.rb +54 -0
- data/vendor/rails/actionpack/test/controller/integration_test.rb +47 -31
- data/vendor/rails/actionpack/test/controller/layout_test.rb +64 -12
- data/vendor/rails/actionpack/test/controller/mime_responds_test.rb +193 -38
- data/vendor/rails/actionpack/test/controller/mime_type_test.rb +30 -8
- data/vendor/rails/actionpack/test/controller/new_render_test.rb +104 -22
- data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +98 -0
- data/vendor/rails/actionpack/test/controller/record_identifier_test.rb +103 -0
- data/vendor/rails/actionpack/test/controller/redirect_test.rb +120 -18
- data/vendor/rails/actionpack/test/controller/render_test.rb +226 -55
- data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +217 -0
- data/vendor/rails/actionpack/test/controller/request_test.rb +546 -27
- data/vendor/rails/actionpack/test/controller/rescue_test.rb +501 -0
- data/vendor/rails/actionpack/test/controller/resources_test.rb +258 -132
- data/vendor/rails/actionpack/test/controller/routing_test.rb +508 -106
- data/vendor/rails/actionpack/test/controller/selector_test.rb +5 -5
- data/vendor/rails/actionpack/test/controller/send_file_test.rb +17 -7
- data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +246 -0
- data/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +182 -0
- data/vendor/rails/actionpack/test/controller/session_fixation_test.rb +89 -0
- data/vendor/rails/actionpack/test/controller/session_management_test.rb +7 -7
- data/vendor/rails/actionpack/test/controller/test_test.rb +150 -38
- data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +87 -12
- data/vendor/rails/actionpack/test/controller/verification_test.rb +11 -0
- data/vendor/rails/actionpack/test/controller/view_paths_test.rb +137 -0
- data/vendor/rails/actionpack/test/controller/webservice_test.rb +11 -75
- data/vendor/rails/actionpack/test/fixtures/addresses/{list.rhtml → list.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +2 -1
- data/vendor/rails/actionpack/test/fixtures/developer.rb +2 -0
- data/vendor/rails/actionpack/test/fixtures/fun/games/{hello_world.rhtml → hello_world.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +1 -1
- data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/{builder.rxml → builder.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/{standard.rhtml → standard.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/{talk_from_action.rhtml → talk_from_action.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/{yield.rhtml → yield.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
- data/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +0 -1
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
- data/vendor/rails/actionpack/test/fixtures/replies.yml +2 -0
- data/vendor/rails/actionpack/test/fixtures/reply.rb +2 -1
- data/vendor/rails/actionpack/test/fixtures/respond_to/{all_types_with_layout.rhtml → all_types_with_layout.html.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/{all_types_with_layout.rjs → all_types_with_layout.js.rjs} +0 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/{using_defaults.rhtml → using_defaults.html.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/{using_defaults.rjs → using_defaults.js.rjs} +0 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/{using_defaults.rxml → using_defaults.xml.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/{using_defaults_with_type_list.rhtml → using_defaults_with_type_list.html.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/{using_defaults_with_type_list.rjs → using_defaults_with_type_list.js.rjs} +0 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/{using_defaults_with_type_list.rxml → using_defaults_with_type_list.xml.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/scope/test/{modgreet.rhtml → modgreet.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{_customer.rhtml → _customer.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{_customer_greeting.rhtml → _customer_greeting.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/{_hello.rxml → _hello.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/{_partial_only.rhtml → _partial_only.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{_person.rhtml → _person.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{action_talk_to_layout.rhtml → action_talk_to_layout.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{block_content_for.rhtml → block_content_for.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/{capturing.rhtml → capturing.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{content_for.rhtml → content_for.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/dot.directory/{render_file_with_ivar.rhtml → render_file_with_ivar.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{erb_content_for.rhtml → erb_content_for.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/{greeting.rhtml → greeting.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{hello.rxml → hello.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{hello_world.rhtml → hello_world.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{hello_world_container.rxml → hello_world_container.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{hello_world.rxml → hello_world_from_rxml.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{hello_world_with_layout_false.rhtml → hello_world_with_layout_false.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{hello_xml_world.rxml → hello_xml_world.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/{non_erb_block_content_for.rxml → non_erb_block_content_for.builder} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{potential_conflicts.rhtml → potential_conflicts.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{render_file_with_ivar.rhtml → render_file_with_ivar.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{render_file_with_locals.rhtml → render_file_with_locals.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{render_to_string_test.rhtml → render_to_string_test.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/{update_element_with_capture.rhtml → update_element_with_capture.erb} +0 -0
- data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/topic.rb +1 -1
- data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +67 -20
- data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +255 -54
- data/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +101 -0
- data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +2 -2
- data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +88 -42
- data/vendor/rails/actionpack/test/template/date_helper_test.rb +125 -9
- data/vendor/rails/actionpack/test/template/erb_util_test.rb +56 -0
- data/vendor/rails/actionpack/test/template/form_helper_test.rb +326 -33
- data/vendor/rails/actionpack/test/template/form_options_helper_test.rb +822 -15
- data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +96 -30
- data/vendor/rails/actionpack/test/template/javascript_helper_test.rb +61 -13
- data/vendor/rails/actionpack/test/template/number_helper_test.rb +12 -11
- data/vendor/rails/actionpack/test/template/prototype_helper_test.rb +185 -24
- data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +49 -0
- data/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +9 -3
- data/vendor/rails/actionpack/test/template/tag_helper_test.rb +13 -2
- data/vendor/rails/actionpack/test/template/text_helper_test.rb +38 -52
- data/vendor/rails/actionpack/test/template/url_helper_test.rb +216 -46
- data/vendor/rails/activemodel/CHANGES +12 -0
- data/vendor/rails/activemodel/README +21 -0
- data/vendor/rails/activemodel/Rakefile +4 -0
- data/vendor/rails/activemodel/lib/active_model.rb +17 -0
- data/vendor/rails/activemodel/lib/active_model/base.rb +4 -0
- data/vendor/rails/activemodel/lib/active_model/callbacks.rb +5 -0
- data/vendor/rails/activemodel/lib/active_model/observing.rb +100 -0
- data/vendor/rails/activemodel/lib/active_model/validations.rb +4 -0
- data/vendor/rails/activemodel/spec/observing_spec.rb +120 -0
- data/vendor/rails/activemodel/spec/spec_helper.rb +17 -0
- data/vendor/rails/activerecord/CHANGELOG +2484 -34
- data/vendor/rails/activerecord/MIT-LICENSE +1 -1
- data/vendor/rails/activerecord/README +1 -15
- data/vendor/rails/activerecord/RUNNING_UNIT_TESTS +3 -34
- data/vendor/rails/activerecord/Rakefile +98 -77
- data/vendor/rails/activerecord/install.rb +1 -1
- data/vendor/rails/activerecord/lib/active_record.rb +13 -22
- data/vendor/rails/activerecord/lib/active_record/aggregations.rb +38 -49
- data/vendor/rails/activerecord/lib/active_record/associations.rb +465 -338
- data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +66 -20
- data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +24 -22
- data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +46 -51
- data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +21 -57
- data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +52 -25
- data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +30 -14
- data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +253 -0
- data/vendor/rails/activerecord/lib/active_record/base.rb +830 -532
- data/vendor/rails/activerecord/lib/active_record/calculations.rb +60 -63
- data/vendor/rails/activerecord/lib/active_record/callbacks.rb +57 -83
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +38 -9
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +56 -15
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +87 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +23 -12
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +191 -62
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +37 -34
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +28 -17
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +119 -37
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +473 -210
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +91 -107
- data/vendor/rails/activerecord/lib/active_record/fixtures.rb +522 -116
- data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +72 -34
- data/vendor/rails/activerecord/lib/active_record/migration.rb +80 -57
- data/vendor/rails/activerecord/lib/active_record/observer.rb +13 -10
- data/vendor/rails/activerecord/lib/active_record/query_cache.rb +14 -57
- data/vendor/rails/activerecord/lib/active_record/reflection.rb +35 -38
- data/vendor/rails/activerecord/lib/active_record/schema.rb +5 -5
- data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +35 -13
- data/vendor/rails/activerecord/lib/active_record/serialization.rb +98 -0
- data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +71 -0
- data/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +315 -0
- data/vendor/rails/activerecord/lib/active_record/timestamp.rb +20 -21
- data/vendor/rails/activerecord/lib/active_record/transactions.rb +39 -43
- data/vendor/rails/activerecord/lib/active_record/validations.rb +290 -108
- data/vendor/rails/activerecord/lib/active_record/version.rb +3 -3
- data/vendor/rails/activerecord/lib/activerecord.rb +1 -0
- data/vendor/rails/activerecord/test/aaa_create_tables_test.rb +15 -2
- data/vendor/rails/activerecord/test/abstract_unit.rb +24 -17
- data/vendor/rails/activerecord/test/active_schema_test_mysql.rb +20 -8
- data/vendor/rails/activerecord/test/adapter_test.rb +23 -5
- data/vendor/rails/activerecord/test/adapter_test_sqlserver.rb +15 -1
- data/vendor/rails/activerecord/test/aggregations_test.rb +34 -1
- data/vendor/rails/activerecord/test/all.sh +2 -2
- data/vendor/rails/activerecord/test/associations/callbacks_test.rb +51 -30
- data/vendor/rails/activerecord/test/associations/cascaded_eager_loading_test.rb +1 -29
- data/vendor/rails/activerecord/test/associations/eager_singularization_test.rb +145 -0
- data/vendor/rails/activerecord/test/associations/eager_test.rb +42 -6
- data/vendor/rails/activerecord/test/associations/extension_test.rb +6 -1
- data/vendor/rails/activerecord/test/associations/inner_join_association_test.rb +88 -0
- data/vendor/rails/activerecord/test/associations/join_model_test.rb +66 -13
- data/vendor/rails/activerecord/test/associations_test.rb +531 -226
- data/vendor/rails/activerecord/test/attribute_methods_test.rb +97 -0
- data/vendor/rails/activerecord/test/base_test.rb +251 -105
- data/vendor/rails/activerecord/test/binary_test.rb +22 -27
- data/vendor/rails/activerecord/test/calculations_test.rb +37 -5
- data/vendor/rails/activerecord/test/callbacks_test.rb +23 -0
- data/vendor/rails/activerecord/test/connection_test_firebird.rb +2 -2
- data/vendor/rails/activerecord/test/connection_test_mysql.rb +30 -0
- data/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +3 -0
- data/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +5 -14
- data/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +5 -14
- data/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +1 -1
- data/vendor/rails/activerecord/test/copy_table_test_sqlite.rb +69 -0
- data/vendor/rails/activerecord/test/datatype_test_postgresql.rb +178 -27
- data/vendor/rails/activerecord/test/date_time_test.rb +37 -0
- data/vendor/rails/activerecord/test/defaults_test.rb +6 -14
- data/vendor/rails/activerecord/test/deprecated_finder_test.rb +7 -128
- data/vendor/rails/activerecord/test/finder_test.rb +201 -55
- data/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
- data/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
- data/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
- data/vendor/rails/activerecord/test/fixtures/author.rb +14 -5
- data/vendor/rails/activerecord/test/fixtures/binaries.yml +130 -435
- data/vendor/rails/activerecord/test/fixtures/book.rb +4 -0
- data/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/category.rb +6 -0
- data/vendor/rails/activerecord/test/fixtures/citation.rb +6 -0
- data/vendor/rails/activerecord/test/fixtures/company.rb +8 -1
- data/vendor/rails/activerecord/test/fixtures/computer.rb +1 -0
- data/vendor/rails/activerecord/test/fixtures/contact.rb +16 -0
- data/vendor/rails/activerecord/test/fixtures/customer.rb +2 -2
- data/vendor/rails/activerecord/test/fixtures/db_definitions/db2.drop.sql +1 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/db2.sql +4 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird.drop.sql +3 -1
- data/vendor/rails/activerecord/test/fixtures/db_definitions/firebird.sql +6 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase.drop.sql +1 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase.sql +5 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/openbase.sql +41 -25
- data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle.drop.sql +2 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/oracle.sql +5 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql.drop.sql +7 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql.sql +87 -58
- data/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql2.sql +1 -2
- data/vendor/rails/activerecord/test/fixtures/db_definitions/schema.rb +289 -8
- data/vendor/rails/activerecord/test/fixtures/db_definitions/schema2.rb +11 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite.drop.sql +1 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite.sql +4 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase.drop.sql +1 -0
- data/vendor/rails/activerecord/test/fixtures/db_definitions/sybase.sql +4 -0
- data/vendor/rails/activerecord/test/fixtures/developer.rb +10 -0
- data/vendor/rails/activerecord/test/fixtures/example.log +1 -0
- data/vendor/rails/activerecord/test/fixtures/flowers.jpg +0 -0
- data/vendor/rails/activerecord/test/fixtures/item.rb +7 -0
- data/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/joke.rb +0 -3
- data/vendor/rails/activerecord/test/fixtures/matey.rb +4 -0
- data/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/minimalistic.rb +2 -0
- data/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/vendor/rails/activerecord/test/fixtures/mixins.yml +2 -100
- data/vendor/rails/activerecord/test/fixtures/parrot.rb +13 -0
- data/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
- data/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/pirate.rb +5 -0
- data/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/post.rb +1 -0
- data/vendor/rails/activerecord/test/fixtures/project.rb +3 -2
- data/vendor/rails/activerecord/test/fixtures/reply.rb +0 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
- data/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/ship.rb +3 -0
- data/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/tagging.rb +4 -0
- data/vendor/rails/activerecord/test/fixtures/taggings.yml +8 -1
- data/vendor/rails/activerecord/test/fixtures/topic.rb +13 -1
- data/vendor/rails/activerecord/test/fixtures/treasure.rb +4 -0
- data/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
- data/vendor/rails/activerecord/test/fixtures_test.rb +220 -23
- data/vendor/rails/activerecord/test/inheritance_test.rb +7 -1
- data/vendor/rails/activerecord/test/json_serialization_test.rb +180 -0
- data/vendor/rails/activerecord/test/lifecycle_test.rb +1 -1
- data/vendor/rails/activerecord/test/locking_test.rb +94 -2
- data/vendor/rails/activerecord/test/migration_test.rb +206 -40
- data/vendor/rails/activerecord/test/mixin_test.rb +13 -515
- data/vendor/rails/activerecord/test/pk_test.rb +3 -6
- data/vendor/rails/activerecord/test/query_cache_test.rb +104 -0
- data/vendor/rails/activerecord/test/readonly_test.rb +0 -0
- data/vendor/rails/activerecord/test/reflection_test.rb +16 -0
- data/vendor/rails/activerecord/test/reserved_word_test_mysql.rb +177 -0
- data/vendor/rails/activerecord/test/schema_dumper_test.rb +38 -3
- data/vendor/rails/activerecord/test/serialization_test.rb +47 -0
- data/vendor/rails/activerecord/test/transactions_test.rb +74 -23
- data/vendor/rails/activerecord/test/unconnected_test.rb +1 -1
- data/vendor/rails/activerecord/test/validations_test.rb +330 -32
- data/vendor/rails/activerecord/test/xml_serialization_test.rb +121 -44
- data/vendor/rails/activeresource/CHANGELOG +223 -0
- data/vendor/rails/activeresource/MIT-LICENSE +20 -0
- data/vendor/rails/activeresource/README +165 -0
- data/vendor/rails/activeresource/Rakefile +133 -0
- data/vendor/rails/activeresource/lib/active_resource.rb +47 -0
- data/vendor/rails/activeresource/lib/active_resource/base.rb +872 -0
- data/vendor/rails/activeresource/lib/active_resource/connection.rb +172 -0
- data/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +105 -0
- data/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
- data/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
- data/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
- data/vendor/rails/activeresource/lib/active_resource/http_mock.rb +147 -0
- data/vendor/rails/activeresource/lib/active_resource/validations.rb +288 -0
- data/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
- data/vendor/rails/activeresource/lib/activeresource.rb +1 -0
- data/vendor/rails/activeresource/test/abstract_unit.rb +10 -0
- data/vendor/rails/activeresource/test/authorization_test.rb +82 -0
- data/vendor/rails/activeresource/test/base/custom_methods_test.rb +96 -0
- data/vendor/rails/activeresource/test/base/equality_test.rb +43 -0
- data/vendor/rails/activeresource/test/base/load_test.rb +111 -0
- data/vendor/rails/activeresource/test/base_errors_test.rb +48 -0
- data/vendor/rails/activeresource/test/base_test.rb +454 -0
- data/vendor/rails/activeresource/test/connection_test.rb +170 -0
- data/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
- data/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
- data/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
- data/vendor/rails/activeresource/test/format_test.rb +42 -0
- data/vendor/rails/activeresource/test/setter_trap.rb +27 -0
- data/vendor/rails/activesupport/CHANGELOG +274 -7
- data/vendor/rails/activesupport/MIT-LICENSE +1 -1
- data/vendor/rails/activesupport/Rakefile +2 -1
- data/vendor/rails/activesupport/install.rb +1 -1
- data/vendor/rails/activesupport/lib/active_support.rb +9 -4
- data/vendor/rails/activesupport/lib/active_support/basic_object.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +107 -0
- data/vendor/rails/activesupport/lib/active_support/clean_logger.rb +94 -5
- data/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -1
- data/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +8 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +28 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +40 -18
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +20 -7
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +1 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +6 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +2 -8
- data/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +2 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -3
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +1 -1
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +3 -3
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +2 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +5 -1
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +188 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +72 -13
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +10 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +77 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +74 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +37 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +1 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +2 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +21 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +5 -5
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +91 -49
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +8 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +16 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +9 -8
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +2 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +28 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +2 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +4 -4
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -4
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +8 -7
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +17 -5
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +1 -1
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +21 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +2 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +2 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +30 -11
- data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +4 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +40 -29
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +29 -4
- data/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +1 -1
- data/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +7 -1
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +11 -9
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +16 -8
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +11 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/unicode.rb +2 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +12 -10
- data/vendor/rails/activesupport/lib/active_support/core_ext/test.rb +1 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/test/unit/assertions.rb +62 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +4 -2
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +87 -54
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +71 -10
- data/vendor/rails/activesupport/lib/active_support/dependencies.rb +32 -31
- data/vendor/rails/activesupport/lib/active_support/deprecation.rb +4 -2
- data/vendor/rails/activesupport/lib/active_support/duration.rb +96 -0
- data/vendor/rails/activesupport/lib/active_support/inflections.rb +2 -1
- data/vendor/rails/activesupport/lib/active_support/inflector.rb +13 -6
- data/vendor/rails/activesupport/lib/active_support/json.rb +22 -39
- data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +60 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +50 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +6 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +38 -0
- data/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte.rb +7 -5
- data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +14 -2
- data/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler.rb +115 -5
- data/vendor/rails/activesupport/lib/active_support/option_merger.rb +7 -7
- data/vendor/rails/activesupport/lib/active_support/ordered_options.rb +22 -17
- data/vendor/rails/activesupport/lib/active_support/test_case.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/testing.rb +1 -0
- data/vendor/rails/activesupport/lib/active_support/testing/default.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +8 -7
- data/vendor/rails/activesupport/lib/active_support/vendor.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/{builder.rb → builder-2.1.2/builder.rb} +0 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +1021 -0
- data/vendor/rails/activesupport/lib/active_support/version.rb +3 -3
- data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +12 -12
- data/vendor/rails/activesupport/lib/activesupport.rb +1 -0
- data/vendor/rails/activesupport/test/abstract_unit.rb +13 -0
- data/vendor/rails/activesupport/test/buffered_logger_test.rb +107 -0
- data/vendor/rails/activesupport/test/clean_logger_test.rb +12 -35
- data/vendor/rails/activesupport/test/core_ext/array_ext_test.rb +74 -6
- data/vendor/rails/activesupport/test/core_ext/blank_test.rb +12 -4
- data/vendor/rails/activesupport/test/core_ext/class/class_inheritable_attributes_test.rb +16 -0
- data/vendor/rails/activesupport/test/core_ext/class/delegating_attributes_test.rb +105 -0
- data/vendor/rails/activesupport/test/core_ext/class_test.rb +10 -0
- data/vendor/rails/activesupport/test/core_ext/date_ext_test.rb +180 -4
- data/vendor/rails/activesupport/test/core_ext/date_time_ext_test.rb +230 -0
- data/vendor/rails/activesupport/test/core_ext/duplicable_test.rb +22 -0
- data/vendor/rails/activesupport/test/core_ext/duration_test.rb +21 -0
- data/vendor/rails/activesupport/test/core_ext/enumerable_test.rb +10 -10
- data/vendor/rails/activesupport/test/core_ext/file_test.rb +29 -0
- data/vendor/rails/activesupport/test/core_ext/float_ext_test.rb +25 -0
- data/vendor/rails/activesupport/test/core_ext/hash_ext_test.rb +262 -28
- data/vendor/rails/activesupport/test/core_ext/module/attr_accessor_with_default_test.rb +30 -0
- data/vendor/rails/activesupport/test/core_ext/module/attr_internal_test.rb +11 -11
- data/vendor/rails/activesupport/test/core_ext/module/attribute_accessor_test.rb +7 -7
- data/vendor/rails/activesupport/test/core_ext/module/attribute_aliasing_test.rb +29 -2
- data/vendor/rails/activesupport/test/core_ext/module_test.rb +92 -28
- data/vendor/rails/activesupport/test/core_ext/numeric_ext_test.rb +91 -1
- data/vendor/rails/activesupport/test/core_ext/object_and_class_ext_test.rb +98 -7
- data/vendor/rails/activesupport/test/core_ext/range_ext_test.rb +50 -0
- data/vendor/rails/activesupport/test/core_ext/string_ext_test.rb +40 -12
- data/vendor/rails/activesupport/test/core_ext/time_ext_test.rb +107 -22
- data/vendor/rails/activesupport/test/dependencies_test.rb +30 -31
- data/vendor/rails/activesupport/test/inflector_test.rb +49 -205
- data/vendor/rails/activesupport/test/inflector_test_cases.rb +208 -0
- data/vendor/rails/activesupport/test/json/decoding_test.rb +41 -0
- data/vendor/rails/activesupport/test/json/encoding_test.rb +111 -0
- data/vendor/rails/activesupport/test/multibyte_chars_test.rb +10 -1
- data/vendor/rails/activesupport/test/multibyte_conformance.rb +2 -2
- data/vendor/rails/activesupport/test/multibyte_handler_test.rb +95 -2
- data/vendor/rails/activesupport/test/ordered_options_test.rb +5 -1
- data/vendor/rails/activesupport/test/test_test.rb +73 -0
- data/vendor/rails/activesupport/test/time_zone_test.rb +10 -3
- data/vendor/rails/cleanlogs.sh +0 -0
- data/vendor/rails/pushgems.rb +2 -2
- data/vendor/rails/railties/CHANGELOG +518 -9
- data/vendor/rails/railties/MIT-LICENSE +1 -1
- data/vendor/rails/railties/README +17 -25
- data/vendor/rails/railties/Rakefile +41 -18
- data/vendor/rails/railties/bin/about +1 -1
- data/vendor/rails/railties/bin/console +1 -1
- data/vendor/rails/railties/bin/destroy +1 -1
- data/vendor/rails/railties/bin/generate +1 -1
- data/vendor/rails/railties/bin/performance/request +3 -0
- data/vendor/rails/railties/bin/plugin +1 -1
- data/vendor/rails/railties/bin/rails +0 -0
- data/vendor/rails/railties/bin/runner +1 -1
- data/vendor/rails/railties/bin/server +1 -1
- data/vendor/rails/railties/builtin/rails_info/rails/info.rb +3 -3
- data/vendor/rails/railties/configs/apache.conf +1 -1
- data/vendor/rails/railties/configs/databases/mysql.yml +10 -4
- data/vendor/rails/railties/configs/databases/postgresql.yml +16 -12
- data/vendor/rails/railties/configs/databases/sqlite3.yml +1 -1
- data/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
- data/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
- data/vendor/rails/railties/configs/routes.rb +23 -11
- data/vendor/rails/railties/dispatches/dispatch.fcgi +0 -0
- data/vendor/rails/railties/dispatches/dispatch.rb +0 -0
- data/vendor/rails/railties/doc/README_FOR_APP +1 -1
- data/vendor/rails/railties/environments/boot.rb +96 -26
- data/vendor/rails/railties/environments/development.rb +2 -5
- data/vendor/rails/railties/environments/environment.rb +24 -25
- data/vendor/rails/railties/environments/production.rb +1 -0
- data/vendor/rails/railties/environments/test.rb +4 -1
- data/vendor/rails/railties/fresh_rakefile +0 -0
- data/vendor/rails/railties/helpers/application.rb +5 -2
- data/vendor/rails/railties/helpers/test_helper.rb +10 -0
- data/vendor/rails/railties/html/422.html +30 -0
- data/vendor/rails/railties/html/500.html +1 -1
- data/vendor/rails/railties/html/index.html +2 -2
- data/vendor/rails/railties/html/javascripts/controls.js +484 -354
- data/vendor/rails/railties/html/javascripts/dragdrop.js +88 -58
- data/vendor/rails/railties/html/javascripts/effects.js +396 -364
- data/vendor/rails/railties/html/javascripts/prototype.js +2817 -1107
- data/vendor/rails/railties/html/robots.txt +5 -1
- data/vendor/rails/railties/lib/commands/console.rb +12 -5
- data/vendor/rails/railties/lib/commands/generate.rb +0 -0
- data/vendor/rails/railties/lib/commands/performance/request.rb +6 -0
- data/vendor/rails/railties/lib/commands/plugin.rb +17 -12
- data/vendor/rails/railties/lib/commands/process/spawner.rb +14 -4
- data/vendor/rails/railties/lib/commands/runner.rb +1 -1
- data/vendor/rails/railties/lib/commands/servers/base.rb +12 -0
- data/vendor/rails/railties/lib/commands/servers/mongrel.rb +5 -1
- data/vendor/rails/railties/lib/commands/servers/webrick.rb +14 -7
- data/vendor/rails/railties/lib/console_app.rb +5 -2
- data/vendor/rails/railties/lib/console_with_helpers.rb +5 -2
- data/vendor/rails/railties/lib/dispatcher.rb +3 -151
- data/vendor/rails/railties/lib/fcgi_handler.rb +79 -81
- data/vendor/rails/railties/lib/initializer.rb +125 -169
- data/vendor/rails/railties/lib/rails/plugin.rb +84 -0
- data/vendor/rails/railties/lib/rails/plugin/loader.rb +150 -0
- data/vendor/rails/railties/lib/rails/plugin/locator.rb +78 -0
- data/vendor/rails/railties/lib/rails/version.rb +3 -3
- data/vendor/rails/railties/lib/rails_generator/base.rb +11 -9
- data/vendor/rails/railties/lib/rails_generator/commands.rb +24 -14
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +0 -7
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +26 -7
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +11 -12
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +2 -2
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +1 -11
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/{view.rhtml → view.html.erb} +0 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +5 -11
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +8 -10
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +3 -3
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -3
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +8 -24
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -3
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +23 -8
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +15 -2
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +6 -2
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +15 -14
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +10 -3
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +11 -3
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +4 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +1 -3
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +5 -7
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +0 -2
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +8 -18
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +10 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +0 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +1 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +1 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +13 -15
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +1 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +2 -14
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +24 -31
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +45 -146
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +64 -37
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +23 -80
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/{layout.rhtml → layout.html.erb} +0 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +1 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +19 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +18 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +6 -11
- data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +3 -3
- data/vendor/rails/railties/lib/rails_generator/lookup.rb +45 -10
- data/vendor/rails/railties/lib/rails_generator/scripts.rb +6 -3
- data/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +23 -0
- data/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +160 -0
- data/vendor/rails/railties/lib/rails_generator/spec.rb +1 -1
- data/vendor/rails/railties/lib/source_annotation_extractor.rb +62 -0
- data/vendor/rails/railties/lib/tasks/annotations.rake +23 -0
- data/vendor/rails/railties/lib/tasks/databases.rake +260 -84
- data/vendor/rails/railties/lib/tasks/documentation.rake +11 -13
- data/vendor/rails/railties/lib/tasks/framework.rake +14 -8
- data/vendor/rails/railties/lib/tasks/misc.rake +7 -1
- data/vendor/rails/railties/lib/tasks/rails.rb +1 -1
- data/vendor/rails/railties/lib/tasks/testing.rake +5 -7
- data/vendor/rails/railties/lib/test_help.rb +4 -3
- data/vendor/rails/railties/lib/webrick_server.rb +3 -4
- data/vendor/rails/railties/test/abstract_unit.rb +11 -7
- data/vendor/rails/railties/test/boot_test.rb +179 -0
- data/vendor/rails/railties/test/console_app_test.rb +29 -0
- data/vendor/rails/railties/test/fcgi_dispatcher_test.rb +147 -176
- data/vendor/rails/railties/test/fixtures/environment_with_constant.rb +1 -1
- data/vendor/rails/railties/test/fixtures/plugins/default/plugin_with_no_lib_dir/init.rb +0 -0
- data/vendor/rails/railties/test/generators/generator_test_helper.rb +195 -0
- data/vendor/rails/railties/test/generators/rails_model_generator_test.rb +109 -0
- data/vendor/rails/railties/test/generators/rails_resource_generator_test.rb +106 -0
- data/vendor/rails/railties/test/generators/rails_scaffold_generator_test.rb +185 -0
- data/vendor/rails/railties/test/initializer_test.rb +204 -19
- data/vendor/rails/railties/test/plugin_loader_test.rb +140 -0
- data/vendor/rails/railties/test/plugin_locator_test.rb +69 -0
- data/vendor/rails/railties/test/plugin_test.rb +130 -100
- data/vendor/rails/railties/test/plugin_test_helper.rb +29 -0
- data/vendor/rails/railties/test/rails_generator_test.rb +25 -15
- data/vendor/rails/railties/test/rails_info_test.rb +7 -0
- data/vendor/rails/railties/test/secret_key_generation_test.rb +35 -0
- data/vendor/rails/release.rb +4 -4
- metadata +1355 -486
- data/app/views/admin/extension/index.rhtml +0 -45
- data/app/views/admin/layout/edit.rhtml +0 -39
- data/app/views/admin/page/_meta_row.rhtml +0 -4
- data/app/views/admin/page/_tag_reference.rhtml +0 -4
- data/app/views/admin/page/edit.rhtml +0 -140
- data/app/views/admin/page/index.rhtml +0 -31
- data/app/views/admin/user/edit.rhtml +0 -54
- data/app/views/admin/user/preferences.rhtml +0 -29
- data/lib/console_utils.rb +0 -167
- data/lib/plugins/extension_patches/lib/view_paths_extension.rb +0 -23
- data/public/javascripts/admin.js +0 -89
- data/public/javascripts/sitemap.js +0 -131
- data/public/javascripts/tabcontrol.js +0 -125
- data/public/javascripts/tag_reference_search.js +0 -23
- data/test/functional/admin/abstract_model_controller_test.rb +0 -125
- data/test/functional/admin/export_controller_test.rb +0 -23
- data/test/functional/admin/extension_controller_test.rb +0 -41
- data/test/functional/admin/layout_controller_test.rb +0 -42
- data/test/functional/admin/page_controller_test.rb +0 -300
- data/test/functional/admin/snippet_controller_test.rb +0 -11
- data/test/functional/admin/user_controller_test.rb +0 -90
- data/test/functional/admin/welcome_controller_test.rb +0 -51
- data/test/functional/application_controller_test.rb +0 -45
- data/test/functional/extension_initialization_test.rb +0 -131
- data/test/functional/extension_load_order_test.rb +0 -49
- data/test/functional/login_system_test.rb +0 -138
- data/test/functional/site_controller_test.rb +0 -203
- data/test/unit/admin_ui_test.rb +0 -93
- data/test/unit/annotatable_test.rb +0 -76
- data/test/unit/extension_migrator_test.rb +0 -17
- data/test/unit/extension_test.rb +0 -42
- data/test/unit/file_not_found_page_test.rb +0 -31
- data/test/unit/inheritable_class_attributes_test.rb +0 -47
- data/test/unit/layout_test.rb +0 -29
- data/test/unit/local_time_test.rb +0 -45
- data/test/unit/method_observer_test.rb +0 -53
- data/test/unit/page_context_test.rb +0 -60
- data/test/unit/page_part_test.rb +0 -44
- data/test/unit/page_test.rb +0 -449
- data/test/unit/radiant/config_test.rb +0 -57
- data/test/unit/radiant/exporter_test.rb +0 -26
- data/test/unit/radiant/taggable_test.rb +0 -105
- data/test/unit/response_cache_test.rb +0 -233
- data/test/unit/simpleton_test.rb +0 -42
- data/test/unit/snippet_test.rb +0 -47
- data/test/unit/standard_tags_test.rb +0 -472
- data/test/unit/status_test.rb +0 -43
- data/test/unit/text_filter_test.rb +0 -42
- data/test/unit/user_action_observer_test.rb +0 -40
- data/test/unit/user_test.rb +0 -137
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +0 -3
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/address.rb +0 -242
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/attachments.rb +0 -39
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/base64.rb +0 -71
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/config.rb +0 -69
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/encode.rb +0 -467
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/header.rb +0 -914
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/mail.rb +0 -447
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/mailbox.rb +0 -433
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/net.rb +0 -280
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/obsolete.rb +0 -135
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/parser.rb +0 -1522
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/port.rb +0 -377
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/quoting.rb +0 -131
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/scanner.rb +0 -41
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/scanner_r.rb +0 -263
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/stringio.rb +0 -277
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/utils.rb +0 -238
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_test_helper.rhtml +0 -1
- data/vendor/rails/actionmailer/test/fixtures/helpers/test_helper.rb +0 -5
- data/vendor/rails/actionmailer/test/fixtures/raw_email11 +0 -34
- data/vendor/rails/actionpack/examples/address_book/index.rhtml +0 -33
- data/vendor/rails/actionpack/examples/address_book/layout.rhtml +0 -8
- data/vendor/rails/actionpack/examples/address_book_controller.cgi +0 -9
- data/vendor/rails/actionpack/examples/address_book_controller.fcgi +0 -6
- data/vendor/rails/actionpack/examples/address_book_controller.rb +0 -52
- data/vendor/rails/actionpack/examples/address_book_controller.rbx +0 -4
- data/vendor/rails/actionpack/examples/benchmark.rb +0 -52
- data/vendor/rails/actionpack/examples/benchmark_with_ar.fcgi +0 -89
- data/vendor/rails/actionpack/examples/blog_controller.cgi +0 -53
- data/vendor/rails/actionpack/examples/debate/index.rhtml +0 -14
- data/vendor/rails/actionpack/examples/debate/new_topic.rhtml +0 -22
- data/vendor/rails/actionpack/examples/debate/topic.rhtml +0 -32
- data/vendor/rails/actionpack/examples/debate_controller.cgi +0 -57
- data/vendor/rails/actionpack/lib/action_controller/assertions/deprecated_assertions.rb +0 -228
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cgi_ext.rb +0 -36
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb +0 -211
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie_performance_fix.rb +0 -125
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/pstore_performance_fix.rb +0 -30
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb +0 -95
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/session_performance_fix.rb +0 -30
- data/vendor/rails/actionpack/lib/action_controller/deprecated_dependencies.rb +0 -65
- data/vendor/rails/actionpack/lib/action_controller/deprecated_redirects.rb +0 -17
- data/vendor/rails/actionpack/lib/action_controller/deprecated_request_methods.rb +0 -34
- data/vendor/rails/actionpack/lib/action_controller/macros/auto_complete.rb +0 -53
- data/vendor/rails/actionpack/lib/action_controller/macros/in_place_editing.rb +0 -33
- data/vendor/rails/actionpack/lib/action_controller/pagination.rb +0 -408
- data/vendor/rails/actionpack/lib/action_controller/scaffolding.rb +0 -189
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml +0 -44
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml +0 -11
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.rhtml +0 -21
- data/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/edit.rhtml +0 -7
- data/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/layout.rhtml +0 -69
- data/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/list.rhtml +0 -27
- data/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/new.rhtml +0 -6
- data/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/show.rhtml +0 -9
- data/vendor/rails/actionpack/lib/action_controller/vendor/xml_node.rb +0 -97
- data/vendor/rails/actionpack/lib/action_view/helpers/deprecated_helper.rb +0 -37
- data/vendor/rails/actionpack/lib/action_view/helpers/java_script_macros_helper.rb +0 -233
- data/vendor/rails/actionpack/lib/action_view/helpers/pagination_helper.rb +0 -86
- data/vendor/rails/actionpack/test/activerecord/active_record_assertions_test.rb +0 -92
- data/vendor/rails/actionpack/test/activerecord/pagination_test.rb +0 -165
- data/vendor/rails/actionpack/test/controller/deprecated_instance_variables_test.rb +0 -48
- data/vendor/rails/actionpack/test/controller/raw_post_test.rb +0 -68
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_cookies_method.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_flash_ivar.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_flash_method.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_headers_ivar.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_headers_method.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_params_ivar.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_params_method.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_response_ivar.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_response_method.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_session_ivar.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_session_method.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/test/_hash_object.rhtml +0 -1
- data/vendor/rails/actionpack/test/fixtures/test/list.rhtml +0 -1
- data/vendor/rails/actionpack/test/template/deprecated_helper_test.rb +0 -36
- data/vendor/rails/actionpack/test/template/deprecated_instance_variables_test.rb +0 -43
- data/vendor/rails/actionpack/test/template/java_script_macros_helper_test.rb +0 -109
- data/vendor/rails/actionwebservice/CHANGELOG +0 -293
- data/vendor/rails/actionwebservice/MIT-LICENSE +0 -21
- data/vendor/rails/actionwebservice/README +0 -364
- data/vendor/rails/actionwebservice/Rakefile +0 -171
- data/vendor/rails/actionwebservice/TODO +0 -32
- data/vendor/rails/actionwebservice/examples/googlesearch/README +0 -143
- data/vendor/rails/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb +0 -50
- data/vendor/rails/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb +0 -57
- data/vendor/rails/actionwebservice/examples/googlesearch/delegated/google_search_service.rb +0 -108
- data/vendor/rails/actionwebservice/examples/googlesearch/delegated/search_controller.rb +0 -7
- data/vendor/rails/actionwebservice/examples/googlesearch/direct/google_search_api.rb +0 -50
- data/vendor/rails/actionwebservice/examples/googlesearch/direct/search_controller.rb +0 -58
- data/vendor/rails/actionwebservice/examples/metaWeblog/README +0 -17
- data/vendor/rails/actionwebservice/examples/metaWeblog/apis/blogger_api.rb +0 -60
- data/vendor/rails/actionwebservice/examples/metaWeblog/apis/blogger_service.rb +0 -34
- data/vendor/rails/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb +0 -67
- data/vendor/rails/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb +0 -48
- data/vendor/rails/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb +0 -16
- data/vendor/rails/actionwebservice/install.rb +0 -30
- data/vendor/rails/actionwebservice/lib/action_web_service.rb +0 -66
- data/vendor/rails/actionwebservice/lib/action_web_service/api.rb +0 -249
- data/vendor/rails/actionwebservice/lib/action_web_service/base.rb +0 -42
- data/vendor/rails/actionwebservice/lib/action_web_service/casting.rb +0 -136
- data/vendor/rails/actionwebservice/lib/action_web_service/client.rb +0 -3
- data/vendor/rails/actionwebservice/lib/action_web_service/client/base.rb +0 -28
- data/vendor/rails/actionwebservice/lib/action_web_service/client/soap_client.rb +0 -113
- data/vendor/rails/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb +0 -58
- data/vendor/rails/actionwebservice/lib/action_web_service/container.rb +0 -3
- data/vendor/rails/actionwebservice/lib/action_web_service/container/action_controller_container.rb +0 -93
- data/vendor/rails/actionwebservice/lib/action_web_service/container/delegated_container.rb +0 -86
- data/vendor/rails/actionwebservice/lib/action_web_service/container/direct_container.rb +0 -69
- data/vendor/rails/actionwebservice/lib/action_web_service/dispatcher.rb +0 -2
- data/vendor/rails/actionwebservice/lib/action_web_service/dispatcher/abstract.rb +0 -203
- data/vendor/rails/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +0 -376
- data/vendor/rails/actionwebservice/lib/action_web_service/invocation.rb +0 -202
- data/vendor/rails/actionwebservice/lib/action_web_service/protocol.rb +0 -4
- data/vendor/rails/actionwebservice/lib/action_web_service/protocol/abstract.rb +0 -112
- data/vendor/rails/actionwebservice/lib/action_web_service/protocol/discovery.rb +0 -37
- data/vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb +0 -176
- data/vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb +0 -241
- data/vendor/rails/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb +0 -110
- data/vendor/rails/actionwebservice/lib/action_web_service/scaffolding.rb +0 -283
- data/vendor/rails/actionwebservice/lib/action_web_service/struct.rb +0 -68
- data/vendor/rails/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb +0 -26
- data/vendor/rails/actionwebservice/lib/action_web_service/support/signature_types.rb +0 -222
- data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/layout.rhtml +0 -65
- data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/methods.rhtml +0 -6
- data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.rhtml +0 -29
- data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/result.rhtml +0 -30
- data/vendor/rails/actionwebservice/lib/action_web_service/test_invoke.rb +0 -110
- data/vendor/rails/actionwebservice/lib/action_web_service/version.rb +0 -9
- data/vendor/rails/actionwebservice/setup.rb +0 -1379
- data/vendor/rails/actionwebservice/test/abstract_client.rb +0 -183
- data/vendor/rails/actionwebservice/test/abstract_dispatcher.rb +0 -505
- data/vendor/rails/actionwebservice/test/abstract_unit.rb +0 -45
- data/vendor/rails/actionwebservice/test/api_test.rb +0 -102
- data/vendor/rails/actionwebservice/test/apis/auto_load_api.rb +0 -3
- data/vendor/rails/actionwebservice/test/apis/broken_auto_load_api.rb +0 -2
- data/vendor/rails/actionwebservice/test/base_test.rb +0 -42
- data/vendor/rails/actionwebservice/test/casting_test.rb +0 -86
- data/vendor/rails/actionwebservice/test/client_soap_test.rb +0 -152
- data/vendor/rails/actionwebservice/test/client_xmlrpc_test.rb +0 -151
- data/vendor/rails/actionwebservice/test/container_test.rb +0 -73
- data/vendor/rails/actionwebservice/test/dispatcher_action_controller_soap_test.rb +0 -137
- data/vendor/rails/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb +0 -59
- data/vendor/rails/actionwebservice/test/fixtures/db_definitions/mysql.sql +0 -7
- data/vendor/rails/actionwebservice/test/fixtures/users.yml +0 -10
- data/vendor/rails/actionwebservice/test/gencov +0 -3
- data/vendor/rails/actionwebservice/test/invocation_test.rb +0 -185
- data/vendor/rails/actionwebservice/test/run +0 -6
- data/vendor/rails/actionwebservice/test/scaffolded_controller_test.rb +0 -146
- data/vendor/rails/actionwebservice/test/struct_test.rb +0 -52
- data/vendor/rails/actionwebservice/test/test_invoke_test.rb +0 -112
- data/vendor/rails/activerecord/benchmarks/benchmark.rb +0 -26
- data/vendor/rails/activerecord/benchmarks/mysql_benchmark.rb +0 -19
- data/vendor/rails/activerecord/examples/associations.rb +0 -87
- data/vendor/rails/activerecord/examples/shared_setup.rb +0 -15
- data/vendor/rails/activerecord/examples/validation.rb +0 -85
- data/vendor/rails/activerecord/lib/active_record/acts/list.rb +0 -256
- data/vendor/rails/activerecord/lib/active_record/acts/nested_set.rb +0 -211
- data/vendor/rails/activerecord/lib/active_record/acts/tree.rb +0 -96
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/db2_adapter.rb +0 -228
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/firebird_adapter.rb +0 -728
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/frontbase_adapter.rb +0 -861
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/openbase_adapter.rb +0 -350
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb +0 -690
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb +0 -607
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/sybase_adapter.rb +0 -662
- data/vendor/rails/activerecord/lib/active_record/deprecated_associations.rb +0 -104
- data/vendor/rails/activerecord/lib/active_record/deprecated_finders.rb +0 -44
- data/vendor/rails/activerecord/lib/active_record/vendor/simple.rb +0 -693
- data/vendor/rails/activerecord/lib/active_record/wrappers/yaml_wrapper.rb +0 -15
- data/vendor/rails/activerecord/lib/active_record/wrappings.rb +0 -58
- data/vendor/rails/activerecord/lib/active_record/xml_serialization.rb +0 -308
- data/vendor/rails/activerecord/test/connections/native_sqlserver/connection.rb +0 -23
- data/vendor/rails/activerecord/test/connections/native_sqlserver_odbc/connection.rb +0 -25
- data/vendor/rails/activerecord/test/copy_table_sqlite.rb +0 -64
- data/vendor/rails/activerecord/test/deprecated_associations_test.rb +0 -396
- data/vendor/rails/activerecord/test/empty_date_time_test.rb +0 -25
- data/vendor/rails/activerecord/test/fixtures/db_definitions/mysql.drop.sql +0 -32
- data/vendor/rails/activerecord/test/fixtures/db_definitions/mysql.sql +0 -234
- data/vendor/rails/activerecord/test/fixtures/db_definitions/mysql2.drop.sql +0 -2
- data/vendor/rails/activerecord/test/fixtures/db_definitions/mysql2.sql +0 -5
- data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlserver.drop.sql +0 -34
- data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlserver.sql +0 -243
- data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlserver2.drop.sql +0 -2
- data/vendor/rails/activerecord/test/fixtures/db_definitions/sqlserver2.sql +0 -5
- data/vendor/rails/activerecord/test/fixtures/mixin.rb +0 -63
- data/vendor/rails/activerecord/test/mixin_nested_set_test.rb +0 -196
- data/vendor/rails/activesupport/lib/active_support/binding_of_caller.rb +0 -84
- data/vendor/rails/activesupport/lib/active_support/breakpoint.rb +0 -528
- data/vendor/rails/activesupport/lib/active_support/caching_tools.rb +0 -62
- data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/formatting.rb +0 -7
- data/vendor/rails/activesupport/lib/active_support/json/encoders.rb +0 -25
- data/vendor/rails/activesupport/lib/active_support/json/encoders/core.rb +0 -70
- data/vendor/rails/activesupport/lib/active_support/reloadable.rb +0 -60
- data/vendor/rails/activesupport/lib/active_support/vendor/builder/blankslate.rb +0 -63
- data/vendor/rails/activesupport/lib/active_support/vendor/builder/xchar.rb +0 -112
- data/vendor/rails/activesupport/lib/active_support/vendor/builder/xmlbase.rb +0 -145
- data/vendor/rails/activesupport/lib/active_support/vendor/builder/xmlevents.rb +0 -63
- data/vendor/rails/activesupport/lib/active_support/vendor/builder/xmlmarkup.rb +0 -327
- data/vendor/rails/activesupport/lib/active_support/vendor/xml_simple.rb +0 -1021
- data/vendor/rails/activesupport/test/caching_tools_test.rb +0 -79
- data/vendor/rails/activesupport/test/core_ext/module/attr_accessor_with_default.rb +0 -30
- data/vendor/rails/activesupport/test/json_test.rb +0 -97
- data/vendor/rails/activesupport/test/reloadable_test.rb +0 -123
- data/vendor/rails/railties/bin/breakpointer +0 -3
- data/vendor/rails/railties/lib/binding_of_caller.rb +0 -85
- data/vendor/rails/railties/lib/breakpoint.rb +0 -553
- data/vendor/rails/railties/lib/breakpoint_client.rb +0 -196
- data/vendor/rails/railties/lib/commands/breakpointer.rb +0 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/USAGE +0 -18
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/fixtures.yml +0 -11
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/migration.rb +0 -13
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/model.rb +0 -2
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/unit_test.rb +0 -10
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/form.rhtml +0 -3
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/form_scaffolding.rhtml +0 -1
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.rhtml +0 -9
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_list.rhtml +0 -27
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.rhtml +0 -8
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.rhtml +0 -8
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/USAGE +0 -29
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/scaffold_resource_generator.rb +0 -93
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/controller.rb +0 -79
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/fixtures.yml +0 -11
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/functional_test.rb +0 -57
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/helper.rb +0 -2
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/layout.rhtml +0 -17
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/migration.rb +0 -13
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/model.rb +0 -2
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/style.css +0 -74
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/unit_test.rb +0 -10
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/view_edit.rhtml +0 -19
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/view_index.rhtml +0 -24
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/view_new.rhtml +0 -18
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/view_show.rhtml +0 -10
- data/vendor/rails/railties/lib/rails_generator/generators/components/web_service/USAGE +0 -28
- data/vendor/rails/railties/lib/rails_generator/generators/components/web_service/templates/api_definition.rb +0 -5
- data/vendor/rails/railties/lib/rails_generator/generators/components/web_service/templates/controller.rb +0 -8
- data/vendor/rails/railties/lib/rails_generator/generators/components/web_service/templates/functional_test.rb +0 -19
- data/vendor/rails/railties/lib/rails_generator/generators/components/web_service/web_service_generator.rb +0 -29
- data/vendor/rails/railties/lib/tasks/pre_namespace_aliases.rake +0 -53
- data/vendor/rails/railties/test/dispatcher_test.rb +0 -141
- data/vendor/rails/railties/test/mocks/dispatcher.rb +0 -13
- data/vendor/rails/railties/test/mocks/fcgi.rb +0 -15
- data/vendor/rails/railties/test/mocks/stubbed_breakpoint.rb +0 -2
- data/vendor/rails/railties/test/mocks/stubbed_kernel.rb +0 -5
@@ -1,10 +1,10 @@
|
|
1
|
-
// Copyright (c) 2005
|
2
|
-
// (c) 2005
|
1
|
+
// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
2
|
+
// (c) 2005-2007 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz)
|
3
3
|
//
|
4
4
|
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
5
5
|
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
6
6
|
|
7
|
-
if(
|
7
|
+
if(Object.isUndefined(Effect))
|
8
8
|
throw("dragdrop.js requires including script.aculo.us' effects.js library");
|
9
9
|
|
10
10
|
var Droppables = {
|
@@ -20,14 +20,13 @@ var Droppables = {
|
|
20
20
|
greedy: true,
|
21
21
|
hoverclass: null,
|
22
22
|
tree: false
|
23
|
-
}, arguments[1] || {});
|
23
|
+
}, arguments[1] || { });
|
24
24
|
|
25
25
|
// cache containers
|
26
26
|
if(options.containment) {
|
27
27
|
options._containers = [];
|
28
28
|
var containment = options.containment;
|
29
|
-
if((
|
30
|
-
(containment.constructor == Array)) {
|
29
|
+
if(Object.isArray(containment)) {
|
31
30
|
containment.each( function(c) { options._containers.push($(c)) });
|
32
31
|
} else {
|
33
32
|
options._containers.push($(containment));
|
@@ -87,21 +86,23 @@ var Droppables = {
|
|
87
86
|
|
88
87
|
show: function(point, element) {
|
89
88
|
if(!this.drops.length) return;
|
90
|
-
var affected = [];
|
89
|
+
var drop, affected = [];
|
91
90
|
|
92
|
-
if(this.last_active) this.deactivate(this.last_active);
|
93
91
|
this.drops.each( function(drop) {
|
94
92
|
if(Droppables.isAffected(point, element, drop))
|
95
93
|
affected.push(drop);
|
96
94
|
});
|
97
95
|
|
98
|
-
if(affected.length>0)
|
96
|
+
if(affected.length>0)
|
99
97
|
drop = Droppables.findDeepestChild(affected);
|
98
|
+
|
99
|
+
if(this.last_active && this.last_active != drop) this.deactivate(this.last_active);
|
100
|
+
if (drop) {
|
100
101
|
Position.within(drop.element, point[0], point[1]);
|
101
102
|
if(drop.onHover)
|
102
103
|
drop.onHover(element, drop.element, Position.overlap(drop.overlap, drop.element));
|
103
104
|
|
104
|
-
Droppables.activate(drop);
|
105
|
+
if (drop != this.last_active) Droppables.activate(drop);
|
105
106
|
}
|
106
107
|
},
|
107
108
|
|
@@ -110,8 +111,10 @@ var Droppables = {
|
|
110
111
|
Position.prepare();
|
111
112
|
|
112
113
|
if (this.isAffected([Event.pointerX(event), Event.pointerY(event)], element, this.last_active))
|
113
|
-
if (this.last_active.onDrop)
|
114
|
-
this.last_active.onDrop(element, this.last_active.element, event);
|
114
|
+
if (this.last_active.onDrop) {
|
115
|
+
this.last_active.onDrop(element, this.last_active.element, event);
|
116
|
+
return true;
|
117
|
+
}
|
115
118
|
},
|
116
119
|
|
117
120
|
reset: function() {
|
@@ -219,10 +222,7 @@ var Draggables = {
|
|
219
222
|
|
220
223
|
/*--------------------------------------------------------------------------*/
|
221
224
|
|
222
|
-
var Draggable = Class.create(
|
223
|
-
Draggable._dragging = {};
|
224
|
-
|
225
|
-
Draggable.prototype = {
|
225
|
+
var Draggable = Class.create({
|
226
226
|
initialize: function(element) {
|
227
227
|
var defaults = {
|
228
228
|
handle: false,
|
@@ -233,7 +233,7 @@ Draggable.prototype = {
|
|
233
233
|
});
|
234
234
|
},
|
235
235
|
endeffect: function(element) {
|
236
|
-
var toOpacity =
|
236
|
+
var toOpacity = Object.isNumber(element._opacity) ? element._opacity : 1.0;
|
237
237
|
new Effect.Opacity(element, {duration:0.2, from:0.7, to:toOpacity,
|
238
238
|
queue: {scope:'_draggable', position:'end'},
|
239
239
|
afterFinish: function(){
|
@@ -243,6 +243,7 @@ Draggable.prototype = {
|
|
243
243
|
},
|
244
244
|
zindex: 1000,
|
245
245
|
revert: false,
|
246
|
+
quiet: false,
|
246
247
|
scroll: false,
|
247
248
|
scrollSensitivity: 20,
|
248
249
|
scrollSpeed: 15,
|
@@ -250,7 +251,7 @@ Draggable.prototype = {
|
|
250
251
|
delay: 0
|
251
252
|
};
|
252
253
|
|
253
|
-
if(!arguments[1] ||
|
254
|
+
if(!arguments[1] || Object.isUndefined(arguments[1].endeffect))
|
254
255
|
Object.extend(defaults, {
|
255
256
|
starteffect: function(element) {
|
256
257
|
element._opacity = Element.getOpacity(element);
|
@@ -259,11 +260,11 @@ Draggable.prototype = {
|
|
259
260
|
}
|
260
261
|
});
|
261
262
|
|
262
|
-
var options = Object.extend(defaults, arguments[1] || {});
|
263
|
+
var options = Object.extend(defaults, arguments[1] || { });
|
263
264
|
|
264
265
|
this.element = $(element);
|
265
266
|
|
266
|
-
if(options.handle && (
|
267
|
+
if(options.handle && Object.isString(options.handle))
|
267
268
|
this.handle = this.element.down('.'+options.handle, 0);
|
268
269
|
|
269
270
|
if(!this.handle) this.handle = $(options.handle);
|
@@ -276,7 +277,6 @@ Draggable.prototype = {
|
|
276
277
|
|
277
278
|
Element.makePositioned(this.element); // fix IE
|
278
279
|
|
279
|
-
this.delta = this.currentDelta();
|
280
280
|
this.options = options;
|
281
281
|
this.dragging = false;
|
282
282
|
|
@@ -298,17 +298,17 @@ Draggable.prototype = {
|
|
298
298
|
},
|
299
299
|
|
300
300
|
initDrag: function(event) {
|
301
|
-
if(
|
301
|
+
if(!Object.isUndefined(Draggable._dragging[this.element]) &&
|
302
302
|
Draggable._dragging[this.element]) return;
|
303
303
|
if(Event.isLeftClick(event)) {
|
304
304
|
// abort on form elements, fixes a Firefox issue
|
305
305
|
var src = Event.element(event);
|
306
|
-
if(src.tagName && (
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
306
|
+
if((tag_name = src.tagName.toUpperCase()) && (
|
307
|
+
tag_name=='INPUT' ||
|
308
|
+
tag_name=='SELECT' ||
|
309
|
+
tag_name=='OPTION' ||
|
310
|
+
tag_name=='BUTTON' ||
|
311
|
+
tag_name=='TEXTAREA')) return;
|
312
312
|
|
313
313
|
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
314
314
|
var pos = Position.cumulativeOffset(this.element);
|
@@ -321,6 +321,8 @@ Draggable.prototype = {
|
|
321
321
|
|
322
322
|
startDrag: function(event) {
|
323
323
|
this.dragging = true;
|
324
|
+
if(!this.delta)
|
325
|
+
this.delta = this.currentDelta();
|
324
326
|
|
325
327
|
if(this.options.zindex) {
|
326
328
|
this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
|
@@ -329,7 +331,9 @@ Draggable.prototype = {
|
|
329
331
|
|
330
332
|
if(this.options.ghosting) {
|
331
333
|
this._clone = this.element.cloneNode(true);
|
332
|
-
|
334
|
+
this.element._originallyAbsolute = (this.element.getStyle('position') == 'absolute');
|
335
|
+
if (!this.element._originallyAbsolute)
|
336
|
+
Position.absolutize(this.element);
|
333
337
|
this.element.parentNode.insertBefore(this._clone, this.element);
|
334
338
|
}
|
335
339
|
|
@@ -351,8 +355,12 @@ Draggable.prototype = {
|
|
351
355
|
|
352
356
|
updateDrag: function(event, pointer) {
|
353
357
|
if(!this.dragging) this.startDrag(event);
|
354
|
-
|
355
|
-
|
358
|
+
|
359
|
+
if(!this.options.quiet){
|
360
|
+
Position.prepare();
|
361
|
+
Droppables.show(pointer, this.element);
|
362
|
+
}
|
363
|
+
|
356
364
|
Draggables.notify('onDrag', this, event);
|
357
365
|
|
358
366
|
this.draw(pointer);
|
@@ -380,30 +388,44 @@ Draggable.prototype = {
|
|
380
388
|
}
|
381
389
|
|
382
390
|
// fix AppleWebKit rendering
|
383
|
-
if(
|
391
|
+
if(Prototype.Browser.WebKit) window.scrollBy(0,0);
|
384
392
|
|
385
393
|
Event.stop(event);
|
386
394
|
},
|
387
395
|
|
388
396
|
finishDrag: function(event, success) {
|
389
397
|
this.dragging = false;
|
398
|
+
|
399
|
+
if(this.options.quiet){
|
400
|
+
Position.prepare();
|
401
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
402
|
+
Droppables.show(pointer, this.element);
|
403
|
+
}
|
390
404
|
|
391
405
|
if(this.options.ghosting) {
|
392
|
-
|
406
|
+
if (!this.element._originallyAbsolute)
|
407
|
+
Position.relativize(this.element);
|
408
|
+
delete this.element._originallyAbsolute;
|
393
409
|
Element.remove(this._clone);
|
394
410
|
this._clone = null;
|
395
411
|
}
|
396
412
|
|
397
|
-
|
413
|
+
var dropped = false;
|
414
|
+
if(success) {
|
415
|
+
dropped = Droppables.fire(event, this.element);
|
416
|
+
if (!dropped) dropped = false;
|
417
|
+
}
|
418
|
+
if(dropped && this.options.onDropped) this.options.onDropped(this.element);
|
398
419
|
Draggables.notify('onEnd', this, event);
|
399
420
|
|
400
421
|
var revert = this.options.revert;
|
401
|
-
if(revert &&
|
422
|
+
if(revert && Object.isFunction(revert)) revert = revert(this.element);
|
402
423
|
|
403
424
|
var d = this.currentDelta();
|
404
425
|
if(revert && this.options.reverteffect) {
|
405
|
-
|
406
|
-
|
426
|
+
if (dropped == 0 || revert != 'failure')
|
427
|
+
this.options.reverteffect(this.element,
|
428
|
+
d[1]-this.delta[1], d[0]-this.delta[0]);
|
407
429
|
} else {
|
408
430
|
this.delta = d;
|
409
431
|
}
|
@@ -451,15 +473,15 @@ Draggable.prototype = {
|
|
451
473
|
}.bind(this));
|
452
474
|
|
453
475
|
if(this.options.snap) {
|
454
|
-
if(
|
476
|
+
if(Object.isFunction(this.options.snap)) {
|
455
477
|
p = this.options.snap(p[0],p[1],this);
|
456
478
|
} else {
|
457
|
-
if(this.options.snap
|
479
|
+
if(Object.isArray(this.options.snap)) {
|
458
480
|
p = p.map( function(v, i) {
|
459
|
-
return
|
481
|
+
return (v/this.options.snap[i]).round()*this.options.snap[i] }.bind(this))
|
460
482
|
} else {
|
461
483
|
p = p.map( function(v) {
|
462
|
-
return
|
484
|
+
return (v/this.options.snap).round()*this.options.snap }.bind(this))
|
463
485
|
}
|
464
486
|
}}
|
465
487
|
|
@@ -543,12 +565,13 @@ Draggable.prototype = {
|
|
543
565
|
}
|
544
566
|
return { top: T, left: L, width: W, height: H };
|
545
567
|
}
|
546
|
-
}
|
568
|
+
});
|
569
|
+
|
570
|
+
Draggable._dragging = { };
|
547
571
|
|
548
572
|
/*--------------------------------------------------------------------------*/
|
549
573
|
|
550
|
-
var SortableObserver = Class.create(
|
551
|
-
SortableObserver.prototype = {
|
574
|
+
var SortableObserver = Class.create({
|
552
575
|
initialize: function(element, observer) {
|
553
576
|
this.element = $(element);
|
554
577
|
this.observer = observer;
|
@@ -564,15 +587,15 @@ SortableObserver.prototype = {
|
|
564
587
|
if(this.lastValue != Sortable.serialize(this.element))
|
565
588
|
this.observer(this.element)
|
566
589
|
}
|
567
|
-
}
|
590
|
+
});
|
568
591
|
|
569
592
|
var Sortable = {
|
570
593
|
SERIALIZE_RULE: /^[^_\-](?:[A-Za-z0-9\-\_]*)[_](.*)$/,
|
571
594
|
|
572
|
-
sortables: {},
|
595
|
+
sortables: { },
|
573
596
|
|
574
597
|
_findRootElement: function(element) {
|
575
|
-
while (element.tagName != "BODY") {
|
598
|
+
while (element.tagName.toUpperCase() != "BODY") {
|
576
599
|
if(element.id && Sortable.sortables[element.id]) return element;
|
577
600
|
element = element.parentNode;
|
578
601
|
}
|
@@ -612,13 +635,20 @@ var Sortable = {
|
|
612
635
|
delay: 0,
|
613
636
|
hoverclass: null,
|
614
637
|
ghosting: false,
|
638
|
+
quiet: false,
|
615
639
|
scroll: false,
|
616
640
|
scrollSensitivity: 20,
|
617
641
|
scrollSpeed: 15,
|
618
642
|
format: this.SERIALIZE_RULE,
|
643
|
+
|
644
|
+
// these take arrays of elements or ids and can be
|
645
|
+
// used for better initialization performance
|
646
|
+
elements: false,
|
647
|
+
handles: false,
|
648
|
+
|
619
649
|
onChange: Prototype.emptyFunction,
|
620
650
|
onUpdate: Prototype.emptyFunction
|
621
|
-
}, arguments[1] || {});
|
651
|
+
}, arguments[1] || { });
|
622
652
|
|
623
653
|
// clear any old sortable with same element
|
624
654
|
this.destroy(element);
|
@@ -626,6 +656,7 @@ var Sortable = {
|
|
626
656
|
// build options for the draggables
|
627
657
|
var options_for_draggable = {
|
628
658
|
revert: true,
|
659
|
+
quiet: options.quiet,
|
629
660
|
scroll: options.scroll,
|
630
661
|
scrollSpeed: options.scrollSpeed,
|
631
662
|
scrollSensitivity: options.scrollSensitivity,
|
@@ -679,10 +710,9 @@ var Sortable = {
|
|
679
710
|
options.droppables.push(element);
|
680
711
|
}
|
681
712
|
|
682
|
-
(this.findElements(element, options) || []).each( function(e) {
|
683
|
-
|
684
|
-
|
685
|
-
$(e).down('.'+options.handle,0) : e;
|
713
|
+
(options.elements || this.findElements(element, options) || []).each( function(e,i) {
|
714
|
+
var handle = options.handles ? $(options.handles[i]) :
|
715
|
+
(options.handle ? $(e).select('.' + options.handle)[0] : e);
|
686
716
|
options.draggables.push(
|
687
717
|
new Draggable(e, Object.extend(options_for_draggable, { handle: handle })));
|
688
718
|
Droppables.add(e, options_for_droppable);
|
@@ -842,7 +872,7 @@ var Sortable = {
|
|
842
872
|
only: sortableOptions.only,
|
843
873
|
name: element.id,
|
844
874
|
format: sortableOptions.format
|
845
|
-
}, arguments[1] || {});
|
875
|
+
}, arguments[1] || { });
|
846
876
|
|
847
877
|
var root = {
|
848
878
|
id: null,
|
@@ -866,7 +896,7 @@ var Sortable = {
|
|
866
896
|
|
867
897
|
sequence: function(element) {
|
868
898
|
element = $(element);
|
869
|
-
var options = Object.extend(this.options(element), arguments[1] || {});
|
899
|
+
var options = Object.extend(this.options(element), arguments[1] || { });
|
870
900
|
|
871
901
|
return $(this.findElements(element, options) || []).map( function(item) {
|
872
902
|
return item.id.match(options.format) ? item.id.match(options.format)[1] : '';
|
@@ -875,9 +905,9 @@ var Sortable = {
|
|
875
905
|
|
876
906
|
setSequence: function(element, new_sequence) {
|
877
907
|
element = $(element);
|
878
|
-
var options = Object.extend(this.options(element), arguments[2] || {});
|
908
|
+
var options = Object.extend(this.options(element), arguments[2] || { });
|
879
909
|
|
880
|
-
var nodeMap = {};
|
910
|
+
var nodeMap = { };
|
881
911
|
this.findElements(element, options).each( function(n) {
|
882
912
|
if (n.id.match(options.format))
|
883
913
|
nodeMap[n.id.match(options.format)[1]] = [n, n.parentNode];
|
@@ -895,7 +925,7 @@ var Sortable = {
|
|
895
925
|
|
896
926
|
serialize: function(element) {
|
897
927
|
element = $(element);
|
898
|
-
var options = Object.extend(Sortable.options(element), arguments[1] || {});
|
928
|
+
var options = Object.extend(Sortable.options(element), arguments[1] || { });
|
899
929
|
var name = encodeURIComponent(
|
900
930
|
(arguments[1] && arguments[1].name) ? arguments[1].name : element.id);
|
901
931
|
|
@@ -919,7 +949,7 @@ Element.isParent = function(child, element) {
|
|
919
949
|
return Element.isParent(child.parentNode, element);
|
920
950
|
}
|
921
951
|
|
922
|
-
Element.findChildren = function(element, only, recursive, tagName) {
|
952
|
+
Element.findChildren = function(element, only, recursive, tagName) {
|
923
953
|
if(!element.hasChildNodes()) return null;
|
924
954
|
tagName = tagName.toUpperCase();
|
925
955
|
if(only) only = [only].flatten();
|
@@ -1,4 +1,4 @@
|
|
1
|
-
// Copyright (c) 2005
|
1
|
+
// Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
2
2
|
// Contributors:
|
3
3
|
// Justin Palmer (http://encytemedia.com/)
|
4
4
|
// Mark Pilgrim (http://diveintomark.org/)
|
@@ -11,17 +11,17 @@
|
|
11
11
|
// returns self (or first argument) if not convertable
|
12
12
|
String.prototype.parseColor = function() {
|
13
13
|
var color = '#';
|
14
|
-
if(this.slice(0,4) == 'rgb(') {
|
14
|
+
if (this.slice(0,4) == 'rgb(') {
|
15
15
|
var cols = this.slice(4,this.length-1).split(',');
|
16
16
|
var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
|
17
17
|
} else {
|
18
|
-
if(this.slice(0,1) == '#') {
|
19
|
-
if(this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
|
20
|
-
if(this.length==7) color = this.toLowerCase();
|
18
|
+
if (this.slice(0,1) == '#') {
|
19
|
+
if (this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
|
20
|
+
if (this.length==7) color = this.toLowerCase();
|
21
21
|
}
|
22
22
|
}
|
23
|
-
return(color.length==7 ? color : (arguments[0] || this));
|
24
|
-
}
|
23
|
+
return (color.length==7 ? color : (arguments[0] || this));
|
24
|
+
};
|
25
25
|
|
26
26
|
/*--------------------------------------------------------------------------*/
|
27
27
|
|
@@ -30,7 +30,7 @@ Element.collectTextNodes = function(element) {
|
|
30
30
|
return (node.nodeType==3 ? node.nodeValue :
|
31
31
|
(node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
|
32
32
|
}).flatten().join('');
|
33
|
-
}
|
33
|
+
};
|
34
34
|
|
35
35
|
Element.collectTextNodesIgnoreClass = function(element, className) {
|
36
36
|
return $A($(element).childNodes).collect( function(node) {
|
@@ -38,47 +38,18 @@ Element.collectTextNodesIgnoreClass = function(element, className) {
|
|
38
38
|
((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
|
39
39
|
Element.collectTextNodesIgnoreClass(node, className) : ''));
|
40
40
|
}).flatten().join('');
|
41
|
-
}
|
41
|
+
};
|
42
42
|
|
43
43
|
Element.setContentZoom = function(element, percent) {
|
44
44
|
element = $(element);
|
45
45
|
element.setStyle({fontSize: (percent/100) + 'em'});
|
46
|
-
if(
|
46
|
+
if (Prototype.Browser.WebKit) window.scrollBy(0,0);
|
47
47
|
return element;
|
48
|
-
}
|
49
|
-
|
50
|
-
Element.getOpacity = function(element){
|
51
|
-
element = $(element);
|
52
|
-
var opacity;
|
53
|
-
if (opacity = element.getStyle('opacity'))
|
54
|
-
return parseFloat(opacity);
|
55
|
-
if (opacity = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
|
56
|
-
if(opacity[1]) return parseFloat(opacity[1]) / 100;
|
57
|
-
return 1.0;
|
58
|
-
}
|
48
|
+
};
|
59
49
|
|
60
|
-
Element.
|
61
|
-
element= $(element);
|
62
|
-
if (value == 1){
|
63
|
-
element.setStyle({ opacity:
|
64
|
-
(/Gecko/.test(navigator.userAgent) && !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ?
|
65
|
-
0.999999 : 1.0 });
|
66
|
-
if(/MSIE/.test(navigator.userAgent) && !window.opera)
|
67
|
-
element.setStyle({filter: Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')});
|
68
|
-
} else {
|
69
|
-
if(value < 0.00001) value = 0;
|
70
|
-
element.setStyle({opacity: value});
|
71
|
-
if(/MSIE/.test(navigator.userAgent) && !window.opera)
|
72
|
-
element.setStyle(
|
73
|
-
{ filter: element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'') +
|
74
|
-
'alpha(opacity='+value*100+')' });
|
75
|
-
}
|
76
|
-
return element;
|
77
|
-
}
|
78
|
-
|
79
|
-
Element.getInlineOpacity = function(element){
|
50
|
+
Element.getInlineOpacity = function(element){
|
80
51
|
return $(element).style.opacity || '';
|
81
|
-
}
|
52
|
+
};
|
82
53
|
|
83
54
|
Element.forceRerendering = function(element) {
|
84
55
|
try {
|
@@ -91,31 +62,63 @@ Element.forceRerendering = function(element) {
|
|
91
62
|
|
92
63
|
/*--------------------------------------------------------------------------*/
|
93
64
|
|
94
|
-
Array.prototype.call = function() {
|
95
|
-
var args = arguments;
|
96
|
-
this.each(function(f){ f.apply(this, args) });
|
97
|
-
}
|
98
|
-
|
99
|
-
/*--------------------------------------------------------------------------*/
|
100
|
-
|
101
65
|
var Effect = {
|
102
66
|
_elementDoesNotExistError: {
|
103
67
|
name: 'ElementDoesNotExistError',
|
104
68
|
message: 'The specified DOM element does not exist, but is required for this effect to operate'
|
105
69
|
},
|
70
|
+
Transitions: {
|
71
|
+
linear: Prototype.K,
|
72
|
+
sinoidal: function(pos) {
|
73
|
+
return (-Math.cos(pos*Math.PI)/2) + 0.5;
|
74
|
+
},
|
75
|
+
reverse: function(pos) {
|
76
|
+
return 1-pos;
|
77
|
+
},
|
78
|
+
flicker: function(pos) {
|
79
|
+
var pos = ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
|
80
|
+
return pos > 1 ? 1 : pos;
|
81
|
+
},
|
82
|
+
wobble: function(pos) {
|
83
|
+
return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
|
84
|
+
},
|
85
|
+
pulse: function(pos, pulses) {
|
86
|
+
pulses = pulses || 5;
|
87
|
+
return (
|
88
|
+
((pos % (1/pulses)) * pulses).round() == 0 ?
|
89
|
+
((pos * pulses * 2) - (pos * pulses * 2).floor()) :
|
90
|
+
1 - ((pos * pulses * 2) - (pos * pulses * 2).floor())
|
91
|
+
);
|
92
|
+
},
|
93
|
+
spring: function(pos) {
|
94
|
+
return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6));
|
95
|
+
},
|
96
|
+
none: function(pos) {
|
97
|
+
return 0;
|
98
|
+
},
|
99
|
+
full: function(pos) {
|
100
|
+
return 1;
|
101
|
+
}
|
102
|
+
},
|
103
|
+
DefaultOptions: {
|
104
|
+
duration: 1.0, // seconds
|
105
|
+
fps: 100, // 100= assume 66fps max.
|
106
|
+
sync: false, // true for combining
|
107
|
+
from: 0.0,
|
108
|
+
to: 1.0,
|
109
|
+
delay: 0.0,
|
110
|
+
queue: 'parallel'
|
111
|
+
},
|
106
112
|
tagifyText: function(element) {
|
107
|
-
if(typeof Builder == 'undefined')
|
108
|
-
throw("Effect.tagifyText requires including script.aculo.us' builder.js library");
|
109
|
-
|
110
113
|
var tagifyStyle = 'position:relative';
|
111
|
-
if(
|
114
|
+
if (Prototype.Browser.IE) tagifyStyle += ';zoom:1';
|
112
115
|
|
113
116
|
element = $(element);
|
114
117
|
$A(element.childNodes).each( function(child) {
|
115
|
-
if(child.nodeType==3) {
|
118
|
+
if (child.nodeType==3) {
|
116
119
|
child.nodeValue.toArray().each( function(character) {
|
117
120
|
element.insertBefore(
|
118
|
-
|
121
|
+
new Element('span', {style: tagifyStyle}).update(
|
119
122
|
character == ' ' ? String.fromCharCode(160) : character),
|
120
123
|
child);
|
121
124
|
});
|
@@ -125,8 +128,8 @@ var Effect = {
|
|
125
128
|
},
|
126
129
|
multiple: function(element, effect) {
|
127
130
|
var elements;
|
128
|
-
if(((typeof element == 'object') ||
|
129
|
-
(
|
131
|
+
if (((typeof element == 'object') ||
|
132
|
+
Object.isFunction(element)) &&
|
130
133
|
(element.length))
|
131
134
|
elements = element;
|
132
135
|
else
|
@@ -135,7 +138,7 @@ var Effect = {
|
|
135
138
|
var options = Object.extend({
|
136
139
|
speed: 0.1,
|
137
140
|
delay: 0.0
|
138
|
-
}, arguments[2] || {});
|
141
|
+
}, arguments[2] || { });
|
139
142
|
var masterDelay = options.delay;
|
140
143
|
|
141
144
|
$A(elements).each( function(element, index) {
|
@@ -152,53 +155,20 @@ var Effect = {
|
|
152
155
|
effect = (effect || 'appear').toLowerCase();
|
153
156
|
var options = Object.extend({
|
154
157
|
queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
|
155
|
-
}, arguments[2] || {});
|
158
|
+
}, arguments[2] || { });
|
156
159
|
Effect[element.visible() ?
|
157
160
|
Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
|
158
161
|
}
|
159
162
|
};
|
160
163
|
|
161
|
-
|
162
|
-
|
163
|
-
/* ------------- transitions ------------- */
|
164
|
-
|
165
|
-
Effect.Transitions = {
|
166
|
-
linear: Prototype.K,
|
167
|
-
sinoidal: function(pos) {
|
168
|
-
return (-Math.cos(pos*Math.PI)/2) + 0.5;
|
169
|
-
},
|
170
|
-
reverse: function(pos) {
|
171
|
-
return 1-pos;
|
172
|
-
},
|
173
|
-
flicker: function(pos) {
|
174
|
-
return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;
|
175
|
-
},
|
176
|
-
wobble: function(pos) {
|
177
|
-
return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;
|
178
|
-
},
|
179
|
-
pulse: function(pos, pulses) {
|
180
|
-
pulses = pulses || 5;
|
181
|
-
return (
|
182
|
-
Math.round((pos % (1/pulses)) * pulses) == 0 ?
|
183
|
-
((pos * pulses * 2) - Math.floor(pos * pulses * 2)) :
|
184
|
-
1 - ((pos * pulses * 2) - Math.floor(pos * pulses * 2))
|
185
|
-
);
|
186
|
-
},
|
187
|
-
none: function(pos) {
|
188
|
-
return 0;
|
189
|
-
},
|
190
|
-
full: function(pos) {
|
191
|
-
return 1;
|
192
|
-
}
|
193
|
-
};
|
164
|
+
Effect.DefaultOptions.transition = Effect.Transitions.sinoidal;
|
194
165
|
|
195
166
|
/* ------------- core effects ------------- */
|
196
167
|
|
197
|
-
Effect.ScopedQueue = Class.create(
|
198
|
-
Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
|
168
|
+
Effect.ScopedQueue = Class.create(Enumerable, {
|
199
169
|
initialize: function() {
|
200
170
|
this.effects = [];
|
201
|
-
this.interval = null;
|
171
|
+
this.interval = null;
|
202
172
|
},
|
203
173
|
_each: function(iterator) {
|
204
174
|
this.effects._each(iterator);
|
@@ -206,7 +176,7 @@ Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
|
|
206
176
|
add: function(effect) {
|
207
177
|
var timestamp = new Date().getTime();
|
208
178
|
|
209
|
-
var position = (
|
179
|
+
var position = Object.isString(effect.options.queue) ?
|
210
180
|
effect.options.queue : effect.options.queue.position;
|
211
181
|
|
212
182
|
switch(position) {
|
@@ -229,115 +199,111 @@ Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {
|
|
229
199
|
effect.startOn += timestamp;
|
230
200
|
effect.finishOn += timestamp;
|
231
201
|
|
232
|
-
if(!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
|
202
|
+
if (!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
|
233
203
|
this.effects.push(effect);
|
234
204
|
|
235
|
-
if(!this.interval)
|
236
|
-
this.interval = setInterval(this.loop.bind(this),
|
205
|
+
if (!this.interval)
|
206
|
+
this.interval = setInterval(this.loop.bind(this), 15);
|
237
207
|
},
|
238
208
|
remove: function(effect) {
|
239
209
|
this.effects = this.effects.reject(function(e) { return e==effect });
|
240
|
-
if(this.effects.length == 0) {
|
210
|
+
if (this.effects.length == 0) {
|
241
211
|
clearInterval(this.interval);
|
242
212
|
this.interval = null;
|
243
213
|
}
|
244
214
|
},
|
245
215
|
loop: function() {
|
246
216
|
var timePos = new Date().getTime();
|
247
|
-
this.effects.
|
217
|
+
for(var i=0, len=this.effects.length;i<len;i++)
|
218
|
+
this.effects[i] && this.effects[i].loop(timePos);
|
248
219
|
}
|
249
220
|
});
|
250
221
|
|
251
222
|
Effect.Queues = {
|
252
223
|
instances: $H(),
|
253
224
|
get: function(queueName) {
|
254
|
-
if(
|
225
|
+
if (!Object.isString(queueName)) return queueName;
|
255
226
|
|
256
|
-
|
257
|
-
this.instances
|
258
|
-
|
259
|
-
return this.instances[queueName];
|
227
|
+
return this.instances.get(queueName) ||
|
228
|
+
this.instances.set(queueName, new Effect.ScopedQueue());
|
260
229
|
}
|
261
|
-
}
|
230
|
+
};
|
262
231
|
Effect.Queue = Effect.Queues.get('global');
|
263
232
|
|
264
|
-
Effect.
|
265
|
-
transition: Effect.Transitions.sinoidal,
|
266
|
-
duration: 1.0, // seconds
|
267
|
-
fps: 25.0, // max. 25fps due to Effect.Queue implementation
|
268
|
-
sync: false, // true for combining
|
269
|
-
from: 0.0,
|
270
|
-
to: 1.0,
|
271
|
-
delay: 0.0,
|
272
|
-
queue: 'parallel'
|
273
|
-
}
|
274
|
-
|
275
|
-
Effect.Base = function() {};
|
276
|
-
Effect.Base.prototype = {
|
233
|
+
Effect.Base = Class.create({
|
277
234
|
position: null,
|
278
235
|
start: function(options) {
|
279
|
-
|
236
|
+
function codeForEvent(options,eventName){
|
237
|
+
return (
|
238
|
+
(options[eventName+'Internal'] ? 'this.options.'+eventName+'Internal(this);' : '') +
|
239
|
+
(options[eventName] ? 'this.options.'+eventName+'(this);' : '')
|
240
|
+
);
|
241
|
+
}
|
242
|
+
if (options && options.transition === false) options.transition = Effect.Transitions.linear;
|
243
|
+
this.options = Object.extend(Object.extend({ },Effect.DefaultOptions), options || { });
|
280
244
|
this.currentFrame = 0;
|
281
245
|
this.state = 'idle';
|
282
246
|
this.startOn = this.options.delay*1000;
|
283
|
-
this.finishOn = this.startOn
|
247
|
+
this.finishOn = this.startOn+(this.options.duration*1000);
|
248
|
+
this.fromToDelta = this.options.to-this.options.from;
|
249
|
+
this.totalTime = this.finishOn-this.startOn;
|
250
|
+
this.totalFrames = this.options.fps*this.options.duration;
|
251
|
+
|
252
|
+
eval('this.render = function(pos){ '+
|
253
|
+
'if (this.state=="idle"){this.state="running";'+
|
254
|
+
codeForEvent(this.options,'beforeSetup')+
|
255
|
+
(this.setup ? 'this.setup();':'')+
|
256
|
+
codeForEvent(this.options,'afterSetup')+
|
257
|
+
'};if (this.state=="running"){'+
|
258
|
+
'pos=this.options.transition(pos)*'+this.fromToDelta+'+'+this.options.from+';'+
|
259
|
+
'this.position=pos;'+
|
260
|
+
codeForEvent(this.options,'beforeUpdate')+
|
261
|
+
(this.update ? 'this.update(pos);':'')+
|
262
|
+
codeForEvent(this.options,'afterUpdate')+
|
263
|
+
'}}');
|
264
|
+
|
284
265
|
this.event('beforeStart');
|
285
|
-
if(!this.options.sync)
|
286
|
-
Effect.Queues.get(
|
266
|
+
if (!this.options.sync)
|
267
|
+
Effect.Queues.get(Object.isString(this.options.queue) ?
|
287
268
|
'global' : this.options.queue.scope).add(this);
|
288
269
|
},
|
289
270
|
loop: function(timePos) {
|
290
|
-
if(timePos >= this.startOn) {
|
291
|
-
if(timePos >= this.finishOn) {
|
271
|
+
if (timePos >= this.startOn) {
|
272
|
+
if (timePos >= this.finishOn) {
|
292
273
|
this.render(1.0);
|
293
274
|
this.cancel();
|
294
275
|
this.event('beforeFinish');
|
295
|
-
if(this.finish) this.finish();
|
276
|
+
if (this.finish) this.finish();
|
296
277
|
this.event('afterFinish');
|
297
278
|
return;
|
298
279
|
}
|
299
|
-
var pos = (timePos - this.startOn) /
|
300
|
-
|
301
|
-
if(frame > this.currentFrame) {
|
280
|
+
var pos = (timePos - this.startOn) / this.totalTime,
|
281
|
+
frame = (pos * this.totalFrames).round();
|
282
|
+
if (frame > this.currentFrame) {
|
302
283
|
this.render(pos);
|
303
284
|
this.currentFrame = frame;
|
304
285
|
}
|
305
286
|
}
|
306
287
|
},
|
307
|
-
render: function(pos) {
|
308
|
-
if(this.state == 'idle') {
|
309
|
-
this.state = 'running';
|
310
|
-
this.event('beforeSetup');
|
311
|
-
if(this.setup) this.setup();
|
312
|
-
this.event('afterSetup');
|
313
|
-
}
|
314
|
-
if(this.state == 'running') {
|
315
|
-
if(this.options.transition) pos = this.options.transition(pos);
|
316
|
-
pos *= (this.options.to-this.options.from);
|
317
|
-
pos += this.options.from;
|
318
|
-
this.position = pos;
|
319
|
-
this.event('beforeUpdate');
|
320
|
-
if(this.update) this.update(pos);
|
321
|
-
this.event('afterUpdate');
|
322
|
-
}
|
323
|
-
},
|
324
288
|
cancel: function() {
|
325
|
-
if(!this.options.sync)
|
326
|
-
Effect.Queues.get(
|
289
|
+
if (!this.options.sync)
|
290
|
+
Effect.Queues.get(Object.isString(this.options.queue) ?
|
327
291
|
'global' : this.options.queue.scope).remove(this);
|
328
292
|
this.state = 'finished';
|
329
293
|
},
|
330
294
|
event: function(eventName) {
|
331
|
-
if(this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
|
332
|
-
if(this.options[eventName]) this.options[eventName](this);
|
295
|
+
if (this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
|
296
|
+
if (this.options[eventName]) this.options[eventName](this);
|
333
297
|
},
|
334
298
|
inspect: function() {
|
335
|
-
|
299
|
+
var data = $H();
|
300
|
+
for(property in this)
|
301
|
+
if (!Object.isFunction(this[property])) data.set(property, this[property]);
|
302
|
+
return '#<Effect:' + data.inspect() + ',options:' + $H(this.options).inspect() + '>';
|
336
303
|
}
|
337
|
-
}
|
304
|
+
});
|
338
305
|
|
339
|
-
Effect.Parallel = Class.create(
|
340
|
-
Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
|
306
|
+
Effect.Parallel = Class.create(Effect.Base, {
|
341
307
|
initialize: function(effects) {
|
342
308
|
this.effects = effects || [];
|
343
309
|
this.start(arguments[1]);
|
@@ -350,35 +316,45 @@ Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {
|
|
350
316
|
effect.render(1.0);
|
351
317
|
effect.cancel();
|
352
318
|
effect.event('beforeFinish');
|
353
|
-
if(effect.finish) effect.finish(position);
|
319
|
+
if (effect.finish) effect.finish(position);
|
354
320
|
effect.event('afterFinish');
|
355
321
|
});
|
356
322
|
}
|
357
323
|
});
|
358
324
|
|
359
|
-
Effect.
|
360
|
-
|
325
|
+
Effect.Tween = Class.create(Effect.Base, {
|
326
|
+
initialize: function(object, from, to) {
|
327
|
+
object = Object.isString(object) ? $(object) : object;
|
328
|
+
var args = $A(arguments), method = args.last(),
|
329
|
+
options = args.length == 5 ? args[3] : null;
|
330
|
+
this.method = Object.isFunction(method) ? method.bind(object) :
|
331
|
+
Object.isFunction(object[method]) ? object[method].bind(object) :
|
332
|
+
function(value) { object[method] = value };
|
333
|
+
this.start(Object.extend({ from: from, to: to }, options || { }));
|
334
|
+
},
|
335
|
+
update: function(position) {
|
336
|
+
this.method(position);
|
337
|
+
}
|
338
|
+
});
|
339
|
+
|
340
|
+
Effect.Event = Class.create(Effect.Base, {
|
361
341
|
initialize: function() {
|
362
|
-
|
363
|
-
duration: 0
|
364
|
-
}, arguments[0] || {});
|
365
|
-
this.start(options);
|
342
|
+
this.start(Object.extend({ duration: 0 }, arguments[0] || { }));
|
366
343
|
},
|
367
344
|
update: Prototype.emptyFunction
|
368
345
|
});
|
369
346
|
|
370
|
-
Effect.Opacity = Class.create(
|
371
|
-
Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
|
347
|
+
Effect.Opacity = Class.create(Effect.Base, {
|
372
348
|
initialize: function(element) {
|
373
349
|
this.element = $(element);
|
374
|
-
if(!this.element) throw(Effect._elementDoesNotExistError);
|
350
|
+
if (!this.element) throw(Effect._elementDoesNotExistError);
|
375
351
|
// make this work on IE on elements without 'layout'
|
376
|
-
if(
|
352
|
+
if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout))
|
377
353
|
this.element.setStyle({zoom: 1});
|
378
354
|
var options = Object.extend({
|
379
355
|
from: this.element.getOpacity() || 0.0,
|
380
356
|
to: 1.0
|
381
|
-
}, arguments[1] || {});
|
357
|
+
}, arguments[1] || { });
|
382
358
|
this.start(options);
|
383
359
|
},
|
384
360
|
update: function(position) {
|
@@ -386,36 +362,30 @@ Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {
|
|
386
362
|
}
|
387
363
|
});
|
388
364
|
|
389
|
-
Effect.Move = Class.create(
|
390
|
-
Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
|
365
|
+
Effect.Move = Class.create(Effect.Base, {
|
391
366
|
initialize: function(element) {
|
392
367
|
this.element = $(element);
|
393
|
-
if(!this.element) throw(Effect._elementDoesNotExistError);
|
368
|
+
if (!this.element) throw(Effect._elementDoesNotExistError);
|
394
369
|
var options = Object.extend({
|
395
370
|
x: 0,
|
396
371
|
y: 0,
|
397
372
|
mode: 'relative'
|
398
|
-
}, arguments[1] || {});
|
373
|
+
}, arguments[1] || { });
|
399
374
|
this.start(options);
|
400
375
|
},
|
401
376
|
setup: function() {
|
402
|
-
// Bug in Opera: Opera returns the "real" position of a static element or
|
403
|
-
// relative element that does not have top/left explicitly set.
|
404
|
-
// ==> Always set top and left for position relative elements in your stylesheets
|
405
|
-
// (to 0 if you do not need them)
|
406
377
|
this.element.makePositioned();
|
407
378
|
this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
|
408
379
|
this.originalTop = parseFloat(this.element.getStyle('top') || '0');
|
409
|
-
if(this.options.mode == 'absolute') {
|
410
|
-
// absolute movement, so we need to calc deltaX and deltaY
|
380
|
+
if (this.options.mode == 'absolute') {
|
411
381
|
this.options.x = this.options.x - this.originalLeft;
|
412
382
|
this.options.y = this.options.y - this.originalTop;
|
413
383
|
}
|
414
384
|
},
|
415
385
|
update: function(position) {
|
416
386
|
this.element.setStyle({
|
417
|
-
left:
|
418
|
-
top:
|
387
|
+
left: (this.options.x * position + this.originalLeft).round() + 'px',
|
388
|
+
top: (this.options.y * position + this.originalTop).round() + 'px'
|
419
389
|
});
|
420
390
|
}
|
421
391
|
});
|
@@ -423,30 +393,29 @@ Object.extend(Object.extend(Effect.Move.prototype, Effect.Base.prototype), {
|
|
423
393
|
// for backwards compatibility
|
424
394
|
Effect.MoveBy = function(element, toTop, toLeft) {
|
425
395
|
return new Effect.Move(element,
|
426
|
-
Object.extend({ x: toLeft, y: toTop }, arguments[3] || {}));
|
396
|
+
Object.extend({ x: toLeft, y: toTop }, arguments[3] || { }));
|
427
397
|
};
|
428
398
|
|
429
|
-
Effect.Scale = Class.create(
|
430
|
-
Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
|
399
|
+
Effect.Scale = Class.create(Effect.Base, {
|
431
400
|
initialize: function(element, percent) {
|
432
401
|
this.element = $(element);
|
433
|
-
if(!this.element) throw(Effect._elementDoesNotExistError);
|
402
|
+
if (!this.element) throw(Effect._elementDoesNotExistError);
|
434
403
|
var options = Object.extend({
|
435
404
|
scaleX: true,
|
436
405
|
scaleY: true,
|
437
406
|
scaleContent: true,
|
438
407
|
scaleFromCenter: false,
|
439
|
-
scaleMode: 'box', // 'box' or 'contents' or {} with provided values
|
408
|
+
scaleMode: 'box', // 'box' or 'contents' or { } with provided values
|
440
409
|
scaleFrom: 100.0,
|
441
410
|
scaleTo: percent
|
442
|
-
}, arguments[2] || {});
|
411
|
+
}, arguments[2] || { });
|
443
412
|
this.start(options);
|
444
413
|
},
|
445
414
|
setup: function() {
|
446
415
|
this.restoreAfterFinish = this.options.restoreAfterFinish || false;
|
447
416
|
this.elementPositioning = this.element.getStyle('position');
|
448
417
|
|
449
|
-
this.originalStyle = {};
|
418
|
+
this.originalStyle = { };
|
450
419
|
['top','left','width','height','fontSize'].each( function(k) {
|
451
420
|
this.originalStyle[k] = this.element.style[k];
|
452
421
|
}.bind(this));
|
@@ -456,7 +425,7 @@ Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
|
|
456
425
|
|
457
426
|
var fontSize = this.element.getStyle('font-size') || '100%';
|
458
427
|
['em','px','%','pt'].each( function(fontSizeType) {
|
459
|
-
if(fontSize.indexOf(fontSizeType)>0) {
|
428
|
+
if (fontSize.indexOf(fontSizeType)>0) {
|
460
429
|
this.fontSize = parseFloat(fontSize);
|
461
430
|
this.fontSizeType = fontSizeType;
|
462
431
|
}
|
@@ -465,60 +434,61 @@ Object.extend(Object.extend(Effect.Scale.prototype, Effect.Base.prototype), {
|
|
465
434
|
this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;
|
466
435
|
|
467
436
|
this.dims = null;
|
468
|
-
if(this.options.scaleMode=='box')
|
437
|
+
if (this.options.scaleMode=='box')
|
469
438
|
this.dims = [this.element.offsetHeight, this.element.offsetWidth];
|
470
|
-
if(/^content/.test(this.options.scaleMode))
|
439
|
+
if (/^content/.test(this.options.scaleMode))
|
471
440
|
this.dims = [this.element.scrollHeight, this.element.scrollWidth];
|
472
|
-
if(!this.dims)
|
441
|
+
if (!this.dims)
|
473
442
|
this.dims = [this.options.scaleMode.originalHeight,
|
474
443
|
this.options.scaleMode.originalWidth];
|
475
444
|
},
|
476
445
|
update: function(position) {
|
477
446
|
var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
|
478
|
-
if(this.options.scaleContent && this.fontSize)
|
447
|
+
if (this.options.scaleContent && this.fontSize)
|
479
448
|
this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
|
480
449
|
this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
|
481
450
|
},
|
482
451
|
finish: function(position) {
|
483
|
-
if(this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
|
452
|
+
if (this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
|
484
453
|
},
|
485
454
|
setDimensions: function(height, width) {
|
486
|
-
var d = {};
|
487
|
-
if(this.options.scaleX) d.width =
|
488
|
-
if(this.options.scaleY) d.height =
|
489
|
-
if(this.options.scaleFromCenter) {
|
455
|
+
var d = { };
|
456
|
+
if (this.options.scaleX) d.width = width.round() + 'px';
|
457
|
+
if (this.options.scaleY) d.height = height.round() + 'px';
|
458
|
+
if (this.options.scaleFromCenter) {
|
490
459
|
var topd = (height - this.dims[0])/2;
|
491
460
|
var leftd = (width - this.dims[1])/2;
|
492
|
-
if(this.elementPositioning == 'absolute') {
|
493
|
-
if(this.options.scaleY) d.top = this.originalTop-topd + 'px';
|
494
|
-
if(this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
|
461
|
+
if (this.elementPositioning == 'absolute') {
|
462
|
+
if (this.options.scaleY) d.top = this.originalTop-topd + 'px';
|
463
|
+
if (this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
|
495
464
|
} else {
|
496
|
-
if(this.options.scaleY) d.top = -topd + 'px';
|
497
|
-
if(this.options.scaleX) d.left = -leftd + 'px';
|
465
|
+
if (this.options.scaleY) d.top = -topd + 'px';
|
466
|
+
if (this.options.scaleX) d.left = -leftd + 'px';
|
498
467
|
}
|
499
468
|
}
|
500
469
|
this.element.setStyle(d);
|
501
470
|
}
|
502
471
|
});
|
503
472
|
|
504
|
-
Effect.Highlight = Class.create(
|
505
|
-
Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype), {
|
473
|
+
Effect.Highlight = Class.create(Effect.Base, {
|
506
474
|
initialize: function(element) {
|
507
475
|
this.element = $(element);
|
508
|
-
if(!this.element) throw(Effect._elementDoesNotExistError);
|
509
|
-
var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || {});
|
476
|
+
if (!this.element) throw(Effect._elementDoesNotExistError);
|
477
|
+
var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || { });
|
510
478
|
this.start(options);
|
511
479
|
},
|
512
480
|
setup: function() {
|
513
481
|
// Prevent executing on elements not in the layout flow
|
514
|
-
if(this.element.getStyle('display')=='none') { this.cancel(); return; }
|
482
|
+
if (this.element.getStyle('display')=='none') { this.cancel(); return; }
|
515
483
|
// Disable background image during the effect
|
516
|
-
this.oldStyle = {
|
517
|
-
|
518
|
-
|
519
|
-
|
484
|
+
this.oldStyle = { };
|
485
|
+
if (!this.options.keepBackgroundImage) {
|
486
|
+
this.oldStyle.backgroundImage = this.element.getStyle('background-image');
|
487
|
+
this.element.setStyle({backgroundImage: 'none'});
|
488
|
+
}
|
489
|
+
if (!this.options.endcolor)
|
520
490
|
this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
|
521
|
-
if(!this.options.restorecolor)
|
491
|
+
if (!this.options.restorecolor)
|
522
492
|
this.options.restorecolor = this.element.getStyle('background-color');
|
523
493
|
// init color calculations
|
524
494
|
this._base = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
|
@@ -526,7 +496,7 @@ Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype),
|
|
526
496
|
},
|
527
497
|
update: function(position) {
|
528
498
|
this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
|
529
|
-
return m+(
|
499
|
+
return m+((this._base[i]+(this._delta[i]*position)).round().toColorPart()); }.bind(this)) });
|
530
500
|
},
|
531
501
|
finish: function() {
|
532
502
|
this.element.setStyle(Object.extend(this.oldStyle, {
|
@@ -535,30 +505,21 @@ Object.extend(Object.extend(Effect.Highlight.prototype, Effect.Base.prototype),
|
|
535
505
|
}
|
536
506
|
});
|
537
507
|
|
538
|
-
Effect.ScrollTo =
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
this.scrollStart = Position.deltaY;
|
554
|
-
this.delta = (offsets[1] > max ? max : offsets[1]) - this.scrollStart;
|
555
|
-
},
|
556
|
-
update: function(position) {
|
557
|
-
Position.prepare();
|
558
|
-
window.scrollTo(Position.deltaX,
|
559
|
-
this.scrollStart + (position*this.delta));
|
560
|
-
}
|
561
|
-
});
|
508
|
+
Effect.ScrollTo = function(element) {
|
509
|
+
var options = arguments[1] || { },
|
510
|
+
scrollOffsets = document.viewport.getScrollOffsets(),
|
511
|
+
elementOffsets = $(element).cumulativeOffset(),
|
512
|
+
max = (window.height || document.body.scrollHeight) - document.viewport.getHeight();
|
513
|
+
|
514
|
+
if (options.offset) elementOffsets[1] += options.offset;
|
515
|
+
|
516
|
+
return new Effect.Tween(null,
|
517
|
+
scrollOffsets.top,
|
518
|
+
elementOffsets[1] > max ? max : elementOffsets[1],
|
519
|
+
options,
|
520
|
+
function(p){ scrollTo(scrollOffsets.left, p.round()) }
|
521
|
+
);
|
522
|
+
};
|
562
523
|
|
563
524
|
/* ------------- combination effects ------------- */
|
564
525
|
|
@@ -566,14 +527,15 @@ Effect.Fade = function(element) {
|
|
566
527
|
element = $(element);
|
567
528
|
var oldOpacity = element.getInlineOpacity();
|
568
529
|
var options = Object.extend({
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
530
|
+
from: element.getOpacity() || 1.0,
|
531
|
+
to: 0.0,
|
532
|
+
afterFinishInternal: function(effect) {
|
533
|
+
if (effect.options.to!=0) return;
|
534
|
+
effect.element.hide().setStyle({opacity: oldOpacity});
|
535
|
+
}
|
536
|
+
}, arguments[1] || { });
|
575
537
|
return new Effect.Opacity(element,options);
|
576
|
-
}
|
538
|
+
};
|
577
539
|
|
578
540
|
Effect.Appear = function(element) {
|
579
541
|
element = $(element);
|
@@ -586,9 +548,9 @@ Effect.Appear = function(element) {
|
|
586
548
|
},
|
587
549
|
beforeSetup: function(effect) {
|
588
550
|
effect.element.setOpacity(effect.options.from).show();
|
589
|
-
}}, arguments[1] || {});
|
551
|
+
}}, arguments[1] || { });
|
590
552
|
return new Effect.Opacity(element,options);
|
591
|
-
}
|
553
|
+
};
|
592
554
|
|
593
555
|
Effect.Puff = function(element) {
|
594
556
|
element = $(element);
|
@@ -610,9 +572,9 @@ Effect.Puff = function(element) {
|
|
610
572
|
},
|
611
573
|
afterFinishInternal: function(effect) {
|
612
574
|
effect.effects[0].element.hide().setStyle(oldStyle); }
|
613
|
-
}, arguments[1] || {})
|
575
|
+
}, arguments[1] || { })
|
614
576
|
);
|
615
|
-
}
|
577
|
+
};
|
616
578
|
|
617
579
|
Effect.BlindUp = function(element) {
|
618
580
|
element = $(element);
|
@@ -624,9 +586,9 @@ Effect.BlindUp = function(element) {
|
|
624
586
|
afterFinishInternal: function(effect) {
|
625
587
|
effect.element.hide().undoClipping();
|
626
588
|
}
|
627
|
-
}, arguments[1] || {})
|
589
|
+
}, arguments[1] || { })
|
628
590
|
);
|
629
|
-
}
|
591
|
+
};
|
630
592
|
|
631
593
|
Effect.BlindDown = function(element) {
|
632
594
|
element = $(element);
|
@@ -643,8 +605,8 @@ Effect.BlindDown = function(element) {
|
|
643
605
|
afterFinishInternal: function(effect) {
|
644
606
|
effect.element.undoClipping();
|
645
607
|
}
|
646
|
-
}, arguments[1] || {}));
|
647
|
-
}
|
608
|
+
}, arguments[1] || { }));
|
609
|
+
};
|
648
610
|
|
649
611
|
Effect.SwitchOff = function(element) {
|
650
612
|
element = $(element);
|
@@ -665,8 +627,8 @@ Effect.SwitchOff = function(element) {
|
|
665
627
|
}
|
666
628
|
})
|
667
629
|
}
|
668
|
-
}, arguments[1] || {}));
|
669
|
-
}
|
630
|
+
}, arguments[1] || { }));
|
631
|
+
};
|
670
632
|
|
671
633
|
Effect.DropOut = function(element) {
|
672
634
|
element = $(element);
|
@@ -685,29 +647,35 @@ Effect.DropOut = function(element) {
|
|
685
647
|
afterFinishInternal: function(effect) {
|
686
648
|
effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);
|
687
649
|
}
|
688
|
-
}, arguments[1] || {}));
|
689
|
-
}
|
650
|
+
}, arguments[1] || { }));
|
651
|
+
};
|
690
652
|
|
691
653
|
Effect.Shake = function(element) {
|
692
654
|
element = $(element);
|
655
|
+
var options = Object.extend({
|
656
|
+
distance: 20,
|
657
|
+
duration: 0.5
|
658
|
+
}, arguments[1] || {});
|
659
|
+
var distance = parseFloat(options.distance);
|
660
|
+
var split = parseFloat(options.duration) / 10.0;
|
693
661
|
var oldStyle = {
|
694
662
|
top: element.getStyle('top'),
|
695
663
|
left: element.getStyle('left') };
|
696
|
-
return new Effect.Move(element,
|
697
|
-
{ x:
|
664
|
+
return new Effect.Move(element,
|
665
|
+
{ x: distance, y: 0, duration: split, afterFinishInternal: function(effect) {
|
698
666
|
new Effect.Move(effect.element,
|
699
|
-
{ x: -
|
667
|
+
{ x: -distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
|
700
668
|
new Effect.Move(effect.element,
|
701
|
-
{ x:
|
669
|
+
{ x: distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
|
702
670
|
new Effect.Move(effect.element,
|
703
|
-
{ x: -
|
671
|
+
{ x: -distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
|
704
672
|
new Effect.Move(effect.element,
|
705
|
-
{ x:
|
673
|
+
{ x: distance*2, y: 0, duration: split*2, afterFinishInternal: function(effect) {
|
706
674
|
new Effect.Move(effect.element,
|
707
|
-
{ x: -
|
675
|
+
{ x: -distance, y: 0, duration: split, afterFinishInternal: function(effect) {
|
708
676
|
effect.element.undoPositioned().setStyle(oldStyle);
|
709
677
|
}}) }}) }}) }}) }}) }});
|
710
|
-
}
|
678
|
+
};
|
711
679
|
|
712
680
|
Effect.SlideDown = function(element) {
|
713
681
|
element = $(element).cleanWhitespace();
|
@@ -723,7 +691,7 @@ Effect.SlideDown = function(element) {
|
|
723
691
|
afterSetup: function(effect) {
|
724
692
|
effect.element.makePositioned();
|
725
693
|
effect.element.down().makePositioned();
|
726
|
-
if(window.opera) effect.element.setStyle({top: ''});
|
694
|
+
if (window.opera) effect.element.setStyle({top: ''});
|
727
695
|
effect.element.makeClipping().setStyle({height: '0px'}).show();
|
728
696
|
},
|
729
697
|
afterUpdateInternal: function(effect) {
|
@@ -733,23 +701,25 @@ Effect.SlideDown = function(element) {
|
|
733
701
|
afterFinishInternal: function(effect) {
|
734
702
|
effect.element.undoClipping().undoPositioned();
|
735
703
|
effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); }
|
736
|
-
}, arguments[1] || {})
|
704
|
+
}, arguments[1] || { })
|
737
705
|
);
|
738
|
-
}
|
706
|
+
};
|
739
707
|
|
740
708
|
Effect.SlideUp = function(element) {
|
741
709
|
element = $(element).cleanWhitespace();
|
742
710
|
var oldInnerBottom = element.down().getStyle('bottom');
|
711
|
+
var elementDimensions = element.getDimensions();
|
743
712
|
return new Effect.Scale(element, window.opera ? 0 : 1,
|
744
713
|
Object.extend({ scaleContent: false,
|
745
714
|
scaleX: false,
|
746
715
|
scaleMode: 'box',
|
747
716
|
scaleFrom: 100,
|
717
|
+
scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
|
748
718
|
restoreAfterFinish: true,
|
749
|
-
|
719
|
+
afterSetup: function(effect) {
|
750
720
|
effect.element.makePositioned();
|
751
721
|
effect.element.down().makePositioned();
|
752
|
-
if(window.opera) effect.element.setStyle({top: ''});
|
722
|
+
if (window.opera) effect.element.setStyle({top: ''});
|
753
723
|
effect.element.makeClipping().show();
|
754
724
|
},
|
755
725
|
afterUpdateInternal: function(effect) {
|
@@ -757,12 +727,12 @@ Effect.SlideUp = function(element) {
|
|
757
727
|
(effect.dims[0] - effect.element.clientHeight) + 'px' });
|
758
728
|
},
|
759
729
|
afterFinishInternal: function(effect) {
|
760
|
-
effect.element.hide().undoClipping().undoPositioned()
|
761
|
-
effect.element.down().undoPositioned();
|
730
|
+
effect.element.hide().undoClipping().undoPositioned();
|
731
|
+
effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom});
|
762
732
|
}
|
763
|
-
}, arguments[1] || {})
|
733
|
+
}, arguments[1] || { })
|
764
734
|
);
|
765
|
-
}
|
735
|
+
};
|
766
736
|
|
767
737
|
// Bug in opera makes the TD containing this element expand for a instance after finish
|
768
738
|
Effect.Squish = function(element) {
|
@@ -775,7 +745,7 @@ Effect.Squish = function(element) {
|
|
775
745
|
effect.element.hide().undoClipping();
|
776
746
|
}
|
777
747
|
});
|
778
|
-
}
|
748
|
+
};
|
779
749
|
|
780
750
|
Effect.Grow = function(element) {
|
781
751
|
element = $(element);
|
@@ -784,7 +754,7 @@ Effect.Grow = function(element) {
|
|
784
754
|
moveTransition: Effect.Transitions.sinoidal,
|
785
755
|
scaleTransition: Effect.Transitions.sinoidal,
|
786
756
|
opacityTransition: Effect.Transitions.full
|
787
|
-
}, arguments[1] || {});
|
757
|
+
}, arguments[1] || { });
|
788
758
|
var oldStyle = {
|
789
759
|
top: element.style.top,
|
790
760
|
left: element.style.left,
|
@@ -849,7 +819,7 @@ Effect.Grow = function(element) {
|
|
849
819
|
)
|
850
820
|
}
|
851
821
|
});
|
852
|
-
}
|
822
|
+
};
|
853
823
|
|
854
824
|
Effect.Shrink = function(element) {
|
855
825
|
element = $(element);
|
@@ -858,7 +828,7 @@ Effect.Shrink = function(element) {
|
|
858
828
|
moveTransition: Effect.Transitions.sinoidal,
|
859
829
|
scaleTransition: Effect.Transitions.sinoidal,
|
860
830
|
opacityTransition: Effect.Transitions.none
|
861
|
-
}, arguments[1] || {});
|
831
|
+
}, arguments[1] || { });
|
862
832
|
var oldStyle = {
|
863
833
|
top: element.style.top,
|
864
834
|
left: element.style.left,
|
@@ -903,11 +873,11 @@ Effect.Shrink = function(element) {
|
|
903
873
|
effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); }
|
904
874
|
}, options)
|
905
875
|
);
|
906
|
-
}
|
876
|
+
};
|
907
877
|
|
908
878
|
Effect.Pulsate = function(element) {
|
909
879
|
element = $(element);
|
910
|
-
var options = arguments[1] || {};
|
880
|
+
var options = arguments[1] || { };
|
911
881
|
var oldOpacity = element.getInlineOpacity();
|
912
882
|
var transition = options.transition || Effect.Transitions.sinoidal;
|
913
883
|
var reverser = function(pos){ return transition(1-Effect.Transitions.pulse(pos, options.pulses)) };
|
@@ -916,7 +886,7 @@ Effect.Pulsate = function(element) {
|
|
916
886
|
Object.extend(Object.extend({ duration: 2.0, from: 0,
|
917
887
|
afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
|
918
888
|
}, options), {transition: reverser}));
|
919
|
-
}
|
889
|
+
};
|
920
890
|
|
921
891
|
Effect.Fold = function(element) {
|
922
892
|
element = $(element);
|
@@ -936,37 +906,71 @@ Effect.Fold = function(element) {
|
|
936
906
|
afterFinishInternal: function(effect) {
|
937
907
|
effect.element.hide().undoClipping().setStyle(oldStyle);
|
938
908
|
} });
|
939
|
-
}}, arguments[1] || {}));
|
909
|
+
}}, arguments[1] || { }));
|
940
910
|
};
|
941
911
|
|
942
|
-
Effect.Morph = Class.create(
|
943
|
-
Object.extend(Object.extend(Effect.Morph.prototype, Effect.Base.prototype), {
|
912
|
+
Effect.Morph = Class.create(Effect.Base, {
|
944
913
|
initialize: function(element) {
|
945
914
|
this.element = $(element);
|
946
|
-
if(!this.element) throw(Effect._elementDoesNotExistError);
|
915
|
+
if (!this.element) throw(Effect._elementDoesNotExistError);
|
947
916
|
var options = Object.extend({
|
948
|
-
style:
|
949
|
-
}, arguments[1] || {});
|
917
|
+
style: { }
|
918
|
+
}, arguments[1] || { });
|
919
|
+
|
920
|
+
if (!Object.isString(options.style)) this.style = $H(options.style);
|
921
|
+
else {
|
922
|
+
if (options.style.include(':'))
|
923
|
+
this.style = options.style.parseStyle();
|
924
|
+
else {
|
925
|
+
this.element.addClassName(options.style);
|
926
|
+
this.style = $H(this.element.getStyles());
|
927
|
+
this.element.removeClassName(options.style);
|
928
|
+
var css = this.element.getStyles();
|
929
|
+
this.style = this.style.reject(function(style) {
|
930
|
+
return style.value == css[style.key];
|
931
|
+
});
|
932
|
+
options.afterFinishInternal = function(effect) {
|
933
|
+
effect.element.addClassName(effect.options.style);
|
934
|
+
effect.transforms.each(function(transform) {
|
935
|
+
effect.element.style[transform.style] = '';
|
936
|
+
});
|
937
|
+
}
|
938
|
+
}
|
939
|
+
}
|
950
940
|
this.start(options);
|
951
941
|
},
|
942
|
+
|
952
943
|
setup: function(){
|
953
944
|
function parseColor(color){
|
954
|
-
if(!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff';
|
945
|
+
if (!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff';
|
955
946
|
color = color.parseColor();
|
956
947
|
return $R(0,2).map(function(i){
|
957
948
|
return parseInt( color.slice(i*2+1,i*2+3), 16 )
|
958
949
|
});
|
959
950
|
}
|
960
|
-
this.transforms = this.
|
961
|
-
var
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
951
|
+
this.transforms = this.style.map(function(pair){
|
952
|
+
var property = pair[0], value = pair[1], unit = null;
|
953
|
+
|
954
|
+
if (value.parseColor('#zzzzzz') != '#zzzzzz') {
|
955
|
+
value = value.parseColor();
|
956
|
+
unit = 'color';
|
957
|
+
} else if (property == 'opacity') {
|
958
|
+
value = parseFloat(value);
|
959
|
+
if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout))
|
960
|
+
this.element.setStyle({zoom: 1});
|
961
|
+
} else if (Element.CSS_LENGTH.test(value)) {
|
962
|
+
var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/);
|
963
|
+
value = parseFloat(components[1]);
|
964
|
+
unit = (components.length == 3) ? components[2] : null;
|
965
|
+
}
|
966
|
+
|
967
|
+
var originalValue = this.element.getStyle(property);
|
968
|
+
return {
|
969
|
+
style: property.camelize(),
|
970
|
+
originalValue: unit=='color' ? parseColor(originalValue) : parseFloat(originalValue || 0),
|
971
|
+
targetValue: unit=='color' ? parseColor(value) : value,
|
972
|
+
unit: unit
|
973
|
+
};
|
970
974
|
}.bind(this)).reject(function(transform){
|
971
975
|
return (
|
972
976
|
(transform.originalValue == transform.targetValue) ||
|
@@ -978,32 +982,35 @@ Object.extend(Object.extend(Effect.Morph.prototype, Effect.Base.prototype), {
|
|
978
982
|
});
|
979
983
|
},
|
980
984
|
update: function(position) {
|
981
|
-
var style =
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
(transform.targetValue[
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
985
|
+
var style = { }, transform, i = this.transforms.length;
|
986
|
+
while(i--)
|
987
|
+
style[(transform = this.transforms[i]).style] =
|
988
|
+
transform.unit=='color' ? '#'+
|
989
|
+
(Math.round(transform.originalValue[0]+
|
990
|
+
(transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart() +
|
991
|
+
(Math.round(transform.originalValue[1]+
|
992
|
+
(transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart() +
|
993
|
+
(Math.round(transform.originalValue[2]+
|
994
|
+
(transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart() :
|
995
|
+
(transform.originalValue +
|
996
|
+
(transform.targetValue - transform.originalValue) * position).toFixed(3) +
|
997
|
+
(transform.unit === null ? '' : transform.unit);
|
998
|
+
this.element.setStyle(style, true);
|
992
999
|
}
|
993
1000
|
});
|
994
1001
|
|
995
|
-
Effect.Transform = Class.create(
|
996
|
-
Object.extend(Effect.Transform.prototype, {
|
1002
|
+
Effect.Transform = Class.create({
|
997
1003
|
initialize: function(tracks){
|
998
1004
|
this.tracks = [];
|
999
|
-
this.options = arguments[1] || {};
|
1005
|
+
this.options = arguments[1] || { };
|
1000
1006
|
this.addTracks(tracks);
|
1001
1007
|
},
|
1002
1008
|
addTracks: function(tracks){
|
1003
1009
|
tracks.each(function(track){
|
1004
|
-
|
1010
|
+
track = $H(track);
|
1011
|
+
var data = track.values().first();
|
1005
1012
|
this.tracks.push($H({
|
1006
|
-
ids:
|
1013
|
+
ids: track.keys().first(),
|
1007
1014
|
effect: Effect.Morph,
|
1008
1015
|
options: { style: data }
|
1009
1016
|
}));
|
@@ -1013,76 +1020,101 @@ Object.extend(Effect.Transform.prototype, {
|
|
1013
1020
|
play: function(){
|
1014
1021
|
return new Effect.Parallel(
|
1015
1022
|
this.tracks.map(function(track){
|
1016
|
-
var
|
1017
|
-
|
1023
|
+
var ids = track.get('ids'), effect = track.get('effect'), options = track.get('options');
|
1024
|
+
var elements = [$(ids) || $$(ids)].flatten();
|
1025
|
+
return elements.map(function(e){ return new effect(e, Object.extend({ sync:true }, options)) });
|
1018
1026
|
}).flatten(),
|
1019
1027
|
this.options
|
1020
1028
|
);
|
1021
1029
|
}
|
1022
1030
|
});
|
1023
1031
|
|
1024
|
-
Element.CSS_PROPERTIES =
|
1025
|
-
'backgroundPosition
|
1026
|
-
'borderBottomWidth
|
1027
|
-
'borderRightColor
|
1028
|
-
'borderTopStyle
|
1029
|
-
'
|
1030
|
-
'
|
1031
|
-
'
|
1032
|
-
'
|
1033
|
-
'
|
1034
|
-
'orphans', 'outlineColor', 'outlineOffset', 'outlineStyle', 'outlineWidth', 'overflowX', 'overflowY',
|
1035
|
-
'paddingBottom', 'paddingLeft', 'paddingRight', 'paddingTop', 'page', 'pageBreakAfter', 'pageBreakBefore',
|
1036
|
-
'pageBreakInside', 'pauseAfter', 'pauseBefore', 'pitch', 'pitchRange', 'position', 'quotes',
|
1037
|
-
'richness', 'right', 'size', 'speakHeader', 'speakNumeral', 'speakPunctuation', 'speechRate', 'stress',
|
1038
|
-
'tableLayout', 'textAlign', 'textDecoration', 'textIndent', 'textShadow', 'textTransform', 'top',
|
1039
|
-
'unicodeBidi', 'verticalAlign', 'visibility', 'voiceFamily', 'volume', 'whiteSpace', 'widows',
|
1040
|
-
'width', 'wordSpacing', 'zIndex'];
|
1032
|
+
Element.CSS_PROPERTIES = $w(
|
1033
|
+
'backgroundColor backgroundPosition borderBottomColor borderBottomStyle ' +
|
1034
|
+
'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth ' +
|
1035
|
+
'borderRightColor borderRightStyle borderRightWidth borderSpacing ' +
|
1036
|
+
'borderTopColor borderTopStyle borderTopWidth bottom clip color ' +
|
1037
|
+
'fontSize fontWeight height left letterSpacing lineHeight ' +
|
1038
|
+
'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+
|
1039
|
+
'maxWidth minHeight minWidth opacity outlineColor outlineOffset ' +
|
1040
|
+
'outlineWidth paddingBottom paddingLeft paddingRight paddingTop ' +
|
1041
|
+
'right textIndent top width wordSpacing zIndex');
|
1041
1042
|
|
1042
1043
|
Element.CSS_LENGTH = /^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;
|
1043
1044
|
|
1045
|
+
String.__parseStyleElement = document.createElement('div');
|
1044
1046
|
String.prototype.parseStyle = function(){
|
1045
|
-
var
|
1046
|
-
|
1047
|
-
|
1047
|
+
var style, styleRules = $H();
|
1048
|
+
if (Prototype.Browser.WebKit)
|
1049
|
+
style = new Element('div',{style:this}).style;
|
1050
|
+
else {
|
1051
|
+
String.__parseStyleElement.innerHTML = '<div style="' + this + '"></div>';
|
1052
|
+
style = String.__parseStyleElement.childNodes[0].style;
|
1053
|
+
}
|
1048
1054
|
|
1049
1055
|
Element.CSS_PROPERTIES.each(function(property){
|
1050
|
-
|
1056
|
+
if (style[property]) styleRules.set(property, style[property]);
|
1051
1057
|
});
|
1052
1058
|
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
if(value.parseColor('#zzzzzz') != '#zzzzzz') {
|
1059
|
-
value = value.parseColor();
|
1060
|
-
unit = 'color';
|
1061
|
-
} else if(Element.CSS_LENGTH.test(value))
|
1062
|
-
var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/),
|
1063
|
-
value = parseFloat(components[1]), unit = (components.length == 3) ? components[2] : null;
|
1064
|
-
|
1065
|
-
result[property.underscore().dasherize()] = $H({ value:value, unit:unit });
|
1066
|
-
}.bind(this));
|
1067
|
-
|
1068
|
-
return result;
|
1059
|
+
if (Prototype.Browser.IE && this.include('opacity'))
|
1060
|
+
styleRules.set('opacity', this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]);
|
1061
|
+
|
1062
|
+
return styleRules;
|
1069
1063
|
};
|
1070
1064
|
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1065
|
+
if (document.defaultView && document.defaultView.getComputedStyle) {
|
1066
|
+
Element.getStyles = function(element) {
|
1067
|
+
var css = document.defaultView.getComputedStyle($(element), null);
|
1068
|
+
return Element.CSS_PROPERTIES.inject({ }, function(styles, property) {
|
1069
|
+
styles[property] = css[property];
|
1070
|
+
return styles;
|
1071
|
+
});
|
1072
|
+
};
|
1073
|
+
} else {
|
1074
|
+
Element.getStyles = function(element) {
|
1075
|
+
element = $(element);
|
1076
|
+
var css = element.currentStyle, styles;
|
1077
|
+
styles = Element.CSS_PROPERTIES.inject({ }, function(hash, property) {
|
1078
|
+
hash.set(property, css[property]);
|
1079
|
+
return hash;
|
1080
|
+
});
|
1081
|
+
if (!styles.opacity) styles.set('opacity', element.getOpacity());
|
1082
|
+
return styles;
|
1083
|
+
};
|
1074
1084
|
};
|
1075
1085
|
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1086
|
+
Effect.Methods = {
|
1087
|
+
morph: function(element, style) {
|
1088
|
+
element = $(element);
|
1089
|
+
new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || { }));
|
1090
|
+
return element;
|
1091
|
+
},
|
1092
|
+
visualEffect: function(element, effect, options) {
|
1093
|
+
element = $(element)
|
1094
|
+
var s = effect.dasherize().camelize(), klass = s.charAt(0).toUpperCase() + s.substring(1);
|
1095
|
+
new Effect[klass](element, options);
|
1096
|
+
return element;
|
1097
|
+
},
|
1098
|
+
highlight: function(element, options) {
|
1099
|
+
element = $(element);
|
1100
|
+
new Effect.Highlight(element, options);
|
1101
|
+
return element;
|
1102
|
+
}
|
1103
|
+
};
|
1104
|
+
|
1105
|
+
$w('fade appear grow shrink fold blindUp blindDown slideUp slideDown '+
|
1106
|
+
'pulsate shake puff squish switchOff dropOut').each(
|
1107
|
+
function(effect) {
|
1108
|
+
Effect.Methods[effect] = function(element, options){
|
1109
|
+
element = $(element);
|
1110
|
+
Effect[effect.charAt(0).toUpperCase() + effect.substring(1)](element, options);
|
1111
|
+
return element;
|
1112
|
+
}
|
1113
|
+
}
|
1079
1114
|
);
|
1080
1115
|
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
new Effect[effect_class](element, options);
|
1085
|
-
return $(element);
|
1086
|
-
};
|
1116
|
+
$w('getInlineOpacity forceRerendering setContentZoom collectTextNodes collectTextNodesIgnoreClass getStyles').each(
|
1117
|
+
function(f) { Effect.Methods[f] = Element[f]; }
|
1118
|
+
);
|
1087
1119
|
|
1088
|
-
Element.addMethods();
|
1120
|
+
Element.addMethods(Effect.Methods);
|