radiant-rc 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +489 -0
- data/CONTRIBUTORS +194 -0
- data/INSTALL +40 -0
- data/LICENSE +21 -0
- data/README +64 -0
- data/Rakefile +11 -0
- data/app/controllers/admin/export_controller.rb +5 -0
- data/app/controllers/admin/extensions_controller.rb +11 -0
- data/app/controllers/admin/layouts_controller.rb +13 -0
- data/app/controllers/admin/page_parts_controller.rb +9 -0
- data/app/controllers/admin/pages_controller.rb +55 -0
- data/app/controllers/admin/preferences_controller.rb +45 -0
- data/app/controllers/admin/references_controller.rb +7 -0
- data/app/controllers/admin/resource_controller.rb +173 -0
- data/app/controllers/admin/snippets_controller.rb +13 -0
- data/app/controllers/admin/users_controller.rb +25 -0
- data/app/controllers/admin/welcome_controller.rb +43 -0
- data/app/controllers/application_controller.rb +74 -0
- data/app/controllers/site_controller.rb +61 -0
- data/app/helpers/admin/abstract_model_helper.rb +2 -0
- data/app/helpers/admin/export_helper.rb +2 -0
- data/app/helpers/admin/extensions_helper.rb +2 -0
- data/app/helpers/admin/layouts_helper.rb +2 -0
- data/app/helpers/admin/node_helper.rb +87 -0
- data/app/helpers/admin/pages_helper.rb +112 -0
- data/app/helpers/admin/preferences_helper.rb +2 -0
- data/app/helpers/admin/references_helper.rb +42 -0
- data/app/helpers/admin/regions_helper.rb +28 -0
- data/app/helpers/admin/snippets_helper.rb +2 -0
- data/app/helpers/admin/users_helper.rb +8 -0
- data/app/helpers/admin/welcome_helper.rb +2 -0
- data/app/helpers/application_helper.rb +174 -0
- data/app/helpers/site_helper.rb +2 -0
- data/app/models/env_dump_page.rb +17 -0
- data/app/models/file_not_found_page.rb +28 -0
- data/app/models/layout.rb +16 -0
- data/app/models/page.rb +297 -0
- data/app/models/page_context.rb +46 -0
- data/app/models/page_part.rb +21 -0
- data/app/models/radiant/config.rb +100 -0
- data/app/models/radiant/exporter.rb +11 -0
- data/app/models/snippet.rb +19 -0
- data/app/models/standard_tags.rb +1057 -0
- data/app/models/status.rb +31 -0
- data/app/models/text_filter.rb +25 -0
- data/app/models/user.rb +97 -0
- data/app/models/user_action_observer.rb +13 -0
- data/app/views/admin/extensions/index.html.haml +41 -0
- data/app/views/admin/layouts/_form.html.haml +36 -0
- data/app/views/admin/layouts/edit.html.haml +9 -0
- data/app/views/admin/layouts/index.html.haml +35 -0
- data/app/views/admin/layouts/new.html.haml +7 -0
- data/app/views/admin/layouts/remove.html.haml +16 -0
- data/app/views/admin/page_parts/_page_part.html.haml +17 -0
- data/app/views/admin/pages/_fields.html.haml +56 -0
- data/app/views/admin/pages/_meta_row.html.haml +6 -0
- data/app/views/admin/pages/_node.html.haml +25 -0
- data/app/views/admin/pages/_popups.html.haml +14 -0
- data/app/views/admin/pages/children.html.haml +2 -0
- data/app/views/admin/pages/edit.html.haml +14 -0
- data/app/views/admin/pages/index.html.haml +26 -0
- data/app/views/admin/pages/new.html.haml +12 -0
- data/app/views/admin/pages/remove.html.haml +21 -0
- data/app/views/admin/preferences/edit.html.haml +36 -0
- data/app/views/admin/references/_tag_reference.haml +3 -0
- data/app/views/admin/references/filters.haml +6 -0
- data/app/views/admin/references/tags.haml +24 -0
- data/app/views/admin/snippets/_form.html.haml +28 -0
- data/app/views/admin/snippets/edit.html.haml +9 -0
- data/app/views/admin/snippets/index.html.haml +33 -0
- data/app/views/admin/snippets/new.html.haml +7 -0
- data/app/views/admin/snippets/remove.html.haml +19 -0
- data/app/views/admin/users/_form.html.haml +45 -0
- data/app/views/admin/users/_password_fields.html.haml +16 -0
- data/app/views/admin/users/edit.html.haml +9 -0
- data/app/views/admin/users/index.html.haml +37 -0
- data/app/views/admin/users/new.html.haml +7 -0
- data/app/views/admin/users/remove.html.haml +18 -0
- data/app/views/admin/welcome/login.html.haml +24 -0
- data/app/views/layouts/application.html.haml +53 -0
- data/app/views/site/not_found.html.haml +3 -0
- data/bin/radiant +53 -0
- data/config/boot.rb +162 -0
- data/config/database.db2.yml +20 -0
- data/config/database.mysql.yml +25 -0
- data/config/database.postgresql.yml +25 -0
- data/config/database.sqlserver.yml +20 -0
- data/config/environment.rb +81 -0
- data/config/environments/development.rb +17 -0
- data/config/environments/production.rb +19 -0
- data/config/environments/test.rb +35 -0
- data/config/routes.rb +44 -0
- data/db/migrate/001_create_radiant_tables.rb +75 -0
- data/db/migrate/002_insert_initial_data.rb +12 -0
- data/db/migrate/003_rename_behavior_column.rb +9 -0
- data/db/migrate/004_rename_filter_column.rb +11 -0
- data/db/migrate/005_add_virtual_column_to_page.rb +9 -0
- data/db/migrate/006_integer_columns_to_boolean.rb +36 -0
- data/db/migrate/007_remove_virtual_column_from_page.rb +9 -0
- data/db/migrate/008_add_virtual_column_to_page_again.rb +9 -0
- data/db/migrate/009_add_content_type_field_to_layout.rb +9 -0
- data/db/migrate/010_merge_behaviors_and_pages.rb +57 -0
- data/db/migrate/011_rename_type_column_on_page_to_class_name.rb +9 -0
- data/db/migrate/012_create_extension_meta.rb +13 -0
- data/db/migrate/013_add_notes_field_to_user.rb +9 -0
- data/db/migrate/014_rename_config_default_parts_key.rb +17 -0
- data/db/migrate/015_add_optimistic_locking.rb +15 -0
- data/db/migrate/016_add_sessions.rb +16 -0
- 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/migrate/019_add_salt_to_users.rb +11 -0
- data/db/migrate/020_add_session_info_to_users.rb +11 -0
- data/db/migrate/021_remove_session_expire_from_users.rb +9 -0
- data/db/migrate/20081203140407_add_indexes.rb +19 -0
- data/db/migrate/20090929164633_rename_developer_role_to_designer.rb +9 -0
- data/db/schema.rb +112 -0
- data/db/templates/empty.yml +2 -0
- data/db/templates/roasters.yml +1210 -0
- data/db/templates/simple-blog.yml +197 -0
- data/db/templates/styled-blog.yml +472 -0
- data/features/admin/content_negotiation.feature +24 -0
- data/features/admin/layouts_management.feature +10 -0
- data/features/admin/pages_management.feature +72 -0
- data/features/admin/snippets_management.feature +56 -0
- data/features/admin/user_permissions.feature +157 -0
- data/features/admin/user_preferences.feature +18 -0
- data/features/admin/users_management.feature +62 -0
- data/features/page_serving.feature +42 -0
- data/features/step_definitions/admin/admin_steps.rb +31 -0
- data/features/step_definitions/admin/content_negotiation_steps.rb +37 -0
- data/features/step_definitions/admin/pages_management_steps.rb +14 -0
- data/features/step_definitions/admin/users_management_steps.rb +15 -0
- data/features/step_definitions/page_serving_steps.rb +65 -0
- data/features/step_definitions/webrat_steps.rb +125 -0
- data/features/support/env.rb +24 -0
- data/features/support/paths.rb +21 -0
- data/lib/annotatable.rb +68 -0
- data/lib/autotest/discover.rb +3 -0
- data/lib/autotest/radiant_rails_rspec.rb +111 -0
- data/lib/generators/extension/USAGE +30 -0
- data/lib/generators/extension/extension_generator.rb +65 -0
- data/lib/generators/extension/templates/README +3 -0
- data/lib/generators/extension/templates/RSpecRakefile +123 -0
- data/lib/generators/extension/templates/Rakefile +25 -0
- data/lib/generators/extension/templates/cucumber.yml +1 -0
- data/lib/generators/extension/templates/cucumber_env.rb +16 -0
- data/lib/generators/extension/templates/cucumber_paths.rb +14 -0
- data/lib/generators/extension/templates/extension.rb +18 -0
- data/lib/generators/extension/templates/functional_test.rb +15 -0
- data/lib/generators/extension/templates/migration.rb +9 -0
- data/lib/generators/extension/templates/spec.opts +6 -0
- data/lib/generators/extension/templates/spec_helper.rb +36 -0
- data/lib/generators/extension/templates/tasks.rake +28 -0
- data/lib/generators/extension/templates/test_helper.rb +26 -0
- data/lib/generators/extension_controller/USAGE +36 -0
- data/lib/generators/extension_controller/extension_controller_generator.rb +84 -0
- data/lib/generators/extension_controller/templates/controller.rb +10 -0
- data/lib/generators/extension_controller/templates/controller_spec.rb +23 -0
- data/lib/generators/extension_controller/templates/functional_test.rb +11 -0
- data/lib/generators/extension_controller/templates/helper.rb +2 -0
- data/lib/generators/extension_controller/templates/helper_spec.rb +11 -0
- data/lib/generators/extension_controller/templates/helper_test.rb +4 -0
- data/lib/generators/extension_controller/templates/view.html.erb +2 -0
- data/lib/generators/extension_controller/templates/view_spec.rb +12 -0
- data/lib/generators/extension_mailer/USAGE +17 -0
- data/lib/generators/extension_mailer/extension_mailer_generator.rb +68 -0
- data/lib/generators/extension_mailer/templates/fixture.erb +3 -0
- data/lib/generators/extension_mailer/templates/mailer.rb +15 -0
- data/lib/generators/extension_mailer/templates/unit_test.rb +21 -0
- data/lib/generators/extension_mailer/templates/view.erb +3 -0
- data/lib/generators/extension_migration/USAGE +34 -0
- data/lib/generators/extension_migration/extension_migration_generator.rb +25 -0
- data/lib/generators/extension_migration/templates/migration.rb +11 -0
- data/lib/generators/extension_model/USAGE +35 -0
- data/lib/generators/extension_model/extension_model_generator.rb +68 -0
- data/lib/generators/extension_model/templates/fixtures.yml +19 -0
- data/lib/generators/extension_model/templates/migration.rb +16 -0
- data/lib/generators/extension_model/templates/model.rb +2 -0
- data/lib/generators/extension_model/templates/model_spec.rb +11 -0
- data/lib/generators/extension_model/templates/unit_test.rb +8 -0
- data/lib/generators/generator_base_extension.rb +16 -0
- data/lib/generators/instance/instance_generator.rb +117 -0
- data/lib/generators/instance/templates/databases/db2.yml +40 -0
- data/lib/generators/instance/templates/databases/mysql.yml +47 -0
- data/lib/generators/instance/templates/databases/postgresql.yml +44 -0
- data/lib/generators/instance/templates/databases/sqlite3.yml +16 -0
- data/lib/generators/instance/templates/databases/sqlserver.yml +20 -0
- data/lib/generators/instance/templates/instance_boot.rb +161 -0
- data/lib/generators/instance/templates/instance_environment.rb +81 -0
- data/lib/generators/instance/templates/instance_generate +18 -0
- data/lib/generators/instance/templates/instance_rakefile +3 -0
- data/lib/generators/instance/templates/instance_routes.rb +1 -0
- data/lib/inheritable_class_attributes.rb +65 -0
- data/lib/local_time.rb +6 -0
- data/lib/login_system.rb +128 -0
- data/lib/method_observer.rb +50 -0
- data/lib/plugins/active_record_extensions/init.rb +1 -0
- data/lib/plugins/active_record_extensions/lib/active_record_extensions.rb +47 -0
- data/lib/plugins/extension_patches/init.rb +1 -0
- data/lib/plugins/extension_patches/lib/routing_extension.rb +31 -0
- data/lib/plugins/object_extensions/init.rb +1 -0
- data/lib/plugins/object_extensions/lib/object_extensions.rb +5 -0
- data/lib/plugins/response_cache_timeout/init.rb +3 -0
- data/lib/plugins/string_extensions/init.rb +1 -0
- data/lib/plugins/string_extensions/lib/string_extensions.rb +23 -0
- data/lib/plugins/symbol_extensions/init.rb +1 -0
- data/lib/plugins/symbol_extensions/lib/symbol_extensions.rb +5 -0
- data/lib/radiant.rb +18 -0
- data/lib/radiant/admin_ui.rb +230 -0
- data/lib/radiant/admin_ui/region_partials.rb +18 -0
- data/lib/radiant/admin_ui/region_set.rb +35 -0
- data/lib/radiant/cache.rb +98 -0
- data/lib/radiant/extension.rb +100 -0
- data/lib/radiant/extension/script.rb +347 -0
- data/lib/radiant/extension_loader.rb +153 -0
- data/lib/radiant/extension_migrator.rb +86 -0
- data/lib/radiant/initializer.rb +244 -0
- data/lib/radiant/legacy_routes.rb +72 -0
- data/lib/radiant/resource_responses.rb +115 -0
- data/lib/radiant/setup.rb +212 -0
- data/lib/radiant/taggable.rb +91 -0
- data/lib/simpleton.rb +21 -0
- data/lib/task_support.rb +33 -0
- data/lib/tasks/cucumber.rake +21 -0
- data/lib/tasks/database.rake +31 -0
- data/lib/tasks/environments.rake +11 -0
- data/lib/tasks/extensions.rake +86 -0
- data/lib/tasks/framework.rake +171 -0
- data/lib/tasks/instance.rake +23 -0
- data/lib/tasks/prototype.rake +34 -0
- data/lib/tasks/radiant_config.rake +18 -0
- data/lib/tasks/release.rake +121 -0
- data/lib/tasks/rspec.rake +221 -0
- data/lib/tasks/undefine.rake +28 -0
- data/log/.keep +0 -0
- data/public/.htaccess +40 -0
- data/public/404.html +8 -0
- data/public/500.html +8 -0
- data/public/dispatch.cgi +10 -0
- data/public/dispatch.fcgi +24 -0
- data/public/dispatch.rb +10 -0
- data/public/favicon.ico +0 -0
- data/public/images/admin/add_child.png +0 -0
- data/public/images/admin/add_tab.png +0 -0
- data/public/images/admin/avatar_32x32.png +0 -0
- data/public/images/admin/brown_bottom_line.gif +0 -0
- data/public/images/admin/buttons_background.png +0 -0
- data/public/images/admin/collapse.png +0 -0
- data/public/images/admin/draft_page.png +0 -0
- data/public/images/admin/expand.png +0 -0
- data/public/images/admin/layout.png +0 -0
- data/public/images/admin/login_shadow.png +0 -0
- data/public/images/admin/metadata_toggle.png +0 -0
- data/public/images/admin/minus.png +0 -0
- data/public/images/admin/minus_grey.png +0 -0
- data/public/images/admin/navigation_background.gif +0 -0
- data/public/images/admin/navigation_secondary_background.png +0 -0
- data/public/images/admin/navigation_secondary_separator.gif +0 -0
- data/public/images/admin/navigation_shadow.png +0 -0
- data/public/images/admin/navigation_tabs.png +0 -0
- data/public/images/admin/new_homepage.png +0 -0
- data/public/images/admin/new_layout.png +0 -0
- data/public/images/admin/new_snippet.png +0 -0
- data/public/images/admin/new_user.png +0 -0
- data/public/images/admin/page.png +0 -0
- data/public/images/admin/plus.png +0 -0
- data/public/images/admin/plus_grey.png +0 -0
- data/public/images/admin/popup_border_background.png +0 -0
- data/public/images/admin/popup_border_bottom_left.png +0 -0
- data/public/images/admin/popup_border_bottom_right.png +0 -0
- data/public/images/admin/popup_border_top_left.png +0 -0
- data/public/images/admin/popup_border_top_right.png +0 -0
- data/public/images/admin/remove.png +0 -0
- data/public/images/admin/remove_disabled.png +0 -0
- data/public/images/admin/snippet.png +0 -0
- data/public/images/admin/spacer.gif +0 -0
- data/public/images/admin/spinner.gif +0 -0
- data/public/images/admin/status_background.png +0 -0
- data/public/images/admin/status_bottom_left.png +0 -0
- data/public/images/admin/status_bottom_right.png +0 -0
- data/public/images/admin/status_spinner.gif +0 -0
- data/public/images/admin/status_top_left.png +0 -0
- data/public/images/admin/status_top_right.png +0 -0
- data/public/images/admin/tab_close.png +0 -0
- data/public/images/admin/vertical_tan_gradient.png +0 -0
- data/public/images/admin/view_site.png +0 -0
- data/public/images/admin/virtual_page.png +0 -0
- data/public/javascripts/admin/application.js +52 -0
- data/public/javascripts/admin/codearea.js +165 -0
- data/public/javascripts/admin/controls.js +965 -0
- data/public/javascripts/admin/cookie.js +80 -0
- data/public/javascripts/admin/dragdrop.js +974 -0
- data/public/javascripts/admin/effects.js +1122 -0
- data/public/javascripts/admin/lowpro.js +339 -0
- data/public/javascripts/admin/pngfix.js +39 -0
- data/public/javascripts/admin/popup.js +216 -0
- data/public/javascripts/admin/prototype.js +4184 -0
- data/public/javascripts/admin/ruledtable.js +13 -0
- data/public/javascripts/admin/shortcuts.js +27 -0
- data/public/javascripts/admin/sitemap.js +150 -0
- data/public/javascripts/admin/status.js +198 -0
- data/public/javascripts/admin/tabcontrol.js +141 -0
- data/public/javascripts/admin/utility.js +52 -0
- data/public/robots.txt +1 -0
- data/public/stylesheets/admin/main.css +907 -0
- data/public/stylesheets/sass/admin/_avatars.sass +4 -0
- data/public/stylesheets/sass/admin/_base.sass +61 -0
- data/public/stylesheets/sass/admin/_content.sass +215 -0
- data/public/stylesheets/sass/admin/_footer.sass +12 -0
- data/public/stylesheets/sass/admin/_forms.sass +269 -0
- data/public/stylesheets/sass/admin/_header.sass +117 -0
- data/public/stylesheets/sass/admin/_layout.sass +10 -0
- data/public/stylesheets/sass/admin/_messages.sass +10 -0
- data/public/stylesheets/sass/admin/_popup.sass +116 -0
- data/public/stylesheets/sass/admin/_reset.sass +36 -0
- data/public/stylesheets/sass/admin/_status.sass +8 -0
- data/public/stylesheets/sass/admin/_tabcontrol.sass +74 -0
- data/public/stylesheets/sass/admin/main.sass +14 -0
- data/public/stylesheets/sass/admin/styles.sass +13 -0
- data/script/about +3 -0
- data/script/autospec +5 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/cucumber +8 -0
- data/script/dbconsole +3 -0
- data/script/destroy +3 -0
- data/script/extension +5 -0
- data/script/generate +4 -0
- data/script/performance/benchmarker +3 -0
- data/script/performance/profiler +3 -0
- data/script/performance/request +3 -0
- data/script/plugin +3 -0
- data/script/process/inspector +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/process/spinner +3 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/script/spec +5 -0
- data/script/spec_server +116 -0
- data/script/version +5 -0
- data/spec/controllers/admin/export_controller_spec.rb +16 -0
- data/spec/controllers/admin/extensions_controller_spec.rb +36 -0
- data/spec/controllers/admin/layouts_controller_spec.rb +102 -0
- data/spec/controllers/admin/pages_controller_spec.rb +241 -0
- data/spec/controllers/admin/preferences_controller_spec.rb +43 -0
- data/spec/controllers/admin/references_controller_spec.rb +15 -0
- data/spec/controllers/admin/snippets_controller_spec.rb +110 -0
- data/spec/controllers/admin/users_controller_spec.rb +92 -0
- data/spec/controllers/admin/welcome_controller_spec.rb +98 -0
- data/spec/controllers/application_controller_spec.rb +88 -0
- data/spec/controllers/site_controller_spec.rb +135 -0
- data/spec/datasets/config_dataset.rb +11 -0
- data/spec/datasets/file_not_found_dataset.rb +22 -0
- data/spec/datasets/home_page_dataset.rb +64 -0
- data/spec/datasets/layouts_dataset.rb +58 -0
- data/spec/datasets/markup_pages_dataset.rb +13 -0
- data/spec/datasets/pages_dataset.rb +61 -0
- data/spec/datasets/pages_with_layouts_dataset.rb +10 -0
- data/spec/datasets/snippets_dataset.rb +38 -0
- data/spec/datasets/users_and_pages_dataset.rb +9 -0
- data/spec/datasets/users_dataset.rb +43 -0
- data/spec/fixtures/example_extension/README +3 -0
- data/spec/fixtures/example_extension/Rakefile +120 -0
- data/spec/fixtures/example_extension/example_extension.rb +21 -0
- data/spec/fixtures/example_extension/lib/tasks/example_extension_tasks.rake +28 -0
- data/spec/fixtures/example_extension/spec/spec.opts +6 -0
- data/spec/fixtures/example_extension/spec/spec_helper.rb +36 -0
- data/spec/fixtures/radiant_config.yml +10 -0
- data/spec/fixtures/sample.txt +1 -0
- data/spec/generators/extension_controller_generator_spec.rb +85 -0
- data/spec/generators/extension_generator_spec.rb +184 -0
- data/spec/generators/extension_generators_spec_helper.rb +139 -0
- data/spec/generators/extension_mailer_generator_spec.rb +60 -0
- data/spec/generators/extension_migration_generator_spec.rb +21 -0
- data/spec/generators/extension_model_generator_spec.rb +61 -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/extensions_helper_spec.rb +4 -0
- data/spec/helpers/admin/layouts_helper_spec.rb +4 -0
- data/spec/helpers/admin/node_helper_spec.rb +105 -0
- data/spec/helpers/admin/pages_helper_spec.rb +63 -0
- data/spec/helpers/admin/preferences_helper_spec.rb +11 -0
- data/spec/helpers/admin/references_helper_spec.rb +115 -0
- data/spec/helpers/admin/regions_helper_spec.rb +47 -0
- data/spec/helpers/admin/snippets_helper_spec.rb +4 -0
- data/spec/helpers/admin/users_helper_spec.rb +11 -0
- data/spec/helpers/admin/welcome_helper_spec.rb +4 -0
- data/spec/helpers/application_helper_spec.rb +164 -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/core_ext/string_ext_spec.rb +11 -0
- data/spec/lib/inheritable_class_attributes_spec.rb +90 -0
- data/spec/lib/login_system_spec.rb +195 -0
- data/spec/lib/method_observer_spec.rb +48 -0
- data/spec/lib/radiant/admin_ui/nav_tabs_spec.rb +167 -0
- data/spec/lib/radiant/admin_ui/region_partials_spec.rb +35 -0
- data/spec/lib/radiant/admin_ui/region_set_spec.rb +61 -0
- data/spec/lib/radiant/admin_ui_spec.rb +120 -0
- data/spec/lib/radiant/extension/script_spec.rb +456 -0
- data/spec/lib/radiant/extension_loader_spec.rb +218 -0
- data/spec/lib/radiant/extension_migrator_spec.rb +46 -0
- data/spec/lib/radiant/extension_spec.rb +101 -0
- data/spec/lib/radiant/initializer_spec.rb +131 -0
- data/spec/lib/radiant/legacy_routes_spec.rb +14 -0
- data/spec/lib/radiant/resource_responses_spec.rb +207 -0
- data/spec/lib/radiant/taggable_spec.rb +186 -0
- data/spec/lib/radiant_spec.rb +26 -0
- data/spec/lib/simpleton_spec.rb +45 -0
- data/spec/lib/task_support_spec.rb +42 -0
- data/spec/matchers/autotest_matchers.rb +47 -0
- data/spec/matchers/generator_matchers.rb +237 -0
- data/spec/matchers/login_system_matcher.rb +79 -0
- data/spec/matchers/render_form_errors_matcher.rb +62 -0
- data/spec/matchers/render_matcher.rb +120 -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 +66 -0
- data/spec/models/page_part_spec.rb +67 -0
- data/spec/models/page_spec.rb +609 -0
- data/spec/models/radiant/config_spec.rb +114 -0
- data/spec/models/radiant/exporter_spec.rb +25 -0
- data/spec/models/snippet_spec.rb +41 -0
- data/spec/models/standard_tags_spec.rb +1027 -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 +203 -0
- data/spec/rcov.opts +2 -0
- data/spec/spec.opts +4 -0
- data/spec/spec_helper.rb +74 -0
- data/test/fixtures/extensions/01_basic/app/controllers/basic_extension_controller.rb +7 -0
- data/test/fixtures/extensions/01_basic/app/metal/basic_metal.rb +9 -0
- data/test/fixtures/extensions/01_basic/app/models/basic_extension_mailer.rb +4 -0
- data/test/fixtures/extensions/01_basic/app/models/basic_extension_model.rb +2 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension/index.html.erb +1 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension/override.html.erb +1 -0
- data/test/fixtures/extensions/01_basic/app/views/basic_extension_mailer/message.text.html.erb +1 -0
- data/test/fixtures/extensions/01_basic/basic_extension.rb +14 -0
- data/test/fixtures/extensions/01_basic/db/migrate/200812131420_create_initial_schema.rb +10 -0
- data/test/fixtures/extensions/01_basic/db/migrate/200812131421_modify_initial_schema.rb +10 -0
- data/test/fixtures/extensions/01_basic/lib/new_module.rb +2 -0
- data/test/fixtures/extensions/01_basic/vendor/plugins/multiple/init.rb +1 -0
- data/test/fixtures/extensions/01_basic/vendor/plugins/multiple/lib/multiple.rb +2 -0
- data/test/fixtures/extensions/01_basic/vendor/plugins/plugin_normal/init.rb +1 -0
- data/test/fixtures/extensions/01_basic/vendor/plugins/plugin_normal/lib/normal_plugin.rb +2 -0
- data/test/fixtures/extensions/02_overriding/app/metal/basic_metal.rb +9 -0
- data/test/fixtures/extensions/02_overriding/app/views/basic_extension/override.html.erb +1 -0
- data/test/fixtures/extensions/02_overriding/overriding_extension.rb +8 -0
- data/test/fixtures/extensions/02_overriding/vendor/plugins/multiple/init.rb +1 -0
- data/test/fixtures/extensions/02_overriding/vendor/plugins/multiple/lib/multiple.rb +2 -0
- data/test/fixtures/extensions/03_upgrading/db/migrate/01_first.rb +7 -0
- data/test/fixtures/extensions/03_upgrading/db/migrate/02_second.rb +7 -0
- data/test/fixtures/extensions/03_upgrading/db/migrate/03_pending.rb +7 -0
- data/test/fixtures/extensions/03_upgrading/db/migrate/04_dont_run.rb +7 -0
- data/test/fixtures/extensions/03_upgrading/upgrading_extension.rb +2 -0
- data/test/fixtures/extensions/load_order_blue/load_order_blue_extension.rb +8 -0
- data/test/fixtures/extensions/load_order_green/load_order_green_extension.rb +8 -0
- data/test/fixtures/extensions/load_order_red/load_order_red_extension.rb +8 -0
- data/test/fixtures/extensions/special_characters/db/migrate/001_create_initial_schema.rb +10 -0
- data/test/fixtures/extensions/special_characters/special_characters_extension.rb +3 -0
- data/test/helpers/page_test_helper.rb +79 -0
- data/test/helpers/render_test_helper.rb +60 -0
- data/test/helpers/user_test_helper.rb +35 -0
- data/test/helpers/validation_test_helper.rb +42 -0
- data/test/test_helper.rb +64 -0
- data/vendor/extensions/archive/README +29 -0
- data/vendor/extensions/archive/Rakefile +120 -0
- data/vendor/extensions/archive/app/models/archive_day_index_page.rb +28 -0
- data/vendor/extensions/archive/app/models/archive_finder.rb +55 -0
- data/vendor/extensions/archive/app/models/archive_month_index_page.rb +28 -0
- data/vendor/extensions/archive/app/models/archive_page.rb +36 -0
- data/vendor/extensions/archive/app/models/archive_year_index_page.rb +28 -0
- data/vendor/extensions/archive/archive_extension.rb +19 -0
- data/vendor/extensions/archive/lib/archive_index_tags_and_methods.rb +57 -0
- data/vendor/extensions/archive/lib/tasks/archive_extension_tasks.rake +28 -0
- data/vendor/extensions/archive/spec/datasets/archive_dataset.rb +51 -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/spec.opts +6 -0
- data/vendor/extensions/archive/spec/spec_helper.rb +36 -0
- data/vendor/extensions/archive/test/fixtures/pages.yml +397 -0
- data/vendor/extensions/archive/test/functional/archive_extension_test.rb +16 -0
- data/vendor/extensions/archive/test/helpers/archive_index_test_helper.rb +37 -0
- data/vendor/extensions/archive/test/test_helper.rb +26 -0
- data/vendor/extensions/archive/test/unit/archive_day_index_page_test.rb +22 -0
- data/vendor/extensions/archive/test/unit/archive_month_index_page_test.rb +22 -0
- data/vendor/extensions/archive/test/unit/archive_page_test.rb +40 -0
- data/vendor/extensions/archive/test/unit/archive_year_index_page_test.rb +22 -0
- data/vendor/extensions/markdown_filter/README +1 -0
- data/vendor/extensions/markdown_filter/Rakefile +120 -0
- data/vendor/extensions/markdown_filter/lib/markdown_filter.rb +10 -0
- data/vendor/extensions/markdown_filter/lib/markdown_tags.rb +33 -0
- data/vendor/extensions/markdown_filter/lib/smarty_pants_filter.rb +7 -0
- data/vendor/extensions/markdown_filter/lib/tasks/markdown_filter_extension_tasks.rake +28 -0
- data/vendor/extensions/markdown_filter/markdown.html +123 -0
- data/vendor/extensions/markdown_filter/markdown_filter_extension.rb +27 -0
- data/vendor/extensions/markdown_filter/smartypants.html +47 -0
- data/vendor/extensions/markdown_filter/spec/models/markdown_filter_spec.rb +22 -0
- data/vendor/extensions/markdown_filter/spec/models/smarty_pants_filter_spec.rb +19 -0
- data/vendor/extensions/markdown_filter/spec/spec.opts +6 -0
- data/vendor/extensions/markdown_filter/spec/spec_helper.rb +36 -0
- data/vendor/extensions/markdown_filter/test/test_helper.rb +19 -0
- data/vendor/extensions/markdown_filter/test/unit/markdown_filter_test.rb +18 -0
- data/vendor/extensions/markdown_filter/test/unit/smarty_pants_filter_test.rb +14 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/CHANGES +366 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/LICENSE +340 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/README +99 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/bin/bluecloth +83 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/install.rb +150 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/lib/bluecloth.rb +1144 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/test.rb +117 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/bctestcase.rb +274 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/antsugar.txt +34 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
- data/vendor/extensions/markdown_filter/vendor/bluecloth/utils.rb +553 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/README +114 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/Rakefile +84 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/install.rb +9 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/rubypants.rb +490 -0
- data/vendor/extensions/markdown_filter/vendor/rubypants/test_rubypants.rb +162 -0
- data/vendor/extensions/textile_filter/README +1 -0
- data/vendor/extensions/textile_filter/Rakefile +120 -0
- data/vendor/extensions/textile_filter/lib/tasks/textile_filter_extension_tasks.rake +0 -0
- data/vendor/extensions/textile_filter/lib/textile_filter.rb +6 -0
- data/vendor/extensions/textile_filter/lib/textile_tags.rb +24 -0
- data/vendor/extensions/textile_filter/spec/models/textile_filter_spec.rb +19 -0
- data/vendor/extensions/textile_filter/spec/spec.opts +6 -0
- data/vendor/extensions/textile_filter/spec/spec_helper.rb +36 -0
- data/vendor/extensions/textile_filter/test/test_helper.rb +19 -0
- data/vendor/extensions/textile_filter/test/unit/textile_filter_test.rb +13 -0
- data/vendor/extensions/textile_filter/textile.html +115 -0
- data/vendor/extensions/textile_filter/textile_filter_extension.rb +10 -0
- data/vendor/highline/CHANGELOG +222 -0
- data/vendor/highline/INSTALL +35 -0
- data/vendor/highline/LICENSE +7 -0
- data/vendor/highline/README +63 -0
- data/vendor/highline/Rakefile +82 -0
- data/vendor/highline/TODO +6 -0
- data/vendor/highline/examples/ansi_colors.rb +38 -0
- data/vendor/highline/examples/asking_for_arrays.rb +18 -0
- data/vendor/highline/examples/basic_usage.rb +75 -0
- data/vendor/highline/examples/color_scheme.rb +32 -0
- data/vendor/highline/examples/limit.rb +12 -0
- data/vendor/highline/examples/menus.rb +65 -0
- data/vendor/highline/examples/overwrite.rb +19 -0
- data/vendor/highline/examples/page_and_wrap.rb +322 -0
- data/vendor/highline/examples/password.rb +7 -0
- data/vendor/highline/examples/trapping_eof.rb +22 -0
- data/vendor/highline/examples/using_readline.rb +17 -0
- data/vendor/highline/lib/highline.rb +758 -0
- data/vendor/highline/lib/highline/color_scheme.rb +120 -0
- data/vendor/highline/lib/highline/compatibility.rb +17 -0
- data/vendor/highline/lib/highline/import.rb +43 -0
- data/vendor/highline/lib/highline/menu.rb +395 -0
- data/vendor/highline/lib/highline/question.rb +463 -0
- data/vendor/highline/lib/highline/system_extensions.rb +193 -0
- data/vendor/highline/setup.rb +1360 -0
- data/vendor/highline/test/tc_color_scheme.rb +56 -0
- data/vendor/highline/test/tc_highline.rb +823 -0
- data/vendor/highline/test/tc_import.rb +54 -0
- data/vendor/highline/test/tc_menu.rb +429 -0
- data/vendor/highline/test/ts_all.rb +15 -0
- 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/haml/FAQ +138 -0
- data/vendor/plugins/haml/MIT-LICENSE +20 -0
- data/vendor/plugins/haml/README.rdoc +319 -0
- data/vendor/plugins/haml/REVISION +1 -0
- data/vendor/plugins/haml/Rakefile +184 -0
- data/vendor/plugins/haml/VERSION +1 -0
- data/vendor/plugins/haml/bin/css2sass +7 -0
- data/vendor/plugins/haml/bin/haml +9 -0
- data/vendor/plugins/haml/bin/html2haml +7 -0
- data/vendor/plugins/haml/bin/sass +8 -0
- data/vendor/plugins/haml/extra/haml-mode.el +331 -0
- data/vendor/plugins/haml/extra/sass-mode.el +89 -0
- data/vendor/plugins/haml/init.rb +8 -0
- data/vendor/plugins/haml/lib/haml.rb +1018 -0
- data/vendor/plugins/haml/lib/haml/buffer.rb +240 -0
- data/vendor/plugins/haml/lib/haml/engine.rb +265 -0
- data/vendor/plugins/haml/lib/haml/error.rb +22 -0
- data/vendor/plugins/haml/lib/haml/exec.rb +374 -0
- data/vendor/plugins/haml/lib/haml/filters.rb +276 -0
- data/vendor/plugins/haml/lib/haml/helpers.rb +465 -0
- data/vendor/plugins/haml/lib/haml/helpers/action_view_extensions.rb +45 -0
- data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +181 -0
- data/vendor/plugins/haml/lib/haml/html.rb +222 -0
- data/vendor/plugins/haml/lib/haml/precompiler.rb +811 -0
- data/vendor/plugins/haml/lib/haml/template.rb +51 -0
- data/vendor/plugins/haml/lib/haml/template/patch.rb +58 -0
- data/vendor/plugins/haml/lib/haml/template/plugin.rb +72 -0
- data/vendor/plugins/haml/lib/haml/util.rb +23 -0
- data/vendor/plugins/haml/lib/haml/version.rb +47 -0
- data/vendor/plugins/haml/lib/sass.rb +873 -0
- data/vendor/plugins/haml/lib/sass/constant.rb +216 -0
- data/vendor/plugins/haml/lib/sass/constant/color.rb +101 -0
- data/vendor/plugins/haml/lib/sass/constant/literal.rb +54 -0
- data/vendor/plugins/haml/lib/sass/constant/nil.rb +9 -0
- data/vendor/plugins/haml/lib/sass/constant/number.rb +87 -0
- data/vendor/plugins/haml/lib/sass/constant/operation.rb +30 -0
- data/vendor/plugins/haml/lib/sass/constant/string.rb +22 -0
- data/vendor/plugins/haml/lib/sass/css.rb +394 -0
- data/vendor/plugins/haml/lib/sass/engine.rb +466 -0
- data/vendor/plugins/haml/lib/sass/error.rb +35 -0
- data/vendor/plugins/haml/lib/sass/plugin.rb +169 -0
- data/vendor/plugins/haml/lib/sass/plugin/merb.rb +56 -0
- data/vendor/plugins/haml/lib/sass/plugin/rails.rb +24 -0
- data/vendor/plugins/haml/lib/sass/tree/attr_node.rb +57 -0
- data/vendor/plugins/haml/lib/sass/tree/comment_node.rb +20 -0
- data/vendor/plugins/haml/lib/sass/tree/directive_node.rb +46 -0
- data/vendor/plugins/haml/lib/sass/tree/node.rb +46 -0
- data/vendor/plugins/haml/lib/sass/tree/rule_node.rb +93 -0
- data/vendor/plugins/haml/lib/sass/tree/value_node.rb +20 -0
- data/vendor/plugins/haml/rails/init.rb +1 -0
- data/vendor/plugins/haml/test/benchmark.rb +99 -0
- data/vendor/plugins/haml/test/haml/engine_test.rb +657 -0
- data/vendor/plugins/haml/test/haml/helper_test.rb +224 -0
- data/vendor/plugins/haml/test/haml/html2haml_test.rb +92 -0
- data/vendor/plugins/haml/test/haml/markaby/standard.mab +52 -0
- data/vendor/plugins/haml/test/haml/mocks/article.rb +6 -0
- data/vendor/plugins/haml/test/haml/results/content_for_layout.xhtml +15 -0
- data/vendor/plugins/haml/test/haml/results/eval_suppressed.xhtml +9 -0
- data/vendor/plugins/haml/test/haml/results/filters.xhtml +60 -0
- data/vendor/plugins/haml/test/haml/results/helpers.xhtml +93 -0
- data/vendor/plugins/haml/test/haml/results/helpful.xhtml +10 -0
- data/vendor/plugins/haml/test/haml/results/just_stuff.xhtml +68 -0
- data/vendor/plugins/haml/test/haml/results/list.xhtml +12 -0
- data/vendor/plugins/haml/test/haml/results/nuke_inner_whitespace.xhtml +40 -0
- data/vendor/plugins/haml/test/haml/results/nuke_outer_whitespace.xhtml +148 -0
- data/vendor/plugins/haml/test/haml/results/original_engine.xhtml +20 -0
- data/vendor/plugins/haml/test/haml/results/partial_layout.xhtml +5 -0
- data/vendor/plugins/haml/test/haml/results/partials.xhtml +21 -0
- data/vendor/plugins/haml/test/haml/results/render_layout.xhtml +3 -0
- data/vendor/plugins/haml/test/haml/results/silent_script.xhtml +74 -0
- data/vendor/plugins/haml/test/haml/results/standard.xhtml +42 -0
- data/vendor/plugins/haml/test/haml/results/tag_parsing.xhtml +23 -0
- data/vendor/plugins/haml/test/haml/results/very_basic.xhtml +5 -0
- data/vendor/plugins/haml/test/haml/results/whitespace_handling.xhtml +89 -0
- data/vendor/plugins/haml/test/haml/rhtml/_av_partial_1.rhtml +12 -0
- data/vendor/plugins/haml/test/haml/rhtml/_av_partial_2.rhtml +8 -0
- data/vendor/plugins/haml/test/haml/rhtml/action_view.rhtml +62 -0
- data/vendor/plugins/haml/test/haml/rhtml/standard.rhtml +54 -0
- data/vendor/plugins/haml/test/haml/template_test.rb +204 -0
- data/vendor/plugins/haml/test/haml/templates/_av_partial_1.haml +9 -0
- data/vendor/plugins/haml/test/haml/templates/_av_partial_1_ugly.haml +9 -0
- data/vendor/plugins/haml/test/haml/templates/_av_partial_2.haml +5 -0
- data/vendor/plugins/haml/test/haml/templates/_av_partial_2_ugly.haml +5 -0
- data/vendor/plugins/haml/test/haml/templates/_layout.erb +3 -0
- data/vendor/plugins/haml/test/haml/templates/_layout_for_partial.haml +3 -0
- data/vendor/plugins/haml/test/haml/templates/_partial.haml +8 -0
- data/vendor/plugins/haml/test/haml/templates/_text_area.haml +3 -0
- data/vendor/plugins/haml/test/haml/templates/action_view.haml +47 -0
- data/vendor/plugins/haml/test/haml/templates/action_view_ugly.haml +47 -0
- data/vendor/plugins/haml/test/haml/templates/breakage.haml +8 -0
- data/vendor/plugins/haml/test/haml/templates/content_for_layout.haml +10 -0
- data/vendor/plugins/haml/test/haml/templates/eval_suppressed.haml +11 -0
- data/vendor/plugins/haml/test/haml/templates/filters.haml +66 -0
- data/vendor/plugins/haml/test/haml/templates/helpers.haml +95 -0
- data/vendor/plugins/haml/test/haml/templates/helpful.haml +11 -0
- data/vendor/plugins/haml/test/haml/templates/just_stuff.haml +83 -0
- data/vendor/plugins/haml/test/haml/templates/list.haml +12 -0
- data/vendor/plugins/haml/test/haml/templates/nuke_inner_whitespace.haml +32 -0
- data/vendor/plugins/haml/test/haml/templates/nuke_outer_whitespace.haml +144 -0
- data/vendor/plugins/haml/test/haml/templates/original_engine.haml +17 -0
- data/vendor/plugins/haml/test/haml/templates/partial_layout.haml +3 -0
- data/vendor/plugins/haml/test/haml/templates/partialize.haml +1 -0
- data/vendor/plugins/haml/test/haml/templates/partials.haml +12 -0
- data/vendor/plugins/haml/test/haml/templates/render_layout.haml +2 -0
- data/vendor/plugins/haml/test/haml/templates/silent_script.haml +40 -0
- data/vendor/plugins/haml/test/haml/templates/standard.haml +42 -0
- data/vendor/plugins/haml/test/haml/templates/standard_ugly.haml +42 -0
- data/vendor/plugins/haml/test/haml/templates/tag_parsing.haml +21 -0
- data/vendor/plugins/haml/test/haml/templates/very_basic.haml +4 -0
- data/vendor/plugins/haml/test/haml/templates/whitespace_handling.haml +87 -0
- data/vendor/plugins/haml/test/linked_rails.rb +12 -0
- data/vendor/plugins/haml/test/sass/css2sass_test.rb +193 -0
- data/vendor/plugins/haml/test/sass/engine_test.rb +294 -0
- data/vendor/plugins/haml/test/sass/plugin_test.rb +161 -0
- data/vendor/plugins/haml/test/sass/results/alt.css +4 -0
- data/vendor/plugins/haml/test/sass/results/basic.css +9 -0
- data/vendor/plugins/haml/test/sass/results/compact.css +5 -0
- data/vendor/plugins/haml/test/sass/results/complex.css +87 -0
- data/vendor/plugins/haml/test/sass/results/compressed.css +1 -0
- data/vendor/plugins/haml/test/sass/results/constants.css +16 -0
- data/vendor/plugins/haml/test/sass/results/expanded.css +19 -0
- data/vendor/plugins/haml/test/sass/results/import.css +29 -0
- data/vendor/plugins/haml/test/sass/results/mixins.css +95 -0
- data/vendor/plugins/haml/test/sass/results/multiline.css +24 -0
- data/vendor/plugins/haml/test/sass/results/nested.css +22 -0
- data/vendor/plugins/haml/test/sass/results/parent_ref.css +13 -0
- data/vendor/plugins/haml/test/sass/results/subdir/nested_subdir/nested_subdir.css +1 -0
- data/vendor/plugins/haml/test/sass/results/subdir/subdir.css +1 -0
- data/vendor/plugins/haml/test/sass/templates/_partial.sass +2 -0
- data/vendor/plugins/haml/test/sass/templates/alt.sass +16 -0
- data/vendor/plugins/haml/test/sass/templates/basic.sass +23 -0
- data/vendor/plugins/haml/test/sass/templates/bork.sass +2 -0
- data/vendor/plugins/haml/test/sass/templates/bork2.sass +2 -0
- data/vendor/plugins/haml/test/sass/templates/compact.sass +17 -0
- data/vendor/plugins/haml/test/sass/templates/complex.sass +310 -0
- data/vendor/plugins/haml/test/sass/templates/compressed.sass +15 -0
- data/vendor/plugins/haml/test/sass/templates/constants.sass +100 -0
- data/vendor/plugins/haml/test/sass/templates/expanded.sass +17 -0
- data/vendor/plugins/haml/test/sass/templates/import.sass +11 -0
- data/vendor/plugins/haml/test/sass/templates/importee.sass +14 -0
- data/vendor/plugins/haml/test/sass/templates/mixins.sass +76 -0
- data/vendor/plugins/haml/test/sass/templates/multiline.sass +20 -0
- data/vendor/plugins/haml/test/sass/templates/nested.sass +25 -0
- data/vendor/plugins/haml/test/sass/templates/parent_ref.sass +25 -0
- data/vendor/plugins/haml/test/sass/templates/subdir/nested_subdir/nested_subdir.sass +3 -0
- data/vendor/plugins/haml/test/sass/templates/subdir/subdir.sass +6 -0
- data/vendor/plugins/haml/test/test_helper.rb +13 -0
- data/vendor/rack-cache/CHANGES +128 -0
- data/vendor/rack-cache/COPYING +18 -0
- data/vendor/rack-cache/README +110 -0
- data/vendor/rack-cache/Rakefile +137 -0
- data/vendor/rack-cache/TODO +31 -0
- data/vendor/rack-cache/doc/configuration.markdown +86 -0
- data/vendor/rack-cache/doc/faq.markdown +141 -0
- data/vendor/rack-cache/doc/index.markdown +118 -0
- data/vendor/rack-cache/doc/layout.html.erb +34 -0
- data/vendor/rack-cache/doc/license.markdown +24 -0
- data/vendor/rack-cache/doc/rack-cache.css +362 -0
- data/vendor/rack-cache/doc/server.ru +34 -0
- data/vendor/rack-cache/doc/storage.markdown +162 -0
- data/vendor/rack-cache/example/sinatra/app.rb +25 -0
- data/vendor/rack-cache/example/sinatra/views/index.erb +44 -0
- data/vendor/rack-cache/lib/rack/cache.rb +45 -0
- data/vendor/rack-cache/lib/rack/cache/cachecontrol.rb +193 -0
- data/vendor/rack-cache/lib/rack/cache/context.rb +233 -0
- data/vendor/rack-cache/lib/rack/cache/entitystore.rb +253 -0
- data/vendor/rack-cache/lib/rack/cache/key.rb +52 -0
- data/vendor/rack-cache/lib/rack/cache/metastore.rb +328 -0
- data/vendor/rack-cache/lib/rack/cache/options.rb +150 -0
- data/vendor/rack-cache/lib/rack/cache/request.rb +33 -0
- data/vendor/rack-cache/lib/rack/cache/response.rb +267 -0
- data/vendor/rack-cache/lib/rack/cache/storage.rb +49 -0
- data/vendor/rack-cache/rack-cache.gemspec +69 -0
- data/vendor/rack-cache/test/cache_test.rb +38 -0
- data/vendor/rack-cache/test/cachecontrol_test.rb +139 -0
- data/vendor/rack-cache/test/context_test.rb +727 -0
- data/vendor/rack-cache/test/entitystore_test.rb +189 -0
- data/vendor/rack-cache/test/key_test.rb +50 -0
- data/vendor/rack-cache/test/metastore_test.rb +263 -0
- data/vendor/rack-cache/test/options_test.rb +78 -0
- data/vendor/rack-cache/test/pony.jpg +0 -0
- data/vendor/rack-cache/test/request_test.rb +19 -0
- data/vendor/rack-cache/test/response_test.rb +178 -0
- data/vendor/rack-cache/test/spec_setup.rb +202 -0
- data/vendor/rack-cache/test/storage_test.rb +94 -0
- data/vendor/radius/CHANGELOG +33 -0
- data/vendor/radius/Manifest.txt +21 -0
- data/vendor/radius/QUICKSTART.rdoc +322 -0
- data/vendor/radius/README.rdoc +118 -0
- data/vendor/radius/Rakefile +31 -0
- data/vendor/radius/lib/radius.rb +10 -0
- data/vendor/radius/lib/radius/context.rb +139 -0
- data/vendor/radius/lib/radius/delegating_open_struct.rb +31 -0
- data/vendor/radius/lib/radius/error.rb +43 -0
- data/vendor/radius/lib/radius/parse_tag.rb +24 -0
- data/vendor/radius/lib/radius/parser.rb +65 -0
- data/vendor/radius/lib/radius/parser/scan.rb +1247 -0
- data/vendor/radius/lib/radius/parser/scan.rl +123 -0
- data/vendor/radius/lib/radius/tag_binding.rb +71 -0
- data/vendor/radius/lib/radius/tag_definitions.rb +78 -0
- data/vendor/radius/lib/radius/utility.rb +30 -0
- data/vendor/radius/lib/radius/version.rb +14 -0
- data/vendor/radius/radius.gemspec +38 -0
- data/vendor/radius/tasks/scan.rake +27 -0
- data/vendor/radius/test/context_test.rb +61 -0
- data/vendor/radius/test/parser_test.rb +290 -0
- data/vendor/radius/test/quickstart_test.rb +153 -0
- data/vendor/radius/test/test_helper.rb +28 -0
- data/vendor/rails/actionmailer/CHANGELOG +366 -0
- data/vendor/rails/actionmailer/MIT-LICENSE +21 -0
- data/vendor/rails/actionmailer/README +149 -0
- data/vendor/rails/actionmailer/Rakefile +99 -0
- data/vendor/rails/actionmailer/install.rb +30 -0
- data/vendor/rails/actionmailer/lib/action_mailer.rb +62 -0
- data/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
- data/vendor/rails/actionmailer/lib/action_mailer/base.rb +706 -0
- data/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +113 -0
- data/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +17 -0
- data/vendor/rails/actionmailer/lib/action_mailer/part.rb +107 -0
- data/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +55 -0
- data/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +61 -0
- data/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +64 -0
- data/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +68 -0
- data/vendor/rails/actionmailer/lib/action_mailer/utils.rb +7 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/text_format.rb +10 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail.rb +5 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/address.rb +426 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/attachments.rb +46 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/base64.rb +46 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/compat.rb +41 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/config.rb +67 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb +63 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/encode.rb +581 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb +960 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/index.rb +9 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb +1130 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/loader.rb +3 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mail.rb +578 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mailbox.rb +495 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/main.rb +6 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mbox.rb +3 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/net.rb +248 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/obsolete.rb +132 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/parser.rb +1476 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/port.rb +379 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/quoting.rb +118 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/require_arch.rb +58 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner.rb +49 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner_r.rb +261 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/stringio.rb +280 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/utils.rb +337 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/version.rb +39 -0
- data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +17 -0
- data/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
- data/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
- data/vendor/rails/actionmailer/test/abstract_unit.rb +62 -0
- data/vendor/rails/actionmailer/test/asset_host_test.rb +54 -0
- data/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
- data/vendor/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
- data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
- data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -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/raw_email +14 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
- data/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -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/raw_email_with_partially_quoted_subject +14 -0
- data/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/body_ivar.erb +2 -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.text.html.erb +10 -0
- 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.yaml.erb +1 -0
- 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.html.erb +3 -0
- data/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
- data/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
- data/vendor/rails/actionmailer/test/mail_layout_test.rb +123 -0
- data/vendor/rails/actionmailer/test/mail_render_test.rb +116 -0
- data/vendor/rails/actionmailer/test/mail_service_test.rb +1079 -0
- data/vendor/rails/actionmailer/test/quoting_test.rb +99 -0
- data/vendor/rails/actionmailer/test/test_helper_test.rb +129 -0
- data/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
- data/vendor/rails/actionmailer/test/url_test.rb +76 -0
- data/vendor/rails/actionpack/CHANGELOG +5172 -0
- data/vendor/rails/actionpack/MIT-LICENSE +21 -0
- data/vendor/rails/actionpack/README +409 -0
- data/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
- data/vendor/rails/actionpack/Rakefile +160 -0
- data/vendor/rails/actionpack/install.rb +30 -0
- data/vendor/rails/actionpack/lib/action_controller.rb +111 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +39 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +21 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +160 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +146 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +632 -0
- data/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +127 -0
- data/vendor/rails/actionpack/lib/action_controller/base.rb +1423 -0
- data/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +107 -0
- data/vendor/rails/actionpack/lib/action_controller/caching.rb +70 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/actions.rb +177 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +120 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/pages.rb +152 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/sweeper.rb +45 -0
- data/vendor/rails/actionpack/lib/action_controller/caching/sweeping.rb +55 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +15 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +112 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +24 -0
- data/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +77 -0
- data/vendor/rails/actionpack/lib/action_controller/cookies.rb +94 -0
- data/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +133 -0
- data/vendor/rails/actionpack/lib/action_controller/failsafe.rb +86 -0
- data/vendor/rails/actionpack/lib/action_controller/filters.rb +680 -0
- data/vendor/rails/actionpack/lib/action_controller/flash.rb +171 -0
- data/vendor/rails/actionpack/lib/action_controller/headers.rb +33 -0
- data/vendor/rails/actionpack/lib/action_controller/helpers.rb +225 -0
- data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +308 -0
- data/vendor/rails/actionpack/lib/action_controller/integration.rb +680 -0
- data/vendor/rails/actionpack/lib/action_controller/layout.rb +281 -0
- data/vendor/rails/actionpack/lib/action_controller/middleware_stack.rb +119 -0
- data/vendor/rails/actionpack/lib/action_controller/middlewares.rb +12 -0
- data/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +193 -0
- data/vendor/rails/actionpack/lib/action_controller/mime_type.rb +212 -0
- data/vendor/rails/actionpack/lib/action_controller/mime_types.rb +21 -0
- data/vendor/rails/actionpack/lib/action_controller/params_parser.rb +77 -0
- data/vendor/rails/actionpack/lib/action_controller/performance_test.rb +15 -0
- data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +204 -0
- data/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +104 -0
- data/vendor/rails/actionpack/lib/action_controller/reloader.rb +54 -0
- data/vendor/rails/actionpack/lib/action_controller/request.rb +493 -0
- data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +109 -0
- data/vendor/rails/actionpack/lib/action_controller/rescue.rb +183 -0
- data/vendor/rails/actionpack/lib/action_controller/resources.rb +682 -0
- data/vendor/rails/actionpack/lib/action_controller/response.rb +238 -0
- data/vendor/rails/actionpack/lib/action_controller/routing.rb +388 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/builder.rb +197 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/optimisations.rb +130 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb +167 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/route.rb +265 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +502 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/routing_ext.rb +49 -0
- data/vendor/rails/actionpack/lib/action_controller/routing/segments.rb +343 -0
- data/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +181 -0
- data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +221 -0
- data/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +51 -0
- data/vendor/rails/actionpack/lib/action_controller/session_management.rb +54 -0
- data/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
- data/vendor/rails/actionpack/lib/action_controller/streaming.rb +181 -0
- 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.erb +26 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
- data/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -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.erb +2 -0
- data/vendor/rails/actionpack/lib/action_controller/test_case.rb +204 -0
- data/vendor/rails/actionpack/lib/action_controller/test_process.rb +580 -0
- data/vendor/rails/actionpack/lib/action_controller/translation.rb +13 -0
- data/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +44 -0
- data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +216 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner.rb +16 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
- 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 +828 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
- data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
- data/vendor/rails/actionpack/lib/action_controller/verification.rb +130 -0
- data/vendor/rails/actionpack/lib/action_pack.rb +24 -0
- data/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
- data/vendor/rails/actionpack/lib/action_view.rb +58 -0
- data/vendor/rails/actionpack/lib/action_view/base.rb +357 -0
- data/vendor/rails/actionpack/lib/action_view/erb/util.rb +38 -0
- data/vendor/rails/actionpack/lib/action_view/helpers.rb +57 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +305 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +694 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +198 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +54 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +136 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +976 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +38 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +1053 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +600 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +487 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +208 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +303 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1305 -0
- 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 +58 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +251 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +226 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +150 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +587 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +39 -0
- data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +638 -0
- data/vendor/rails/actionpack/lib/action_view/inline_template.rb +19 -0
- data/vendor/rails/actionpack/lib/action_view/locale/en.yml +114 -0
- data/vendor/rails/actionpack/lib/action_view/partials.rb +240 -0
- data/vendor/rails/actionpack/lib/action_view/paths.rb +69 -0
- data/vendor/rails/actionpack/lib/action_view/reloadable_template.rb +117 -0
- data/vendor/rails/actionpack/lib/action_view/renderable.rb +95 -0
- data/vendor/rails/actionpack/lib/action_view/renderable_partial.rb +47 -0
- data/vendor/rails/actionpack/lib/action_view/template.rb +246 -0
- data/vendor/rails/actionpack/lib/action_view/template_error.rb +99 -0
- data/vendor/rails/actionpack/lib/action_view/template_handler.rb +34 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers.rb +48 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +17 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +22 -0
- data/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +13 -0
- data/vendor/rails/actionpack/lib/action_view/test_case.rb +87 -0
- data/vendor/rails/actionpack/lib/actionpack.rb +1 -0
- data/vendor/rails/actionpack/test/abstract_unit.rb +61 -0
- data/vendor/rails/actionpack/test/active_record_unit.rb +104 -0
- data/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +174 -0
- data/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +188 -0
- data/vendor/rails/actionpack/test/adv_attr_test.rb +20 -0
- data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +543 -0
- data/vendor/rails/actionpack/test/controller/addresses_render_test.rb +37 -0
- data/vendor/rails/actionpack/test/controller/assert_select_test.rb +734 -0
- data/vendor/rails/actionpack/test/controller/base_test.rb +217 -0
- data/vendor/rails/actionpack/test/controller/benchmark_test.rb +32 -0
- data/vendor/rails/actionpack/test/controller/caching_test.rb +729 -0
- data/vendor/rails/actionpack/test/controller/capture_test.rb +66 -0
- data/vendor/rails/actionpack/test/controller/content_type_test.rb +168 -0
- data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
- data/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
- data/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
- data/vendor/rails/actionpack/test/controller/cookie_test.rb +127 -0
- data/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
- data/vendor/rails/actionpack/test/controller/dispatcher_test.rb +144 -0
- data/vendor/rails/actionpack/test/controller/failsafe_test.rb +60 -0
- data/vendor/rails/actionpack/test/controller/fake_controllers.rb +33 -0
- data/vendor/rails/actionpack/test/controller/fake_models.rb +19 -0
- data/vendor/rails/actionpack/test/controller/filter_params_test.rb +51 -0
- data/vendor/rails/actionpack/test/controller/filters_test.rb +885 -0
- data/vendor/rails/actionpack/test/controller/flash_test.rb +147 -0
- data/vendor/rails/actionpack/test/controller/header_test.rb +14 -0
- data/vendor/rails/actionpack/test/controller/helper_test.rb +224 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/cdata_node_test.rb +15 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +148 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +89 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +273 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +238 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +50 -0
- data/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +131 -0
- data/vendor/rails/actionpack/test/controller/http_basic_authentication_test.rb +113 -0
- data/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +232 -0
- data/vendor/rails/actionpack/test/controller/integration_test.rb +445 -0
- data/vendor/rails/actionpack/test/controller/layout_test.rb +204 -0
- data/vendor/rails/actionpack/test/controller/logging_test.rb +46 -0
- data/vendor/rails/actionpack/test/controller/middleware_stack_test.rb +90 -0
- data/vendor/rails/actionpack/test/controller/mime_responds_test.rb +536 -0
- data/vendor/rails/actionpack/test/controller/mime_type_test.rb +93 -0
- data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +293 -0
- data/vendor/rails/actionpack/test/controller/rack_test.rb +311 -0
- data/vendor/rails/actionpack/test/controller/record_identifier_test.rb +139 -0
- data/vendor/rails/actionpack/test/controller/redirect_test.rb +285 -0
- data/vendor/rails/actionpack/test/controller/reloader_test.rb +124 -0
- data/vendor/rails/actionpack/test/controller/render_test.rb +1762 -0
- data/vendor/rails/actionpack/test/controller/request/json_params_parsing_test.rb +65 -0
- data/vendor/rails/actionpack/test/controller/request/multipart_params_parsing_test.rb +162 -0
- data/vendor/rails/actionpack/test/controller/request/query_string_parsing_test.rb +120 -0
- data/vendor/rails/actionpack/test/controller/request/test_request_test.rb +35 -0
- data/vendor/rails/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +146 -0
- data/vendor/rails/actionpack/test/controller/request/xml_params_parsing_test.rb +103 -0
- data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +247 -0
- data/vendor/rails/actionpack/test/controller/request_test.rb +395 -0
- data/vendor/rails/actionpack/test/controller/rescue_test.rb +536 -0
- data/vendor/rails/actionpack/test/controller/resources_test.rb +1393 -0
- data/vendor/rails/actionpack/test/controller/routing_test.rb +2583 -0
- data/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
- data/vendor/rails/actionpack/test/controller/send_file_test.rb +171 -0
- data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +216 -0
- data/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +127 -0
- data/vendor/rails/actionpack/test/controller/session/test_session_test.rb +58 -0
- data/vendor/rails/actionpack/test/controller/test_test.rb +700 -0
- data/vendor/rails/actionpack/test/controller/translation_test.rb +26 -0
- data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +385 -0
- data/vendor/rails/actionpack/test/controller/verification_test.rb +270 -0
- data/vendor/rails/actionpack/test/controller/view_paths_test.rb +141 -0
- data/vendor/rails/actionpack/test/controller/webservice_test.rb +260 -0
- data/vendor/rails/actionpack/test/fixtures/_top_level_partial.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
- data/vendor/rails/actionpack/test/fixtures/company.rb +10 -0
- data/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
- data/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +49 -0
- data/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
- data/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
- data/vendor/rails/actionpack/test/fixtures/developers/_developer.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
- data/vendor/rails/actionpack/test/fixtures/failsafe/500.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/fun/games/_game.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/fun/serious/games/_game.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +6 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
- data/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/alt/layouts/alt.rhtml +0 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
- data/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/_column.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/default_html.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/mascot.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/mascots.yml +4 -0
- data/vendor/rails/actionpack/test/fixtures/mascots/_mascot.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/empty +10 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/none +9 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
- data/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -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/project.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
- data/vendor/rails/actionpack/test/fixtures/projects/_project.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/500.da.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/absolute/test.css +23 -0
- data/vendor/rails/actionpack/test/fixtures/public/absolute/test.js +63 -0
- data/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/javascripts/version.1.0.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/public/stylesheets/subdir/subdir.css +1 -0
- data/vendor/rails/actionpack/test/fixtures/public/stylesheets/version.1.0.css +1 -0
- data/vendor/rails/actionpack/test/fixtures/quiz/questions/_question.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
- data/vendor/rails/actionpack/test/fixtures/replies/_reply.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/reply.rb +7 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -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.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
- data/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/shared.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
- data/vendor/rails/actionpack/test/fixtures/test/_counter.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_customer_with_var.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_form.erb +1 -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.builder +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_one.html.erb +1 -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.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/_raise.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/_two.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -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/delete_with_js.rjs +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/dont_pick_me +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -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.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
- data/vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
- data/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/nested_layout.erb +3 -0
- data/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_explicit_html_template.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template.js.rjs +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/template.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
- data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block_with_args.html.erb +1 -0
- data/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +2 -0
- data/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
- data/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
- data/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb +1 -0
- data/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +44 -0
- data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +302 -0
- data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +759 -0
- data/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +315 -0
- data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +86 -0
- data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +203 -0
- data/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +120 -0
- data/vendor/rails/actionpack/test/template/date_helper_test.rb +2469 -0
- data/vendor/rails/actionpack/test/template/erb_util_test.rb +24 -0
- data/vendor/rails/actionpack/test/template/form_helper_test.rb +1313 -0
- data/vendor/rails/actionpack/test/template/form_options_helper_i18n_test.rb +27 -0
- data/vendor/rails/actionpack/test/template/form_options_helper_test.rb +807 -0
- data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +344 -0
- data/vendor/rails/actionpack/test/template/javascript_helper_test.rb +106 -0
- data/vendor/rails/actionpack/test/template/number_helper_i18n_test.rb +69 -0
- data/vendor/rails/actionpack/test/template/number_helper_test.rb +128 -0
- data/vendor/rails/actionpack/test/template/prototype_helper_test.rb +639 -0
- data/vendor/rails/actionpack/test/template/record_tag_helper_test.rb +58 -0
- data/vendor/rails/actionpack/test/template/render_test.rb +290 -0
- data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +48 -0
- data/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
- data/vendor/rails/actionpack/test/template/tag_helper_test.rb +97 -0
- data/vendor/rails/actionpack/test/template/template_test.rb +32 -0
- data/vendor/rails/actionpack/test/template/test_test.rb +54 -0
- data/vendor/rails/actionpack/test/template/text_helper_test.rb +543 -0
- data/vendor/rails/actionpack/test/template/translation_helper_test.rb +32 -0
- data/vendor/rails/actionpack/test/template/url_helper_test.rb +622 -0
- data/vendor/rails/actionpack/test/testing_sandbox.rb +15 -0
- data/vendor/rails/actionpack/test/view/test_case_test.rb +8 -0
- data/vendor/rails/activerecord/CHANGELOG +5850 -0
- data/vendor/rails/activerecord/README +351 -0
- data/vendor/rails/activerecord/RUNNING_UNIT_TESTS +36 -0
- data/vendor/rails/activerecord/Rakefile +270 -0
- data/vendor/rails/activerecord/examples/associations.png +0 -0
- data/vendor/rails/activerecord/examples/performance.rb +162 -0
- data/vendor/rails/activerecord/install.rb +30 -0
- data/vendor/rails/activerecord/lib/active_record.rb +84 -0
- data/vendor/rails/activerecord/lib/active_record/aggregations.rb +261 -0
- data/vendor/rails/activerecord/lib/active_record/association_preload.rb +389 -0
- data/vendor/rails/activerecord/lib/active_record/associations.rb +2238 -0
- data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +475 -0
- data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +279 -0
- data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +76 -0
- data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +53 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +122 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +266 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +124 -0
- data/vendor/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +37 -0
- data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +388 -0
- data/vendor/rails/activerecord/lib/active_record/autosave_association.rb +355 -0
- data/vendor/rails/activerecord/lib/active_record/base.rb +3158 -0
- data/vendor/rails/activerecord/lib/active_record/batches.rb +81 -0
- data/vendor/rails/activerecord/lib/active_record/calculations.rb +311 -0
- data/vendor/rails/activerecord/lib/active_record/callbacks.rb +360 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +241 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +626 -0
- data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1113 -0
- 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 +453 -0
- data/vendor/rails/activerecord/lib/active_record/dirty.rb +183 -0
- data/vendor/rails/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
- data/vendor/rails/activerecord/lib/active_record/dynamic_scope_match.rb +25 -0
- data/vendor/rails/activerecord/lib/active_record/fixtures.rb +996 -0
- data/vendor/rails/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
- data/vendor/rails/activerecord/lib/active_record/locale/en.yml +58 -0
- data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +181 -0
- data/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
- data/vendor/rails/activerecord/lib/active_record/migration.rb +566 -0
- data/vendor/rails/activerecord/lib/active_record/named_scope.rb +192 -0
- data/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +329 -0
- data/vendor/rails/activerecord/lib/active_record/observer.rb +197 -0
- data/vendor/rails/activerecord/lib/active_record/query_cache.rb +33 -0
- data/vendor/rails/activerecord/lib/active_record/reflection.rb +320 -0
- data/vendor/rails/activerecord/lib/active_record/schema.rb +51 -0
- data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +182 -0
- data/vendor/rails/activerecord/lib/active_record/serialization.rb +101 -0
- data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +91 -0
- data/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +357 -0
- data/vendor/rails/activerecord/lib/active_record/session_store.rb +326 -0
- data/vendor/rails/activerecord/lib/active_record/test_case.rb +66 -0
- data/vendor/rails/activerecord/lib/active_record/timestamp.rb +71 -0
- data/vendor/rails/activerecord/lib/active_record/transactions.rb +235 -0
- data/vendor/rails/activerecord/lib/active_record/validations.rb +1135 -0
- data/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
- data/vendor/rails/activerecord/lib/activerecord.rb +1 -0
- data/vendor/rails/activerecord/test/assets/example.log +1 -0
- data/vendor/rails/activerecord/test/assets/flowers.jpg +0 -0
- data/vendor/rails/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
- data/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
- data/vendor/rails/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
- data/vendor/rails/activerecord/test/cases/adapter_test.rb +145 -0
- data/vendor/rails/activerecord/test/cases/aggregations_test.rb +167 -0
- data/vendor/rails/activerecord/test/cases/ar_schema_test.rb +32 -0
- data/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +425 -0
- data/vendor/rails/activerecord/test/cases/associations/callbacks_test.rb +161 -0
- data/vendor/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
- data/vendor/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
- data/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +130 -0
- data/vendor/rails/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
- data/vendor/rails/activerecord/test/cases/associations/eager_test.rb +834 -0
- data/vendor/rails/activerecord/test/cases/associations/extension_test.rb +62 -0
- data/vendor/rails/activerecord/test/cases/associations/habtm_join_table_test.rb +56 -0
- data/vendor/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
- data/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +1122 -0
- data/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +324 -0
- data/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +309 -0
- data/vendor/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +209 -0
- data/vendor/rails/activerecord/test/cases/associations/inner_join_association_test.rb +93 -0
- data/vendor/rails/activerecord/test/cases/associations/join_model_test.rb +712 -0
- data/vendor/rails/activerecord/test/cases/associations_test.rb +262 -0
- data/vendor/rails/activerecord/test/cases/attribute_methods_test.rb +305 -0
- data/vendor/rails/activerecord/test/cases/autosave_association_test.rb +923 -0
- data/vendor/rails/activerecord/test/cases/base_test.rb +2152 -0
- data/vendor/rails/activerecord/test/cases/batches_test.rb +61 -0
- data/vendor/rails/activerecord/test/cases/binary_test.rb +30 -0
- data/vendor/rails/activerecord/test/cases/calculations_test.rb +348 -0
- data/vendor/rails/activerecord/test/cases/callbacks_observers_test.rb +38 -0
- data/vendor/rails/activerecord/test/cases/callbacks_test.rb +438 -0
- data/vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
- data/vendor/rails/activerecord/test/cases/column_alias_test.rb +17 -0
- data/vendor/rails/activerecord/test/cases/column_definition_test.rb +70 -0
- data/vendor/rails/activerecord/test/cases/connection_pool_test.rb +25 -0
- data/vendor/rails/activerecord/test/cases/connection_test_firebird.rb +8 -0
- data/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +56 -0
- data/vendor/rails/activerecord/test/cases/copy_table_test_sqlite.rb +80 -0
- data/vendor/rails/activerecord/test/cases/database_statements_test.rb +12 -0
- data/vendor/rails/activerecord/test/cases/datatype_test_postgresql.rb +204 -0
- data/vendor/rails/activerecord/test/cases/date_time_test.rb +37 -0
- data/vendor/rails/activerecord/test/cases/default_test_firebird.rb +16 -0
- data/vendor/rails/activerecord/test/cases/defaults_test.rb +111 -0
- data/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb +30 -0
- data/vendor/rails/activerecord/test/cases/dirty_test.rb +316 -0
- data/vendor/rails/activerecord/test/cases/finder_respond_to_test.rb +76 -0
- data/vendor/rails/activerecord/test/cases/finder_test.rb +1054 -0
- data/vendor/rails/activerecord/test/cases/fixtures_test.rb +656 -0
- data/vendor/rails/activerecord/test/cases/helper.rb +68 -0
- data/vendor/rails/activerecord/test/cases/i18n_test.rb +46 -0
- data/vendor/rails/activerecord/test/cases/inheritance_test.rb +262 -0
- data/vendor/rails/activerecord/test/cases/invalid_date_test.rb +24 -0
- data/vendor/rails/activerecord/test/cases/json_serialization_test.rb +205 -0
- data/vendor/rails/activerecord/test/cases/lifecycle_test.rb +193 -0
- data/vendor/rails/activerecord/test/cases/locking_test.rb +322 -0
- data/vendor/rails/activerecord/test/cases/method_scoping_test.rb +704 -0
- data/vendor/rails/activerecord/test/cases/migration_test.rb +1523 -0
- data/vendor/rails/activerecord/test/cases/migration_test_firebird.rb +124 -0
- data/vendor/rails/activerecord/test/cases/mixin_test.rb +96 -0
- data/vendor/rails/activerecord/test/cases/modules_test.rb +81 -0
- data/vendor/rails/activerecord/test/cases/multiple_db_test.rb +85 -0
- data/vendor/rails/activerecord/test/cases/named_scope_test.rb +361 -0
- data/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +509 -0
- data/vendor/rails/activerecord/test/cases/pk_test.rb +119 -0
- data/vendor/rails/activerecord/test/cases/pooled_connections_test.rb +103 -0
- data/vendor/rails/activerecord/test/cases/query_cache_test.rb +123 -0
- data/vendor/rails/activerecord/test/cases/readonly_test.rb +107 -0
- data/vendor/rails/activerecord/test/cases/reflection_test.rb +194 -0
- data/vendor/rails/activerecord/test/cases/reload_models_test.rb +22 -0
- data/vendor/rails/activerecord/test/cases/repair_helper.rb +50 -0
- data/vendor/rails/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
- data/vendor/rails/activerecord/test/cases/sanitize_test.rb +25 -0
- data/vendor/rails/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
- data/vendor/rails/activerecord/test/cases/schema_dumper_test.rb +211 -0
- data/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +178 -0
- data/vendor/rails/activerecord/test/cases/serialization_test.rb +47 -0
- data/vendor/rails/activerecord/test/cases/synonym_test_oracle.rb +17 -0
- data/vendor/rails/activerecord/test/cases/timestamp_test.rb +75 -0
- data/vendor/rails/activerecord/test/cases/transactions_test.rb +522 -0
- data/vendor/rails/activerecord/test/cases/unconnected_test.rb +32 -0
- data/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +947 -0
- data/vendor/rails/activerecord/test/cases/validations_test.rb +1612 -0
- data/vendor/rails/activerecord/test/cases/xml_serialization_test.rb +240 -0
- data/vendor/rails/activerecord/test/config.rb +5 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbcderby/connection.rb +18 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbch2/connection.rb +18 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
- data/vendor/rails/activerecord/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
- data/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
- data/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
- data/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
- data/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +21 -0
- data/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
- data/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
- data/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
- data/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
- 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_addresses.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/authors.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
- data/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
- data/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
- data/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
- data/vendor/rails/activerecord/test/fixtures/clubs.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
- data/vendor/rails/activerecord/test/fixtures/companies.yml +56 -0
- data/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/customers.yml +26 -0
- data/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
- data/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
- data/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
- data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite +0 -0
- data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
- data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite +0 -0
- data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
- data/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
- data/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
- data/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
- data/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/jobs.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
- data/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/member_types.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/members.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/memberships.yml +20 -0
- data/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
- data/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
- data/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
- data/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
- data/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
- data/vendor/rails/activerecord/test/fixtures/organizations.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/owners.yml +7 -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/people.yml +15 -0
- data/vendor/rails/activerecord/test/fixtures/pets.yml +14 -0
- data/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/posts.yml +52 -0
- data/vendor/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/readers.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/references.yml +17 -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/ships.yml +5 -0
- data/vendor/rails/activerecord/test/fixtures/sponsors.yml +9 -0
- data/vendor/rails/activerecord/test/fixtures/subscribers.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
- data/vendor/rails/activerecord/test/fixtures/taggings.yml +28 -0
- data/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
- data/vendor/rails/activerecord/test/fixtures/topics.yml +42 -0
- data/vendor/rails/activerecord/test/fixtures/toys.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
- data/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
- data/vendor/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
- data/vendor/rails/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
- data/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
- data/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
- data/vendor/rails/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
- data/vendor/rails/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
- data/vendor/rails/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
- data/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
- data/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
- data/vendor/rails/activerecord/test/models/author.rb +146 -0
- data/vendor/rails/activerecord/test/models/auto_id.rb +4 -0
- data/vendor/rails/activerecord/test/models/binary.rb +2 -0
- data/vendor/rails/activerecord/test/models/bird.rb +3 -0
- data/vendor/rails/activerecord/test/models/book.rb +4 -0
- data/vendor/rails/activerecord/test/models/categorization.rb +5 -0
- data/vendor/rails/activerecord/test/models/category.rb +34 -0
- data/vendor/rails/activerecord/test/models/citation.rb +6 -0
- data/vendor/rails/activerecord/test/models/club.rb +13 -0
- data/vendor/rails/activerecord/test/models/column_name.rb +3 -0
- data/vendor/rails/activerecord/test/models/comment.rb +29 -0
- data/vendor/rails/activerecord/test/models/company.rb +161 -0
- data/vendor/rails/activerecord/test/models/company_in_module.rb +61 -0
- data/vendor/rails/activerecord/test/models/computer.rb +3 -0
- data/vendor/rails/activerecord/test/models/contact.rb +16 -0
- data/vendor/rails/activerecord/test/models/contract.rb +5 -0
- data/vendor/rails/activerecord/test/models/course.rb +3 -0
- data/vendor/rails/activerecord/test/models/customer.rb +73 -0
- data/vendor/rails/activerecord/test/models/default.rb +2 -0
- data/vendor/rails/activerecord/test/models/developer.rb +101 -0
- data/vendor/rails/activerecord/test/models/edge.rb +5 -0
- data/vendor/rails/activerecord/test/models/entrant.rb +3 -0
- data/vendor/rails/activerecord/test/models/essay.rb +3 -0
- data/vendor/rails/activerecord/test/models/event.rb +3 -0
- data/vendor/rails/activerecord/test/models/guid.rb +2 -0
- data/vendor/rails/activerecord/test/models/item.rb +7 -0
- data/vendor/rails/activerecord/test/models/job.rb +5 -0
- data/vendor/rails/activerecord/test/models/joke.rb +3 -0
- data/vendor/rails/activerecord/test/models/keyboard.rb +3 -0
- data/vendor/rails/activerecord/test/models/legacy_thing.rb +3 -0
- data/vendor/rails/activerecord/test/models/matey.rb +4 -0
- data/vendor/rails/activerecord/test/models/member.rb +12 -0
- data/vendor/rails/activerecord/test/models/member_detail.rb +5 -0
- data/vendor/rails/activerecord/test/models/member_type.rb +3 -0
- data/vendor/rails/activerecord/test/models/membership.rb +9 -0
- data/vendor/rails/activerecord/test/models/minimalistic.rb +2 -0
- data/vendor/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
- data/vendor/rails/activerecord/test/models/movie.rb +5 -0
- data/vendor/rails/activerecord/test/models/order.rb +4 -0
- data/vendor/rails/activerecord/test/models/organization.rb +6 -0
- data/vendor/rails/activerecord/test/models/owner.rb +5 -0
- data/vendor/rails/activerecord/test/models/parrot.rb +16 -0
- data/vendor/rails/activerecord/test/models/person.rb +16 -0
- data/vendor/rails/activerecord/test/models/pet.rb +5 -0
- data/vendor/rails/activerecord/test/models/pirate.rb +63 -0
- data/vendor/rails/activerecord/test/models/post.rb +100 -0
- data/vendor/rails/activerecord/test/models/price_estimate.rb +3 -0
- data/vendor/rails/activerecord/test/models/project.rb +30 -0
- data/vendor/rails/activerecord/test/models/reader.rb +4 -0
- data/vendor/rails/activerecord/test/models/reference.rb +4 -0
- data/vendor/rails/activerecord/test/models/reply.rb +46 -0
- data/vendor/rails/activerecord/test/models/ship.rb +10 -0
- data/vendor/rails/activerecord/test/models/ship_part.rb +5 -0
- data/vendor/rails/activerecord/test/models/sponsor.rb +4 -0
- data/vendor/rails/activerecord/test/models/subject.rb +4 -0
- data/vendor/rails/activerecord/test/models/subscriber.rb +8 -0
- data/vendor/rails/activerecord/test/models/subscription.rb +4 -0
- data/vendor/rails/activerecord/test/models/tag.rb +7 -0
- data/vendor/rails/activerecord/test/models/tagging.rb +10 -0
- data/vendor/rails/activerecord/test/models/task.rb +3 -0
- data/vendor/rails/activerecord/test/models/topic.rb +80 -0
- data/vendor/rails/activerecord/test/models/toy.rb +6 -0
- data/vendor/rails/activerecord/test/models/treasure.rb +6 -0
- data/vendor/rails/activerecord/test/models/vertex.rb +9 -0
- data/vendor/rails/activerecord/test/models/warehouse_thing.rb +5 -0
- data/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +12 -0
- data/vendor/rails/activerecord/test/schema/postgresql_specific_schema.rb +114 -0
- data/vendor/rails/activerecord/test/schema/schema.rb +492 -0
- data/vendor/rails/activerecord/test/schema/schema2.rb +6 -0
- data/vendor/rails/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
- data/vendor/rails/activeresource/CHANGELOG +283 -0
- data/vendor/rails/activeresource/README +165 -0
- data/vendor/rails/activeresource/Rakefile +139 -0
- data/vendor/rails/activeresource/lib/active_resource.rb +44 -0
- data/vendor/rails/activeresource/lib/active_resource/base.rb +1157 -0
- data/vendor/rails/activeresource/lib/active_resource/connection.rb +283 -0
- data/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +120 -0
- data/vendor/rails/activeresource/lib/active_resource/exceptions.rb +66 -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 +207 -0
- data/vendor/rails/activeresource/lib/active_resource/validations.rb +290 -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 +21 -0
- data/vendor/rails/activeresource/test/authorization_test.rb +122 -0
- data/vendor/rails/activeresource/test/base/custom_methods_test.rb +100 -0
- data/vendor/rails/activeresource/test/base/equality_test.rb +52 -0
- data/vendor/rails/activeresource/test/base/load_test.rb +161 -0
- data/vendor/rails/activeresource/test/base_errors_test.rb +85 -0
- data/vendor/rails/activeresource/test/base_test.rb +1038 -0
- data/vendor/rails/activeresource/test/connection_test.rb +238 -0
- data/vendor/rails/activeresource/test/debug.log +7974 -0
- data/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
- data/vendor/rails/activeresource/test/fixtures/customer.rb +3 -0
- data/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
- data/vendor/rails/activeresource/test/fixtures/proxy.rb +4 -0
- data/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
- data/vendor/rails/activeresource/test/format_test.rb +112 -0
- data/vendor/rails/activeresource/test/setter_trap.rb +26 -0
- data/vendor/rails/activesupport/CHANGELOG +1322 -0
- data/vendor/rails/activesupport/README +43 -0
- data/vendor/rails/activesupport/lib/active_support.rb +59 -0
- data/vendor/rails/activesupport/lib/active_support/all.rb +8 -0
- data/vendor/rails/activesupport/lib/active_support/backtrace_cleaner.rb +72 -0
- data/vendor/rails/activesupport/lib/active_support/base64.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/basic_object.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +127 -0
- data/vendor/rails/activesupport/lib/active_support/cache.rb +241 -0
- data/vendor/rails/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/cache/drb_store.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/cache/file_store.rb +72 -0
- data/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +138 -0
- data/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +52 -0
- data/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +104 -0
- data/vendor/rails/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
- data/vendor/rails/activesupport/lib/active_support/callbacks.rb +279 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +15 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +197 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/array/wrapper.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb +4 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +58 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +231 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +114 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +45 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +247 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +15 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +145 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
- 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/attr_internal.rb +32 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +60 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +135 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/model_naming.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +50 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +15 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +90 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/process.rb +1 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/rexml.rb +41 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +106 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/bytesize.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
- 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 +14 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +42 -0
- 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 +303 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/try.rb +36 -0
- data/vendor/rails/activesupport/lib/active_support/core_ext/uri.rb +16 -0
- data/vendor/rails/activesupport/lib/active_support/dependencies.rb +625 -0
- data/vendor/rails/activesupport/lib/active_support/deprecation.rb +196 -0
- data/vendor/rails/activesupport/lib/active_support/duration.rb +100 -0
- data/vendor/rails/activesupport/lib/active_support/gzip.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/inflections.rb +56 -0
- data/vendor/rails/activesupport/lib/active_support/inflector.rb +406 -0
- data/vendor/rails/activesupport/lib/active_support/json.rb +2 -0
- data/vendor/rails/activesupport/lib/active_support/json/backends/jsongem.rb +38 -0
- data/vendor/rails/activesupport/lib/active_support/json/backends/yaml.rb +88 -0
- data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +17 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +56 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +21 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +10 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +9 -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 +22 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +7 -0
- data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +102 -0
- data/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
- data/vendor/rails/activesupport/lib/active_support/locale/en.yml +33 -0
- data/vendor/rails/activesupport/lib/active_support/memoizable.rb +100 -0
- data/vendor/rails/activesupport/lib/active_support/message_encryptor.rb +70 -0
- data/vendor/rails/activesupport/lib/active_support/message_verifier.rb +59 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte.rb +57 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +707 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
- data/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb +61 -0
- data/vendor/rails/activesupport/lib/active_support/option_merger.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +134 -0
- data/vendor/rails/activesupport/lib/active_support/ordered_options.rb +19 -0
- data/vendor/rails/activesupport/lib/active_support/rescuable.rb +108 -0
- data/vendor/rails/activesupport/lib/active_support/secure_random.rb +199 -0
- data/vendor/rails/activesupport/lib/active_support/string_inquirer.rb +21 -0
- data/vendor/rails/activesupport/lib/active_support/test_case.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +65 -0
- data/vendor/rails/activesupport/lib/active_support/testing/declarative.rb +21 -0
- data/vendor/rails/activesupport/lib/active_support/testing/default.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/testing/deprecation.rb +57 -0
- data/vendor/rails/activesupport/lib/active_support/testing/performance.rb +452 -0
- data/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +91 -0
- data/vendor/rails/activesupport/lib/active_support/time_with_zone.rb +335 -0
- data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +404 -0
- data/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/rails/activesupport/lib/active_support/vendor.rb +28 -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-2.1.2/builder.rb +13 -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/i18n-0.1.3/MIT-LICENSE +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +199 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +53 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +99 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +124 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +567 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
- data/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
- data/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
- data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +58 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini.rb +31 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini/jdom.rb +162 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +133 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +77 -0
- data/vendor/rails/activesupport/lib/active_support/xml_mini/rexml.rb +108 -0
- data/vendor/rails/activesupport/lib/activesupport.rb +1 -0
- data/vendor/rails/railties/CHANGELOG +2166 -0
- data/vendor/rails/railties/MIT-LICENSE +20 -0
- data/vendor/rails/railties/README +243 -0
- data/vendor/rails/railties/Rakefile +368 -0
- data/vendor/rails/railties/bin/about +4 -0
- data/vendor/rails/railties/bin/console +3 -0
- data/vendor/rails/railties/bin/dbconsole +3 -0
- data/vendor/rails/railties/bin/destroy +3 -0
- data/vendor/rails/railties/bin/generate +3 -0
- data/vendor/rails/railties/bin/performance/benchmarker +3 -0
- data/vendor/rails/railties/bin/performance/profiler +3 -0
- data/vendor/rails/railties/bin/plugin +3 -0
- data/vendor/rails/railties/bin/rails +20 -0
- data/vendor/rails/railties/bin/runner +3 -0
- data/vendor/rails/railties/bin/server +3 -0
- data/vendor/rails/railties/builtin/rails_info/rails/info.rb +131 -0
- data/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
- data/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
- data/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
- data/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
- data/vendor/rails/railties/configs/databases/ibm_db.yml +62 -0
- data/vendor/rails/railties/configs/databases/mysql.yml +60 -0
- data/vendor/rails/railties/configs/databases/oracle.yml +39 -0
- data/vendor/rails/railties/configs/databases/postgresql.yml +51 -0
- data/vendor/rails/railties/configs/databases/sqlite2.yml +19 -0
- data/vendor/rails/railties/configs/databases/sqlite3.yml +22 -0
- data/vendor/rails/railties/configs/empty.log +0 -0
- data/vendor/rails/railties/configs/initializers/backtrace_silencers.rb +7 -0
- 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/initializers/new_rails_defaults.rb +21 -0
- data/vendor/rails/railties/configs/initializers/session_store.rb +15 -0
- data/vendor/rails/railties/configs/locales/en.yml +5 -0
- data/vendor/rails/railties/configs/routes.rb +43 -0
- data/vendor/rails/railties/configs/seeds.rb +7 -0
- data/vendor/rails/railties/dispatches/config.ru +7 -0
- data/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
- data/vendor/rails/railties/dispatches/dispatch.rb +10 -0
- data/vendor/rails/railties/dispatches/gateway.cgi +97 -0
- data/vendor/rails/railties/doc/README_FOR_APP +2 -0
- data/vendor/rails/railties/environments/boot.rb +110 -0
- data/vendor/rails/railties/environments/development.rb +17 -0
- data/vendor/rails/railties/environments/environment.rb +41 -0
- data/vendor/rails/railties/environments/production.rb +28 -0
- data/vendor/rails/railties/environments/test.rb +28 -0
- data/vendor/rails/railties/fresh_rakefile +10 -0
- data/vendor/rails/railties/guides/files/javascripts/code_highlighter.js +188 -0
- data/vendor/rails/railties/guides/files/javascripts/guides.js +8 -0
- data/vendor/rails/railties/guides/files/javascripts/highlighters.js +90 -0
- data/vendor/rails/railties/guides/files/stylesheets/main.css +441 -0
- data/vendor/rails/railties/guides/files/stylesheets/print.css +52 -0
- data/vendor/rails/railties/guides/files/stylesheets/reset.css +43 -0
- data/vendor/rails/railties/guides/files/stylesheets/style.css +13 -0
- data/vendor/rails/railties/guides/files/stylesheets/syntax.css +31 -0
- data/vendor/rails/railties/guides/images/belongs_to.png +0 -0
- data/vendor/rails/railties/guides/images/book_icon.gif +0 -0
- data/vendor/rails/railties/guides/images/bullet.gif +0 -0
- data/vendor/rails/railties/guides/images/chapters_icon.gif +0 -0
- data/vendor/rails/railties/guides/images/check_bullet.gif +0 -0
- data/vendor/rails/railties/guides/images/credits_pic_blank.gif +0 -0
- data/vendor/rails/railties/guides/images/csrf.png +0 -0
- data/vendor/rails/railties/guides/images/customized_error_messages.png +0 -0
- data/vendor/rails/railties/guides/images/error_messages.png +0 -0
- data/vendor/rails/railties/guides/images/feature_tile.gif +0 -0
- data/vendor/rails/railties/guides/images/footer_tile.gif +0 -0
- data/vendor/rails/railties/guides/images/fxn.jpg +0 -0
- data/vendor/rails/railties/guides/images/grey_bullet.gif +0 -0
- data/vendor/rails/railties/guides/images/habtm.png +0 -0
- data/vendor/rails/railties/guides/images/has_many.png +0 -0
- data/vendor/rails/railties/guides/images/has_many_through.png +0 -0
- data/vendor/rails/railties/guides/images/has_one.png +0 -0
- data/vendor/rails/railties/guides/images/has_one_through.png +0 -0
- data/vendor/rails/railties/guides/images/header_backdrop.png +0 -0
- data/vendor/rails/railties/guides/images/header_tile.gif +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_localized_pirate.png +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_translated_en.png +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_translated_pirate.png +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_translation_missing.png +0 -0
- data/vendor/rails/railties/guides/images/i18n/demo_untranslated.png +0 -0
- data/vendor/rails/railties/guides/images/icons/README +5 -0
- data/vendor/rails/railties/guides/images/icons/callouts/1.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/10.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/11.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/12.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/13.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/14.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/15.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/2.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/3.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/4.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/5.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/6.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/7.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/8.png +0 -0
- data/vendor/rails/railties/guides/images/icons/callouts/9.png +0 -0
- data/vendor/rails/railties/guides/images/icons/caution.png +0 -0
- data/vendor/rails/railties/guides/images/icons/example.png +0 -0
- data/vendor/rails/railties/guides/images/icons/home.png +0 -0
- data/vendor/rails/railties/guides/images/icons/important.png +0 -0
- data/vendor/rails/railties/guides/images/icons/next.png +0 -0
- data/vendor/rails/railties/guides/images/icons/note.png +0 -0
- data/vendor/rails/railties/guides/images/icons/prev.png +0 -0
- data/vendor/rails/railties/guides/images/icons/tip.png +0 -0
- data/vendor/rails/railties/guides/images/icons/up.png +0 -0
- data/vendor/rails/railties/guides/images/icons/warning.png +0 -0
- data/vendor/rails/railties/guides/images/nav_arrow.gif +0 -0
- data/vendor/rails/railties/guides/images/polymorphic.png +0 -0
- data/vendor/rails/railties/guides/images/posts_index.png +0 -0
- data/vendor/rails/railties/guides/images/rails_guides_logo.gif +0 -0
- data/vendor/rails/railties/guides/images/rails_logo_remix.gif +0 -0
- data/vendor/rails/railties/guides/images/rails_welcome.png +0 -0
- data/vendor/rails/railties/guides/images/session_fixation.png +0 -0
- data/vendor/rails/railties/guides/images/tab_grey.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_info.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_note.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_red.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_yellow.gif +0 -0
- data/vendor/rails/railties/guides/images/tab_yellow.png +0 -0
- data/vendor/rails/railties/guides/images/validation_error_messages.png +0 -0
- data/vendor/rails/railties/guides/rails_guides.rb +42 -0
- data/vendor/rails/railties/guides/rails_guides/generator.rb +138 -0
- data/vendor/rails/railties/guides/rails_guides/helpers.rb +34 -0
- data/vendor/rails/railties/guides/rails_guides/indexer.rb +55 -0
- data/vendor/rails/railties/guides/rails_guides/textile_extensions.rb +41 -0
- data/vendor/rails/railties/guides/source/2_2_release_notes.textile +422 -0
- data/vendor/rails/railties/guides/source/2_3_release_notes.textile +610 -0
- data/vendor/rails/railties/guides/source/action_controller_overview.textile +776 -0
- data/vendor/rails/railties/guides/source/action_mailer_basics.textile +424 -0
- data/vendor/rails/railties/guides/source/active_record_basics.textile +135 -0
- data/vendor/rails/railties/guides/source/active_record_querying.textile +969 -0
- data/vendor/rails/railties/guides/source/activerecord_validations_callbacks.textile +1086 -0
- data/vendor/rails/railties/guides/source/association_basics.textile +1781 -0
- data/vendor/rails/railties/guides/source/caching_with_rails.textile +524 -0
- data/vendor/rails/railties/guides/source/command_line.textile +589 -0
- data/vendor/rails/railties/guides/source/configuring.textile +234 -0
- data/vendor/rails/railties/guides/source/contribute.textile +71 -0
- data/vendor/rails/railties/guides/source/contributing_to_rails.textile +239 -0
- data/vendor/rails/railties/guides/source/credits.erb.textile +52 -0
- data/vendor/rails/railties/guides/source/debugging_rails_applications.textile +709 -0
- data/vendor/rails/railties/guides/source/form_helpers.textile +766 -0
- data/vendor/rails/railties/guides/source/getting_started.textile +1297 -0
- data/vendor/rails/railties/guides/source/i18n.textile +912 -0
- data/vendor/rails/railties/guides/source/index.erb.textile +124 -0
- data/vendor/rails/railties/guides/source/layout.html.erb +103 -0
- data/vendor/rails/railties/guides/source/layouts_and_rendering.textile +979 -0
- data/vendor/rails/railties/guides/source/migrations.textile +591 -0
- data/vendor/rails/railties/guides/source/nested_model_forms.textile +222 -0
- data/vendor/rails/railties/guides/source/performance_testing.textile +531 -0
- data/vendor/rails/railties/guides/source/plugins.textile +1512 -0
- data/vendor/rails/railties/guides/source/rails_on_rack.textile +309 -0
- data/vendor/rails/railties/guides/source/routing.textile +903 -0
- data/vendor/rails/railties/guides/source/security.textile +986 -0
- data/vendor/rails/railties/guides/source/testing.textile +951 -0
- data/vendor/rails/railties/helpers/application_controller.rb +10 -0
- data/vendor/rails/railties/helpers/application_helper.rb +3 -0
- data/vendor/rails/railties/helpers/performance_test.rb +9 -0
- data/vendor/rails/railties/helpers/test_helper.rb +38 -0
- data/vendor/rails/railties/html/404.html +30 -0
- data/vendor/rails/railties/html/422.html +30 -0
- data/vendor/rails/railties/html/500.html +30 -0
- data/vendor/rails/railties/html/favicon.ico +0 -0
- data/vendor/rails/railties/html/images/rails.png +0 -0
- data/vendor/rails/railties/html/index.html +275 -0
- data/vendor/rails/railties/html/javascripts/application.js +2 -0
- data/vendor/rails/railties/html/javascripts/controls.js +963 -0
- data/vendor/rails/railties/html/javascripts/dragdrop.js +973 -0
- data/vendor/rails/railties/html/javascripts/effects.js +1128 -0
- data/vendor/rails/railties/html/javascripts/prototype.js +4320 -0
- data/vendor/rails/railties/html/robots.txt +5 -0
- data/vendor/rails/railties/lib/code_statistics.rb +107 -0
- data/vendor/rails/railties/lib/commands.rb +17 -0
- data/vendor/rails/railties/lib/commands/about.rb +3 -0
- data/vendor/rails/railties/lib/commands/console.rb +45 -0
- data/vendor/rails/railties/lib/commands/dbconsole.rb +87 -0
- data/vendor/rails/railties/lib/commands/destroy.rb +6 -0
- data/vendor/rails/railties/lib/commands/generate.rb +6 -0
- data/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
- data/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
- data/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
- data/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
- data/vendor/rails/railties/lib/commands/plugin.rb +968 -0
- data/vendor/rails/railties/lib/commands/runner.rb +54 -0
- data/vendor/rails/railties/lib/commands/server.rb +114 -0
- data/vendor/rails/railties/lib/commands/update.rb +4 -0
- data/vendor/rails/railties/lib/console_app.rb +30 -0
- data/vendor/rails/railties/lib/console_sandbox.rb +6 -0
- data/vendor/rails/railties/lib/console_with_helpers.rb +5 -0
- data/vendor/rails/railties/lib/dispatcher.rb +24 -0
- data/vendor/rails/railties/lib/fcgi_handler.rb +239 -0
- data/vendor/rails/railties/lib/initializer.rb +1128 -0
- data/vendor/rails/railties/lib/performance_test_help.rb +5 -0
- data/vendor/rails/railties/lib/rails/backtrace_cleaner.rb +54 -0
- data/vendor/rails/railties/lib/rails/gem_builder.rb +21 -0
- data/vendor/rails/railties/lib/rails/gem_dependency.rb +311 -0
- data/vendor/rails/railties/lib/rails/plugin.rb +179 -0
- data/vendor/rails/railties/lib/rails/plugin/loader.rb +198 -0
- data/vendor/rails/railties/lib/rails/plugin/locator.rb +100 -0
- data/vendor/rails/railties/lib/rails/rack.rb +8 -0
- data/vendor/rails/railties/lib/rails/rack/debugger.rb +21 -0
- data/vendor/rails/railties/lib/rails/rack/log_tailer.rb +35 -0
- data/vendor/rails/railties/lib/rails/rack/metal.rb +51 -0
- data/vendor/rails/railties/lib/rails/rack/static.rb +46 -0
- data/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +140 -0
- data/vendor/rails/railties/lib/rails/version.rb +9 -0
- data/vendor/rails/railties/lib/rails_generator.rb +43 -0
- data/vendor/rails/railties/lib/rails_generator/base.rb +266 -0
- data/vendor/rails/railties/lib/rails_generator/commands.rb +621 -0
- data/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +46 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +263 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
- data/vendor/rails/railties/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +43 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/helper/USAGE +24 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
- 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 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +20 -0
- 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 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/metal/USAGE +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +52 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +5 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/USAGE +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb +9 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -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 +13 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +23 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/test_helper.rb +3 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
- 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 +76 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +29 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +103 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -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 +17 -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 +10 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
- data/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
- data/vendor/rails/railties/lib/rails_generator/lookup.rb +249 -0
- data/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
- data/vendor/rails/railties/lib/rails_generator/options.rb +150 -0
- data/vendor/rails/railties/lib/rails_generator/scripts.rb +89 -0
- data/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +29 -0
- data/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
- data/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
- data/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +24 -0
- data/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
- data/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
- data/vendor/rails/railties/lib/railties_path.rb +1 -0
- data/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
- data/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
- data/vendor/rails/railties/lib/source_annotation_extractor.rb +102 -0
- data/vendor/rails/railties/lib/tasks/annotations.rake +20 -0
- data/vendor/rails/railties/lib/tasks/databases.rake +436 -0
- data/vendor/rails/railties/lib/tasks/documentation.rake +88 -0
- data/vendor/rails/railties/lib/tasks/framework.rake +143 -0
- data/vendor/rails/railties/lib/tasks/gems.rake +78 -0
- data/vendor/rails/railties/lib/tasks/log.rake +9 -0
- data/vendor/rails/railties/lib/tasks/middleware.rake +7 -0
- data/vendor/rails/railties/lib/tasks/misc.rake +63 -0
- data/vendor/rails/railties/lib/tasks/rails.rb +8 -0
- data/vendor/rails/railties/lib/tasks/routes.rake +18 -0
- data/vendor/rails/railties/lib/tasks/statistics.rake +17 -0
- data/vendor/rails/railties/lib/tasks/testing.rake +139 -0
- data/vendor/rails/railties/lib/test_help.rb +38 -0
- data/vendor/rails/railties/lib/webrick_server.rb +156 -0
- data/vendor/redcloth/Rakefile +196 -0
- data/vendor/redcloth/bin/redcloth +3 -0
- data/vendor/redcloth/doc/CHANGELOG +160 -0
- data/vendor/redcloth/doc/COPYING +25 -0
- data/vendor/redcloth/doc/README +106 -0
- data/vendor/redcloth/doc/REFERENCE +216 -0
- data/vendor/redcloth/doc/make.rb +359 -0
- data/vendor/redcloth/lib/rctodb.rb +1107 -0
- data/vendor/redcloth/lib/redcloth.rb +1130 -0
- data/vendor/redcloth/run-tests.rb +28 -0
- data/vendor/redcloth/setup.rb +1376 -0
- data/vendor/redcloth/tests/code.yml +105 -0
- data/vendor/redcloth/tests/images.yml +171 -0
- data/vendor/redcloth/tests/instiki.yml +39 -0
- data/vendor/redcloth/tests/links.yml +155 -0
- data/vendor/redcloth/tests/lists.yml +77 -0
- data/vendor/redcloth/tests/markdown.yml +218 -0
- data/vendor/redcloth/tests/poignant.yml +64 -0
- data/vendor/redcloth/tests/table.yml +198 -0
- data/vendor/redcloth/tests/textism.yml +406 -0
- metadata +2474 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
# Filters added to this controller apply to all controllers in the application.
|
2
|
+
# Likewise, all the methods added will be available for all controllers.
|
3
|
+
|
4
|
+
class ApplicationController < ActionController::Base
|
5
|
+
helper :all # include all helpers, all the time
|
6
|
+
protect_from_forgery # See ActionController::RequestForgeryProtection for details
|
7
|
+
|
8
|
+
# Scrub sensitive parameters from your log
|
9
|
+
# filter_parameter_logging :password
|
10
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
3
|
+
require 'test_help'
|
4
|
+
|
5
|
+
class ActiveSupport::TestCase
|
6
|
+
# Transactional fixtures accelerate your tests by wrapping each test method
|
7
|
+
# in a transaction that's rolled back on completion. This ensures that the
|
8
|
+
# test database remains unchanged so your fixtures don't have to be reloaded
|
9
|
+
# between every test method. Fewer database queries means faster tests.
|
10
|
+
#
|
11
|
+
# Read Mike Clark's excellent walkthrough at
|
12
|
+
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
13
|
+
#
|
14
|
+
# Every Active Record database supports transactions except MyISAM tables
|
15
|
+
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
16
|
+
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
17
|
+
# is recommended.
|
18
|
+
#
|
19
|
+
# The only drawback to using transactional fixtures is when you actually
|
20
|
+
# need to test transactions. Since your test is bracketed by a transaction,
|
21
|
+
# any transactions started in your code will be automatically rolled back.
|
22
|
+
self.use_transactional_fixtures = true
|
23
|
+
|
24
|
+
# Instantiated fixtures are slow, but give you @david where otherwise you
|
25
|
+
# would need people(:david). If you don't want to migrate your existing
|
26
|
+
# test cases which use the @david style and don't mind the speed hit (each
|
27
|
+
# instantiated fixtures translates to a database query per test method),
|
28
|
+
# then set this back to true.
|
29
|
+
self.use_instantiated_fixtures = false
|
30
|
+
|
31
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
32
|
+
#
|
33
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
34
|
+
# -- they do not yet inherit this setting
|
35
|
+
fixtures :all
|
36
|
+
|
37
|
+
# Add more helper methods to be used by all tests here...
|
38
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
8
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
9
|
+
<style type="text/css">
|
10
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
11
|
+
div.dialog {
|
12
|
+
width: 25em;
|
13
|
+
padding: 0 4em;
|
14
|
+
margin: 4em auto 0 auto;
|
15
|
+
border: 1px solid #ccc;
|
16
|
+
border-right-color: #999;
|
17
|
+
border-bottom-color: #999;
|
18
|
+
}
|
19
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
<!-- This file lives in public/404.html -->
|
25
|
+
<div class="dialog">
|
26
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
27
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
28
|
+
</div>
|
29
|
+
</body>
|
30
|
+
</html>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
8
|
+
<title>The change you wanted was rejected (422)</title>
|
9
|
+
<style type="text/css">
|
10
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
11
|
+
div.dialog {
|
12
|
+
width: 25em;
|
13
|
+
padding: 0 4em;
|
14
|
+
margin: 4em auto 0 auto;
|
15
|
+
border: 1px solid #ccc;
|
16
|
+
border-right-color: #999;
|
17
|
+
border-bottom-color: #999;
|
18
|
+
}
|
19
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
<!-- This file lives in public/422.html -->
|
25
|
+
<div class="dialog">
|
26
|
+
<h1>The change you wanted was rejected.</h1>
|
27
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
28
|
+
</div>
|
29
|
+
</body>
|
30
|
+
</html>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
+
|
6
|
+
<head>
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
8
|
+
<title>We're sorry, but something went wrong (500)</title>
|
9
|
+
<style type="text/css">
|
10
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
11
|
+
div.dialog {
|
12
|
+
width: 25em;
|
13
|
+
padding: 0 4em;
|
14
|
+
margin: 4em auto 0 auto;
|
15
|
+
border: 1px solid #ccc;
|
16
|
+
border-right-color: #999;
|
17
|
+
border-bottom-color: #999;
|
18
|
+
}
|
19
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
20
|
+
</style>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
<!-- This file lives in public/500.html -->
|
25
|
+
<div class="dialog">
|
26
|
+
<h1>We're sorry, but something went wrong.</h1>
|
27
|
+
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
|
28
|
+
</div>
|
29
|
+
</body>
|
30
|
+
</html>
|
File without changes
|
Binary file
|
@@ -0,0 +1,275 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
6
|
+
<title>Ruby on Rails: Welcome aboard</title>
|
7
|
+
<style type="text/css" media="screen">
|
8
|
+
body {
|
9
|
+
margin: 0;
|
10
|
+
margin-bottom: 25px;
|
11
|
+
padding: 0;
|
12
|
+
background-color: #f0f0f0;
|
13
|
+
font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
|
14
|
+
font-size: 13px;
|
15
|
+
color: #333;
|
16
|
+
}
|
17
|
+
|
18
|
+
h1 {
|
19
|
+
font-size: 28px;
|
20
|
+
color: #000;
|
21
|
+
}
|
22
|
+
|
23
|
+
a {color: #03c}
|
24
|
+
a:hover {
|
25
|
+
background-color: #03c;
|
26
|
+
color: white;
|
27
|
+
text-decoration: none;
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
#page {
|
32
|
+
background-color: #f0f0f0;
|
33
|
+
width: 750px;
|
34
|
+
margin: 0;
|
35
|
+
margin-left: auto;
|
36
|
+
margin-right: auto;
|
37
|
+
}
|
38
|
+
|
39
|
+
#content {
|
40
|
+
float: left;
|
41
|
+
background-color: white;
|
42
|
+
border: 3px solid #aaa;
|
43
|
+
border-top: none;
|
44
|
+
padding: 25px;
|
45
|
+
width: 500px;
|
46
|
+
}
|
47
|
+
|
48
|
+
#sidebar {
|
49
|
+
float: right;
|
50
|
+
width: 175px;
|
51
|
+
}
|
52
|
+
|
53
|
+
#footer {
|
54
|
+
clear: both;
|
55
|
+
}
|
56
|
+
|
57
|
+
|
58
|
+
#header, #about, #getting-started {
|
59
|
+
padding-left: 75px;
|
60
|
+
padding-right: 30px;
|
61
|
+
}
|
62
|
+
|
63
|
+
|
64
|
+
#header {
|
65
|
+
background-image: url("images/rails.png");
|
66
|
+
background-repeat: no-repeat;
|
67
|
+
background-position: top left;
|
68
|
+
height: 64px;
|
69
|
+
}
|
70
|
+
#header h1, #header h2 {margin: 0}
|
71
|
+
#header h2 {
|
72
|
+
color: #888;
|
73
|
+
font-weight: normal;
|
74
|
+
font-size: 16px;
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
#about h3 {
|
79
|
+
margin: 0;
|
80
|
+
margin-bottom: 10px;
|
81
|
+
font-size: 14px;
|
82
|
+
}
|
83
|
+
|
84
|
+
#about-content {
|
85
|
+
background-color: #ffd;
|
86
|
+
border: 1px solid #fc0;
|
87
|
+
margin-left: -11px;
|
88
|
+
}
|
89
|
+
#about-content table {
|
90
|
+
margin-top: 10px;
|
91
|
+
margin-bottom: 10px;
|
92
|
+
font-size: 11px;
|
93
|
+
border-collapse: collapse;
|
94
|
+
}
|
95
|
+
#about-content td {
|
96
|
+
padding: 10px;
|
97
|
+
padding-top: 3px;
|
98
|
+
padding-bottom: 3px;
|
99
|
+
}
|
100
|
+
#about-content td.name {color: #555}
|
101
|
+
#about-content td.value {color: #000}
|
102
|
+
|
103
|
+
#about-content.failure {
|
104
|
+
background-color: #fcc;
|
105
|
+
border: 1px solid #f00;
|
106
|
+
}
|
107
|
+
#about-content.failure p {
|
108
|
+
margin: 0;
|
109
|
+
padding: 10px;
|
110
|
+
}
|
111
|
+
|
112
|
+
|
113
|
+
#getting-started {
|
114
|
+
border-top: 1px solid #ccc;
|
115
|
+
margin-top: 25px;
|
116
|
+
padding-top: 15px;
|
117
|
+
}
|
118
|
+
#getting-started h1 {
|
119
|
+
margin: 0;
|
120
|
+
font-size: 20px;
|
121
|
+
}
|
122
|
+
#getting-started h2 {
|
123
|
+
margin: 0;
|
124
|
+
font-size: 14px;
|
125
|
+
font-weight: normal;
|
126
|
+
color: #333;
|
127
|
+
margin-bottom: 25px;
|
128
|
+
}
|
129
|
+
#getting-started ol {
|
130
|
+
margin-left: 0;
|
131
|
+
padding-left: 0;
|
132
|
+
}
|
133
|
+
#getting-started li {
|
134
|
+
font-size: 18px;
|
135
|
+
color: #888;
|
136
|
+
margin-bottom: 25px;
|
137
|
+
}
|
138
|
+
#getting-started li h2 {
|
139
|
+
margin: 0;
|
140
|
+
font-weight: normal;
|
141
|
+
font-size: 18px;
|
142
|
+
color: #333;
|
143
|
+
}
|
144
|
+
#getting-started li p {
|
145
|
+
color: #555;
|
146
|
+
font-size: 13px;
|
147
|
+
}
|
148
|
+
|
149
|
+
|
150
|
+
#search {
|
151
|
+
margin: 0;
|
152
|
+
padding-top: 10px;
|
153
|
+
padding-bottom: 10px;
|
154
|
+
font-size: 11px;
|
155
|
+
}
|
156
|
+
#search input {
|
157
|
+
font-size: 11px;
|
158
|
+
margin: 2px;
|
159
|
+
}
|
160
|
+
#search-text {width: 170px}
|
161
|
+
|
162
|
+
|
163
|
+
#sidebar ul {
|
164
|
+
margin-left: 0;
|
165
|
+
padding-left: 0;
|
166
|
+
}
|
167
|
+
#sidebar ul h3 {
|
168
|
+
margin-top: 25px;
|
169
|
+
font-size: 16px;
|
170
|
+
padding-bottom: 10px;
|
171
|
+
border-bottom: 1px solid #ccc;
|
172
|
+
}
|
173
|
+
#sidebar li {
|
174
|
+
list-style-type: none;
|
175
|
+
}
|
176
|
+
#sidebar ul.links li {
|
177
|
+
margin-bottom: 5px;
|
178
|
+
}
|
179
|
+
|
180
|
+
</style>
|
181
|
+
<script type="text/javascript" src="javascripts/prototype.js"></script>
|
182
|
+
<script type="text/javascript" src="javascripts/effects.js"></script>
|
183
|
+
<script type="text/javascript">
|
184
|
+
function about() {
|
185
|
+
if (Element.empty('about-content')) {
|
186
|
+
new Ajax.Updater('about-content', 'rails/info/properties', {
|
187
|
+
method: 'get',
|
188
|
+
onFailure: function() {Element.classNames('about-content').add('failure')},
|
189
|
+
onComplete: function() {new Effect.BlindDown('about-content', {duration: 0.25})}
|
190
|
+
});
|
191
|
+
} else {
|
192
|
+
new Effect[Element.visible('about-content') ?
|
193
|
+
'BlindUp' : 'BlindDown']('about-content', {duration: 0.25});
|
194
|
+
}
|
195
|
+
}
|
196
|
+
|
197
|
+
window.onload = function() {
|
198
|
+
$('search-text').value = '';
|
199
|
+
$('search').onsubmit = function() {
|
200
|
+
$('search-text').value = 'site:rubyonrails.org ' + $F('search-text');
|
201
|
+
}
|
202
|
+
}
|
203
|
+
</script>
|
204
|
+
</head>
|
205
|
+
<body>
|
206
|
+
<div id="page">
|
207
|
+
<div id="sidebar">
|
208
|
+
<ul id="sidebar-items">
|
209
|
+
<li>
|
210
|
+
<form id="search" action="http://www.google.com/search" method="get">
|
211
|
+
<input type="hidden" name="hl" value="en" />
|
212
|
+
<input type="text" id="search-text" name="q" value="site:rubyonrails.org " />
|
213
|
+
<input type="submit" value="Search" /> the Rails site
|
214
|
+
</form>
|
215
|
+
</li>
|
216
|
+
|
217
|
+
<li>
|
218
|
+
<h3>Join the community</h3>
|
219
|
+
<ul class="links">
|
220
|
+
<li><a href="http://www.rubyonrails.org/">Ruby on Rails</a></li>
|
221
|
+
<li><a href="http://weblog.rubyonrails.org/">Official weblog</a></li>
|
222
|
+
<li><a href="http://wiki.rubyonrails.org/">Wiki</a></li>
|
223
|
+
</ul>
|
224
|
+
</li>
|
225
|
+
|
226
|
+
<li>
|
227
|
+
<h3>Browse the documentation</h3>
|
228
|
+
<ul class="links">
|
229
|
+
<li><a href="http://api.rubyonrails.org/">Rails API</a></li>
|
230
|
+
<li><a href="http://stdlib.rubyonrails.org/">Ruby standard library</a></li>
|
231
|
+
<li><a href="http://corelib.rubyonrails.org/">Ruby core</a></li>
|
232
|
+
<li><a href="http://guides.rubyonrails.org/">Rails Guides</a></li>
|
233
|
+
</ul>
|
234
|
+
</li>
|
235
|
+
</ul>
|
236
|
+
</div>
|
237
|
+
|
238
|
+
<div id="content">
|
239
|
+
<div id="header">
|
240
|
+
<h1>Welcome aboard</h1>
|
241
|
+
<h2>You’re riding Ruby on Rails!</h2>
|
242
|
+
</div>
|
243
|
+
|
244
|
+
<div id="about">
|
245
|
+
<h3><a href="rails/info/properties" onclick="about(); return false">About your application’s environment</a></h3>
|
246
|
+
<div id="about-content" style="display: none"></div>
|
247
|
+
</div>
|
248
|
+
|
249
|
+
<div id="getting-started">
|
250
|
+
<h1>Getting started</h1>
|
251
|
+
<h2>Here’s how to get rolling:</h2>
|
252
|
+
|
253
|
+
<ol>
|
254
|
+
<li>
|
255
|
+
<h2>Use <tt>script/generate</tt> to create your models and controllers</h2>
|
256
|
+
<p>To see all available options, run it without parameters.</p>
|
257
|
+
</li>
|
258
|
+
|
259
|
+
<li>
|
260
|
+
<h2>Set up a default route and remove or rename this file</h2>
|
261
|
+
<p>Routes are set up in config/routes.rb.</p>
|
262
|
+
</li>
|
263
|
+
|
264
|
+
<li>
|
265
|
+
<h2>Create your database</h2>
|
266
|
+
<p>Run <tt>rake db:migrate</tt> to create your database. If you're not using SQLite (the default), edit <tt>config/database.yml</tt> with your username and password.</p>
|
267
|
+
</li>
|
268
|
+
</ol>
|
269
|
+
</div>
|
270
|
+
</div>
|
271
|
+
|
272
|
+
<div id="footer"> </div>
|
273
|
+
</div>
|
274
|
+
</body>
|
275
|
+
</html>
|
@@ -0,0 +1,963 @@
|
|
1
|
+
// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
2
|
+
// (c) 2005-2008 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
|
3
|
+
// (c) 2005-2008 Jon Tirsen (http://www.tirsen.com)
|
4
|
+
// Contributors:
|
5
|
+
// Richard Livsey
|
6
|
+
// Rahul Bhargava
|
7
|
+
// Rob Wills
|
8
|
+
//
|
9
|
+
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
10
|
+
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
11
|
+
|
12
|
+
// Autocompleter.Base handles all the autocompletion functionality
|
13
|
+
// that's independent of the data source for autocompletion. This
|
14
|
+
// includes drawing the autocompletion menu, observing keyboard
|
15
|
+
// and mouse events, and similar.
|
16
|
+
//
|
17
|
+
// Specific autocompleters need to provide, at the very least,
|
18
|
+
// a getUpdatedChoices function that will be invoked every time
|
19
|
+
// the text inside the monitored textbox changes. This method
|
20
|
+
// should get the text for which to provide autocompletion by
|
21
|
+
// invoking this.getToken(), NOT by directly accessing
|
22
|
+
// this.element.value. This is to allow incremental tokenized
|
23
|
+
// autocompletion. Specific auto-completion logic (AJAX, etc)
|
24
|
+
// belongs in getUpdatedChoices.
|
25
|
+
//
|
26
|
+
// Tokenized incremental autocompletion is enabled automatically
|
27
|
+
// when an autocompleter is instantiated with the 'tokens' option
|
28
|
+
// in the options parameter, e.g.:
|
29
|
+
// new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' });
|
30
|
+
// will incrementally autocomplete with a comma as the token.
|
31
|
+
// Additionally, ',' in the above example can be replaced with
|
32
|
+
// a token array, e.g. { tokens: [',', '\n'] } which
|
33
|
+
// enables autocompletion on multiple tokens. This is most
|
34
|
+
// useful when one of the tokens is \n (a newline), as it
|
35
|
+
// allows smart autocompletion after linebreaks.
|
36
|
+
|
37
|
+
if(typeof Effect == 'undefined')
|
38
|
+
throw("controls.js requires including script.aculo.us' effects.js library");
|
39
|
+
|
40
|
+
var Autocompleter = { };
|
41
|
+
Autocompleter.Base = Class.create({
|
42
|
+
baseInitialize: function(element, update, options) {
|
43
|
+
element = $(element);
|
44
|
+
this.element = element;
|
45
|
+
this.update = $(update);
|
46
|
+
this.hasFocus = false;
|
47
|
+
this.changed = false;
|
48
|
+
this.active = false;
|
49
|
+
this.index = 0;
|
50
|
+
this.entryCount = 0;
|
51
|
+
this.oldElementValue = this.element.value;
|
52
|
+
|
53
|
+
if(this.setOptions)
|
54
|
+
this.setOptions(options);
|
55
|
+
else
|
56
|
+
this.options = options || { };
|
57
|
+
|
58
|
+
this.options.paramName = this.options.paramName || this.element.name;
|
59
|
+
this.options.tokens = this.options.tokens || [];
|
60
|
+
this.options.frequency = this.options.frequency || 0.4;
|
61
|
+
this.options.minChars = this.options.minChars || 1;
|
62
|
+
this.options.onShow = this.options.onShow ||
|
63
|
+
function(element, update){
|
64
|
+
if(!update.style.position || update.style.position=='absolute') {
|
65
|
+
update.style.position = 'absolute';
|
66
|
+
Position.clone(element, update, {
|
67
|
+
setHeight: false,
|
68
|
+
offsetTop: element.offsetHeight
|
69
|
+
});
|
70
|
+
}
|
71
|
+
Effect.Appear(update,{duration:0.15});
|
72
|
+
};
|
73
|
+
this.options.onHide = this.options.onHide ||
|
74
|
+
function(element, update){ new Effect.Fade(update,{duration:0.15}) };
|
75
|
+
|
76
|
+
if(typeof(this.options.tokens) == 'string')
|
77
|
+
this.options.tokens = new Array(this.options.tokens);
|
78
|
+
// Force carriage returns as token delimiters anyway
|
79
|
+
if (!this.options.tokens.include('\n'))
|
80
|
+
this.options.tokens.push('\n');
|
81
|
+
|
82
|
+
this.observer = null;
|
83
|
+
|
84
|
+
this.element.setAttribute('autocomplete','off');
|
85
|
+
|
86
|
+
Element.hide(this.update);
|
87
|
+
|
88
|
+
Event.observe(this.element, 'blur', this.onBlur.bindAsEventListener(this));
|
89
|
+
Event.observe(this.element, 'keydown', this.onKeyPress.bindAsEventListener(this));
|
90
|
+
},
|
91
|
+
|
92
|
+
show: function() {
|
93
|
+
if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update);
|
94
|
+
if(!this.iefix &&
|
95
|
+
(Prototype.Browser.IE) &&
|
96
|
+
(Element.getStyle(this.update, 'position')=='absolute')) {
|
97
|
+
new Insertion.After(this.update,
|
98
|
+
'<iframe id="' + this.update.id + '_iefix" '+
|
99
|
+
'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' +
|
100
|
+
'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');
|
101
|
+
this.iefix = $(this.update.id+'_iefix');
|
102
|
+
}
|
103
|
+
if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50);
|
104
|
+
},
|
105
|
+
|
106
|
+
fixIEOverlapping: function() {
|
107
|
+
Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)});
|
108
|
+
this.iefix.style.zIndex = 1;
|
109
|
+
this.update.style.zIndex = 2;
|
110
|
+
Element.show(this.iefix);
|
111
|
+
},
|
112
|
+
|
113
|
+
hide: function() {
|
114
|
+
this.stopIndicator();
|
115
|
+
if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update);
|
116
|
+
if(this.iefix) Element.hide(this.iefix);
|
117
|
+
},
|
118
|
+
|
119
|
+
startIndicator: function() {
|
120
|
+
if(this.options.indicator) Element.show(this.options.indicator);
|
121
|
+
},
|
122
|
+
|
123
|
+
stopIndicator: function() {
|
124
|
+
if(this.options.indicator) Element.hide(this.options.indicator);
|
125
|
+
},
|
126
|
+
|
127
|
+
onKeyPress: function(event) {
|
128
|
+
if(this.active)
|
129
|
+
switch(event.keyCode) {
|
130
|
+
case Event.KEY_TAB:
|
131
|
+
case Event.KEY_RETURN:
|
132
|
+
this.selectEntry();
|
133
|
+
Event.stop(event);
|
134
|
+
case Event.KEY_ESC:
|
135
|
+
this.hide();
|
136
|
+
this.active = false;
|
137
|
+
Event.stop(event);
|
138
|
+
return;
|
139
|
+
case Event.KEY_LEFT:
|
140
|
+
case Event.KEY_RIGHT:
|
141
|
+
return;
|
142
|
+
case Event.KEY_UP:
|
143
|
+
this.markPrevious();
|
144
|
+
this.render();
|
145
|
+
Event.stop(event);
|
146
|
+
return;
|
147
|
+
case Event.KEY_DOWN:
|
148
|
+
this.markNext();
|
149
|
+
this.render();
|
150
|
+
Event.stop(event);
|
151
|
+
return;
|
152
|
+
}
|
153
|
+
else
|
154
|
+
if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN ||
|
155
|
+
(Prototype.Browser.WebKit > 0 && event.keyCode == 0)) return;
|
156
|
+
|
157
|
+
this.changed = true;
|
158
|
+
this.hasFocus = true;
|
159
|
+
|
160
|
+
if(this.observer) clearTimeout(this.observer);
|
161
|
+
this.observer =
|
162
|
+
setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000);
|
163
|
+
},
|
164
|
+
|
165
|
+
activate: function() {
|
166
|
+
this.changed = false;
|
167
|
+
this.hasFocus = true;
|
168
|
+
this.getUpdatedChoices();
|
169
|
+
},
|
170
|
+
|
171
|
+
onHover: function(event) {
|
172
|
+
var element = Event.findElement(event, 'LI');
|
173
|
+
if(this.index != element.autocompleteIndex)
|
174
|
+
{
|
175
|
+
this.index = element.autocompleteIndex;
|
176
|
+
this.render();
|
177
|
+
}
|
178
|
+
Event.stop(event);
|
179
|
+
},
|
180
|
+
|
181
|
+
onClick: function(event) {
|
182
|
+
var element = Event.findElement(event, 'LI');
|
183
|
+
this.index = element.autocompleteIndex;
|
184
|
+
this.selectEntry();
|
185
|
+
this.hide();
|
186
|
+
},
|
187
|
+
|
188
|
+
onBlur: function(event) {
|
189
|
+
// needed to make click events working
|
190
|
+
setTimeout(this.hide.bind(this), 250);
|
191
|
+
this.hasFocus = false;
|
192
|
+
this.active = false;
|
193
|
+
},
|
194
|
+
|
195
|
+
render: function() {
|
196
|
+
if(this.entryCount > 0) {
|
197
|
+
for (var i = 0; i < this.entryCount; i++)
|
198
|
+
this.index==i ?
|
199
|
+
Element.addClassName(this.getEntry(i),"selected") :
|
200
|
+
Element.removeClassName(this.getEntry(i),"selected");
|
201
|
+
if(this.hasFocus) {
|
202
|
+
this.show();
|
203
|
+
this.active = true;
|
204
|
+
}
|
205
|
+
} else {
|
206
|
+
this.active = false;
|
207
|
+
this.hide();
|
208
|
+
}
|
209
|
+
},
|
210
|
+
|
211
|
+
markPrevious: function() {
|
212
|
+
if(this.index > 0) this.index--;
|
213
|
+
else this.index = this.entryCount-1;
|
214
|
+
this.getEntry(this.index).scrollIntoView(true);
|
215
|
+
},
|
216
|
+
|
217
|
+
markNext: function() {
|
218
|
+
if(this.index < this.entryCount-1) this.index++;
|
219
|
+
else this.index = 0;
|
220
|
+
this.getEntry(this.index).scrollIntoView(false);
|
221
|
+
},
|
222
|
+
|
223
|
+
getEntry: function(index) {
|
224
|
+
return this.update.firstChild.childNodes[index];
|
225
|
+
},
|
226
|
+
|
227
|
+
getCurrentEntry: function() {
|
228
|
+
return this.getEntry(this.index);
|
229
|
+
},
|
230
|
+
|
231
|
+
selectEntry: function() {
|
232
|
+
this.active = false;
|
233
|
+
this.updateElement(this.getCurrentEntry());
|
234
|
+
},
|
235
|
+
|
236
|
+
updateElement: function(selectedElement) {
|
237
|
+
if (this.options.updateElement) {
|
238
|
+
this.options.updateElement(selectedElement);
|
239
|
+
return;
|
240
|
+
}
|
241
|
+
var value = '';
|
242
|
+
if (this.options.select) {
|
243
|
+
var nodes = $(selectedElement).select('.' + this.options.select) || [];
|
244
|
+
if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);
|
245
|
+
} else
|
246
|
+
value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');
|
247
|
+
|
248
|
+
var bounds = this.getTokenBounds();
|
249
|
+
if (bounds[0] != -1) {
|
250
|
+
var newValue = this.element.value.substr(0, bounds[0]);
|
251
|
+
var whitespace = this.element.value.substr(bounds[0]).match(/^\s+/);
|
252
|
+
if (whitespace)
|
253
|
+
newValue += whitespace[0];
|
254
|
+
this.element.value = newValue + value + this.element.value.substr(bounds[1]);
|
255
|
+
} else {
|
256
|
+
this.element.value = value;
|
257
|
+
}
|
258
|
+
this.oldElementValue = this.element.value;
|
259
|
+
this.element.focus();
|
260
|
+
|
261
|
+
if (this.options.afterUpdateElement)
|
262
|
+
this.options.afterUpdateElement(this.element, selectedElement);
|
263
|
+
},
|
264
|
+
|
265
|
+
updateChoices: function(choices) {
|
266
|
+
if(!this.changed && this.hasFocus) {
|
267
|
+
this.update.innerHTML = choices;
|
268
|
+
Element.cleanWhitespace(this.update);
|
269
|
+
Element.cleanWhitespace(this.update.down());
|
270
|
+
|
271
|
+
if(this.update.firstChild && this.update.down().childNodes) {
|
272
|
+
this.entryCount =
|
273
|
+
this.update.down().childNodes.length;
|
274
|
+
for (var i = 0; i < this.entryCount; i++) {
|
275
|
+
var entry = this.getEntry(i);
|
276
|
+
entry.autocompleteIndex = i;
|
277
|
+
this.addObservers(entry);
|
278
|
+
}
|
279
|
+
} else {
|
280
|
+
this.entryCount = 0;
|
281
|
+
}
|
282
|
+
|
283
|
+
this.stopIndicator();
|
284
|
+
this.index = 0;
|
285
|
+
|
286
|
+
if(this.entryCount==1 && this.options.autoSelect) {
|
287
|
+
this.selectEntry();
|
288
|
+
this.hide();
|
289
|
+
} else {
|
290
|
+
this.render();
|
291
|
+
}
|
292
|
+
}
|
293
|
+
},
|
294
|
+
|
295
|
+
addObservers: function(element) {
|
296
|
+
Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this));
|
297
|
+
Event.observe(element, "click", this.onClick.bindAsEventListener(this));
|
298
|
+
},
|
299
|
+
|
300
|
+
onObserverEvent: function() {
|
301
|
+
this.changed = false;
|
302
|
+
this.tokenBounds = null;
|
303
|
+
if(this.getToken().length>=this.options.minChars) {
|
304
|
+
this.getUpdatedChoices();
|
305
|
+
} else {
|
306
|
+
this.active = false;
|
307
|
+
this.hide();
|
308
|
+
}
|
309
|
+
this.oldElementValue = this.element.value;
|
310
|
+
},
|
311
|
+
|
312
|
+
getToken: function() {
|
313
|
+
var bounds = this.getTokenBounds();
|
314
|
+
return this.element.value.substring(bounds[0], bounds[1]).strip();
|
315
|
+
},
|
316
|
+
|
317
|
+
getTokenBounds: function() {
|
318
|
+
if (null != this.tokenBounds) return this.tokenBounds;
|
319
|
+
var value = this.element.value;
|
320
|
+
if (value.strip().empty()) return [-1, 0];
|
321
|
+
var diff = arguments.callee.getFirstDifferencePos(value, this.oldElementValue);
|
322
|
+
var offset = (diff == this.oldElementValue.length ? 1 : 0);
|
323
|
+
var prevTokenPos = -1, nextTokenPos = value.length;
|
324
|
+
var tp;
|
325
|
+
for (var index = 0, l = this.options.tokens.length; index < l; ++index) {
|
326
|
+
tp = value.lastIndexOf(this.options.tokens[index], diff + offset - 1);
|
327
|
+
if (tp > prevTokenPos) prevTokenPos = tp;
|
328
|
+
tp = value.indexOf(this.options.tokens[index], diff + offset);
|
329
|
+
if (-1 != tp && tp < nextTokenPos) nextTokenPos = tp;
|
330
|
+
}
|
331
|
+
return (this.tokenBounds = [prevTokenPos + 1, nextTokenPos]);
|
332
|
+
}
|
333
|
+
});
|
334
|
+
|
335
|
+
Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {
|
336
|
+
var boundary = Math.min(newS.length, oldS.length);
|
337
|
+
for (var index = 0; index < boundary; ++index)
|
338
|
+
if (newS[index] != oldS[index])
|
339
|
+
return index;
|
340
|
+
return boundary;
|
341
|
+
};
|
342
|
+
|
343
|
+
Ajax.Autocompleter = Class.create(Autocompleter.Base, {
|
344
|
+
initialize: function(element, update, url, options) {
|
345
|
+
this.baseInitialize(element, update, options);
|
346
|
+
this.options.asynchronous = true;
|
347
|
+
this.options.onComplete = this.onComplete.bind(this);
|
348
|
+
this.options.defaultParams = this.options.parameters || null;
|
349
|
+
this.url = url;
|
350
|
+
},
|
351
|
+
|
352
|
+
getUpdatedChoices: function() {
|
353
|
+
this.startIndicator();
|
354
|
+
|
355
|
+
var entry = encodeURIComponent(this.options.paramName) + '=' +
|
356
|
+
encodeURIComponent(this.getToken());
|
357
|
+
|
358
|
+
this.options.parameters = this.options.callback ?
|
359
|
+
this.options.callback(this.element, entry) : entry;
|
360
|
+
|
361
|
+
if(this.options.defaultParams)
|
362
|
+
this.options.parameters += '&' + this.options.defaultParams;
|
363
|
+
|
364
|
+
new Ajax.Request(this.url, this.options);
|
365
|
+
},
|
366
|
+
|
367
|
+
onComplete: function(request) {
|
368
|
+
this.updateChoices(request.responseText);
|
369
|
+
}
|
370
|
+
});
|
371
|
+
|
372
|
+
// The local array autocompleter. Used when you'd prefer to
|
373
|
+
// inject an array of autocompletion options into the page, rather
|
374
|
+
// than sending out Ajax queries, which can be quite slow sometimes.
|
375
|
+
//
|
376
|
+
// The constructor takes four parameters. The first two are, as usual,
|
377
|
+
// the id of the monitored textbox, and id of the autocompletion menu.
|
378
|
+
// The third is the array you want to autocomplete from, and the fourth
|
379
|
+
// is the options block.
|
380
|
+
//
|
381
|
+
// Extra local autocompletion options:
|
382
|
+
// - choices - How many autocompletion choices to offer
|
383
|
+
//
|
384
|
+
// - partialSearch - If false, the autocompleter will match entered
|
385
|
+
// text only at the beginning of strings in the
|
386
|
+
// autocomplete array. Defaults to true, which will
|
387
|
+
// match text at the beginning of any *word* in the
|
388
|
+
// strings in the autocomplete array. If you want to
|
389
|
+
// search anywhere in the string, additionally set
|
390
|
+
// the option fullSearch to true (default: off).
|
391
|
+
//
|
392
|
+
// - fullSsearch - Search anywhere in autocomplete array strings.
|
393
|
+
//
|
394
|
+
// - partialChars - How many characters to enter before triggering
|
395
|
+
// a partial match (unlike minChars, which defines
|
396
|
+
// how many characters are required to do any match
|
397
|
+
// at all). Defaults to 2.
|
398
|
+
//
|
399
|
+
// - ignoreCase - Whether to ignore case when autocompleting.
|
400
|
+
// Defaults to true.
|
401
|
+
//
|
402
|
+
// It's possible to pass in a custom function as the 'selector'
|
403
|
+
// option, if you prefer to write your own autocompletion logic.
|
404
|
+
// In that case, the other options above will not apply unless
|
405
|
+
// you support them.
|
406
|
+
|
407
|
+
Autocompleter.Local = Class.create(Autocompleter.Base, {
|
408
|
+
initialize: function(element, update, array, options) {
|
409
|
+
this.baseInitialize(element, update, options);
|
410
|
+
this.options.array = array;
|
411
|
+
},
|
412
|
+
|
413
|
+
getUpdatedChoices: function() {
|
414
|
+
this.updateChoices(this.options.selector(this));
|
415
|
+
},
|
416
|
+
|
417
|
+
setOptions: function(options) {
|
418
|
+
this.options = Object.extend({
|
419
|
+
choices: 10,
|
420
|
+
partialSearch: true,
|
421
|
+
partialChars: 2,
|
422
|
+
ignoreCase: true,
|
423
|
+
fullSearch: false,
|
424
|
+
selector: function(instance) {
|
425
|
+
var ret = []; // Beginning matches
|
426
|
+
var partial = []; // Inside matches
|
427
|
+
var entry = instance.getToken();
|
428
|
+
var count = 0;
|
429
|
+
|
430
|
+
for (var i = 0; i < instance.options.array.length &&
|
431
|
+
ret.length < instance.options.choices ; i++) {
|
432
|
+
|
433
|
+
var elem = instance.options.array[i];
|
434
|
+
var foundPos = instance.options.ignoreCase ?
|
435
|
+
elem.toLowerCase().indexOf(entry.toLowerCase()) :
|
436
|
+
elem.indexOf(entry);
|
437
|
+
|
438
|
+
while (foundPos != -1) {
|
439
|
+
if (foundPos == 0 && elem.length != entry.length) {
|
440
|
+
ret.push("<li><strong>" + elem.substr(0, entry.length) + "</strong>" +
|
441
|
+
elem.substr(entry.length) + "</li>");
|
442
|
+
break;
|
443
|
+
} else if (entry.length >= instance.options.partialChars &&
|
444
|
+
instance.options.partialSearch && foundPos != -1) {
|
445
|
+
if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos-1,1))) {
|
446
|
+
partial.push("<li>" + elem.substr(0, foundPos) + "<strong>" +
|
447
|
+
elem.substr(foundPos, entry.length) + "</strong>" + elem.substr(
|
448
|
+
foundPos + entry.length) + "</li>");
|
449
|
+
break;
|
450
|
+
}
|
451
|
+
}
|
452
|
+
|
453
|
+
foundPos = instance.options.ignoreCase ?
|
454
|
+
elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) :
|
455
|
+
elem.indexOf(entry, foundPos + 1);
|
456
|
+
|
457
|
+
}
|
458
|
+
}
|
459
|
+
if (partial.length)
|
460
|
+
ret = ret.concat(partial.slice(0, instance.options.choices - ret.length));
|
461
|
+
return "<ul>" + ret.join('') + "</ul>";
|
462
|
+
}
|
463
|
+
}, options || { });
|
464
|
+
}
|
465
|
+
});
|
466
|
+
|
467
|
+
// AJAX in-place editor and collection editor
|
468
|
+
// Full rewrite by Christophe Porteneuve <tdd@tddsworld.com> (April 2007).
|
469
|
+
|
470
|
+
// Use this if you notice weird scrolling problems on some browsers,
|
471
|
+
// the DOM might be a bit confused when this gets called so do this
|
472
|
+
// waits 1 ms (with setTimeout) until it does the activation
|
473
|
+
Field.scrollFreeActivate = function(field) {
|
474
|
+
setTimeout(function() {
|
475
|
+
Field.activate(field);
|
476
|
+
}, 1);
|
477
|
+
};
|
478
|
+
|
479
|
+
Ajax.InPlaceEditor = Class.create({
|
480
|
+
initialize: function(element, url, options) {
|
481
|
+
this.url = url;
|
482
|
+
this.element = element = $(element);
|
483
|
+
this.prepareOptions();
|
484
|
+
this._controls = { };
|
485
|
+
arguments.callee.dealWithDeprecatedOptions(options); // DEPRECATION LAYER!!!
|
486
|
+
Object.extend(this.options, options || { });
|
487
|
+
if (!this.options.formId && this.element.id) {
|
488
|
+
this.options.formId = this.element.id + '-inplaceeditor';
|
489
|
+
if ($(this.options.formId))
|
490
|
+
this.options.formId = '';
|
491
|
+
}
|
492
|
+
if (this.options.externalControl)
|
493
|
+
this.options.externalControl = $(this.options.externalControl);
|
494
|
+
if (!this.options.externalControl)
|
495
|
+
this.options.externalControlOnly = false;
|
496
|
+
this._originalBackground = this.element.getStyle('background-color') || 'transparent';
|
497
|
+
this.element.title = this.options.clickToEditText;
|
498
|
+
this._boundCancelHandler = this.handleFormCancellation.bind(this);
|
499
|
+
this._boundComplete = (this.options.onComplete || Prototype.emptyFunction).bind(this);
|
500
|
+
this._boundFailureHandler = this.handleAJAXFailure.bind(this);
|
501
|
+
this._boundSubmitHandler = this.handleFormSubmission.bind(this);
|
502
|
+
this._boundWrapperHandler = this.wrapUp.bind(this);
|
503
|
+
this.registerListeners();
|
504
|
+
},
|
505
|
+
checkForEscapeOrReturn: function(e) {
|
506
|
+
if (!this._editing || e.ctrlKey || e.altKey || e.shiftKey) return;
|
507
|
+
if (Event.KEY_ESC == e.keyCode)
|
508
|
+
this.handleFormCancellation(e);
|
509
|
+
else if (Event.KEY_RETURN == e.keyCode)
|
510
|
+
this.handleFormSubmission(e);
|
511
|
+
},
|
512
|
+
createControl: function(mode, handler, extraClasses) {
|
513
|
+
var control = this.options[mode + 'Control'];
|
514
|
+
var text = this.options[mode + 'Text'];
|
515
|
+
if ('button' == control) {
|
516
|
+
var btn = document.createElement('input');
|
517
|
+
btn.type = 'submit';
|
518
|
+
btn.value = text;
|
519
|
+
btn.className = 'editor_' + mode + '_button';
|
520
|
+
if ('cancel' == mode)
|
521
|
+
btn.onclick = this._boundCancelHandler;
|
522
|
+
this._form.appendChild(btn);
|
523
|
+
this._controls[mode] = btn;
|
524
|
+
} else if ('link' == control) {
|
525
|
+
var link = document.createElement('a');
|
526
|
+
link.href = '#';
|
527
|
+
link.appendChild(document.createTextNode(text));
|
528
|
+
link.onclick = 'cancel' == mode ? this._boundCancelHandler : this._boundSubmitHandler;
|
529
|
+
link.className = 'editor_' + mode + '_link';
|
530
|
+
if (extraClasses)
|
531
|
+
link.className += ' ' + extraClasses;
|
532
|
+
this._form.appendChild(link);
|
533
|
+
this._controls[mode] = link;
|
534
|
+
}
|
535
|
+
},
|
536
|
+
createEditField: function() {
|
537
|
+
var text = (this.options.loadTextURL ? this.options.loadingText : this.getText());
|
538
|
+
var fld;
|
539
|
+
if (1 >= this.options.rows && !/\r|\n/.test(this.getText())) {
|
540
|
+
fld = document.createElement('input');
|
541
|
+
fld.type = 'text';
|
542
|
+
var size = this.options.size || this.options.cols || 0;
|
543
|
+
if (0 < size) fld.size = size;
|
544
|
+
} else {
|
545
|
+
fld = document.createElement('textarea');
|
546
|
+
fld.rows = (1 >= this.options.rows ? this.options.autoRows : this.options.rows);
|
547
|
+
fld.cols = this.options.cols || 40;
|
548
|
+
}
|
549
|
+
fld.name = this.options.paramName;
|
550
|
+
fld.value = text; // No HTML breaks conversion anymore
|
551
|
+
fld.className = 'editor_field';
|
552
|
+
if (this.options.submitOnBlur)
|
553
|
+
fld.onblur = this._boundSubmitHandler;
|
554
|
+
this._controls.editor = fld;
|
555
|
+
if (this.options.loadTextURL)
|
556
|
+
this.loadExternalText();
|
557
|
+
this._form.appendChild(this._controls.editor);
|
558
|
+
},
|
559
|
+
createForm: function() {
|
560
|
+
var ipe = this;
|
561
|
+
function addText(mode, condition) {
|
562
|
+
var text = ipe.options['text' + mode + 'Controls'];
|
563
|
+
if (!text || condition === false) return;
|
564
|
+
ipe._form.appendChild(document.createTextNode(text));
|
565
|
+
};
|
566
|
+
this._form = $(document.createElement('form'));
|
567
|
+
this._form.id = this.options.formId;
|
568
|
+
this._form.addClassName(this.options.formClassName);
|
569
|
+
this._form.onsubmit = this._boundSubmitHandler;
|
570
|
+
this.createEditField();
|
571
|
+
if ('textarea' == this._controls.editor.tagName.toLowerCase())
|
572
|
+
this._form.appendChild(document.createElement('br'));
|
573
|
+
if (this.options.onFormCustomization)
|
574
|
+
this.options.onFormCustomization(this, this._form);
|
575
|
+
addText('Before', this.options.okControl || this.options.cancelControl);
|
576
|
+
this.createControl('ok', this._boundSubmitHandler);
|
577
|
+
addText('Between', this.options.okControl && this.options.cancelControl);
|
578
|
+
this.createControl('cancel', this._boundCancelHandler, 'editor_cancel');
|
579
|
+
addText('After', this.options.okControl || this.options.cancelControl);
|
580
|
+
},
|
581
|
+
destroy: function() {
|
582
|
+
if (this._oldInnerHTML)
|
583
|
+
this.element.innerHTML = this._oldInnerHTML;
|
584
|
+
this.leaveEditMode();
|
585
|
+
this.unregisterListeners();
|
586
|
+
},
|
587
|
+
enterEditMode: function(e) {
|
588
|
+
if (this._saving || this._editing) return;
|
589
|
+
this._editing = true;
|
590
|
+
this.triggerCallback('onEnterEditMode');
|
591
|
+
if (this.options.externalControl)
|
592
|
+
this.options.externalControl.hide();
|
593
|
+
this.element.hide();
|
594
|
+
this.createForm();
|
595
|
+
this.element.parentNode.insertBefore(this._form, this.element);
|
596
|
+
if (!this.options.loadTextURL)
|
597
|
+
this.postProcessEditField();
|
598
|
+
if (e) Event.stop(e);
|
599
|
+
},
|
600
|
+
enterHover: function(e) {
|
601
|
+
if (this.options.hoverClassName)
|
602
|
+
this.element.addClassName(this.options.hoverClassName);
|
603
|
+
if (this._saving) return;
|
604
|
+
this.triggerCallback('onEnterHover');
|
605
|
+
},
|
606
|
+
getText: function() {
|
607
|
+
return this.element.innerHTML.unescapeHTML();
|
608
|
+
},
|
609
|
+
handleAJAXFailure: function(transport) {
|
610
|
+
this.triggerCallback('onFailure', transport);
|
611
|
+
if (this._oldInnerHTML) {
|
612
|
+
this.element.innerHTML = this._oldInnerHTML;
|
613
|
+
this._oldInnerHTML = null;
|
614
|
+
}
|
615
|
+
},
|
616
|
+
handleFormCancellation: function(e) {
|
617
|
+
this.wrapUp();
|
618
|
+
if (e) Event.stop(e);
|
619
|
+
},
|
620
|
+
handleFormSubmission: function(e) {
|
621
|
+
var form = this._form;
|
622
|
+
var value = $F(this._controls.editor);
|
623
|
+
this.prepareSubmission();
|
624
|
+
var params = this.options.callback(form, value) || '';
|
625
|
+
if (Object.isString(params))
|
626
|
+
params = params.toQueryParams();
|
627
|
+
params.editorId = this.element.id;
|
628
|
+
if (this.options.htmlResponse) {
|
629
|
+
var options = Object.extend({ evalScripts: true }, this.options.ajaxOptions);
|
630
|
+
Object.extend(options, {
|
631
|
+
parameters: params,
|
632
|
+
onComplete: this._boundWrapperHandler,
|
633
|
+
onFailure: this._boundFailureHandler
|
634
|
+
});
|
635
|
+
new Ajax.Updater({ success: this.element }, this.url, options);
|
636
|
+
} else {
|
637
|
+
var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
|
638
|
+
Object.extend(options, {
|
639
|
+
parameters: params,
|
640
|
+
onComplete: this._boundWrapperHandler,
|
641
|
+
onFailure: this._boundFailureHandler
|
642
|
+
});
|
643
|
+
new Ajax.Request(this.url, options);
|
644
|
+
}
|
645
|
+
if (e) Event.stop(e);
|
646
|
+
},
|
647
|
+
leaveEditMode: function() {
|
648
|
+
this.element.removeClassName(this.options.savingClassName);
|
649
|
+
this.removeForm();
|
650
|
+
this.leaveHover();
|
651
|
+
this.element.style.backgroundColor = this._originalBackground;
|
652
|
+
this.element.show();
|
653
|
+
if (this.options.externalControl)
|
654
|
+
this.options.externalControl.show();
|
655
|
+
this._saving = false;
|
656
|
+
this._editing = false;
|
657
|
+
this._oldInnerHTML = null;
|
658
|
+
this.triggerCallback('onLeaveEditMode');
|
659
|
+
},
|
660
|
+
leaveHover: function(e) {
|
661
|
+
if (this.options.hoverClassName)
|
662
|
+
this.element.removeClassName(this.options.hoverClassName);
|
663
|
+
if (this._saving) return;
|
664
|
+
this.triggerCallback('onLeaveHover');
|
665
|
+
},
|
666
|
+
loadExternalText: function() {
|
667
|
+
this._form.addClassName(this.options.loadingClassName);
|
668
|
+
this._controls.editor.disabled = true;
|
669
|
+
var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
|
670
|
+
Object.extend(options, {
|
671
|
+
parameters: 'editorId=' + encodeURIComponent(this.element.id),
|
672
|
+
onComplete: Prototype.emptyFunction,
|
673
|
+
onSuccess: function(transport) {
|
674
|
+
this._form.removeClassName(this.options.loadingClassName);
|
675
|
+
var text = transport.responseText;
|
676
|
+
if (this.options.stripLoadedTextTags)
|
677
|
+
text = text.stripTags();
|
678
|
+
this._controls.editor.value = text;
|
679
|
+
this._controls.editor.disabled = false;
|
680
|
+
this.postProcessEditField();
|
681
|
+
}.bind(this),
|
682
|
+
onFailure: this._boundFailureHandler
|
683
|
+
});
|
684
|
+
new Ajax.Request(this.options.loadTextURL, options);
|
685
|
+
},
|
686
|
+
postProcessEditField: function() {
|
687
|
+
var fpc = this.options.fieldPostCreation;
|
688
|
+
if (fpc)
|
689
|
+
$(this._controls.editor)['focus' == fpc ? 'focus' : 'activate']();
|
690
|
+
},
|
691
|
+
prepareOptions: function() {
|
692
|
+
this.options = Object.clone(Ajax.InPlaceEditor.DefaultOptions);
|
693
|
+
Object.extend(this.options, Ajax.InPlaceEditor.DefaultCallbacks);
|
694
|
+
[this._extraDefaultOptions].flatten().compact().each(function(defs) {
|
695
|
+
Object.extend(this.options, defs);
|
696
|
+
}.bind(this));
|
697
|
+
},
|
698
|
+
prepareSubmission: function() {
|
699
|
+
this._saving = true;
|
700
|
+
this.removeForm();
|
701
|
+
this.leaveHover();
|
702
|
+
this.showSaving();
|
703
|
+
},
|
704
|
+
registerListeners: function() {
|
705
|
+
this._listeners = { };
|
706
|
+
var listener;
|
707
|
+
$H(Ajax.InPlaceEditor.Listeners).each(function(pair) {
|
708
|
+
listener = this[pair.value].bind(this);
|
709
|
+
this._listeners[pair.key] = listener;
|
710
|
+
if (!this.options.externalControlOnly)
|
711
|
+
this.element.observe(pair.key, listener);
|
712
|
+
if (this.options.externalControl)
|
713
|
+
this.options.externalControl.observe(pair.key, listener);
|
714
|
+
}.bind(this));
|
715
|
+
},
|
716
|
+
removeForm: function() {
|
717
|
+
if (!this._form) return;
|
718
|
+
this._form.remove();
|
719
|
+
this._form = null;
|
720
|
+
this._controls = { };
|
721
|
+
},
|
722
|
+
showSaving: function() {
|
723
|
+
this._oldInnerHTML = this.element.innerHTML;
|
724
|
+
this.element.innerHTML = this.options.savingText;
|
725
|
+
this.element.addClassName(this.options.savingClassName);
|
726
|
+
this.element.style.backgroundColor = this._originalBackground;
|
727
|
+
this.element.show();
|
728
|
+
},
|
729
|
+
triggerCallback: function(cbName, arg) {
|
730
|
+
if ('function' == typeof this.options[cbName]) {
|
731
|
+
this.options[cbName](this, arg);
|
732
|
+
}
|
733
|
+
},
|
734
|
+
unregisterListeners: function() {
|
735
|
+
$H(this._listeners).each(function(pair) {
|
736
|
+
if (!this.options.externalControlOnly)
|
737
|
+
this.element.stopObserving(pair.key, pair.value);
|
738
|
+
if (this.options.externalControl)
|
739
|
+
this.options.externalControl.stopObserving(pair.key, pair.value);
|
740
|
+
}.bind(this));
|
741
|
+
},
|
742
|
+
wrapUp: function(transport) {
|
743
|
+
this.leaveEditMode();
|
744
|
+
// Can't use triggerCallback due to backward compatibility: requires
|
745
|
+
// binding + direct element
|
746
|
+
this._boundComplete(transport, this.element);
|
747
|
+
}
|
748
|
+
});
|
749
|
+
|
750
|
+
Object.extend(Ajax.InPlaceEditor.prototype, {
|
751
|
+
dispose: Ajax.InPlaceEditor.prototype.destroy
|
752
|
+
});
|
753
|
+
|
754
|
+
Ajax.InPlaceCollectionEditor = Class.create(Ajax.InPlaceEditor, {
|
755
|
+
initialize: function($super, element, url, options) {
|
756
|
+
this._extraDefaultOptions = Ajax.InPlaceCollectionEditor.DefaultOptions;
|
757
|
+
$super(element, url, options);
|
758
|
+
},
|
759
|
+
|
760
|
+
createEditField: function() {
|
761
|
+
var list = document.createElement('select');
|
762
|
+
list.name = this.options.paramName;
|
763
|
+
list.size = 1;
|
764
|
+
this._controls.editor = list;
|
765
|
+
this._collection = this.options.collection || [];
|
766
|
+
if (this.options.loadCollectionURL)
|
767
|
+
this.loadCollection();
|
768
|
+
else
|
769
|
+
this.checkForExternalText();
|
770
|
+
this._form.appendChild(this._controls.editor);
|
771
|
+
},
|
772
|
+
|
773
|
+
loadCollection: function() {
|
774
|
+
this._form.addClassName(this.options.loadingClassName);
|
775
|
+
this.showLoadingText(this.options.loadingCollectionText);
|
776
|
+
var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
|
777
|
+
Object.extend(options, {
|
778
|
+
parameters: 'editorId=' + encodeURIComponent(this.element.id),
|
779
|
+
onComplete: Prototype.emptyFunction,
|
780
|
+
onSuccess: function(transport) {
|
781
|
+
var js = transport.responseText.strip();
|
782
|
+
if (!/^\[.*\]$/.test(js)) // TODO: improve sanity check
|
783
|
+
throw('Server returned an invalid collection representation.');
|
784
|
+
this._collection = eval(js);
|
785
|
+
this.checkForExternalText();
|
786
|
+
}.bind(this),
|
787
|
+
onFailure: this.onFailure
|
788
|
+
});
|
789
|
+
new Ajax.Request(this.options.loadCollectionURL, options);
|
790
|
+
},
|
791
|
+
|
792
|
+
showLoadingText: function(text) {
|
793
|
+
this._controls.editor.disabled = true;
|
794
|
+
var tempOption = this._controls.editor.firstChild;
|
795
|
+
if (!tempOption) {
|
796
|
+
tempOption = document.createElement('option');
|
797
|
+
tempOption.value = '';
|
798
|
+
this._controls.editor.appendChild(tempOption);
|
799
|
+
tempOption.selected = true;
|
800
|
+
}
|
801
|
+
tempOption.update((text || '').stripScripts().stripTags());
|
802
|
+
},
|
803
|
+
|
804
|
+
checkForExternalText: function() {
|
805
|
+
this._text = this.getText();
|
806
|
+
if (this.options.loadTextURL)
|
807
|
+
this.loadExternalText();
|
808
|
+
else
|
809
|
+
this.buildOptionList();
|
810
|
+
},
|
811
|
+
|
812
|
+
loadExternalText: function() {
|
813
|
+
this.showLoadingText(this.options.loadingText);
|
814
|
+
var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
|
815
|
+
Object.extend(options, {
|
816
|
+
parameters: 'editorId=' + encodeURIComponent(this.element.id),
|
817
|
+
onComplete: Prototype.emptyFunction,
|
818
|
+
onSuccess: function(transport) {
|
819
|
+
this._text = transport.responseText.strip();
|
820
|
+
this.buildOptionList();
|
821
|
+
}.bind(this),
|
822
|
+
onFailure: this.onFailure
|
823
|
+
});
|
824
|
+
new Ajax.Request(this.options.loadTextURL, options);
|
825
|
+
},
|
826
|
+
|
827
|
+
buildOptionList: function() {
|
828
|
+
this._form.removeClassName(this.options.loadingClassName);
|
829
|
+
this._collection = this._collection.map(function(entry) {
|
830
|
+
return 2 === entry.length ? entry : [entry, entry].flatten();
|
831
|
+
});
|
832
|
+
var marker = ('value' in this.options) ? this.options.value : this._text;
|
833
|
+
var textFound = this._collection.any(function(entry) {
|
834
|
+
return entry[0] == marker;
|
835
|
+
}.bind(this));
|
836
|
+
this._controls.editor.update('');
|
837
|
+
var option;
|
838
|
+
this._collection.each(function(entry, index) {
|
839
|
+
option = document.createElement('option');
|
840
|
+
option.value = entry[0];
|
841
|
+
option.selected = textFound ? entry[0] == marker : 0 == index;
|
842
|
+
option.appendChild(document.createTextNode(entry[1]));
|
843
|
+
this._controls.editor.appendChild(option);
|
844
|
+
}.bind(this));
|
845
|
+
this._controls.editor.disabled = false;
|
846
|
+
Field.scrollFreeActivate(this._controls.editor);
|
847
|
+
}
|
848
|
+
});
|
849
|
+
|
850
|
+
//**** DEPRECATION LAYER FOR InPlace[Collection]Editor! ****
|
851
|
+
//**** This only exists for a while, in order to let ****
|
852
|
+
//**** users adapt to the new API. Read up on the new ****
|
853
|
+
//**** API and convert your code to it ASAP! ****
|
854
|
+
|
855
|
+
Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {
|
856
|
+
if (!options) return;
|
857
|
+
function fallback(name, expr) {
|
858
|
+
if (name in options || expr === undefined) return;
|
859
|
+
options[name] = expr;
|
860
|
+
};
|
861
|
+
fallback('cancelControl', (options.cancelLink ? 'link' : (options.cancelButton ? 'button' :
|
862
|
+
options.cancelLink == options.cancelButton == false ? false : undefined)));
|
863
|
+
fallback('okControl', (options.okLink ? 'link' : (options.okButton ? 'button' :
|
864
|
+
options.okLink == options.okButton == false ? false : undefined)));
|
865
|
+
fallback('highlightColor', options.highlightcolor);
|
866
|
+
fallback('highlightEndColor', options.highlightendcolor);
|
867
|
+
};
|
868
|
+
|
869
|
+
Object.extend(Ajax.InPlaceEditor, {
|
870
|
+
DefaultOptions: {
|
871
|
+
ajaxOptions: { },
|
872
|
+
autoRows: 3, // Use when multi-line w/ rows == 1
|
873
|
+
cancelControl: 'link', // 'link'|'button'|false
|
874
|
+
cancelText: 'cancel',
|
875
|
+
clickToEditText: 'Click to edit',
|
876
|
+
externalControl: null, // id|elt
|
877
|
+
externalControlOnly: false,
|
878
|
+
fieldPostCreation: 'activate', // 'activate'|'focus'|false
|
879
|
+
formClassName: 'inplaceeditor-form',
|
880
|
+
formId: null, // id|elt
|
881
|
+
highlightColor: '#ffff99',
|
882
|
+
highlightEndColor: '#ffffff',
|
883
|
+
hoverClassName: '',
|
884
|
+
htmlResponse: true,
|
885
|
+
loadingClassName: 'inplaceeditor-loading',
|
886
|
+
loadingText: 'Loading...',
|
887
|
+
okControl: 'button', // 'link'|'button'|false
|
888
|
+
okText: 'ok',
|
889
|
+
paramName: 'value',
|
890
|
+
rows: 1, // If 1 and multi-line, uses autoRows
|
891
|
+
savingClassName: 'inplaceeditor-saving',
|
892
|
+
savingText: 'Saving...',
|
893
|
+
size: 0,
|
894
|
+
stripLoadedTextTags: false,
|
895
|
+
submitOnBlur: false,
|
896
|
+
textAfterControls: '',
|
897
|
+
textBeforeControls: '',
|
898
|
+
textBetweenControls: ''
|
899
|
+
},
|
900
|
+
DefaultCallbacks: {
|
901
|
+
callback: function(form) {
|
902
|
+
return Form.serialize(form);
|
903
|
+
},
|
904
|
+
onComplete: function(transport, element) {
|
905
|
+
// For backward compatibility, this one is bound to the IPE, and passes
|
906
|
+
// the element directly. It was too often customized, so we don't break it.
|
907
|
+
new Effect.Highlight(element, {
|
908
|
+
startcolor: this.options.highlightColor, keepBackgroundImage: true });
|
909
|
+
},
|
910
|
+
onEnterEditMode: null,
|
911
|
+
onEnterHover: function(ipe) {
|
912
|
+
ipe.element.style.backgroundColor = ipe.options.highlightColor;
|
913
|
+
if (ipe._effect)
|
914
|
+
ipe._effect.cancel();
|
915
|
+
},
|
916
|
+
onFailure: function(transport, ipe) {
|
917
|
+
alert('Error communication with the server: ' + transport.responseText.stripTags());
|
918
|
+
},
|
919
|
+
onFormCustomization: null, // Takes the IPE and its generated form, after editor, before controls.
|
920
|
+
onLeaveEditMode: null,
|
921
|
+
onLeaveHover: function(ipe) {
|
922
|
+
ipe._effect = new Effect.Highlight(ipe.element, {
|
923
|
+
startcolor: ipe.options.highlightColor, endcolor: ipe.options.highlightEndColor,
|
924
|
+
restorecolor: ipe._originalBackground, keepBackgroundImage: true
|
925
|
+
});
|
926
|
+
}
|
927
|
+
},
|
928
|
+
Listeners: {
|
929
|
+
click: 'enterEditMode',
|
930
|
+
keydown: 'checkForEscapeOrReturn',
|
931
|
+
mouseover: 'enterHover',
|
932
|
+
mouseout: 'leaveHover'
|
933
|
+
}
|
934
|
+
});
|
935
|
+
|
936
|
+
Ajax.InPlaceCollectionEditor.DefaultOptions = {
|
937
|
+
loadingCollectionText: 'Loading options...'
|
938
|
+
};
|
939
|
+
|
940
|
+
// Delayed observer, like Form.Element.Observer,
|
941
|
+
// but waits for delay after last key input
|
942
|
+
// Ideal for live-search fields
|
943
|
+
|
944
|
+
Form.Element.DelayedObserver = Class.create({
|
945
|
+
initialize: function(element, delay, callback) {
|
946
|
+
this.delay = delay || 0.5;
|
947
|
+
this.element = $(element);
|
948
|
+
this.callback = callback;
|
949
|
+
this.timer = null;
|
950
|
+
this.lastValue = $F(this.element);
|
951
|
+
Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));
|
952
|
+
},
|
953
|
+
delayedListener: function(event) {
|
954
|
+
if(this.lastValue == $F(this.element)) return;
|
955
|
+
if(this.timer) clearTimeout(this.timer);
|
956
|
+
this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000);
|
957
|
+
this.lastValue = $F(this.element);
|
958
|
+
},
|
959
|
+
onTimerEvent: function() {
|
960
|
+
this.timer = null;
|
961
|
+
this.callback(this.element, $F(this.element));
|
962
|
+
}
|
963
|
+
});
|