enju_biblio 0.1.0.pre55 → 0.1.0.pre56
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/agent_import_files_controller.rb +11 -11
- data/app/controllers/agent_import_results_controller.rb +1 -1
- data/app/controllers/agent_relationship_types_controller.rb +0 -1
- data/app/controllers/agent_relationships_controller.rb +2 -2
- data/app/controllers/agent_types_controller.rb +0 -1
- data/app/controllers/agents_controller.rb +22 -23
- data/app/controllers/carrier_types_controller.rb +11 -11
- data/app/controllers/content_types_controller.rb +0 -1
- data/app/controllers/countries_controller.rb +1 -1
- data/app/controllers/create_types_controller.rb +0 -1
- data/app/controllers/creates_controller.rb +13 -14
- data/app/controllers/donates_controller.rb +10 -10
- data/app/controllers/extents_controller.rb +1 -1
- data/app/controllers/form_of_works_controller.rb +1 -1
- data/app/controllers/frequencies_controller.rb +1 -1
- data/app/controllers/identifier_types_controller.rb +10 -10
- data/app/controllers/import_requests_controller.rb +12 -12
- data/app/controllers/items_controller.rb +25 -26
- data/app/controllers/languages_controller.rb +1 -1
- data/app/controllers/licenses_controller.rb +0 -1
- data/app/controllers/manifestation_relationship_types_controller.rb +0 -1
- data/app/controllers/manifestation_relationships_controller.rb +2 -2
- data/app/controllers/manifestations_controller.rb +64 -59
- data/app/controllers/medium_of_performances_controller.rb +0 -1
- data/app/controllers/owns_controller.rb +12 -13
- data/app/controllers/picture_files_controller.rb +13 -14
- data/app/controllers/produce_types_controller.rb +0 -1
- data/app/controllers/produces_controller.rb +15 -16
- data/app/controllers/realize_types_controller.rb +0 -1
- data/app/controllers/realizes_controller.rb +13 -14
- data/app/controllers/resource_export_files_controller.rb +11 -11
- data/app/controllers/resource_import_files_controller.rb +26 -11
- data/app/controllers/resource_import_results_controller.rb +2 -2
- data/app/controllers/series_statements_controller.rb +13 -14
- data/app/helpers/manifestations_helper.rb +1 -1
- data/app/models/agent.rb +44 -41
- data/app/models/agent_import_file.rb +12 -58
- data/app/models/agent_import_result.rb +3 -4
- data/app/models/agent_relationship.rb +3 -3
- data/app/models/agent_relationship_type.rb +1 -1
- data/app/models/agent_sweeper.rb +0 -1
- data/app/models/agent_type.rb +1 -1
- data/app/models/carrier_type.rb +4 -4
- data/app/models/content_type.rb +1 -1
- data/app/models/country.rb +1 -1
- data/app/models/create.rb +3 -3
- data/app/models/create_type.rb +1 -1
- data/app/models/donate.rb +2 -2
- data/app/models/enju_biblio/ability.rb +2 -13
- data/app/models/exemplify.rb +1 -1
- data/app/models/extent.rb +1 -1
- data/app/models/form_of_work.rb +1 -1
- data/app/models/frequency.rb +1 -1
- data/app/models/identifier.rb +3 -3
- data/app/models/identifier_type.rb +2 -2
- data/app/models/import_request.rb +2 -2
- data/app/models/item.rb +48 -48
- data/app/models/item_sweeper.rb +0 -1
- data/app/models/language.rb +1 -1
- data/app/models/license.rb +1 -1
- data/app/models/manifestation.rb +72 -66
- data/app/models/manifestation_relationship.rb +3 -3
- data/app/models/manifestation_relationship_type.rb +1 -1
- data/app/models/manifestation_sweeper.rb +0 -1
- data/app/models/medium_of_performance.rb +1 -1
- data/app/models/own.rb +4 -4
- data/app/models/page_sweeper.rb +0 -1
- data/app/models/picture_file.rb +6 -6
- data/app/models/produce.rb +3 -3
- data/app/models/produce_type.rb +1 -1
- data/app/models/realize.rb +3 -3
- data/app/models/realize_type.rb +1 -1
- data/app/models/resource_export_file.rb +4 -11
- data/app/models/resource_import_file.rb +148 -100
- data/app/models/resource_import_result.rb +1 -1
- data/app/models/series_statement.rb +7 -5
- data/app/views/agent_import_files/edit.html.erb +1 -1
- data/app/views/agent_import_files/index.html.erb +4 -4
- data/app/views/agent_import_files/new.html.erb +12 -12
- data/app/views/agent_import_files/show.html.erb +4 -4
- data/app/views/agent_import_results/index.html.erb +6 -8
- data/app/views/agent_import_results/{index.tsv.erb → index.txt.erb} +0 -0
- data/app/views/agent_import_results/show.html.erb +1 -6
- data/app/views/agent_relationship_types/edit.html.erb +1 -1
- data/app/views/agent_relationship_types/index.html.erb +20 -12
- data/app/views/agent_relationship_types/new.html.erb +1 -1
- data/app/views/agent_relationship_types/show.html.erb +1 -1
- data/app/views/agent_relationships/edit.html.erb +1 -1
- data/app/views/agent_relationships/index.html.erb +3 -3
- data/app/views/agent_relationships/new.html.erb +1 -1
- data/app/views/agent_relationships/show.html.erb +1 -1
- data/app/views/agent_types/edit.html.erb +1 -1
- data/app/views/agent_types/index.html.erb +19 -11
- data/app/views/agent_types/new.html.erb +1 -1
- data/app/views/agent_types/show.html.erb +1 -1
- data/app/views/agents/_agent.html.erb +1 -1
- data/app/views/agents/_expression_list.html.erb +2 -2
- data/app/views/agents/_form.html.erb +8 -8
- data/app/views/agents/_form_family_name_first.html.erb +4 -4
- data/app/views/agents/_form_family_name_last.html.erb +4 -4
- data/app/views/agents/_index.html.erb +4 -4
- data/app/views/agents/_index_agent.html.erb +7 -11
- data/app/views/agents/_index_expression.html.erb +5 -5
- data/app/views/agents/_index_manifestation.html.erb +11 -11
- data/app/views/agents/_index_work.html.erb +5 -5
- data/app/views/agents/_manifestation_list.html.erb +2 -2
- data/app/views/agents/_work_list.html.erb +2 -2
- data/app/views/agents/edit.html.erb +2 -2
- data/app/views/agents/index.atom.builder +2 -2
- data/app/views/agents/index.html.erb +1 -1
- data/app/views/agents/index.mobile.erb +3 -3
- data/app/views/agents/index.rss.builder +6 -6
- data/app/views/agents/new.html.erb +1 -1
- data/app/views/agents/show.html.erb +11 -22
- data/app/views/agents/show.mobile.erb +3 -9
- data/app/views/carrier_types/_form.html.erb +2 -2
- data/app/views/carrier_types/edit.html.erb +1 -1
- data/app/views/carrier_types/index.html.erb +15 -9
- data/app/views/carrier_types/new.html.erb +1 -1
- data/app/views/carrier_types/show.html.erb +17 -1
- data/app/views/content_types/_form.html.erb +5 -5
- data/app/views/content_types/edit.html.erb +1 -1
- data/app/views/content_types/index.html.erb +14 -8
- data/app/views/content_types/new.html.erb +1 -1
- data/app/views/content_types/show.html.erb +6 -1
- data/app/views/countries/_form.html.erb +5 -5
- data/app/views/countries/edit.html.erb +1 -1
- data/app/views/countries/index.html.erb +10 -8
- data/app/views/countries/new.html.erb +1 -1
- data/app/views/countries/show.html.erb +1 -1
- data/app/views/create_types/edit.html.erb +1 -1
- data/app/views/create_types/index.html.erb +20 -12
- data/app/views/create_types/new.html.erb +1 -1
- data/app/views/create_types/show.html.erb +1 -1
- data/app/views/creates/_index.html.erb +3 -3
- data/app/views/creates/_index_agent.html.erb +5 -6
- data/app/views/creates/_index_work.html.erb +4 -4
- data/app/views/creates/edit.html.erb +1 -1
- data/app/views/creates/new.html.erb +3 -3
- data/app/views/creates/show.html.erb +3 -3
- data/app/views/donates/edit.html.erb +1 -1
- data/app/views/donates/index.html.erb +4 -4
- data/app/views/donates/new.html.erb +1 -1
- data/app/views/donates/show.html.erb +1 -1
- data/app/views/extents/edit.html.erb +1 -1
- data/app/views/extents/index.html.erb +12 -8
- data/app/views/extents/new.html.erb +1 -1
- data/app/views/extents/show.html.erb +1 -1
- data/app/views/form_of_works/_form.html.erb +2 -2
- data/app/views/form_of_works/edit.html.erb +1 -1
- data/app/views/form_of_works/index.html.erb +15 -9
- data/app/views/form_of_works/new.html.erb +1 -1
- data/app/views/form_of_works/show.html.erb +1 -1
- data/app/views/frequencies/edit.html.erb +1 -1
- data/app/views/frequencies/index.html.erb +16 -8
- data/app/views/frequencies/new.html.erb +1 -1
- data/app/views/frequencies/show.html.erb +6 -1
- data/app/views/identifier_types/_form.html.erb +5 -5
- data/app/views/identifier_types/edit.html.erb +1 -1
- data/app/views/identifier_types/index.html.erb +3 -3
- data/app/views/identifier_types/new.html.erb +1 -1
- data/app/views/identifier_types/show.html.erb +6 -1
- data/app/views/import_requests/edit.html.erb +2 -2
- data/app/views/import_requests/index.html.erb +4 -4
- data/app/views/import_requests/new.html.erb +3 -3
- data/app/views/import_requests/show.html.erb +2 -2
- data/app/views/items/_form.html.erb +27 -16
- data/app/views/items/_shelf_picture.html.erb +1 -1
- data/app/views/items/_shelf_picture.mobile.erb +1 -1
- data/app/views/items/edit.html.erb +5 -5
- data/app/views/items/index.html.erb +10 -10
- data/app/views/items/index.mobile.erb +5 -5
- data/app/views/items/index.txt.erb +4 -0
- data/app/views/items/new.html.erb +4 -4
- data/app/views/items/show.html.erb +35 -21
- data/app/views/items/show.mobile.erb +3 -3
- data/app/views/languages/_form.html.erb +4 -4
- data/app/views/languages/edit.html.erb +1 -1
- data/app/views/languages/index.html.erb +2 -2
- data/app/views/languages/new.html.erb +1 -1
- data/app/views/languages/show.html.erb +1 -1
- data/app/views/layouts/agents.html.erb +2 -2
- data/app/views/layouts/manifestations.html.erb +2 -2
- data/app/views/licenses/_form.html.erb +2 -2
- data/app/views/licenses/edit.html.erb +1 -1
- data/app/views/licenses/index.html.erb +12 -7
- data/app/views/licenses/new.html.erb +1 -1
- data/app/views/licenses/show.html.erb +1 -1
- data/app/views/manifestation_relationship_types/edit.html.erb +1 -1
- data/app/views/manifestation_relationship_types/index.html.erb +20 -12
- data/app/views/manifestation_relationship_types/new.html.erb +1 -1
- data/app/views/manifestation_relationship_types/show.html.erb +1 -1
- data/app/views/manifestation_relationships/edit.html.erb +1 -1
- data/app/views/manifestation_relationships/index.html.erb +3 -3
- data/app/views/manifestation_relationships/new.html.erb +1 -1
- data/app/views/manifestation_relationships/show.html.erb +1 -1
- data/app/views/manifestations/_attachment_file.html.erb +1 -1
- data/app/views/manifestations/_edit_detail.html.erb +3 -3
- data/app/views/manifestations/_form.html.erb +47 -28
- data/app/views/manifestations/_holding.html.erb +1 -1
- data/app/views/manifestations/_index_form.html.erb +2 -2
- data/app/views/manifestations/_index_form_contributor.html.erb +2 -2
- data/app/views/manifestations/_index_form_creator.html.erb +2 -2
- data/app/views/manifestations/_index_form_item.html.erb +2 -2
- data/app/views/manifestations/_index_form_manifestation.html.erb +2 -2
- data/app/views/manifestations/_index_form_parent.html.erb +9 -3
- data/app/views/manifestations/_index_form_publisher.html.erb +2 -2
- data/app/views/manifestations/_index_form_series_statement.html.erb +3 -3
- data/app/views/manifestations/_manifestation.html.erb +7 -7
- data/app/views/manifestations/_manifestation_list.html.erb +2 -2
- data/app/views/manifestations/_paginate_id_link.html.erb +2 -2
- data/app/views/manifestations/_pickup.html.erb +4 -4
- data/app/views/manifestations/_search_engine.html.erb +1 -1
- data/app/views/manifestations/_show.mods.builder +2 -2
- data/app/views/manifestations/_show.rdf.builder +2 -2
- data/app/views/manifestations/_show_creators.html.erb +2 -2
- data/app/views/manifestations/_show_creators.mobile.erb +2 -2
- data/app/views/manifestations/_show_detail_librarian.html.erb +13 -9
- data/app/views/manifestations/_show_detail_user.html.erb +13 -9
- data/app/views/manifestations/_show_holding.html.erb +8 -6
- data/app/views/manifestations/_show_holding.mobile.erb +1 -1
- data/app/views/manifestations/_show_index.html.erb +7 -5
- data/app/views/manifestations/_show_index.mobile.erb +3 -3
- data/app/views/manifestations/_show_parent_form.html.erb +12 -0
- data/app/views/manifestations/_show_series_index.html.erb +6 -3
- data/app/views/manifestations/_submenu_parent.html.erb +1 -1
- data/app/views/manifestations/_tab_list.html.erb +3 -3
- data/app/views/manifestations/_tab_menu.html.erb +2 -2
- data/app/views/manifestations/_title.html.erb +9 -6
- data/app/views/manifestations/_title.mobile.erb +6 -6
- data/app/views/manifestations/edit.html.erb +3 -3
- data/app/views/manifestations/index.atom.builder +2 -2
- data/app/views/manifestations/index.html.erb +8 -7
- data/app/views/manifestations/index.mobile.erb +4 -4
- data/app/views/manifestations/index.mods.builder +1 -1
- data/app/views/manifestations/index.opds.builder +4 -4
- data/app/views/manifestations/index.rdf.builder +4 -4
- data/app/views/manifestations/index.rss.builder +6 -6
- data/app/views/manifestations/index.sru.builder +1 -1
- data/app/views/manifestations/{index.csv.erb → index.txt.erb} +0 -0
- data/app/views/manifestations/new.html.erb +1 -1
- data/app/views/manifestations/show.html.erb +14 -14
- data/app/views/manifestations/show.mobile.erb +3 -3
- data/app/views/manifestations/show.mods.builder +1 -1
- data/app/views/manifestations/show.rdf.builder +1 -1
- data/app/views/medium_of_performances/edit.html.erb +1 -1
- data/app/views/medium_of_performances/index.html.erb +16 -9
- data/app/views/medium_of_performances/new.html.erb +1 -1
- data/app/views/medium_of_performances/show.html.erb +1 -1
- data/app/views/notifier/manifestation_info.en.text.erb +2 -2
- data/app/views/notifier/manifestation_info.ja.text.erb +2 -2
- data/app/views/owns/edit.html.erb +1 -1
- data/app/views/owns/index.html.erb +4 -4
- data/app/views/owns/new.html.erb +1 -1
- data/app/views/owns/show.html.erb +3 -3
- data/app/views/picture_files/_index.html.erb +7 -7
- data/app/views/picture_files/_index_agent.html.erb +4 -4
- data/app/views/picture_files/_index_event.html.erb +4 -4
- data/app/views/picture_files/_index_manifestation.html.erb +4 -4
- data/app/views/picture_files/_index_shelf.html.erb +4 -4
- data/app/views/picture_files/_link.html.erb +1 -1
- data/app/views/picture_files/_link.mobile.erb +1 -1
- data/app/views/picture_files/edit.html.erb +1 -1
- data/app/views/picture_files/index.html.erb +1 -1
- data/app/views/picture_files/new.html.erb +2 -2
- data/app/views/picture_files/show.html.erb +7 -7
- data/app/views/picture_files/show.mobile.erb +2 -2
- data/app/views/produce_types/edit.html.erb +1 -1
- data/app/views/produce_types/index.html.erb +20 -12
- data/app/views/produce_types/new.html.erb +1 -1
- data/app/views/produce_types/show.html.erb +1 -1
- data/app/views/produces/_index.html.erb +3 -3
- data/app/views/produces/_index_agent.html.erb +3 -3
- data/app/views/produces/_index_manifestation.html.erb +5 -5
- data/app/views/produces/edit.html.erb +1 -1
- data/app/views/produces/index.html.erb +1 -1
- data/app/views/produces/new.html.erb +3 -3
- data/app/views/produces/show.html.erb +3 -3
- data/app/views/realize_types/edit.html.erb +1 -1
- data/app/views/realize_types/index.html.erb +20 -12
- data/app/views/realize_types/new.html.erb +1 -1
- data/app/views/realize_types/show.html.erb +1 -1
- data/app/views/realizes/_index.html.erb +3 -3
- data/app/views/realizes/_index_agent.html.erb +3 -3
- data/app/views/realizes/_index_expression.html.erb +5 -5
- data/app/views/realizes/edit.html.erb +1 -1
- data/app/views/realizes/new.html.erb +3 -3
- data/app/views/realizes/show.html.erb +3 -3
- data/app/views/resource_export_files/index.html.erb +3 -3
- data/app/views/resource_export_files/new.html.erb +2 -2
- data/app/views/resource_export_files/show.html.erb +1 -1
- data/app/views/resource_import_files/_observe_field.html.erb +7 -0
- data/app/views/resource_import_files/edit.html.erb +1 -1
- data/app/views/resource_import_files/index.html.erb +30 -25
- data/app/views/resource_import_files/new.html.erb +21 -13
- data/app/views/resource_import_files/show.html.erb +9 -4
- data/app/views/resource_import_results/index.html.erb +6 -6
- data/app/views/resource_import_results/{index.tsv.erb → index.txt.erb} +0 -0
- data/app/views/resource_import_results/show.html.erb +1 -1
- data/app/views/series_statements/_form.html.erb +2 -2
- data/app/views/series_statements/_index.html.erb +5 -5
- data/app/views/series_statements/_index_manifestation.html.erb +5 -5
- data/app/views/series_statements/_index_series_statement_merge_list.html.erb +5 -5
- data/app/views/series_statements/_merge.html.erb +2 -2
- data/app/views/series_statements/_refine_search_form.html.erb +2 -2
- data/app/views/series_statements/edit.html.erb +1 -1
- data/app/views/series_statements/new.html.erb +1 -1
- data/app/views/series_statements/show.html.erb +2 -2
- data/config/locales/translation_en.yml +13 -9
- data/config/locales/translation_ja.yml +16 -9
- data/config/routes.rb +5 -14
- data/db/migrate/001_create_agents.rb +0 -2
- data/db/migrate/006_create_items.rb +0 -2
- data/db/migrate/20100925074559_create_agent_import_results.rb +0 -1
- data/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
- data/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
- data/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
- data/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +5 -0
- data/lib/enju_biblio/biblio_helper.rb +4 -4
- data/lib/enju_biblio/engine.rb +0 -1
- data/lib/enju_biblio/version.rb +1 -1
- data/lib/generators/enju_biblio/setup/setup_generator.rb +2 -0
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/agent_relationship_types.yml +3 -3
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/agent_types.yml +2 -2
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/carrier_types.yml +12 -10
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/content_types.yml +70 -7
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/manifestation_relationship_types.yml +2 -2
- data/lib/tasks/carrier_type.rb +26 -0
- data/lib/tasks/content_type.rb +19 -0
- data/lib/tasks/enju_biblio_tasks.rake +14 -0
- data/lib/tasks/item.rb +7 -0
- data/spec/cassette_library/ResourceImportFile/should_import_in_background.yml +433 -0
- data/spec/cassette_library/ResourceImportFile/when_its_mode_is_create_/when_it_has_only_isbn/should_be_imported.yml +363 -326
- data/spec/cassette_library/ResourceImportFile/when_its_mode_is_create_/when_it_is_written_in_shift_jis/should_be_imported.yml +166 -180
- data/spec/cassette_library/ResourceImportFile/when_its_mode_is_create_/when_it_is_written_in_utf-8/should_be_imported.yml +166 -180
- data/spec/controllers/agent_import_files_controller_spec.rb +20 -60
- data/spec/controllers/agent_import_results_controller_spec.rb +6 -18
- data/spec/controllers/agent_relationship_types_controller_spec.rb +21 -21
- data/spec/controllers/agent_relationships_controller_spec.rb +21 -21
- data/spec/controllers/agent_types_controller_spec.rb +2 -1
- data/spec/controllers/carrier_types_controller_spec.rb +1 -1
- data/spec/controllers/content_types_controller_spec.rb +2 -1
- data/spec/controllers/countries_controller_spec.rb +22 -23
- data/spec/controllers/create_types_controller_spec.rb +2 -2
- data/spec/controllers/creates_controller_spec.rb +22 -22
- data/spec/controllers/donates_controller_spec.rb +21 -21
- data/spec/controllers/extents_controller_spec.rb +2 -1
- data/spec/controllers/form_of_works_controller_spec.rb +2 -2
- data/spec/controllers/frequencies_controller_spec.rb +2 -1
- data/spec/controllers/identifier_types_controller_spec.rb +1 -1
- data/spec/controllers/import_requests_controller_spec.rb +21 -21
- data/spec/controllers/items_controller_spec.rb +24 -24
- data/spec/controllers/languages_controller_spec.rb +12 -12
- data/spec/controllers/licenses_controller_spec.rb +2 -1
- data/spec/controllers/manifestation_relationship_types_controller_spec.rb +21 -21
- data/spec/controllers/manifestation_relationships_controller_spec.rb +21 -21
- data/spec/controllers/manifestations_controller_spec.rb +22 -22
- data/spec/controllers/medium_of_performances_controller_spec.rb +2 -1
- data/spec/controllers/owns_controller_spec.rb +22 -22
- data/spec/controllers/picture_files_controller_spec.rb +21 -21
- data/spec/controllers/produce_types_controller_spec.rb +2 -1
- data/spec/controllers/produces_controller_spec.rb +22 -22
- data/spec/controllers/realize_types_controller_spec.rb +2 -1
- data/spec/controllers/realizes_controller_spec.rb +23 -23
- data/spec/controllers/resource_export_files_controller_spec.rb +18 -18
- data/spec/controllers/resource_import_files_controller_spec.rb +18 -18
- data/spec/controllers/resource_import_results_controller_spec.rb +9 -9
- data/spec/dummy/app/models/user.rb +4 -79
- data/spec/dummy/config/environments/test.rb +3 -2
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20111201155456_devise_create_users.rb +42 -0
- data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +26 -0
- data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
- data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
- data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
- data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -0
- data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +11 -0
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140810061942_add_user_id_to_user_checkout_stat.rb +12 -0
- data/spec/dummy/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb +6 -0
- data/spec/dummy/db/migrate/20140810091417_add_save_checkout_history_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
- data/spec/dummy/db/schema.rb +218 -24
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/private/system/agent_import_files/agent_imports/000/000/004/original/agent_import_file_sample1.tsv +5 -5
- data/spec/dummy/private/system/agent_import_files/agent_imports/000/000/004/original/agent_import_file_sample2.tsv +8 -8
- data/spec/dummy/private/system/agent_import_files/agent_imports/000/000/004/original/agent_import_file_sample3.tsv +5 -5
- data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/item_update_file.tsv +5 -4
- data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/resource_import_file_sample1.tsv +19 -19
- data/spec/dummy/private/system/resource_import_files/resource_imports/000/000/004/original/resource_import_file_sample2.tsv +19 -19
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140702-50651-14mi4s9.txt +147 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140702-50742-1fdbjo6.txt +147 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140704-12784-ozvvo.txt +147 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140705-18550-cc3qx2.txt +147 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140705-19313-rlc624.txt +147 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140705-20440-1o0htch.txt +147 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/{resource_export_file_20140705-26819-14hii8j.txt → resource_export_file_20140705-28145-o9qcd4.txt} +0 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/{resource_export_file_20140705-43608-i7uus1.txt → resource_export_file_20140722-98727-1jesse9.txt} +0 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140816-17115-1c1tv13.txt +147 -0
- data/spec/dummy/public/system/resource_export_files/resource_exports/000/000/004/original/resource_export_file_20140816-18348-14d01b3.txt +147 -0
- data/spec/dummy/solr/test/data/index/_20i.fdt +0 -0
- data/spec/dummy/solr/test/data/index/_20i.fdx +0 -0
- data/spec/dummy/solr/test/data/index/_20i.fnm +0 -0
- data/spec/dummy/solr/test/data/index/_20i.nvd +0 -0
- data/spec/dummy/solr/test/data/index/_20i.nvm +0 -0
- data/spec/dummy/solr/test/data/index/_20i.si +0 -0
- data/spec/dummy/solr/test/data/index/_20i_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/test/data/index/_20i_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/test/data/index/_20i_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/test/data/index/_20i_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/test/data/index/_20j.fdt +0 -0
- data/spec/dummy/solr/test/data/index/_20j.fdx +0 -0
- data/spec/dummy/solr/test/data/index/_20j.fnm +0 -0
- data/spec/dummy/solr/test/data/index/_20j.nvd +0 -0
- data/spec/dummy/solr/test/data/index/_20j.nvm +0 -0
- data/spec/dummy/solr/test/data/index/_20j.si +0 -0
- data/spec/dummy/solr/test/data/index/_20j_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/test/data/index/_20j_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/test/data/index/_20j_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/test/data/index/_20j_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/test/data/index/_20k.fdt +0 -0
- data/spec/dummy/solr/test/data/index/_20k.fdx +0 -0
- data/spec/dummy/solr/test/data/index/_20k.fnm +0 -0
- data/spec/dummy/solr/test/data/index/_20k.nvd +0 -0
- data/spec/dummy/solr/test/data/index/_20k.nvm +0 -0
- data/spec/dummy/solr/test/data/index/_20k.si +0 -0
- data/spec/dummy/solr/test/data/index/_20k_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/test/data/index/_20k_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/test/data/index/_20k_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/test/data/index/_20k_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/test/data/index/segments.gen +0 -0
- data/spec/dummy/solr/test/data/index/segments_2uc +0 -0
- data/spec/dummy/solr/test/data/tlog/{tlog.0000000000000000492 → tlog.0000000000000003680} +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000003681 +0 -0
- data/spec/dummy/solr/test/data/tlog/{tlog.0000000000000000494 → tlog.0000000000000003682} +0 -0
- data/spec/dummy/test/integration/resource_export_file_test.rb +7 -0
- data/spec/dummy/tmp/cache/4F7/F90/default_role +0 -0
- data/spec/dummy/tmp/cache/6E4/420/search_engine_all +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/01c388ec88c5fa6d00409d725549a506 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0440b81b0aae840cf287a686585a8cec +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0483120d2ec851526d1beb322a87b34d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0c0062cfb97ef1437ab0020e724876c6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0c8f59d97121b79a2e2a0d009d6da9c3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0d8876cd5c35974067b09df39826ad64 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0dfa4223643dd4c4e2f977989012a78f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0e3e358e4fe4601ba5e435f6d0c86f12 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1572dfd6f1e555f4be1aa60ddc3cb0c0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/15aaed1a5a5f4f98d5c8d19084d7980d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/16262df7c7e382ef78b21f453750ea94 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/173711a319dbf01f35a2ad8e1efe08b9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/19a44bc29c5173edea456f9416243854 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1c1fbab93e4552626da626e0dbe70c74 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1d0caee819e97b6e819aff48d160ba0e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1eeeee88b80ad204f61af2154ab097db +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/24051f5752691433a5a205b04a62fca1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/267e026cf7dcb8ed5ca66aa83dff1a87 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2b35ad8fee7e1228e205669278e2adda +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2d65b40e585725207fd52ce4cf5134f4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/305729f8ea45e96c3a7e75df920aa125 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3417713460df81bb2349531adec5f348 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/36fe3bdb5b7a6e84e23515bca1842154 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3ed0e4936463665c59155042a650dfa5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3fc2b4de95dbb94dfe82ccfc97265cc4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/40e90f0c329b14292a9ff1a2fe907b39 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/45adf514664dd4134fb290b1938c56d8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/45f3c74e1e31b58d9bda6908d5623290 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/46ed442c54e0ad50ed9cbff91bca2c03 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/479d8a0e6643a473b785734c1fb0655b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4aa18096a209e515f5f1df487622cdf4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4db7c7b5ea13aacccd89ea32460e2de0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4facb9d4adad5d1f55e19897f19ff502 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/51df74c0fa7fbfa41670caa0f4268d54 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/53ce49f7cb73ec18bfefea19be486fd5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/55de678ed3c84c51b3a4b4cf473da823 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5686725a34a5b152399098fe6811dfcc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5762cca052dd5d3eb8bb35e2ed9a59b8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/59d9f2ec47e055feaa8deb88dd230fd9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5d30286c45c334a3e08806b2713ddbcd +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5f084c5c398edfb6e223c67ec8fbf80d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/60d030b3fef398bd6c75b5342c1e6951 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6273ac5ec2eeeb08808c520e45e7c353 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/64513343a4d1500f6642a9797f2d6caf +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/64ee480e95febf6b404c1264755ea42e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6580b1bd3cb606ae0cc6a660e43ee91d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/66e8ff0ee49363fdd0e1866807515228 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/67ef1f14c3ad48997b6d2971949a9974 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6cf8b3b420dc28c045daec27150ade0a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7395823b7ae60934b3053f26fdb362d4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/74c056fa2e48770cba3499207a5027f5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/796cd029cd1ff06c3212795cdcc5a7c4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7de140ed6f303b9d00d8d703cced3349 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7ef97a0c04f996570fa8d054e77614e4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/80348afae86df384b25e1e3bff21b13e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/814bc1bed3effa0bb4588eb8b75ab92a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8488002e0e6035b7d00c3800c2c0e27e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/84c8a64682205dba3f8edd60fc1ec8e5 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/86dfe8a3e156aeb6ebcd456b2251fab7 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/89c9228bae34e0ff18fd8fe7f6eb5847 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8e2bf5102d77a2cff3dda27a5617a79d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9411c91747cff7187d3b5eb3d5401758 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/98d02556564ee10aef4c3397bb94d5b9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/994c519d4fdf48cadf8846c64a7c217d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9a11ac4cf3c8597981773b8ea1c36659 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a2474b74df12470fb37c668b85b562c6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a2ee8688f63b884277632a234086f7df +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a3cea75f1356ef55329e78f86b4c72b1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a5ff35005a82346756c8a2d9b564aa8e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a72fe28675ab93fbb5f1fab49703e8b8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/aa2e1ada35daa496bb08e85fcb817536 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b0e11c6d89683eaa7256a44a164a2a12 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b530f21ccf5882027bf2aff5502dc79e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b62c2d32477b85c1a8e33a4b3ba86483 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b817a9a61cc21da35abec9d0dfb2a143 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b9ad765321d7527b38c851119d4d6f41 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bc086c9c936e5b91659a438d35126a90 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/bf17ca8affe2a1febca7f2a4e37cd77b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c21a9a8a5166b51d4c2737ad4b99c16b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c36b7431da1ae91722b1c4091e4ba084 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c3e87e99d52cd8082c8548a7aa63b9da +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c40786442706ae0cc6c793c6ee2500d3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c42ec68313928d1544e733ae8383ef6d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c488c91e58a235d36a0ff8058e5a1004 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c4dbc19d89022a35885f5621f6b86eb3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c6bbf5ca5c9b58807ba226fde0ccc60f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c7b0db461dfcfc1108bf9a6a87fb909d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c9d565eb8899b86408d9fd06fbf039be +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cfeee09fa6b6ec2344a7b44bf0676028 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d8d8b7e606faf0fa1c22a6c2ebc2b58f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d8e283e15fd77782ae12f9b18e5be456 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d909adefad62117a3e85463b83954827 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e1fcfb0faa3c12467a1c35251e04c8b1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e22f9546f5d75bd3549886e979dcb96e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e577e9ce00153ad2e59111f761d0fb15 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e58908ad0ccad6546faf9bcab669b0cd +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/e8f801eeda49cba4a03cfd9e2a4562ae +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ea6fdf5f7aa83bf540d26f1ae12159a8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/eef93e7d091d8118419fb96adf80387b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/efd104c04916854411c86a5440ba30e0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f32a42f77e45018f7748de516be3c393 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fb91323d4585f2e27d281cdb4193beb1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fd080bad11122c7c3147a3fe1964c396 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fd88f9f1128cbff14dd2fa00800cfa10 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fe5bcfd29764185be3d476dee4108595 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ff64e9ded481959dfa8c78718e59e607 +0 -0
- data/spec/dummy/tmp/cache/stdout +3579 -87
- data/spec/dummy/tmp/pids/redis-test.pid +1 -1
- data/spec/factories/agent.rb +1 -1
- data/spec/factories/profile.rb +10 -0
- data/spec/factories/user.rb +21 -12
- data/spec/fixtures/agent_relationship_types.yml +3 -3
- data/spec/fixtures/agent_types.yml +3 -3
- data/spec/fixtures/agents.yml +0 -7
- data/spec/fixtures/carrier_types.yml +2 -2
- data/spec/fixtures/items.yml +46 -19
- data/spec/fixtures/manifestations.yml +1 -0
- data/spec/fixtures/message_requests.yml +3 -4
- data/spec/fixtures/message_templates.yml +51 -16
- data/spec/fixtures/profiles.yml +98 -0
- data/spec/fixtures/reserve_transitions.yml +88 -0
- data/spec/fixtures/resource_import_files.yml +1 -1
- data/spec/fixtures/user_groups.yml +3 -3
- data/spec/models/agent_import_file_spec.rb +0 -3
- data/spec/models/agent_spec.rb +0 -1
- data/spec/models/item_spec.rb +36 -26
- data/spec/models/manifestation_spec.rb +7 -0
- data/spec/models/resource_export_file_spec.rb +3 -0
- data/spec/models/resource_import_file_spec.rb +63 -34
- data/spec/spec_helper.rb +0 -1
- data/spec/support/resque.rb +3 -2
- data/spec/views/agent_types/index.html.erb_spec.rb +2 -2
- data/spec/views/create_types/index.html.erb_spec.rb +2 -2
- data/spec/views/produce_types/index.html.erb_spec.rb +2 -2
- data/spec/views/realize_types/index.html.erb_spec.rb +2 -2
- metadata +391 -67
- data/app/controllers/exemplifies_controller.rb +0 -103
- data/app/views/exemplifies/_form.html.erb +0 -27
- data/app/views/exemplifies/edit.html.erb +0 -13
- data/app/views/exemplifies/index.html.erb +0 -38
- data/app/views/exemplifies/new.html.erb +0 -12
- data/app/views/exemplifies/show.html.erb +0 -24
- data/app/views/items/index.csv.erb +0 -4
- data/app/views/manifestations/_question_list.html.erb +0 -13
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/request_status_types.yml +0 -37
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/request_types.yml +0 -29
- data/spec/controllers/exemplifies_controller_spec.rb +0 -446
- data/spec/dummy/db/migrate/20111201155456_create_users.rb +0 -16
- data/spec/dummy/db/migrate/20111201155513_add_devise_to_users.rb +0 -44
- data/spec/dummy/solr/test/data/index/segments_dv +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000493 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000495 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000496 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000497 +0 -0
- data/spec/views/exemplifies/edit.html.erb_spec.rb +0 -22
- data/spec/views/exemplifies/index.html.erb_spec.rb +0 -25
- data/spec/views/exemplifies/new.html.erb_spec.rb +0 -22
- data/spec/views/exemplifies/show.html.erb_spec.rb +0 -19
@@ -1,14 +1,14 @@
|
|
1
|
-
atom_feed(:
|
1
|
+
atom_feed(url: manifestations_url(format: :atom),
|
2
2
|
"xmlns:opds" => "http://opds-spec.org/2010/catalog",
|
3
3
|
"xmlns:jepa" => "http://www.jepa.or.jp/xmlns/atomPhonetics/1.1"
|
4
4
|
) do |feed|
|
5
|
-
feed.title t('manifestation.query_search_result', :
|
5
|
+
feed.title t('manifestation.query_search_result', query: @query, library_group_name: @library_group.display_name.localize)
|
6
6
|
feed.updated(@manifestations.first ? @manifestations.first.created_at : Time.zone.now)
|
7
|
-
feed.link :
|
7
|
+
feed.link rel: 'start', href: manifestations_url(format: :opds), type: "application/atom+xml;profile=opds-catalog;kind=navigation"
|
8
8
|
|
9
9
|
@manifestations.each do |manifestation|
|
10
10
|
feed.entry(manifestation) do |entry|
|
11
|
-
entry.link :
|
11
|
+
entry.link rel: "http://opds-spec.org/acquisition/borrow", href: manifestation_url(manifestation), type: 'text/html'
|
12
12
|
entry.title(manifestation.original_title)
|
13
13
|
|
14
14
|
manifestation.creators.readable_by(current_user).each do |agent|
|
@@ -8,9 +8,9 @@ xml.rdf(:RDF,
|
|
8
8
|
'xmlns:foaf' => "http://xmlns.com/foaf/0.1/",
|
9
9
|
'xmlns:prism' => "http://prismstandard.org/namespaces/basic/2.0/",
|
10
10
|
'xmlns:rdfs' =>"http://www.w3.org/2000/01/rdf-schema#"){
|
11
|
-
xml.channel("rdf:about" => manifestations_url(:params => params.merge(:
|
12
|
-
xml.title t('manifestation.query_search_result', :
|
13
|
-
xml.link "#{request.protocol}#{request.host_with_port}#{url_for(params.merge(:
|
11
|
+
xml.channel("rdf:about" => manifestations_url(:params => params.merge(format: 'rdf', only_path: true))){
|
12
|
+
xml.title t('manifestation.query_search_result', query: @query, library_group_name: @library_group.display_name.localize)
|
13
|
+
xml.link "#{request.protocol}#{request.host_with_port}#{url_for(params.merge(format: nil, only_path: true))}"
|
14
14
|
xml.description "Next-L Enju, an open source integrated library system developed by Project Next-L"
|
15
15
|
xml.language @locale.to_s
|
16
16
|
xml.ttl "60"
|
@@ -25,6 +25,6 @@ xml.rdf(:RDF,
|
|
25
25
|
end
|
26
26
|
}
|
27
27
|
@manifestations.each do |manifestation|
|
28
|
-
xml << render('manifestations/show', :
|
28
|
+
xml << render('manifestations/show', manifestation: manifestation)
|
29
29
|
end
|
30
30
|
}
|
@@ -4,19 +4,19 @@ xml.rss('version' => "2.0",
|
|
4
4
|
'xmlns:dc' => "http://purl.org/dc/elements/1.1/",
|
5
5
|
'xmlns:atom' => "http://www.w3.org/2005/Atom"){
|
6
6
|
xml.channel{
|
7
|
-
xml.title t('manifestation.query_search_result', :
|
8
|
-
xml.link "#{request.protocol}#{request.host_with_port}#{url_for(params.merge(:
|
7
|
+
xml.title t('manifestation.query_search_result', query: @query, library_group_name: @library_group.display_name.localize)
|
8
|
+
xml.link "#{request.protocol}#{request.host_with_port}#{url_for(params.merge(format: nil, only_path: true))}"
|
9
9
|
xml.description "Next-L Enju, an open source integrated library system developed by Project Next-L"
|
10
10
|
xml.language @locale.to_s
|
11
11
|
xml.ttl "60"
|
12
|
-
xml.tag! "atom:link", :
|
13
|
-
xml.tag! "atom:link", :
|
14
|
-
xml.tag! "atom:link", :
|
12
|
+
xml.tag! "atom:link", rel: 'self', href: "#{request.protocol}#{request.host_with_port}#{url_for(params.merge(format: :rss, only_path: true))}"
|
13
|
+
xml.tag! "atom:link", rel: 'alternate', href: manifestations_url
|
14
|
+
xml.tag! "atom:link", rel: 'search', type: 'application/opensearchdescription+xml', href: page_opensearch_url
|
15
15
|
unless params[:query].blank?
|
16
16
|
xml.tag! "opensearch:totalResults", @manifestations.total_count
|
17
17
|
xml.tag! "opensearch:startIndex", @manifestations.offset_value + 1
|
18
18
|
xml.tag! "opensearch:itemsPerPage", @manifestations.limit_value
|
19
|
-
xml.tag! "opensearch:Query", :
|
19
|
+
xml.tag! "opensearch:Query", role: 'request', :searchTerms => h(params[:query]), :startPage => (h(params[:page]) || 1)
|
20
20
|
end
|
21
21
|
if @manifestations
|
22
22
|
@manifestations.each do |manifestation|
|
@@ -69,7 +69,7 @@ def get_record(manifestation)
|
|
69
69
|
'xmlns:srw_dc' => "info:srw/schema/1/dc-v1.1",
|
70
70
|
'xmlns:xsi' => "http://www.w3.org/2001/XMLSchema-instance",
|
71
71
|
'xsi:schemaLocation' => "info:srw/schema/1/dc-v1.1 http://www.loc.gov/standards/sru/dc-schema.xsd" do
|
72
|
-
cache(
|
72
|
+
cache([manifestation, fragment: 'index_sru', role: current_user_role_name, locale: @locale]) do
|
73
73
|
xml.tag! 'dc:title', manifestation.original_title
|
74
74
|
manifestation.creators.readable_by(current_user).each do |agent|
|
75
75
|
xml.tag! 'dc:creator', agent.full_name
|
File without changes
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.new', :
|
2
|
+
<h1 class="title"><%= t('page.new', model: t('activerecord.models.manifestation')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
<%= render 'manifestations/form' %>
|
5
5
|
</div>
|
@@ -1,30 +1,30 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content" itemscope="itemscope" itemtype="http://schema.org/Book">
|
2
|
-
<h1 class="title"><%= t('page.showing', :
|
2
|
+
<h1 class="title"><%= t('page.showing', model: t('activerecord.models.manifestation')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
<p id="notice"><%= notice %></p>
|
5
|
-
<%= render 'paginate_id_link', :
|
5
|
+
<%= render 'paginate_id_link', manifestation: @manifestation, manifestation_ids: @manifestation_ids %>
|
6
6
|
|
7
|
-
<%= render 'manifestations/title', :
|
7
|
+
<%= render 'manifestations/title', manifestation: @manifestation -%>
|
8
8
|
<%- if @version -%>
|
9
9
|
<p>(<%= l(@manifestation.versions.find(@version).created_at) -%>)</p>
|
10
10
|
<%- end -%>
|
11
11
|
<% if current_user.try(:has_role?, 'Librarian') %>
|
12
|
-
<%= render 'manifestations/show_detail_librarian', :
|
12
|
+
<%= render 'manifestations/show_detail_librarian', manifestation: @manifestation %>
|
13
13
|
<% else %>
|
14
|
-
<%= render 'manifestations/show_detail_user', :
|
14
|
+
<%= render 'manifestations/show_detail_user', manifestation: @manifestation %>
|
15
15
|
<% end %>
|
16
16
|
</div>
|
17
17
|
</div>
|
18
18
|
|
19
19
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
20
|
-
<%= render 'manifestations/book_jacket', :
|
20
|
+
<%= render 'manifestations/book_jacket', manifestation: @manifestation -%>
|
21
21
|
<ul>
|
22
22
|
<%- if @manifestation.picture_files.exists? -%>
|
23
|
-
<li><%= t('page.total') %>: <%= @manifestation.picture_files.count %> <%= t('page.number_of_pictures', :
|
24
|
-
<li><%= link_to t('page.listing', :
|
23
|
+
<li><%= t('page.total') %>: <%= @manifestation.picture_files.count %> <%= t('page.number_of_pictures', count: @manifestation.picture_files.count) %></li>
|
24
|
+
<li><%= link_to t('page.listing', model: t('activerecord.models.picture_file')), picture_files_path(manifestation_id: @manifestation.id) -%></li>
|
25
25
|
<% end %>
|
26
26
|
<%- if can? :create, PictureFile -%>
|
27
|
-
<li><%= link_to t('page.new', :
|
27
|
+
<li><%= link_to t('page.new', model: t('activerecord.models.picture_file')), new_picture_file_path(manifestation_id: @manifestation.id) -%></li>
|
28
28
|
<%- end -%>
|
29
29
|
</ul>
|
30
30
|
<script type="text/javascript">
|
@@ -35,7 +35,7 @@
|
|
35
35
|
<%- if user_signed_in? -%>
|
36
36
|
<div id="call_number_content">
|
37
37
|
<%- @manifestation.items.for_checkout.on_shelf.each do |item| -%>
|
38
|
-
<%- if item.hold?(current_user.library) -%>
|
38
|
+
<%- if item.hold?(current_user.profile.library) -%>
|
39
39
|
<%= call_number_label(item) -%>
|
40
40
|
<%- end -%>
|
41
41
|
<%- end -%>
|
@@ -46,7 +46,7 @@
|
|
46
46
|
<ul>
|
47
47
|
<%- if user_signed_in? -%>
|
48
48
|
<%- if current_user.email.present? -%>
|
49
|
-
<li><%= link_to t('manifestation.send_email'), manifestation_path(:
|
49
|
+
<li><%= link_to t('manifestation.send_email'), manifestation_path(mode: 'send_email'), data: {confirm: t('page.are_you_sure')} -%></li>
|
50
50
|
<%- end -%>
|
51
51
|
<% end %>
|
52
52
|
|
@@ -56,16 +56,16 @@
|
|
56
56
|
<% if @manifestation.is_reservable_by?(current_user) %>
|
57
57
|
<li><%= link_to_reservation(@manifestation, @reserve) %>
|
58
58
|
<br />
|
59
|
-
(<%= t('page.number_of_reservations', :
|
59
|
+
(<%= t('page.number_of_reservations', count: @reserved_count) -%>)</li>
|
60
60
|
<%- else -%>
|
61
61
|
<% if defined?(EnjuPurchaseRequest) %>
|
62
|
-
<li><%= link_to t('activerecord.models.purchase_request'), new_purchase_request_path(:
|
62
|
+
<li><%= link_to t('activerecord.models.purchase_request'), new_purchase_request_path(purchase_request: {url: manifestation_url(@manifestation)}) %></li>
|
63
63
|
<% end %>
|
64
64
|
<%- end -%>
|
65
65
|
<% else %>
|
66
66
|
<% unless @manifestation.items.for_checkout.empty? %>
|
67
67
|
<li><%= link_to_reservation(@manifestation, @reserve) %><br />
|
68
|
-
(<%= t('page.number_of_reservations', :
|
68
|
+
(<%= t('page.number_of_reservations', count: @reserved_count) -%>)</li>
|
69
69
|
<% end %>
|
70
70
|
<% end %>
|
71
71
|
<% end %>
|
@@ -1,9 +1,9 @@
|
|
1
1
|
<div data-role="header">
|
2
2
|
<a href="javascript:history.back()" data-icon="back" data-iconpos="notext" class="ui-btn-left"><%= t('page.back') %></a>
|
3
|
-
<h1 class="title"><%= t('page.showing', :
|
3
|
+
<h1 class="title"><%= t('page.showing', model: t('activerecord.models.manifestation')) -%></h1>
|
4
4
|
</div>
|
5
5
|
<div data-role="content">
|
6
|
-
<%= render 'title', :
|
6
|
+
<%= render 'title', manifestation: @manifestation %>
|
7
7
|
<table class="table table-striped">
|
8
8
|
<tr>
|
9
9
|
<th>ISBN</th>
|
@@ -15,6 +15,6 @@
|
|
15
15
|
</tr>
|
16
16
|
</table>
|
17
17
|
<%- if @manifestation.items.for_checkout.on_shelf.exists? -%>
|
18
|
-
<%= render 'manifestations/show_holding', :
|
18
|
+
<%= render 'manifestations/show_holding', manifestation: @manifestation -%>
|
19
19
|
<%- end -%>
|
20
20
|
</div>
|
@@ -2,5 +2,5 @@ xml.instruct! :xml, :version=>"1.0"
|
|
2
2
|
xml.mods('version' => "3.3",
|
3
3
|
'xmlns:xsi' => "http://www.w3.org/2001/XMLSchema-instance",
|
4
4
|
'xmlns' => "http://www.loc.gov/mods/v3"){
|
5
|
-
xml << render('manifestations/show', :
|
5
|
+
xml << render('manifestations/show', manifestation: @manifestation)
|
6
6
|
}
|
@@ -8,5 +8,5 @@ xml.rdf(:RDF,
|
|
8
8
|
'xmlns:foaf' => "http://xmlns.com/foaf/0.1/",
|
9
9
|
'xmlns:prism' => "http://prismstandard.org/namespaces/basic/2.0/",
|
10
10
|
'xmlns:rdfs' =>"http://www.w3.org/2000/01/rdf-schema#") do
|
11
|
-
xml << render('manifestations/show', :
|
11
|
+
xml << render('manifestations/show', manifestation: @manifestation)
|
12
12
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.editing', :
|
2
|
+
<h1 class="title"><%= t('page.editing', model: t('activerecord.models.medium_of_performance')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
<%= render 'form' %>
|
5
5
|
</div>
|
@@ -1,13 +1,16 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.listing', :
|
2
|
+
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.medium_of_performance')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
5
|
<table class="table table-striped index">
|
6
6
|
<tr>
|
7
7
|
<th id="position"></th>
|
8
8
|
<th><%= t('activerecord.attributes.medium_of_performance.name') -%></th>
|
9
|
-
<th
|
10
|
-
|
9
|
+
<th>
|
10
|
+
<%= t('activerecord.attributes.medium_of_performance.display_name') -%>
|
11
|
+
/
|
12
|
+
<%= t('activerecord.attributes.medium_of_performance.note') -%>
|
13
|
+
</th>
|
11
14
|
<th></th>
|
12
15
|
</tr>
|
13
16
|
|
@@ -18,27 +21,31 @@
|
|
18
21
|
<%= move_position(medium_of_performance) -%>
|
19
22
|
<%- end -%>
|
20
23
|
</td>
|
21
|
-
<td><%=
|
22
|
-
<td
|
23
|
-
|
24
|
+
<td><%= medium_of_performance.name -%></td>
|
25
|
+
<td>
|
26
|
+
<%= link_to medium_of_performance.display_name.localize, medium_of_performance -%>
|
27
|
+
<br />
|
28
|
+
<%= medium_of_performance.note %>
|
29
|
+
</td>
|
24
30
|
<td>
|
25
31
|
<%- if can? :update, medium_of_performance -%>
|
26
32
|
<%= link_to t('page.edit'), edit_medium_of_performance_path(medium_of_performance) -%>
|
27
33
|
<% end %>
|
28
34
|
<%- if can? :delete, medium_of_performance -%>
|
29
|
-
<%= link_to t('page.destroy'), medium_of_performance, :
|
35
|
+
<%= link_to t('page.destroy'), medium_of_performance_path(medium_of_performance), data: {confirm: t('page.are_you_sure')}, method: :delete -%>
|
30
36
|
<%- end -%>
|
31
37
|
</td>
|
32
38
|
</tr>
|
33
39
|
<%- end -%>
|
34
40
|
</table>
|
35
41
|
|
36
|
-
<%= paginate(@medium_of_performances) -%>
|
37
42
|
</div>
|
38
43
|
</div>
|
39
44
|
|
40
45
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
41
46
|
<ul>
|
42
|
-
|
47
|
+
<%- if can? :create, ContentType -%>
|
48
|
+
<li><%= link_to t('page.new', model: t('activerecord.models.medium_of_performance')), new_medium_of_performance_path -%></li>
|
49
|
+
<%- end -%>
|
43
50
|
</ul>
|
44
51
|
</div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.new', :
|
2
|
+
<h1 class="title"><%= t('page.new', model: t('activerecord.models.medium_of_performance')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
<%= render 'form' %>
|
5
5
|
</div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.showing', :
|
2
|
+
<h1 class="title"><%= t('page.showing', model: t('activerecord.models.medium_of_performance')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
<p id="notice"><%= notice %></p>
|
5
5
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= @user.
|
1
|
+
<%= @user.username -%> :
|
2
2
|
|
3
3
|
Title: <%= @manifestation.original_title %>
|
4
4
|
Creator(s): <%= @manifestation.creators.readable_by(@user).collect(&:full_name).join("/") %>
|
@@ -14,5 +14,5 @@ Holding:
|
|
14
14
|
<%= "#{LibraryGroup.site_config.url}manifestations/#{@manifestation.id}" %>
|
15
15
|
|
16
16
|
--
|
17
|
-
<%= LibraryGroup.system_name(@user.locale) %>
|
17
|
+
<%= LibraryGroup.system_name(@user.profile.locale) %>
|
18
18
|
<%= LibraryGroup.site_config.url %>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= @user.
|
1
|
+
<%= @user.username -%> さん
|
2
2
|
|
3
3
|
資料名: <%= @manifestation.original_title %>
|
4
4
|
著者: <%= @manifestation.creators.readable_by(@user).collect(&:full_name).join("/") %>
|
@@ -14,5 +14,5 @@ URL: <%= @manifestation.access_address %>
|
|
14
14
|
<%= "#{LibraryGroup.site_config.url}manifestations/#{@manifestation.id}" %>
|
15
15
|
|
16
16
|
--
|
17
|
-
<%= LibraryGroup.system_name(@user.locale) %>
|
17
|
+
<%= LibraryGroup.system_name(@user.profile.locale) %>
|
18
18
|
<%= LibraryGroup.site_config.url %>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.editing', :
|
2
|
+
<h1 class="title"><%= t('page.editing', model: t('activerecord.models.own')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
<%= render 'form' %>
|
5
5
|
</div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.listing', :
|
2
|
+
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.own')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
5
|
<table class="table table-striped index">
|
@@ -21,12 +21,12 @@
|
|
21
21
|
<%- end -%>
|
22
22
|
</td>
|
23
23
|
<td>
|
24
|
-
<%= render 'manifestations/show_index', :
|
24
|
+
<%= render 'manifestations/show_index', manifestation: own.item.manifestation -%>
|
25
25
|
</td>
|
26
26
|
<td>
|
27
27
|
<%- if can? :delete, own -%>
|
28
28
|
<%= link_to t('page.show'), own -%>
|
29
|
-
<%= link_to t('page.destroy'), own, :
|
29
|
+
<%= link_to t('page.destroy'), own, data: {confirm: t('page.are_you_sure')}, method: :delete -%>
|
30
30
|
<%- end -%>
|
31
31
|
</td>
|
32
32
|
</tr>
|
@@ -40,7 +40,7 @@
|
|
40
40
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
41
41
|
<ul>
|
42
42
|
<%- if can? :create, Own -%>
|
43
|
-
<li><%= link_to t('page.new', :
|
43
|
+
<li><%= link_to t('page.new', model: t('activerecord.models.own')), new_own_path -%></li>
|
44
44
|
<%- end -%>
|
45
45
|
</ul>
|
46
46
|
</div>
|
data/app/views/owns/new.html.erb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.new', :
|
2
|
+
<h1 class="title"><%= t('page.new', model: t('activerecord.models.own')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
<%= render 'form' %>
|
5
5
|
</div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.showing', :
|
2
|
+
<h1 class="title"><%= t('page.showing', model: t('activerecord.models.own')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
<p id="notice"><%= notice %></p>
|
5
5
|
|
@@ -19,7 +19,7 @@
|
|
19
19
|
|
20
20
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
21
21
|
<ul>
|
22
|
-
<li><%= link_to t('page.back_to', :
|
23
|
-
<li><%= link_to t('page.back_to', :
|
22
|
+
<li><%= link_to t('page.back_to', model: t('activerecord.models.agent')), agents_path(item_id: @own.item_id) -%></li>
|
23
|
+
<li><%= link_to t('page.back_to', model: t('activerecord.models.item')), items_path(agent_id: @own.agent_id) -%></li>
|
24
24
|
</ul>
|
25
25
|
</div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.listing', :
|
2
|
+
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.picture_file')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
5
|
<table class="table table-striped index">
|
@@ -20,14 +20,14 @@
|
|
20
20
|
</td>
|
21
21
|
<td><%= picture_file.picture_file_size -%></td>
|
22
22
|
<td><%= picture_file.picture_content_type -%></td>
|
23
|
-
<td><%= link_to h(picture_file.picture_file_name), picture_file_path(picture_file, :
|
23
|
+
<td><%= link_to h(picture_file.picture_file_name), picture_file_path(picture_file, format: :download, size: 'original') -%></td>
|
24
24
|
<td>
|
25
25
|
<%= link_to t('page.show'), picture_file -%>
|
26
26
|
<%- if can? :update, picture_file -%>
|
27
27
|
<%= link_to t('page.edit'), edit_picture_file_path(picture_file) -%>
|
28
28
|
<% end %>
|
29
29
|
<%- if can? :delete, picture_file -%>
|
30
|
-
<%= link_to t('page.destroy'), picture_file, :
|
30
|
+
<%= link_to t('page.destroy'), picture_file, data: {confirm: t('page.are_you_sure')}, method: :delete -%>
|
31
31
|
<%- end -%>
|
32
32
|
</td>
|
33
33
|
</tr>
|
@@ -41,12 +41,12 @@
|
|
41
41
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
42
42
|
<%- if can? :create, PictureFile -%>
|
43
43
|
<ul>
|
44
|
-
<li><%= link_to t('page.listing', :
|
45
|
-
<li><%= link_to t('page.listing', :
|
44
|
+
<li><%= link_to t('page.listing', model: t('activerecord.models.manifestation')), manifestations_path -%></li>
|
45
|
+
<li><%= link_to t('page.listing', model: t('activerecord.models.shelf')), shelves_path -%></li>
|
46
46
|
<% if defined?(EnjuEvent) %>
|
47
|
-
<li><%= link_to t('page.listing', :
|
47
|
+
<li><%= link_to t('page.listing', model: t('activerecord.models.event')), events_path -%></li>
|
48
48
|
<% end %>
|
49
|
-
<li><%= link_to t('page.listing', :
|
49
|
+
<li><%= link_to t('page.listing', model: t('activerecord.models.agent')), agents_path -%></li>
|
50
50
|
</ul>
|
51
51
|
<%- end -%>
|
52
52
|
</div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.listing', :
|
2
|
+
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.picture_file')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
5
|
<h2 class="resource_title">
|
@@ -27,14 +27,14 @@
|
|
27
27
|
</td>
|
28
28
|
<td><%= picture_file.picture_file_size -%></td>
|
29
29
|
<td><%= picture_file.picture_content_type -%></td>
|
30
|
-
<td><%= link_to picture_file.picture_file_name, picture_file_path(picture_file, :
|
30
|
+
<td><%= link_to picture_file.picture_file_name, picture_file_path(picture_file, format: :download, size: 'original') -%></td>
|
31
31
|
<td>
|
32
32
|
<%= link_to t('page.show'), picture_file -%>
|
33
33
|
<%- if can? :update, picture_file -%>
|
34
34
|
<%= link_to t('page.edit'), edit_picture_file_path(picture_file) -%>
|
35
35
|
<% end %>
|
36
36
|
<%- if can? :delete, picture_file -%>
|
37
|
-
<%= link_to t('page.destroy'), picture_file, :data
|
37
|
+
<%= link_to t('page.destroy'), picture_file_path(picture_file, agent_id: agent.id), data: {confirm: t('page.are_you_sure')}, method: :delete -%>
|
38
38
|
<%- end -%>
|
39
39
|
</td>
|
40
40
|
</tr>
|
@@ -48,7 +48,7 @@
|
|
48
48
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
49
49
|
<%- if can? :create, PictureFile -%>
|
50
50
|
<ul>
|
51
|
-
<li><%= link_to t('page.new', :
|
51
|
+
<li><%= link_to t('page.new', model: t('activerecord.models.picture_file')), new_picture_file_path(agent_id: agent.id) -%></li>
|
52
52
|
<li><%= link_to t('picture_file.all_picture'), picture_files_path -%></li>
|
53
53
|
</ul>
|
54
54
|
<%- end -%>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.listing', :
|
2
|
+
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.picture_file')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
5
|
<h2 class="resource_title"><%= link_to event.display_name.localize, event -%></h2>
|
@@ -25,14 +25,14 @@
|
|
25
25
|
</td>
|
26
26
|
<td><%= picture_file.picture_file_size -%></td>
|
27
27
|
<td><%= picture_file.picture_content_type -%></td>
|
28
|
-
<td><%= link_to picture_file.picture_file_name, picture_file_path(picture_file, :
|
28
|
+
<td><%= link_to picture_file.picture_file_name, picture_file_path(picture_file, format: :download, size: 'original') -%></td>
|
29
29
|
<td>
|
30
30
|
<%= link_to t('page.show'), picture_file -%>
|
31
31
|
<%- if can? :update, picture_file -%>
|
32
32
|
<%= link_to t('page.edit'), edit_picture_file_path(picture_file) -%>
|
33
33
|
<% end %>
|
34
34
|
<%- if can? :delete, picture_file -%>
|
35
|
-
<%= link_to t('page.destroy'), picture_file, :
|
35
|
+
<%= link_to t('page.destroy'), picture_file, data: {confirm: t('page.are_you_sure')}, method: :delete -%>
|
36
36
|
<%- end -%>
|
37
37
|
</td>
|
38
38
|
</tr>
|
@@ -46,7 +46,7 @@
|
|
46
46
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
47
47
|
<%- if can? :create, PictureFile -%>
|
48
48
|
<ul>
|
49
|
-
<li><%= link_to t('page.new', :
|
49
|
+
<li><%= link_to t('page.new', model: t('activerecord.models.picture_file')), new_event_picture_file_path(event) -%></li>
|
50
50
|
<li><%= link_to t('picture_file.all_picture'), picture_files_path -%></li>
|
51
51
|
</ul>
|
52
52
|
<%- end -%>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.listing', :
|
2
|
+
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.picture_file')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
5
|
<h2 class="resource_title">
|
@@ -27,14 +27,14 @@
|
|
27
27
|
</td>
|
28
28
|
<td><%= picture_file.picture_file_size -%></td>
|
29
29
|
<td><%= picture_file.picture_content_type -%></td>
|
30
|
-
<td><%= link_to picture_file.picture_file_name, picture_file_path(picture_file, :
|
30
|
+
<td><%= link_to picture_file.picture_file_name, picture_file_path(picture_file, format: :download, size: 'original') -%></td>
|
31
31
|
<td>
|
32
32
|
<%= link_to t('page.show'), picture_file -%>
|
33
33
|
<%- if can? :update, picture_file -%>
|
34
34
|
<%= link_to t('page.edit'), edit_picture_file_path(picture_file) -%>
|
35
35
|
<% end %>
|
36
36
|
<%- if can? :delete, picture_file -%>
|
37
|
-
<%= link_to t('page.destroy'), picture_file, :
|
37
|
+
<%= link_to t('page.destroy'), picture_file, data: {confirm: t('page.are_you_sure')}, method: :delete -%>
|
38
38
|
<%- end -%>
|
39
39
|
</td>
|
40
40
|
</tr>
|
@@ -48,7 +48,7 @@
|
|
48
48
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
49
49
|
<%- if can? :create, PictureFile -%>
|
50
50
|
<ul>
|
51
|
-
<li><%= link_to t('page.new', :
|
51
|
+
<li><%= link_to t('page.new', model: t('activerecord.models.picture_file')), new_picture_file_path(manifestation_id: manifestation) -%></li>
|
52
52
|
<li><%= link_to t('picture_file.all_picture'), picture_files_path -%></li>
|
53
53
|
</ul>
|
54
54
|
<%- end -%>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.listing', :
|
2
|
+
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.picture_file')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
5
|
<h2 class="resource_title"><%= link_to shelf.display_name.localize, shelf -%></h2>
|
@@ -25,14 +25,14 @@
|
|
25
25
|
</td>
|
26
26
|
<td><%= picture_file.picture_file_size -%></td>
|
27
27
|
<td><%= picture_file.picture_content_type -%></td>
|
28
|
-
<td><%= link_to picture_file.picture_file_name, picture_file_path(picture_file, :
|
28
|
+
<td><%= link_to picture_file.picture_file_name, picture_file_path(picture_file, format: :download, size: 'original') -%></td>
|
29
29
|
<td>
|
30
30
|
<%= link_to t('page.show'), picture_file -%>
|
31
31
|
<%- if can? :update, picture_file -%>
|
32
32
|
<%= link_to t('page.edit'), edit_picture_file_path(picture_file) -%>
|
33
33
|
<% end %>
|
34
34
|
<%- if can? :delete, picture_file -%>
|
35
|
-
<%= link_to t('page.destroy'), picture_file, :
|
35
|
+
<%= link_to t('page.destroy'), picture_file, data: {confirm: t('page.are_you_sure')}, method: :delete -%>
|
36
36
|
<%- end -%>
|
37
37
|
</td>
|
38
38
|
</tr>
|
@@ -46,7 +46,7 @@
|
|
46
46
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
47
47
|
<%- if can? :create, PictureFile -%>
|
48
48
|
<ul>
|
49
|
-
<li><%= link_to t('page.new', :
|
49
|
+
<li><%= link_to t('page.new', model: t('activerecord.models.picture_file')), new_shelf_picture_file_path(shelf) -%></li>
|
50
50
|
<li><%= link_to t('picture_file.all_picture'), picture_files_path -%></li>
|
51
51
|
</ul>
|
52
52
|
<%- end -%>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.editing', :
|
2
|
+
<h1 class="title"><%= t('page.editing', model: t('activerecord.models.picture_file')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
5
|
<%= form_for(@picture_file) do |f| -%>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%- case @attachable.class.to_s when 'Shelf' -%>
|
2
2
|
<%= render 'index_shelf', :shelf => @attachable -%>
|
3
3
|
<%- when 'Manifestation' -%>
|
4
|
-
<%= render 'index_manifestation', :
|
4
|
+
<%= render 'index_manifestation', manifestation: @attachable -%>
|
5
5
|
<%- when 'Agent' -%>
|
6
6
|
<%= render 'index_agent', :agent => @attachable -%>
|
7
7
|
<%- when 'Event' -%>
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
2
|
-
<h1 class="title"><%= t('page.new', :
|
2
|
+
<h1 class="title"><%= t('page.new', model: t('activerecord.models.picture_file')) -%></h1>
|
3
3
|
<div id="content_list">
|
4
4
|
|
5
|
-
<%= form_for(@picture_file, :
|
5
|
+
<%= form_for(@picture_file, url: picture_files_path, html: { multipart: true, method: :post }) do |f| -%>
|
6
6
|
<% if @picture_file.errors.any? %>
|
7
7
|
<div id="error_explanation">
|
8
8
|
<ul>
|