hydra-head 3.0.0pre1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +71 -0
- data/.gitmodules +6 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +257 -0
- data/README.textile +150 -0
- data/README_RAILS3_CHANGES.textile +42 -0
- data/Rakefile +5 -0
- data/TESTING.textile +85 -0
- data/app/controllers/assets_controller.rb +117 -0
- data/app/controllers/contributors_controller.rb +54 -0
- data/app/controllers/file_assets_controller.rb +152 -0
- data/app/controllers/permissions_controller.rb +137 -0
- data/app/controllers/user_sessions_controller.rb +14 -0
- data/app/helpers/article_metadata_helper.rb +80 -0
- data/app/helpers/blacklight_helper.rb +192 -0
- data/app/helpers/downloads_helper.rb +19 -0
- data/app/helpers/generic_content_objects_helper.rb +16 -0
- data/app/helpers/hydra_assets_helper.rb +75 -0
- data/app/helpers/hydra_djatoka_helper.rb +23 -0
- data/app/helpers/hydra_fedora_metadata_helper.rb +365 -0
- data/app/helpers/hydra_helper.rb +155 -0
- data/app/helpers/hydra_uploader_helper.rb +18 -0
- data/app/helpers/inline_editable_metadata_helper.rb +15 -0
- data/app/helpers/javascript_includes_helper.rb +93 -0
- data/app/helpers/release_process_helper.rb +32 -0
- data/app/models/audio_asset.rb +8 -0
- data/app/models/file_asset.rb +111 -0
- data/app/models/generic_content.rb +21 -0
- data/app/models/generic_image.rb +62 -0
- data/app/models/image_asset.rb +8 -0
- data/app/models/mods_asset.rb +6 -0
- data/app/models/role_mapper.rb +22 -0
- data/app/models/superuser.rb +6 -0
- data/app/models/video_asset.rb +8 -0
- data/app/views/_add_assets_links.html.erb +13 -0
- data/app/views/_brown_sidebar.html +15 -0
- data/app/views/_user_util_links.html.erb +31 -0
- data/app/views/catalog/_citation.html.erb +11 -0
- data/app/views/catalog/_constraints_element.html.erb +34 -0
- data/app/views/catalog/_delete_partials/_default.html.erb +29 -0
- data/app/views/catalog/_document_list.html.erb +11 -0
- data/app/views/catalog/_edit_partials/_default.html.erb +64 -0
- data/app/views/catalog/_edit_partials/_default_details.html.erb +15 -0
- data/app/views/catalog/_email_form.html.erb +9 -0
- data/app/views/catalog/_facets.html.erb +37 -0
- data/app/views/catalog/_flash_msg.html.erb +17 -0
- data/app/views/catalog/_home.html.erb +6 -0
- data/app/views/catalog/_home_text.html.erb +10 -0
- data/app/views/catalog/_index_partials/_default.html.erb +20 -0
- data/app/views/catalog/_index_partials/_default_details.html.erb +11 -0
- data/app/views/catalog/_index_partials/_default_group.html.erb +15 -0
- data/app/views/catalog/_search_form.html.erb +12 -0
- data/app/views/catalog/_show_partials/_default.html.erb +23 -0
- data/app/views/catalog/_show_partials/_default_details.html.erb +12 -0
- data/app/views/catalog/_show_partials/_facets.html.erb +52 -0
- data/app/views/catalog/_sms_form.html.erb +21 -0
- data/app/views/catalog/_sort_and_per_page.html.erb +22 -0
- data/app/views/catalog/_uva_tabs.html.erb +10 -0
- data/app/views/catalog/about.html.erb +0 -0
- data/app/views/catalog/show.html.erb +48 -0
- data/app/views/contributors/_add_contributor_split_button.html.erb +10 -0
- data/app/views/contributors/_edit_conference.html.erb +29 -0
- data/app/views/contributors/_edit_organization.html.erb +29 -0
- data/app/views/contributors/_edit_person.html.erb +42 -0
- data/app/views/contributors/_index.html.erb +12 -0
- data/app/views/contributors/_new.html.erb +10 -0
- data/app/views/contributors/_show_conference.html.erb +22 -0
- data/app/views/contributors/_show_organization.html.erb +29 -0
- data/app/views/contributors/_show_person.html.erb +17 -0
- data/app/views/contributors/new.html.erb +13 -0
- data/app/views/downloads/index.html.erb +1 -0
- data/app/views/file_assets/_deletable_result.html.erb +5 -0
- data/app/views/file_assets/_index.html.erb +15 -0
- data/app/views/file_assets/_new.html.erb +2 -0
- data/app/views/file_assets/_result.html.erb +16 -0
- data/app/views/file_assets/index.html.erb +5 -0
- data/app/views/fluid_infusion/_uploader.html.erb +81 -0
- data/app/views/fluid_infusion/_uploader_generic_content_objects.js.erb +38 -0
- data/app/views/fluid_infusion/_uploader_js.erb +45 -0
- data/app/views/generic_content_objects/_edit_description.html.erb +50 -0
- data/app/views/generic_content_objects/_new.html.erb +0 -0
- data/app/views/generic_content_objects/_show_description.html.erb +68 -0
- data/app/views/generic_content_objects/contributors/_edit_conference.html.erb +29 -0
- data/app/views/generic_content_objects/contributors/_edit_organization.html.erb +29 -0
- data/app/views/generic_content_objects/contributors/_edit_person.html.erb +37 -0
- data/app/views/generic_content_objects/contributors/_new.html.erb +10 -0
- data/app/views/generic_content_objects/contributors/_show_conference.html.erb +22 -0
- data/app/views/generic_content_objects/contributors/_show_organization.html.erb +22 -0
- data/app/views/generic_content_objects/contributors/_show_person.html.erb +38 -0
- data/app/views/generic_contents/_edit.html.erb +59 -0
- data/app/views/generic_contents/_index.html.erb +23 -0
- data/app/views/generic_contents/_show.html.erb +18 -0
- data/app/views/generic_contents/_show_content.html.erb +4 -0
- data/app/views/generic_images/_edit.html.erb +59 -0
- data/app/views/generic_images/_index.html.erb +24 -0
- data/app/views/generic_images/_show.html.erb +18 -0
- data/app/views/generic_images/_show_all.html.erb +14 -0
- data/app/views/generic_images/_show_content.html.erb +7 -0
- data/app/views/layouts/application.html.erb +57 -0
- data/app/views/layouts/hydra-head.html.erb +12 -0
- data/app/views/mods_assets/_edit.html.erb +49 -0
- data/app/views/mods_assets/_edit_description.html.erb +82 -0
- data/app/views/mods_assets/_edit_journal.html.erb +72 -0
- data/app/views/mods_assets/_index.html.erb +1 -0
- data/app/views/mods_assets/_index_list.html.erb +37 -0
- data/app/views/mods_assets/_index_table.html.erb +7 -0
- data/app/views/mods_assets/_progress_box.html.erb +82 -0
- data/app/views/mods_assets/_show.html.erb +44 -0
- data/app/views/mods_assets/_show_description.html.erb +44 -0
- data/app/views/mods_assets/_show_journal.html.erb +42 -0
- data/app/views/mods_assets/_show_permissions.html.erb +14 -0
- data/app/views/permissions/_edit_person_permissions.html.erb +35 -0
- data/app/views/permissions/_index.html.erb +55 -0
- data/app/views/permissions/_new.html.erb +18 -0
- data/app/views/permissions/index.html.erb +1 -0
- data/app/views/permissions/new.html.erb +1 -0
- data/app/views/shared/_delete_asset_confirmation.html.erb +17 -0
- data/app/views/user_sessions/_login_form.html.erb +10 -0
- data/app/views/user_sessions/logged_out.html.erb +1 -0
- data/config/routes.rb +12 -0
- data/fedora_conf/conf/fedora.fcfg +1021 -0
- data/hydra-head.gemspec +70 -0
- data/lib/application_controller.rb +25 -0
- data/lib/application_helper.rb +2 -0
- data/lib/engine.rb +30 -0
- data/lib/generators/hydra/head_generator.rb +152 -0
- data/lib/generators/hydra/templates/config/fedora.yml +17 -0
- data/lib/generators/hydra/templates/config/initializers/blacklight_config.rb +246 -0
- data/lib/generators/hydra/templates/config/initializers/fedora_config.rb +23 -0
- data/lib/generators/hydra/templates/config/initializers/hydra_config.rb +29 -0
- data/lib/generators/hydra/templates/config/role_map_cucumber.yml +10 -0
- data/lib/generators/hydra/templates/config/role_map_development.yml +12 -0
- data/lib/generators/hydra/templates/config/role_map_production.yml +2 -0
- data/lib/generators/hydra/templates/config/role_map_test.yml +15 -0
- data/lib/generators/hydra/templates/config/solr.yml +10 -0
- data/lib/generators/hydra/templates/config/solr_mappings.yml +22 -0
- data/lib/generators/hydra/templates/fedora_conf/conf/fedora.fcfg +1021 -0
- data/lib/generators/hydra/templates/migrations/add_user_attributes_table.rb +15 -0
- data/lib/generators/hydra/templates/migrations/create_superusers.rb +12 -0
- data/lib/generators/hydra/templates/solr_conf/conf/schema.xml +118 -0
- data/lib/generators/hydra/templates/solr_conf/conf/solrconfig.xml +332 -0
- data/lib/generators/hydra/templates/solr_conf/solr.xml +35 -0
- data/lib/hydra-head.rb +29 -0
- data/lib/hydra-head/engine.rb +9 -0
- data/lib/hydra-head/routes.rb +87 -0
- data/lib/hydra-head/version.rb +4 -0
- data/lib/hydra.rb +22 -0
- data/lib/hydra/access_controls_enforcement.rb +236 -0
- data/lib/hydra/access_controls_evaluation.rb +97 -0
- data/lib/hydra/assets_controller_helper.rb +144 -0
- data/lib/hydra/catalog.rb +64 -0
- data/lib/hydra/common_mods_index_methods.rb +42 -0
- data/lib/hydra/controller.rb +7 -0
- data/lib/hydra/file_assets_helper.rb +144 -0
- data/lib/hydra/fixtures.rb +43 -0
- data/lib/hydra/generic_content.rb +113 -0
- data/lib/hydra/generic_image.rb +100 -0
- data/lib/hydra/image.rb +177 -0
- data/lib/hydra/model_methods.rb +95 -0
- data/lib/hydra/model_mixins.rb +2 -0
- data/lib/hydra/model_mixins/common_metadata.rb +24 -0
- data/lib/hydra/model_mixins/mods_object.rb +16 -0
- data/lib/hydra/mods_article.rb +505 -0
- data/lib/hydra/mods_dataset.rb +165 -0
- data/lib/hydra/mods_generic_content.rb +494 -0
- data/lib/hydra/mods_image.rb +494 -0
- data/lib/hydra/repository_controller.rb +102 -0
- data/lib/hydra/rights_metadata.rb +189 -0
- data/lib/hydra/superuser_attributes.rb +12 -0
- data/lib/hydra/testing_server.rb +183 -0
- data/lib/hydra/user.rb +22 -0
- data/lib/mediashelf/active_fedora_helper.rb +72 -0
- data/lib/railties/all_tests.rake +23 -0
- data/lib/railties/hydra-fixtures.rake +184 -0
- data/lib/railties/hydra_jetty.rake +79 -0
- data/lib/railties/hyhead_cucumber.rake +127 -0
- data/lib/railties/hyhead_rspec.rake +137 -0
- data/lib/stanford/searchworks_helper.rb +1338 -0
- data/lib/stanford/solr_helper.rb +108 -0
- data/lib/uva/mods_index_methods.rb +24 -0
- data/solr_conf/conf/schema.xml +122 -0
- data/solr_conf/conf/solrconfig.xml +332 -0
- data/solr_conf/solr.xml +35 -0
- data/tasks/hydra-head-fixtures.rake +54 -0
- data/tasks/hydra-head.rake +247 -0
- data/tasks/hydra_jetty.rake +79 -0
- data/tasks/replicator.rake +27 -0
- data/tasks/solrizer-fedora.rake +53 -0
- data/tasks/solrizer.rake +13 -0
- data/test_support/etc/Gemfile +29 -0
- data/test_support/etc/rvmrc +32 -0
- data/test_support/features/button_add_assets.feature +22 -0
- data/test_support/features/button_add_generic_content.feature +11 -0
- data/test_support/features/button_add_image.feature +11 -0
- data/test_support/features/button_add_mods_asset.feature +11 -0
- data/test_support/features/contributor_add.feature +39 -0
- data/test_support/features/file_assets_list.feature +32 -0
- data/test_support/features/file_upload.feature +40 -0
- data/test_support/features/home_page.feature +9 -0
- data/test_support/features/html_validity.feature +47 -0
- data/test_support/features/mods_asset_contributors_edit.feature +80 -0
- data/test_support/features/mods_asset_create.feature +12 -0
- data/test_support/features/mods_asset_edit.feature +33 -0
- data/test_support/features/mods_asset_edit_without_permission.feature +10 -0
- data/test_support/features/mods_asset_search_result.feature +13 -0
- data/test_support/features/mods_asset_show.feature +39 -0
- data/test_support/features/permissions_add.feature +15 -0
- data/test_support/features/permissions_edit.feature +63 -0
- data/test_support/features/step_definitions/catalog_index_steps.rb +14 -0
- data/test_support/features/step_definitions/create_asset_steps.rb +7 -0
- data/test_support/features/step_definitions/edit_metadata_steps.rb +73 -0
- data/test_support/features/step_definitions/file_list_steps.rb +28 -0
- data/test_support/features/step_definitions/hydra_metadata_steps.rb +3 -0
- data/test_support/features/step_definitions/hydra_steps.rb +8 -0
- data/test_support/features/step_definitions/inline_editable_edit_steps.rb +77 -0
- data/test_support/features/step_definitions/search_steps.rb +88 -0
- data/test_support/features/step_definitions/searching_steps.rb +22 -0
- data/test_support/features/step_definitions/show_document_steps.rb +85 -0
- data/test_support/features/step_definitions/user_steps.rb +36 -0
- data/test_support/features/step_definitions/web_steps.rb +219 -0
- data/test_support/features/support/env.rb +55 -0
- data/test_support/features/support/paths.rb +80 -0
- data/test_support/features/switch_users.feature +14 -0
- data/test_support/features/view_catalog_index.feature +18 -0
- data/test_support/fixtures/empty_file.txt +0 -0
- data/test_support/fixtures/hydrangea_fixture_archivist_only_mods_article.foxml.xml +1212 -0
- data/test_support/fixtures/hydrangea_fixture_file_asset1.foxml.xml +4946 -0
- data/test_support/fixtures/hydrangea_fixture_mods_article1.foxml.xml +234 -0
- data/test_support/fixtures/hydrangea_fixture_mods_article2.foxml.xml +177 -0
- data/test_support/fixtures/hydrangea_fixture_mods_article3.foxml.xml +170 -0
- data/test_support/fixtures/hydrangea_fixture_mods_dataset1.foxml.xml +187 -0
- data/test_support/fixtures/hydrangea_fixture_uploaded_svg1.foxml.xml +676 -0
- data/test_support/fixtures/image.jp2 +0 -0
- data/test_support/fixtures/libra-oa_1.foxml.xml +2324 -0
- data/test_support/fixtures/libra-oa_2.foxml.xml +2422 -0
- data/test_support/spec/controllers/assets_controller_spec.rb +113 -0
- data/test_support/spec/controllers/catalog_controller_spec.rb +148 -0
- data/test_support/spec/controllers/catalog_controller_viewing_context_spec.rb +62 -0
- data/test_support/spec/controllers/contributors_controller_spec.rb +47 -0
- data/test_support/spec/controllers/file_assets_controller_spec.rb +189 -0
- data/test_support/spec/controllers/hydra_controller_spec.rb +15 -0
- data/test_support/spec/controllers/permissions_controller_spec.rb +80 -0
- data/test_support/spec/controllers/user_sessions_controller_spec.rb +35 -0
- data/test_support/spec/generators/hydra-head_generator_spec.rb +14 -0
- data/test_support/spec/helpers/access_controls_enforcement_spec.rb +212 -0
- data/test_support/spec/helpers/access_controls_evaluation_spec.rb +35 -0
- data/test_support/spec/helpers/assets_controller_helper_spec.rb +71 -0
- data/test_support/spec/helpers/blacklight_helper_spec.rb +64 -0
- data/test_support/spec/helpers/file_assets_helper_spec.rb +107 -0
- data/test_support/spec/helpers/hydra-repository_controller_spec.rb +32 -0
- data/test_support/spec/helpers/hydra_assets_helper_spec.rb +195 -0
- data/test_support/spec/helpers/hydra_djatoka_helper_spec.rb +32 -0
- data/test_support/spec/helpers/hydra_fedora_metadata_helper_spec.rb +215 -0
- data/test_support/spec/helpers/hydra_helper_spec.rb +73 -0
- data/test_support/spec/helpers/hydra_model_methods_spec.rb +95 -0
- data/test_support/spec/helpers/hydra_uploader_helper_spec.rb +18 -0
- data/test_support/spec/helpers/javascript_includes_helper_spec.rb +43 -0
- data/test_support/spec/integration/file_asset_spec.rb +150 -0
- data/test_support/spec/lib/active_fedora_helper_spec.rb +56 -0
- data/test_support/spec/lib/catalog_spec.rb +16 -0
- data/test_support/spec/lib/common_mods_index_methods_spec.rb +28 -0
- data/test_support/spec/models/audio_asset_spec.rb +23 -0
- data/test_support/spec/models/file_asset_spec.rb +42 -0
- data/test_support/spec/models/generic_content_spec.rb +29 -0
- data/test_support/spec/models/generic_image_spec.rb +58 -0
- data/test_support/spec/models/hydra_rights_metadata_spec.rb +162 -0
- data/test_support/spec/models/image_asset_spec.rb +23 -0
- data/test_support/spec/models/mods_asset_spec.rb +29 -0
- data/test_support/spec/models/role_mapper_spec.rb +22 -0
- data/test_support/spec/models/user_spec.rb +52 -0
- data/test_support/spec/models/video_asset_spec.rb +23 -0
- data/test_support/spec/rcov.opts +3 -0
- data/test_support/spec/spec.opts +4 -0
- data/test_support/spec/spec_helper.rb +44 -0
- data/test_support/spec/support/matchers/helper_matcher.rb +14 -0
- data/test_support/spec/support/matchers/solr_matchers.rb +60 -0
- data/test_support/spec/unit/hydra-head-engine_spec.rb +8 -0
- data/test_support/spec/unit/hydra-head_spec.rb +8 -0
- data/test_support/spec/utilities/hydra_testing_server_spec.rb +49 -0
- data/test_support/spec/views/uploader.html.erb_spec.rb +30 -0
- data/vendor/cache/RedCloth-4.2.3.gem +0 -0
- data/vendor/cache/abstract-1.0.0.gem +0 -0
- data/vendor/cache/actionmailer-3.0.9.gem +0 -0
- data/vendor/cache/actionpack-3.0.9.gem +0 -0
- data/vendor/cache/active-fedora-2.3.3.gem +0 -0
- data/vendor/cache/activemodel-3.0.9.gem +0 -0
- data/vendor/cache/activerecord-3.0.9.gem +0 -0
- data/vendor/cache/activeresource-3.0.9.gem +0 -0
- data/vendor/cache/activesupport-3.0.9.gem +0 -0
- data/vendor/cache/arel-2.0.10.gem +0 -0
- data/vendor/cache/blacklight-3.0.0.gem +0 -0
- data/vendor/cache/block_helpers-0.3.3.gem +0 -0
- data/vendor/cache/builder-2.1.2.gem +0 -0
- data/vendor/cache/capybara-1.0.0.gem +0 -0
- data/vendor/cache/childprocess-0.2.0.gem +0 -0
- data/vendor/cache/columnize-0.3.4.gem +0 -0
- data/vendor/cache/crack-0.1.8.gem +0 -0
- data/vendor/cache/cucumber-1.0.2.gem +0 -0
- data/vendor/cache/cucumber-rails-1.0.2.gem +0 -0
- data/vendor/cache/curb-0.7.15.gem +0 -0
- data/vendor/cache/daemons-1.1.4.gem +0 -0
- data/vendor/cache/database_cleaner-0.6.7.gem +0 -0
- data/vendor/cache/diff-lcs-1.1.2.gem +0 -0
- data/vendor/cache/equivalent-xml-0.2.7.gem +0 -0
- data/vendor/cache/erubis-2.6.6.gem +0 -0
- data/vendor/cache/facets-2.8.4.gem +0 -0
- data/vendor/cache/factory_girl-1.3.3.gem +0 -0
- data/vendor/cache/fastercsv-1.5.4.gem +0 -0
- data/vendor/cache/ffi-1.0.9.gem +0 -0
- data/vendor/cache/gherkin-2.4.5.gem +0 -0
- data/vendor/cache/haml-3.1.2.gem +0 -0
- data/vendor/cache/httparty-0.7.8.gem +0 -0
- data/vendor/cache/i18n-0.5.0.gem +0 -0
- data/vendor/cache/jettywrapper-0.0.10.gem +0 -0
- data/vendor/cache/json-1.5.3.gem +0 -0
- data/vendor/cache/json_pure-1.5.3.gem +0 -0
- data/vendor/cache/kaminari-0.12.4.gem +0 -0
- data/vendor/cache/launchy-2.0.3.gem +0 -0
- data/vendor/cache/linecache-0.46.gem +0 -0
- data/vendor/cache/logger-1.2.8.gem +0 -0
- data/vendor/cache/mail-2.2.19.gem +0 -0
- data/vendor/cache/marc-0.4.3.gem +0 -0
- data/vendor/cache/mediashelf-loggable-0.4.2.gem +0 -0
- data/vendor/cache/mime-types-1.16.gem +0 -0
- data/vendor/cache/mocha-0.9.12.gem +0 -0
- data/vendor/cache/multipart-post-1.1.2.gem +0 -0
- data/vendor/cache/nokogiri-1.5.0.gem +0 -0
- data/vendor/cache/om-1.2.5.gem +0 -0
- data/vendor/cache/polyglot-0.3.1.gem +0 -0
- data/vendor/cache/rack-1.2.3.gem +0 -0
- data/vendor/cache/rack-mount-0.6.14.gem +0 -0
- data/vendor/cache/rack-test-0.5.7.gem +0 -0
- data/vendor/cache/rails-3.0.9.gem +0 -0
- data/vendor/cache/railties-3.0.9.gem +0 -0
- data/vendor/cache/rake-0.9.2.gem +0 -0
- data/vendor/cache/rbx-require-relative-0.0.5.gem +0 -0
- data/vendor/cache/rcov-0.9.9.gem +0 -0
- data/vendor/cache/rdoc-3.8.gem +0 -0
- data/vendor/cache/rsolr-1.0.2.gem +0 -0
- data/vendor/cache/rsolr-ext-1.0.3.gem +0 -0
- data/vendor/cache/rspec-2.6.0.gem +0 -0
- data/vendor/cache/rspec-core-2.6.4.gem +0 -0
- data/vendor/cache/rspec-expectations-2.6.0.gem +0 -0
- data/vendor/cache/rspec-mocks-2.6.0.gem +0 -0
- data/vendor/cache/rspec-rails-2.6.1.gem +0 -0
- data/vendor/cache/ruby-debug-0.10.4.gem +0 -0
- data/vendor/cache/ruby-debug-base-0.10.4.gem +0 -0
- data/vendor/cache/rubyzip-0.9.4.gem +0 -0
- data/vendor/cache/sanitize-2.0.3.gem +0 -0
- data/vendor/cache/selenium-webdriver-0.2.2.gem +0 -0
- data/vendor/cache/solr-ruby-0.0.8.gem +0 -0
- data/vendor/cache/solrizer-1.1.0.gem +0 -0
- data/vendor/cache/solrizer-fedora-1.1.0.gem +0 -0
- data/vendor/cache/sqlite3-ruby-1.2.5.gem +0 -0
- data/vendor/cache/stomp-1.1.9.gem +0 -0
- data/vendor/cache/term-ansicolor-1.0.5.gem +0 -0
- data/vendor/cache/thor-0.14.6.gem +0 -0
- data/vendor/cache/treetop-1.4.9.gem +0 -0
- data/vendor/cache/trollop-1.16.2.gem +0 -0
- data/vendor/cache/tzinfo-0.3.29.gem +0 -0
- data/vendor/cache/unicode-0.4.0.gem +0 -0
- data/vendor/cache/will_paginate-2.3.15.gem +0 -0
- data/vendor/cache/xml-simple-1.1.0.gem +0 -0
- data/vendor/cache/xpath-0.1.4.gem +0 -0
- data/vendor/cache/yard-0.7.2.gem +0 -0
- metadata +1110 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
|
|
2
|
+
|
|
3
|
+
# Gives a way to test how many items are on a given page either gallery or list
|
|
4
|
+
Then /^I should see (\d+) (gallery|list) results$/ do |number,type|
|
|
5
|
+
if type == "gallery"
|
|
6
|
+
results_num = page.body.scan(/<div class=\"document thumbnail\">/).length
|
|
7
|
+
elsif type == "list"
|
|
8
|
+
results_num = page.body.scan(/<tr class=\"document (odd|even)\">/).length
|
|
9
|
+
else
|
|
10
|
+
results_num = -1
|
|
11
|
+
end
|
|
12
|
+
results_num.should == number.to_i
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
# simple way to check for elements in the dom (needed for per_page bug check)
|
|
16
|
+
Then /^I (should not|should) see an? "([^\"]*)" tag with an? "([^\"]*)" attribute of "([^\"]*)"$/ do |bool,tag,attribute,value|
|
|
17
|
+
if bool == "should not"
|
|
18
|
+
page.should_not have_xpath("//#{tag}[contains(@#{attribute}, #{value})]")
|
|
19
|
+
else
|
|
20
|
+
page.should have_xpath("//#{tag}[contains(@#{attribute}, #{value})]")
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
|
|
2
|
+
|
|
3
|
+
# Terms (dt / dd pairs)
|
|
4
|
+
|
|
5
|
+
Then /^I should see the "([^\"]*)" term$/ do |arg1|
|
|
6
|
+
page.should have_selector("dt", :text=>arg1)
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
Then /^I should not see the "([^\"]*)" term$/ do |arg1|
|
|
10
|
+
page.should_not have_selector("dt", :text=>arg1)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
Then /^the "([^\"]*)" term should contain "([^\"]*)"$/ do |arg1, arg2|
|
|
14
|
+
page.should have_selector("dt", :content=>arg1) do |dt|
|
|
15
|
+
dt.each do |term|
|
|
16
|
+
term.next.should have_selector("dd", :text=>arg2)
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
Then /^I should see the "([^\"]*)" value$/ do |arg1|
|
|
22
|
+
pending
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
Then /^I should see a link called "([^\"]*)"$/ do |locator|
|
|
26
|
+
find(:xpath, XPath::HTML.link(locator)).should_not be_nil
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
Then /^I should see a link to "([^\"]*)"$/ do |link_path|
|
|
30
|
+
page.should have_xpath(".//a[@href=\"#{path_to(link_path)}\"]")
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
Then /^I should see a link to the "([^\"]*)" page$/ do |link_path|
|
|
34
|
+
page.should have_xpath(".//a[@href=\"#{path_to(link_path)}\"]")
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
Then /^I should see a link to "([^\"]*)" with label "([^\"]*)"$/ do |link_path,link_label|
|
|
38
|
+
page.should have_xpath(".//a[@href=\"#{path_to(link_path)}\"]", :text=>link_label)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
Then /^I should not see a link to "([^\"]*)"$/ do |link_path|
|
|
42
|
+
page.should_not have_xpath(".//a[@href=\"#{path_to(link_path)}\"]")
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
Then /^I should not see a link to the "([^\"]*)" page$/ do |link_name|
|
|
46
|
+
page.should_not have_xpath(".//a[@href=\"#{path_to(link_name)}\"]")
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
Then /^related links are displayed as urls$/ do
|
|
50
|
+
pending
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# Delete button for field or contributor
|
|
54
|
+
Then /^I (should|should not) see a delete (field|contributor) button for "([^\"]*)"$/ do |bool,type,target|
|
|
55
|
+
if bool == "should"
|
|
56
|
+
# page.should have_selector("a, :class=>"destructive #{type}", :href=>path_to(target))
|
|
57
|
+
page.should have_xpath(".//a[@href=\"#{path_to(target)}\" and contains(@class, \"destructive\") and contains(@class, \"#{type}\")]")
|
|
58
|
+
else
|
|
59
|
+
# page.should_not have_selector("a", :class=>"destructive #{type}", :href=>path_to(target))
|
|
60
|
+
page.should_not have_xpath(".//a[@href=\"#{path_to(target)}\" and contains(@class, \"destructive\") and contains(@class, \"#{type}\")]")
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
Then /^I (should|should not) see a button to delete "([^\"]*)" from "([^\"]*)"$/ do |bool,target,container|
|
|
65
|
+
path_name = "#{target} with #{container} as its container"
|
|
66
|
+
if bool == "should"
|
|
67
|
+
# page.should have_selector("a.destroy_file_asset", :href=>path_to(path_name))
|
|
68
|
+
page.should have_xpath(".//a[@href=\"#{path_to(path_name)}\" and @class=\"destroy_file_asset\"]")
|
|
69
|
+
else
|
|
70
|
+
# page.should_not have_selector("a.destroy_file_asset", :href=>path_to(path_name))
|
|
71
|
+
page.should_not have_xpath(".//a[@href=\"#{path_to(path_name)}\" and @class=\"destroy_file_asset\"]")
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
# Delete button for assets
|
|
76
|
+
Then /^I (should|should not) see a delete button for "([^\"]*)"$/ do |bool,target|
|
|
77
|
+
path_name = "the delete confirmation page for #{target}"
|
|
78
|
+
if bool == "should"
|
|
79
|
+
# page.should have_selector("a.destructive", :href=>path_to(target))
|
|
80
|
+
page.should have_xpath(".//a[@href=\"#{path_to(path_name)}\" and @class=\"delete_asset\"]")
|
|
81
|
+
else
|
|
82
|
+
# page.should_not have_selector("a.destructive", :href=>path_to(target))
|
|
83
|
+
page.should_not have_xpath(".//a[@href=\"#{path_to(path_name)}\" and @class=\"delete_asset\"]")
|
|
84
|
+
end
|
|
85
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @example
|
|
2
|
+
# I log in as "archivist1"
|
|
3
|
+
# @example
|
|
4
|
+
# I am logged in as "archivist1"
|
|
5
|
+
Given /^I (?:am )?log(?:ged)? in as "([^\"]*)"$/ do |email|
|
|
6
|
+
# Given %{a User exists with a Login of "#{login}"}
|
|
7
|
+
user = User.create(:email => email, :password => "password", :password_confirmation => "password")
|
|
8
|
+
User.find_by_email(email).should_not be_nil
|
|
9
|
+
visit destroy_user_session_path
|
|
10
|
+
visit new_user_session_path
|
|
11
|
+
fill_in "Email", :with => email
|
|
12
|
+
fill_in "Password", :with => "password"
|
|
13
|
+
click_button "Sign in"
|
|
14
|
+
Then %{I should see a link to "my account info" with label "#{email}"}
|
|
15
|
+
And %{I should see a link to "logout"}
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
Given /^I am logged in as "([^\"]*)" with "([^\"]*)" permissions$/ do |login,permission_group|
|
|
19
|
+
Given %{I am logged in as "#{login}"}
|
|
20
|
+
RoleMapper.roles(login).should include permission_group
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
Given /^I am a superuser$/ do
|
|
24
|
+
Given %{I am logged in as "BigWig"}
|
|
25
|
+
bigwig_id = User.find_by_email("BigWig@BigWig.com").id
|
|
26
|
+
superuser = Superuser.create(:id => 20, :user_id => bigwig_id)
|
|
27
|
+
visit superuser_path
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
Given /^I am not logged in$/ do
|
|
31
|
+
Given %{I log out}
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
Given /^I log out$/ do
|
|
35
|
+
visit destroy_user_session_path
|
|
36
|
+
end
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
|
|
2
|
+
# It is recommended to regenerate this file in the future when you upgrade to a
|
|
3
|
+
# newer version of cucumber-rails. Consider adding your own code to a new file
|
|
4
|
+
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
|
|
5
|
+
# files.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
require 'uri'
|
|
9
|
+
require 'cgi'
|
|
10
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
|
|
11
|
+
|
|
12
|
+
module WithinHelpers
|
|
13
|
+
def with_scope(locator)
|
|
14
|
+
locator ? within(locator) { yield } : yield
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
World(WithinHelpers)
|
|
18
|
+
|
|
19
|
+
Given /^(?:|I )am on (.+)$/ do |page_name|
|
|
20
|
+
visit path_to(page_name)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
When /^(?:|I )go to (.+)$/ do |page_name|
|
|
24
|
+
visit path_to(page_name)
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
When /^(?:|I )press "([^"]*)"(?: within "([^"]*)")?$/ do |button, selector|
|
|
28
|
+
with_scope(selector) do
|
|
29
|
+
click_button(button)
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
When /^(?:|I )follow "([^"]*)"(?: within "([^"]*)")?$/ do |link, selector|
|
|
34
|
+
with_scope(selector) do
|
|
35
|
+
click_link(link)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
When /^(?:|I )fill in "([^"]*)" with "([^"]*)"(?: within "([^"]*)")?$/ do |field, value, selector|
|
|
40
|
+
with_scope(selector) do
|
|
41
|
+
fill_in(field, :with => value)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
When /^(?:|I )fill in "([^"]*)" for "([^"]*)"(?: within "([^"]*)")?$/ do |value, field, selector|
|
|
46
|
+
with_scope(selector) do
|
|
47
|
+
fill_in(field, :with => value)
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# Use this to fill in an entire form with data from a table. Example:
|
|
52
|
+
#
|
|
53
|
+
# When I fill in the following:
|
|
54
|
+
# | Account Number | 5002 |
|
|
55
|
+
# | Expiry date | 2009-11-01 |
|
|
56
|
+
# | Note | Nice guy |
|
|
57
|
+
# | Wants Email? | |
|
|
58
|
+
#
|
|
59
|
+
# TODO: Add support for checkbox, select og option
|
|
60
|
+
# based on naming conventions.
|
|
61
|
+
#
|
|
62
|
+
When /^(?:|I )fill in the following(?: within "([^"]*)")?:$/ do |selector, fields|
|
|
63
|
+
with_scope(selector) do
|
|
64
|
+
fields.rows_hash.each do |name, value|
|
|
65
|
+
When %{I fill in "#{name}" with "#{value}"}
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
When /^(?:|I )select "([^"]*)" from "([^"]*)"(?: within "([^"]*)")?$/ do |value, field, selector|
|
|
71
|
+
with_scope(selector) do
|
|
72
|
+
select(value, :from => field)
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
When /^(?:|I )check "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
|
|
77
|
+
with_scope(selector) do
|
|
78
|
+
check(field)
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
When /^(?:|I )uncheck "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
|
|
83
|
+
with_scope(selector) do
|
|
84
|
+
uncheck(field)
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
When /^(?:|I )choose "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
|
|
89
|
+
with_scope(selector) do
|
|
90
|
+
choose(field)
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
When /^(?:|I )attach the file "([^"]*)" to "([^"]*)"(?: within "([^"]*)")?$/ do |path, field, selector|
|
|
95
|
+
with_scope(selector) do
|
|
96
|
+
attach_file(field, path)
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
Then /^(?:|I )should see JSON:$/ do |expected_json|
|
|
101
|
+
require 'json'
|
|
102
|
+
expected = JSON.pretty_generate(JSON.parse(expected_json))
|
|
103
|
+
actual = JSON.pretty_generate(JSON.parse(response.body))
|
|
104
|
+
expected.should == actual
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
Then /^(?:|I )should see "([^"]*)"(?: within "([^"]*)")?$/ do |text, selector|
|
|
108
|
+
with_scope(selector) do
|
|
109
|
+
if page.respond_to? :should
|
|
110
|
+
page.should have_content(text)
|
|
111
|
+
else
|
|
112
|
+
assert page.has_content?(text)
|
|
113
|
+
end
|
|
114
|
+
end
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
Then /^(?:|I )should see \/([^\/]*)\/(?: within "([^"]*)")?$/ do |regexp, selector|
|
|
118
|
+
regexp = Regexp.new(regexp)
|
|
119
|
+
with_scope(selector) do
|
|
120
|
+
if page.respond_to? :should
|
|
121
|
+
page.should have_xpath('//*', :text => regexp)
|
|
122
|
+
else
|
|
123
|
+
assert page.has_xpath?('//*', :text => regexp)
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
Then /^(?:|I )should not see "([^"]*)"(?: within "([^"]*)")?$/ do |text, selector|
|
|
129
|
+
with_scope(selector) do
|
|
130
|
+
if page.respond_to? :should
|
|
131
|
+
page.should have_no_content(text)
|
|
132
|
+
else
|
|
133
|
+
assert page.has_no_content?(text)
|
|
134
|
+
end
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
Then /^(?:|I )should not see \/([^\/]*)\/(?: within "([^"]*)")?$/ do |regexp, selector|
|
|
139
|
+
regexp = Regexp.new(regexp)
|
|
140
|
+
with_scope(selector) do
|
|
141
|
+
if page.respond_to? :should
|
|
142
|
+
page.should have_no_xpath('//*', :text => regexp)
|
|
143
|
+
else
|
|
144
|
+
assert page.has_no_xpath?('//*', :text => regexp)
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
Then /^the "([^"]*)" field(?: within "([^"]*)")? should contain "([^"]*)"$/ do |field, selector, value|
|
|
150
|
+
with_scope(selector) do
|
|
151
|
+
field = find_field(field)
|
|
152
|
+
field_value = (field.tag_name == 'textarea') ? field.text : field.value
|
|
153
|
+
if field_value.respond_to? :should
|
|
154
|
+
field_value.should =~ /#{value}/
|
|
155
|
+
else
|
|
156
|
+
assert_match(/#{value}/, field_value)
|
|
157
|
+
end
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
Then /^the "([^"]*)" field(?: within "([^"]*)")? should not contain "([^"]*)"$/ do |field, selector, value|
|
|
162
|
+
with_scope(selector) do
|
|
163
|
+
field = find_field(field)
|
|
164
|
+
field_value = (field.tag_name == 'textarea') ? field.text : field.value
|
|
165
|
+
if field_value.respond_to? :should_not
|
|
166
|
+
field_value.should_not =~ /#{value}/
|
|
167
|
+
else
|
|
168
|
+
assert_no_match(/#{value}/, field_value)
|
|
169
|
+
end
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
Then /^the "([^"]*)" checkbox(?: within "([^"]*)")? should be checked$/ do |label, selector|
|
|
174
|
+
with_scope(selector) do
|
|
175
|
+
field_checked = find_field(label)['checked']
|
|
176
|
+
if field_checked.respond_to? :should
|
|
177
|
+
field_checked.should be_true
|
|
178
|
+
else
|
|
179
|
+
assert field_checked
|
|
180
|
+
end
|
|
181
|
+
end
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
Then /^the "([^"]*)" checkbox(?: within "([^"]*)")? should not be checked$/ do |label, selector|
|
|
185
|
+
with_scope(selector) do
|
|
186
|
+
field_checked = find_field(label)['checked']
|
|
187
|
+
if field_checked.respond_to? :should
|
|
188
|
+
field_checked.should be_false
|
|
189
|
+
else
|
|
190
|
+
assert !field_checked
|
|
191
|
+
end
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
Then /^(?:|I )should be on (.+)$/ do |page_name|
|
|
196
|
+
current_path = URI.parse(current_url).path
|
|
197
|
+
if current_path.respond_to? :should
|
|
198
|
+
current_path.should == path_to(page_name)
|
|
199
|
+
else
|
|
200
|
+
assert_equal path_to(page_name), current_path
|
|
201
|
+
end
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
Then /^(?:|I )should have the following query string:$/ do |expected_pairs|
|
|
205
|
+
query = URI.parse(current_url).query
|
|
206
|
+
actual_params = query ? CGI.parse(query) : {}
|
|
207
|
+
expected_params = {}
|
|
208
|
+
expected_pairs.rows_hash.each_pair{|k,v| expected_params[k] = v.split(',')}
|
|
209
|
+
|
|
210
|
+
if actual_params.respond_to? :should
|
|
211
|
+
actual_params.should == expected_params
|
|
212
|
+
else
|
|
213
|
+
assert_equal expected_params, actual_params
|
|
214
|
+
end
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
Then /^show me the page$/ do
|
|
218
|
+
save_and_open_page
|
|
219
|
+
end
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
|
2
|
+
# TL;DR: YOU SHOULD DELETE THIS FILE
|
|
3
|
+
#
|
|
4
|
+
# This file iwas generated by Cucumber-Rails and is only here to get you a head start
|
|
5
|
+
# These step definitions are thin wrappers around the Capybara/Webrat API that lets you
|
|
6
|
+
# visit pages, interact with widgets and make assertions about page content.
|
|
7
|
+
#
|
|
8
|
+
# If you use these step definitions as basis for your features you will quickly end up
|
|
9
|
+
# with features that are:
|
|
10
|
+
#
|
|
11
|
+
# * Hard to maintain
|
|
12
|
+
# * Verbose to read
|
|
13
|
+
#
|
|
14
|
+
# A much better approach is to write your own higher level step definitions, following
|
|
15
|
+
# the advice in the following blog posts:
|
|
16
|
+
#
|
|
17
|
+
# * http://benmabey.com/2008/05/19/imperative-vs-declarative-scenarios-in-user-stories.html
|
|
18
|
+
# * http://dannorth.net/2011/01/31/whose-domain-is-it-anyway/
|
|
19
|
+
# * http://elabs.se/blog/15-you-re-cuking-it-wrong
|
|
20
|
+
#
|
|
21
|
+
|
|
22
|
+
require 'cucumber/rails'
|
|
23
|
+
|
|
24
|
+
# Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
|
|
25
|
+
# order to ease the transition to Capybara we set the default here. If you'd
|
|
26
|
+
# prefer to use XPath just remove this line and adjust any selectors in your
|
|
27
|
+
# steps to use the XPath syntax.
|
|
28
|
+
Capybara.default_selector = :css
|
|
29
|
+
|
|
30
|
+
# By default, any exception happening in your Rails application will bubble up
|
|
31
|
+
# to Cucumber so that your scenario will fail. This is a different from how
|
|
32
|
+
# your application behaves in the production environment, where an error page will
|
|
33
|
+
# be rendered instead.
|
|
34
|
+
#
|
|
35
|
+
# Sometimes we want to override this default behaviour and allow Rails to rescue
|
|
36
|
+
# exceptions and display an error page (just like when the app is running in production).
|
|
37
|
+
# Typical scenarios where you want to do this is when you test your error pages.
|
|
38
|
+
# There are two ways to allow Rails to rescue exceptions:
|
|
39
|
+
#
|
|
40
|
+
# 1) Tag your scenario (or feature) with @allow-rescue
|
|
41
|
+
#
|
|
42
|
+
# 2) Set the value below to true. Beware that doing this globally is not
|
|
43
|
+
# recommended as it will mask a lot of errors for you!
|
|
44
|
+
#
|
|
45
|
+
ActionController::Base.allow_rescue = false
|
|
46
|
+
|
|
47
|
+
# Remove this line if your app doesn't have a database.
|
|
48
|
+
# For some databases (like MongoDB and CouchDB) you may need to use :truncation instead.
|
|
49
|
+
DatabaseCleaner.strategy = :transaction
|
|
50
|
+
|
|
51
|
+
# Stop endless errors like
|
|
52
|
+
# ~/.rvm/gems/ruby-1.9.2-p0@global/gems/rack-1.2.1/lib/rack/utils.rb:16:
|
|
53
|
+
# warning: regexp match /.../n against to UTF-8 string
|
|
54
|
+
$VERBOSE = nil
|
|
55
|
+
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
module NavigationHelpers
|
|
2
|
+
# Maps a name to a path. Used by the
|
|
3
|
+
#
|
|
4
|
+
# When /^I go to (.+)$/ do |page_name|
|
|
5
|
+
#
|
|
6
|
+
# step definition in webrat_steps.rb
|
|
7
|
+
#
|
|
8
|
+
def path_to(page_name)
|
|
9
|
+
|
|
10
|
+
case page_name
|
|
11
|
+
|
|
12
|
+
when /the home\s?page/
|
|
13
|
+
'/'
|
|
14
|
+
when /the search page/
|
|
15
|
+
'/catalog'
|
|
16
|
+
when /logout/
|
|
17
|
+
destroy_user_session_path
|
|
18
|
+
when /my account info/
|
|
19
|
+
edit_user_registration_path
|
|
20
|
+
when /the base search page/
|
|
21
|
+
'/catalog?q=&search_field=search&action=index&controller=catalog&commit=search'
|
|
22
|
+
when /the document page for id (.+)/
|
|
23
|
+
catalog_path($1)
|
|
24
|
+
when /the edit page for id (.+)/
|
|
25
|
+
edit_catalog_path($1)
|
|
26
|
+
when /the catalog index page/
|
|
27
|
+
catalog_index_path
|
|
28
|
+
# Add more mappings here.
|
|
29
|
+
# Here is a more fancy example:
|
|
30
|
+
#
|
|
31
|
+
# when /^(.*)'s profile page$/i
|
|
32
|
+
# user_profile_path(User.find_by_login($1))
|
|
33
|
+
|
|
34
|
+
when /the edit document page for (.*)$/i
|
|
35
|
+
edit_catalog_path($1)
|
|
36
|
+
when /the show document page for (.*)$/i
|
|
37
|
+
catalog_path($1)
|
|
38
|
+
when /the delete confirmation page for (.*)$/i
|
|
39
|
+
delete_catalog_path($1)
|
|
40
|
+
|
|
41
|
+
when /the file (?:asset )?list page for (.*)$/i
|
|
42
|
+
asset_file_assets_path($1)
|
|
43
|
+
when /the file asset creation page for (.*)$/i
|
|
44
|
+
asset_file_assets_path($1)
|
|
45
|
+
when /the deletable file list page for (.*)/i
|
|
46
|
+
asset_file_assets_path($1, :deletable=>"true",:layout=>"false")
|
|
47
|
+
when /the file asset (.*) with (.*) as its container$/i
|
|
48
|
+
asset_file_asset_path($2, $1)
|
|
49
|
+
when /the file asset (.*)$/i
|
|
50
|
+
file_asset_path($1)
|
|
51
|
+
when /the permissions page for (.*)$/i
|
|
52
|
+
asset_permissions_path($1)
|
|
53
|
+
|
|
54
|
+
when /new (.*) page$/i
|
|
55
|
+
new_asset_path(:content_type => $1)
|
|
56
|
+
when /the asset (.*)$/i
|
|
57
|
+
asset_path($1)
|
|
58
|
+
when /show asset page for (.*)$/i
|
|
59
|
+
asset_path($1)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
when /the (\d+)(?:st|nd|rd|th) (person|organization|conference) entry in (.*)$/i
|
|
63
|
+
# contributor_id = "#{$2}_#{$1.to_i-1}"
|
|
64
|
+
asset_contributor_path($3, $2, $1.to_i-1)
|
|
65
|
+
else
|
|
66
|
+
begin
|
|
67
|
+
page_name =~ /the (.*) page/
|
|
68
|
+
path_components = $1.split(/\s+/)
|
|
69
|
+
self.send(path_components.push('path').join('_').to_sym)
|
|
70
|
+
rescue Object => e
|
|
71
|
+
raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
|
|
72
|
+
"Now, go and add a mapping in #{__FILE__}"
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
World(NavigationHelpers)
|