enju_biblio 0.3.13 → 0.4.0.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -3
- data/app/controllers/agents_controller.rb +6 -0
- data/app/controllers/content_types_controller.rb +1 -1
- data/app/controllers/items_controller.rb +10 -18
- data/app/controllers/manifestations_controller.rb +85 -80
- data/app/controllers/resource_import_results_controller.rb +2 -6
- data/app/controllers/series_statements_controller.rb +6 -0
- data/app/helpers/enju_biblio/application_helper.rb +5 -5
- data/app/helpers/manifestations_helper.rb +12 -12
- data/app/models/agent.rb +4 -13
- data/app/models/agent_import_file.rb +1 -1
- data/app/models/agent_relationship_type.rb +8 -7
- data/app/models/agent_type.rb +10 -7
- data/app/models/carrier_type.rb +14 -11
- data/app/models/content_type.rb +10 -7
- data/app/models/create_type.rb +8 -7
- data/app/models/doi_record.rb +36 -0
- data/app/models/form_of_work.rb +11 -8
- data/app/models/frequency.rb +11 -8
- data/app/models/identifier.rb +1 -1
- data/app/models/identifier_type.rb +1 -0
- data/app/models/import_request.rb +3 -4
- data/app/models/isbn_record.rb +51 -0
- data/app/models/isbn_record_and_manifestation.rb +18 -0
- data/app/models/issn_record.rb +49 -0
- data/app/models/issn_record_and_manifestation.rb +18 -0
- data/app/models/item.rb +7 -55
- data/app/models/language.rb +10 -9
- data/app/models/license.rb +9 -7
- data/app/models/manifestation.rb +271 -158
- data/app/models/manifestation_relationship_type.rb +9 -7
- data/app/models/medium_of_performance.rb +11 -8
- data/app/models/periodical.rb +33 -0
- data/app/models/periodical_and_manifestation.rb +16 -0
- data/app/models/picture_file.rb +2 -0
- data/app/models/produce_type.rb +8 -7
- data/app/models/realize_type.rb +8 -7
- data/app/models/resource_export_file.rb +8 -6
- data/app/models/resource_export_file_state_machine.rb +1 -1
- data/app/models/resource_import_file.rb +62 -153
- data/app/views/agent_import_results/index.txt.erb +3 -0
- data/app/views/agent_relationship_types/index.html.erb +1 -1
- data/app/views/agent_relationship_types/show.html.erb +1 -1
- data/app/views/agent_relationships/_form.html.erb +1 -1
- data/app/views/agent_types/index.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/_agent_list.html.erb +2 -2
- data/app/views/agents/_form.html.erb +4 -4
- data/app/views/agents/_index_agent.html.erb +1 -1
- data/app/views/agents/_index_agent_merge_list.html.erb +1 -1
- data/app/views/agents/_index_expression.html.erb +2 -2
- data/app/views/agents/_index_manifestation.html.erb +2 -2
- data/app/views/agents/_index_work.html.erb +2 -2
- data/app/views/agents/index.atom.builder +1 -1
- data/app/views/agents/index.rss.builder +3 -3
- data/app/views/agents/show.html+phone.erb +2 -2
- data/app/views/agents/show.html.erb +2 -2
- data/app/views/carrier_types/index.html.erb +2 -2
- data/app/views/carrier_types/show.html.erb +3 -3
- data/app/views/content_types/index.html.erb +1 -1
- data/app/views/content_types/show.html.erb +1 -1
- data/app/views/countries/index.html.erb +1 -1
- data/app/views/countries/show.html.erb +1 -1
- data/app/views/create_types/index.html.erb +1 -1
- data/app/views/create_types/show.html.erb +1 -1
- data/app/views/creates/_form.html.erb +1 -1
- data/app/views/form_of_works/index.html.erb +1 -1
- data/app/views/form_of_works/show.html.erb +1 -1
- data/app/views/frequencies/index.html.erb +1 -1
- data/app/views/frequencies/show.html.erb +1 -1
- data/app/views/identifier_types/index.html.erb +1 -1
- data/app/views/identifier_types/show.html.erb +1 -1
- data/app/views/items/_form.html.erb +13 -33
- data/app/views/items/index.html+phone.erb +3 -3
- data/app/views/items/index.html.erb +3 -3
- data/app/views/items/show.html+phone.erb +5 -5
- data/app/views/items/show.html.erb +119 -134
- data/app/views/languages/index.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/items.html.erb +1 -1
- data/app/views/layouts/manifestations.html.erb +4 -4
- data/app/views/licenses/index.html.erb +1 -1
- data/app/views/licenses/show.html.erb +1 -1
- data/app/views/manifestation_relationship_types/index.html.erb +1 -1
- data/app/views/manifestation_relationship_types/show.html.erb +1 -1
- data/app/views/manifestation_relationships/_form.html.erb +1 -1
- data/app/views/manifestations/_call_number.html.erb +3 -3
- data/app/views/manifestations/_carrier_type_facet.html.erb +1 -1
- data/app/views/manifestations/_classification_facet.html.erb +2 -2
- data/app/views/manifestations/_export_detail.html.erb +0 -1
- data/app/views/manifestations/_export_list.html.erb +3 -4
- data/app/views/manifestations/_form.html.erb +8 -31
- data/app/views/manifestations/_identifier_fields.html.erb +1 -1
- data/app/views/manifestations/_language_facet.html.erb +1 -1
- data/app/views/manifestations/_library_facet.html.erb +1 -1
- data/app/views/manifestations/_manifestation.txt.erb +1 -1
- data/app/views/manifestations/_pub_year_facet.html.erb +1 -1
- data/app/views/manifestations/_reservable_facet.html.erb +2 -2
- data/app/views/manifestations/_show_creators.html.erb +1 -1
- data/app/views/manifestations/_show_detail_librarian.html.erb +13 -37
- data/app/views/manifestations/_show_detail_user.html.erb +13 -25
- data/app/views/manifestations/_show_holding.html+phone.erb +3 -3
- data/app/views/manifestations/_show_holding.html.erb +2 -2
- data/app/views/manifestations/explain.sru +9 -0
- data/app/views/manifestations/index.atom.builder +1 -1
- data/app/views/manifestations/index.html.erb +7 -7
- data/app/views/manifestations/index.opds.builder +1 -1
- data/app/views/manifestations/index.rdf.builder +3 -3
- data/app/views/manifestations/index.rss.builder +3 -3
- data/app/views/manifestations/index.sru.builder +101 -0
- data/app/views/manifestations/index.txt.erb +1 -0
- data/app/views/manifestations/show.txt.erb +1 -0
- data/app/views/medium_of_performances/index.html.erb +1 -1
- data/app/views/medium_of_performances/show.html.erb +1 -1
- data/app/views/notifier/manifestation_info.en.text.erb +1 -1
- data/app/views/notifier/manifestation_info.ja.text.erb +1 -1
- data/app/views/picture_files/edit.html.erb +0 -4
- data/app/views/produce_types/index.html.erb +1 -1
- data/app/views/produce_types/show.html.erb +1 -1
- data/app/views/produces/_form.html.erb +1 -1
- data/app/views/realize_types/index.html.erb +1 -1
- data/app/views/realize_types/show.html.erb +1 -1
- data/app/views/realizes/_form.html.erb +1 -1
- data/app/views/resource_import_files/_results.html.erb +0 -6
- data/app/views/resource_import_files/new.html.erb +2 -2
- data/app/views/resource_import_results/index.html.erb +11 -0
- data/app/views/resource_import_results/index.txt.erb +3 -0
- data/app/views/series_statements/_form.html.erb +8 -6
- data/app/views/series_statements/show.html.erb +0 -12
- data/config/locales/translation_en.yml +1 -28
- data/config/locales/translation_ja.yml +3 -30
- data/config/routes.rb +0 -2
- data/db/migrate/20081027150907_create_picture_files.rb +2 -0
- data/db/migrate/20160319144230_create_issn_records.rb +11 -0
- data/db/migrate/20160506144040_create_isbn_records.rb +11 -0
- data/db/migrate/20170116134107_create_issn_record_and_manifestations.rb +11 -0
- data/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -0
- data/db/migrate/20190102034126_create_doi_records.rb +13 -0
- data/db/migrate/20190311154610_create_periodicals.rb +10 -0
- data/db/migrate/20190312033839_create_periodical_and_manifestations.rb +11 -0
- data/db/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
- data/lib/enju_biblio/openurl.rb +1 -5
- data/lib/enju_biblio/porta_cql.rb +282 -0
- data/lib/enju_biblio/sru.rb +83 -0
- data/lib/enju_biblio/version.rb +1 -1
- data/lib/enju_biblio.rb +2 -0
- data/lib/generators/enju_biblio/setup/setup_generator.rb +0 -2
- 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 -4
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/carrier_types.yml +8 -26
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/content_types.yml +12 -24
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/create_types.yml +4 -22
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/form_of_works.yml +1 -1
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/frequencies.yml +9 -18
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/languages.yml +2 -4
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/licenses.yml +2 -2
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/manifestation_relationship_types.yml +2 -4
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/medium_of_performances.yml +15 -0
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/produce_types.yml +2 -19
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/realize_types.yml +3 -21
- data/spec/cassette_library/ImportRequestsController/POST_create/When_logged_in_as_Administrator/with_isbn_which_is_already_imported/assigns_a_newly_created_import_request_as_import_request.yml +121 -0
- data/spec/controllers/content_types_controller_spec.rb +1 -1
- data/spec/controllers/items_controller_spec.rb +1 -59
- data/spec/controllers/manifestations_controller_spec.rb +19 -49
- data/spec/dummy/app/helpers/application_helper.rb +1 -1
- data/spec/dummy/app/models/user.rb +4 -0
- data/spec/dummy/bin/bundle +1 -1
- data/spec/dummy/bin/setup +1 -3
- data/spec/dummy/bin/update +4 -2
- data/spec/dummy/bin/yarn +3 -3
- data/spec/dummy/config/application.rb +1 -2
- data/spec/dummy/config/database.yml +70 -9
- data/spec/dummy/config/initializers/assets.rb +2 -2
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/002_devise_create_users.rb +1 -0
- data/spec/dummy/db/migrate/113_create_events.rb +2 -4
- data/spec/dummy/db/migrate/154_create_messages.rb +4 -8
- data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +3 -3
- data/spec/dummy/db/migrate/20081028093607_create_event_import_files.rb +2 -4
- data/spec/dummy/db/migrate/20090519203307_create_participates.rb +2 -4
- data/spec/dummy/db/migrate/20100925074639_create_event_import_results.rb +2 -2
- data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -0
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140523171309_create_event_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140720192418_add_default_library_id_to_event_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20140812152348_create_event_export_files.rb +1 -1
- data/spec/dummy/db/migrate/20140812153137_create_event_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140814070854_add_default_event_category_id_to_event_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20151128142913_create_places.rb +14 -0
- data/spec/dummy/db/migrate/20151201163718_add_place_id_to_event.rb +5 -0
- data/spec/dummy/db/migrate/20160703184258_add_most_recent_to_event_import_file_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160703184311_add_most_recent_to_event_export_file_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20160813191533_add_book_jacket_source_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160813191820_add_screenshot_generator_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160815045420_add_most_recent_to_bookmark_stat_transitions.rb +9 -0
- data/spec/dummy/db/migrate/20170116150432_create_jpno_records.rb +10 -0
- data/spec/dummy/db/migrate/20171126072934_create_ndla_records.rb +10 -0
- data/spec/dummy/db/migrate/20180107162659_add_constraints_to_most_recent_for_message_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107162711_add_constraints_to_most_recent_for_message_request_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107164558_add_constraints_to_most_recent_for_event_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107164617_add_constraints_to_most_recent_for_event_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107172413_add_constraints_to_most_recent_for_bookmark_stat_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180709023035_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +36 -0
- data/spec/dummy/db/migrate/20180709023036_add_missing_unique_indices.acts_as_taggable_on_engine.rb +26 -0
- data/spec/dummy/db/migrate/20180709023037_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +20 -0
- data/spec/dummy/db/migrate/20180709023038_add_missing_taggable_index.acts_as_taggable_on_engine.rb +15 -0
- data/spec/dummy/db/migrate/20180709023039_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +15 -0
- data/spec/dummy/db/migrate/20180709023040_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb +23 -0
- data/spec/dummy/db/migrate/20180709161346_add_created_at_to_tag.rb +6 -0
- data/spec/dummy/db/migrate/20181119170645_add_foreign_key_to_events_referencing_event_categories.rb +5 -0
- data/spec/dummy/db/migrate/20190501043418_create_ndl_bib_id_records.rb +10 -0
- data/spec/dummy/db/migrate/20190508160525_create_retains.rb +10 -0
- data/spec/dummy/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
- data/spec/dummy/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
- data/spec/dummy/db/migrate/20190630151446_add_display_name_translations_to_role.rb +5 -0
- data/spec/dummy/db/migrate/20190630153136_add_display_name_translations_to_event.rb +6 -0
- data/spec/dummy/db/migrate/20190706052525_add_display_name_translations_to_circulation_status.rb +5 -0
- data/spec/dummy/db/schema.rb +335 -221
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/factories/create_types.rb +8 -7
- data/spec/factories/produce_types.rb +8 -7
- data/spec/factories/realize_types.rb +8 -7
- data/spec/factories/series_statement.rb +3 -4
- data/spec/fixtures/agent_relationship_types.yml +8 -7
- data/spec/fixtures/agent_types.yml +11 -10
- data/spec/fixtures/carrier_types.yml +16 -15
- data/spec/fixtures/content_types.yml +20 -31
- data/spec/fixtures/create_types.yml +12 -15
- data/spec/fixtures/creates.yml +0 -2
- data/spec/fixtures/form_of_works.yml +11 -10
- data/spec/fixtures/frequencies.yml +17 -25
- data/spec/fixtures/items.yml +11 -12
- data/spec/fixtures/languages.yml +11 -11
- data/spec/fixtures/libraries.yml +30 -30
- data/spec/fixtures/library_groups.yml +11 -6
- data/spec/fixtures/licenses.yml +8 -7
- data/spec/fixtures/manifestation_relationship_types.yml +12 -11
- data/spec/fixtures/manifestations.yml +0 -1
- data/spec/fixtures/medium_of_performances.yml +10 -9
- data/spec/fixtures/picture_files.yml +2 -0
- data/spec/fixtures/produce_types.yml +10 -11
- data/spec/fixtures/produces.yml +0 -2
- data/spec/fixtures/profiles.yml +8 -5
- data/spec/fixtures/realize_types.yml +11 -13
- data/spec/fixtures/realizes.yml +0 -2
- data/spec/fixtures/request_status_types.yml +14 -14
- data/spec/fixtures/request_types.yml +13 -13
- data/spec/fixtures/resource_export_files.yml +1 -1
- data/spec/fixtures/resource_import_results.yml +2 -2
- data/spec/fixtures/roles.yml +22 -5
- data/spec/fixtures/shelves.yml +16 -16
- data/spec/fixtures/user_groups.yml +12 -12
- data/spec/fixtures/user_has_roles.yml +3 -4
- data/spec/fixtures/users.yml +0 -3
- data/spec/models/agent_relationship_type_spec.rb +8 -7
- data/spec/models/agent_type_spec.rb +8 -7
- data/spec/models/carrier_type_spec.rb +12 -11
- data/spec/models/content_type_spec.rb +8 -7
- data/spec/models/create_type_spec.rb +8 -7
- data/spec/models/doi_record_spec.rb +19 -0
- data/spec/models/form_of_work_spec.rb +8 -7
- data/spec/models/frequency_spec.rb +8 -7
- data/spec/models/item_spec.rb +0 -7
- data/spec/models/language_spec.rb +10 -9
- data/spec/models/license_spec.rb +8 -7
- data/spec/models/manifestation_relationship_type_spec.rb +8 -7
- data/spec/models/manifestation_spec.rb +81 -24
- data/spec/models/medium_of_performance_spec.rb +8 -7
- data/spec/models/periodical_and_manifestation_spec.rb +17 -0
- data/spec/models/periodical_spec.rb +16 -0
- data/spec/models/picture_file_spec.rb +2 -0
- data/spec/models/produce_type_spec.rb +8 -7
- data/spec/models/realize_type_spec.rb +8 -7
- data/spec/models/resource_export_file_spec.rb +9 -62
- data/spec/models/resource_import_file_spec.rb +14 -44
- data/spec/rails_helper.rb +8 -4
- data/spec/system/manifestations_spec.rb +0 -30
- data/spec/views/items/index.html.erb_spec.rb +6 -7
- data/spec/views/manifestations/index.html.erb_spec.rb +1 -1
- data/spec/views/manifestations/index.rdf.builder_spec.rb +1 -0
- data/spec/views/manifestations/{index.txt.ruby_spec.rb → index.txt.erb_spec.rb} +1 -1
- data/spec/views/manifestations/{show.txt.ruby_spec.rb → show.txt.erb_spec.rb} +2 -2
- data/spec/views/resource_import_results/show.html.erb_spec.rb +1 -1
- metadata +560 -718
- data/app/controllers/item_custom_properties_controller.rb +0 -69
- data/app/controllers/manifestation_custom_properties_controller.rb +0 -69
- data/app/models/item_custom_property.rb +0 -18
- data/app/models/item_custom_value.rb +0 -17
- data/app/models/manifestation_custom_property.rb +0 -18
- data/app/models/manifestation_custom_value.rb +0 -17
- data/app/policies/item_custom_property_policy.rb +0 -21
- data/app/policies/manifestation_custom_property_policy.rb +0 -21
- data/app/views/agent_import_results/index.txt.ruby +0 -5
- data/app/views/item_custom_properties/_form.html.erb +0 -32
- data/app/views/item_custom_properties/edit.html.erb +0 -13
- data/app/views/item_custom_properties/index.html.erb +0 -43
- data/app/views/item_custom_properties/new.html.erb +0 -12
- data/app/views/item_custom_properties/show.html.erb +0 -28
- data/app/views/items/_item.json.jbuilder +0 -17
- data/app/views/items/index.json.jbuilder +0 -5
- data/app/views/items/show.json.jbuilder +0 -1
- data/app/views/manifestation_custom_properties/_form.html.erb +0 -32
- data/app/views/manifestation_custom_properties/edit.html.erb +0 -13
- data/app/views/manifestation_custom_properties/index.html.erb +0 -43
- data/app/views/manifestation_custom_properties/new.html.erb +0 -12
- data/app/views/manifestation_custom_properties/show.html.erb +0 -28
- data/app/views/manifestations/index.txt.ruby +0 -7
- data/app/views/manifestations/show.json.jbuilder +0 -2
- data/app/views/manifestations/show.txt.ruby +0 -5
- data/app/views/resource_import_results/index.txt.ruby +0 -5
- data/db/migrate/20190818075603_add_memo_to_manifestation.rb +0 -5
- data/db/migrate/20190818075628_add_memo_to_item.rb +0 -5
- data/db/migrate/20200425072340_create_manifestation_custom_properties.rb +0 -12
- data/db/migrate/20200425072349_create_item_custom_properties.rb +0 -12
- data/db/migrate/20200425074758_create_manifestation_custom_values.rb +0 -12
- data/db/migrate/20200425074822_create_item_custom_values.rb +0 -12
- data/lib/generators/enju_biblio/setup/templates/db/fixtures/agents.yml +0 -19
- data/spec/cassette_library/ResourceImportFile/when_its_mode_is_create_/when_it_is_written_in_utf-8/should_import_custom_values.yml +0 -121
- data/spec/cassette_library/resource_import_results/index_txt_ruby/renders_a_list_of_resource_import_results.yml +0 -121
- data/spec/controllers/item_custom_properties_controller_spec.rb +0 -449
- data/spec/controllers/manifestation_custom_properties_controller_spec.rb +0 -449
- data/spec/dummy/db/migrate/20081117143156_create_inventory_files.rb +0 -18
- data/spec/dummy/db/migrate/20081117143455_create_inventories.rb +0 -17
- data/spec/dummy/db/migrate/20090706125521_add_attachments_inventory_to_inventory_file.rb +0 -15
- data/spec/dummy/db/migrate/20091202124834_create_versions.rb +0 -18
- data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +0 -30
- data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +0 -5
- data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +0 -6
- data/spec/dummy/db/migrate/20120413100431_add_fingerprint_to_inventory_file.rb +0 -5
- data/spec/dummy/db/migrate/20150421023923_create_identities.rb +0 -14
- data/spec/dummy/db/migrate/20151126005552_add_provider_to_identity.rb +0 -5
- data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -18
- data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
- data/spec/factories/item_custom_property.rb +0 -6
- data/spec/factories/item_custom_value.rb +0 -6
- data/spec/factories/manifestation_custom_property.rb +0 -6
- data/spec/factories/manifestation_custom_value.rb +0 -6
- data/spec/fixtures/carrier_type_has_checkout_types.yml +0 -31
- data/spec/fixtures/checkout_stat_has_manifestations.yml +0 -24
- data/spec/fixtures/checkout_stat_has_users.yml +0 -24
- data/spec/fixtures/checkout_types.yml +0 -34
- data/spec/fixtures/circulation_statuses.yml +0 -136
- data/spec/fixtures/inventory_files.yml +0 -40
- data/spec/fixtures/item_custom_properties.yml +0 -24
- data/spec/fixtures/manifestation_checkout_stats.yml +0 -29
- data/spec/fixtures/manifestation_custom_properties.yml +0 -24
- data/spec/fixtures/manifestation_reserve_stats.yml +0 -29
- data/spec/fixtures/reserve_stat_has_manifestations.yml +0 -24
- data/spec/fixtures/reserve_stat_has_users.yml +0 -24
- data/spec/fixtures/reserve_transitions.yml +0 -104
- data/spec/fixtures/reserves.yml +0 -143
- data/spec/fixtures/use_restrictions.yml +0 -93
- data/spec/fixtures/user_checkout_stats.yml +0 -28
- data/spec/fixtures/user_group_has_checkout_types.yml +0 -111
- data/spec/fixtures/user_reserve_stats.yml +0 -28
- data/spec/models/item_custom_property_spec.rb +0 -18
- data/spec/models/item_custom_value_spec.rb +0 -17
- data/spec/models/manifestation_custom_property_spec.rb +0 -18
- data/spec/models/manifestation_custom_value_spec.rb +0 -17
- data/spec/requests/item_custom_properties_spec.rb +0 -129
- data/spec/requests/manifestation_custom_properties_spec.rb +0 -129
- data/spec/routing/item_custom_properties_routing_spec.rb +0 -38
- data/spec/routing/manifestation_custom_properties_routing_spec.rb +0 -38
- data/spec/system/items_spec.rb +0 -121
- data/spec/system/series_statements_spec.rb +0 -16
- data/spec/views/agent_import_results/index.html.erb_spec.rb +0 -29
- data/spec/views/agent_import_results/index.txt.ruby_spec.rb +0 -20
- data/spec/views/agent_import_results/show.html.erb_spec.rb +0 -24
- data/spec/views/item_custom_properties/edit.html.erb_spec.rb +0 -21
- data/spec/views/item_custom_properties/index.html.erb_spec.rb +0 -25
- data/spec/views/item_custom_properties/new.html.erb_spec.rb +0 -21
- data/spec/views/item_custom_properties/show.html.erb_spec.rb +0 -16
- data/spec/views/items/index.json.jbuilder_spec.rb +0 -15
- data/spec/views/items/show.json.jbuilder_spec.rb +0 -15
- data/spec/views/manifestation_custom_properties/edit.html.erb_spec.rb +0 -21
- data/spec/views/manifestation_custom_properties/index.html.erb_spec.rb +0 -25
- data/spec/views/manifestation_custom_properties/new.html.erb_spec.rb +0 -21
- data/spec/views/manifestation_custom_properties/show.html.erb_spec.rb +0 -16
- data/spec/views/manifestations/show.json.jbuilder_spec.rb +0 -16
- data/spec/views/resource_import_results/index.txt.ruby_spec.rb +0 -22
@@ -19,7 +19,7 @@
|
|
19
19
|
<%- end -%>
|
20
20
|
</td>
|
21
21
|
<td><%= country.name -%></td>
|
22
|
-
<td><%= link_to country.display_name
|
22
|
+
<td><%= link_to country.display_name, country -%></td>
|
23
23
|
<td>
|
24
24
|
alpha-2: <%= country.alpha_2 -%></br>
|
25
25
|
alpha-3: <%= country.alpha_3 -%></br>
|
@@ -23,7 +23,7 @@
|
|
23
23
|
|
24
24
|
<div class="field">
|
25
25
|
<%= f.label t('activerecord.models.create_type') -%><br />
|
26
|
-
<%= f.select :create_type_id, @create_types.map{|c| [c.display_name
|
26
|
+
<%= f.select :create_type_id, @create_types.map{|c| [c.display_name, c.id]} %>
|
27
27
|
</div>
|
28
28
|
|
29
29
|
<div class="actions">
|
@@ -1,12 +1,10 @@
|
|
1
1
|
<%= render 'manifestations/title', manifestation: @item.manifestation -%>
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
</p>
|
9
|
-
<% end %>
|
2
|
+
<p>
|
3
|
+
<%= t('activerecord.models.classification') -%>:
|
4
|
+
<%- @item.manifestation.classifications.each do |classification| -%>
|
5
|
+
<%= link_to "#{classification.classification_type.display_name}: #{classification.category}", manifestations_path(query: "classification_sm:#{classification.classification_type.name}_#{classification.category}") -%>
|
6
|
+
<%- end -%>
|
7
|
+
</p>
|
10
8
|
<%= render 'page/required_field' %>
|
11
9
|
<%= simple_form_for(@item) do |f| -%>
|
12
10
|
<%= f.error_messages -%>
|
@@ -14,26 +12,26 @@
|
|
14
12
|
|
15
13
|
<div class="field">
|
16
14
|
<%= f.label "#{t('activerecord.models.library')} / #{t('activerecord.models.shelf')}" -%>
|
17
|
-
<%= f.select :library_id, @libraries.map{|l| [l.display_name
|
18
|
-
<%= f.select :shelf_id, @shelves.map{|s| [s.display_name
|
15
|
+
<%= f.select :library_id, @libraries.map{|l| [l.display_name, l.id]} %>
|
16
|
+
<%= f.select :shelf_id, @shelves.map{|s| [s.display_name, s.id]} %>
|
19
17
|
<%= render 'observe_field' %>
|
20
18
|
</div>
|
21
19
|
|
22
20
|
<% if defined?(EnjuCirculation) %>
|
23
21
|
<div class="field">
|
24
22
|
<%= f.label t('activerecord.models.checkout_type') -%>
|
25
|
-
<%= f.select(:checkout_type_id, @checkout_types.collect{|c| [c.display_name
|
23
|
+
<%= f.select(:checkout_type_id, @checkout_types.collect{|c| [c.display_name, c.id]}) -%>
|
26
24
|
</div>
|
27
25
|
|
28
26
|
<div class="field">
|
29
27
|
<%= f.label t('activerecord.models.circulation_status') -%>
|
30
|
-
<%= f.select(:circulation_status_id, @circulation_statuses.collect{|c| [c.display_name
|
28
|
+
<%= f.select(:circulation_status_id, @circulation_statuses.collect{|c| [c.display_name, c.id]}) -%>
|
31
29
|
</div>
|
32
30
|
|
33
31
|
<div class="field">
|
34
32
|
<%= f.label t('activerecord.models.use_restriction') -%>
|
35
33
|
<%= f.fields_for :item_has_use_restriction do |i| %>
|
36
|
-
<%= i.select :use_restriction_id, @use_restrictions.collect{|r| [r.display_name
|
34
|
+
<%= i.select :use_restriction_id, @use_restrictions.collect{|r| [r.display_name, r.id]} %>
|
37
35
|
<% end %>
|
38
36
|
</div>
|
39
37
|
<% end %>
|
@@ -50,7 +48,7 @@
|
|
50
48
|
|
51
49
|
<div class="field">
|
52
50
|
<%= f.label t('activerecord.models.budget_type') -%>
|
53
|
-
<%= f.select(:budget_type_id, @budget_types.collect{|b| [b.display_name
|
51
|
+
<%= f.select(:budget_type_id, @budget_types.collect{|b| [b.display_name, b.id]}, include_blank: true) -%>
|
54
52
|
|
55
53
|
<%= f.label t('activerecord.models.bookstore') -%>
|
56
54
|
<%= f.select(:bookstore_id, @bookstores.collect{|b| [b.name, b.id]}, include_blank: true) -%>
|
@@ -68,7 +66,7 @@
|
|
68
66
|
|
69
67
|
<div class="field">
|
70
68
|
<%= f.label t('role.required_role') -%>
|
71
|
-
<%= f.select(:required_role_id, @roles.collect{|r| [r.display_name
|
69
|
+
<%= f.select(:required_role_id, @roles.collect{|r| [r.display_name, r.id]}) -%>
|
72
70
|
</div>
|
73
71
|
|
74
72
|
<div class="field">
|
@@ -94,24 +92,6 @@
|
|
94
92
|
<%= f.text_area :note, class: 'resource_textarea' -%>
|
95
93
|
</div>
|
96
94
|
|
97
|
-
<% if ItemCustomProperty.first %>
|
98
|
-
<div class="field">
|
99
|
-
<% ItemCustomProperty.order(:position).each do |c| %>
|
100
|
-
<% @item.item_custom_values.new(item_custom_property: c) unless @item.item_custom_values.map{|value| value.item_custom_property_id}.include?(c.id) %>
|
101
|
-
<% end %>
|
102
|
-
<%= f.fields_for :item_custom_values do |custom_form| %>
|
103
|
-
<%= custom_form.label custom_form.object.item_custom_property.name.to_sym, custom_form.object.item_custom_property.display_name.localize %>
|
104
|
-
<%= custom_form.hidden_field :item_custom_property_id %>
|
105
|
-
<%= custom_form.text_field :value, class: 'form-control' %>
|
106
|
-
<% end %>
|
107
|
-
</div>
|
108
|
-
<% end %>
|
109
|
-
|
110
|
-
<div class="field">
|
111
|
-
<%= f.label :memo -%><br />
|
112
|
-
<%= f.text_area :memo, class: 'resource_textarea' -%>
|
113
|
-
</div>
|
114
|
-
|
115
95
|
<div class="field">
|
116
96
|
<%= f.label :item_identifier -%>
|
117
97
|
<%= f.text_field :item_identifier, class: 'resource_identifier' -%>
|
@@ -38,9 +38,9 @@
|
|
38
38
|
<td>
|
39
39
|
<%= render 'manifestations/show_index', manifestation: item.manifestation -%>
|
40
40
|
</td>
|
41
|
-
<td><%= link_to item.shelf.library.display_name
|
42
|
-
<td><%= link_to item.shelf_display_name
|
43
|
-
<td><%= item.circulation_status.display_name
|
41
|
+
<td><%= link_to item.shelf.library.display_name, item.shelf.library -%></td>
|
42
|
+
<td><%= link_to item.shelf_display_name, item.shelf -%></td>
|
43
|
+
<td><%= item.circulation_status.display_name -%></td>
|
44
44
|
<%- if policy(item).destroy? -%>
|
45
45
|
<td><%= link_to t('page.edit'), edit_item_path(item) -%></td>
|
46
46
|
<%- end -%>
|
@@ -41,10 +41,10 @@
|
|
41
41
|
<%- end -%>
|
42
42
|
</td>
|
43
43
|
<td>
|
44
|
-
<%= link_to item.shelf.library.display_name
|
44
|
+
<%= link_to item.shelf.library.display_name, item.shelf.library %>
|
45
45
|
</td>
|
46
46
|
<td>
|
47
|
-
<%= link_to item.shelf_display_name
|
47
|
+
<%= link_to item.shelf_display_name, item.shelf -%>
|
48
48
|
<%= render 'items/shelf_picture', item: item -%>
|
49
49
|
</td>
|
50
50
|
<td>
|
@@ -52,7 +52,7 @@
|
|
52
52
|
</td>
|
53
53
|
<% if defined?(EnjuCirculation) %>
|
54
54
|
<td>
|
55
|
-
<%= item.circulation_status.display_name
|
55
|
+
<%= item.circulation_status.display_name if item.circulation_status -%>
|
56
56
|
<%- if item.rent? -%>
|
57
57
|
(
|
58
58
|
<%= t('activerecord.attributes.checkout.due_date') -%>:
|
@@ -9,20 +9,20 @@
|
|
9
9
|
<div id="detail">
|
10
10
|
<p>
|
11
11
|
<strong><%= t('activerecord.models.shelf') -%>:</strong>
|
12
|
-
<%= link_to @item.shelf_display_name
|
12
|
+
<%= link_to @item.shelf_display_name, @item.shelf -%>
|
13
13
|
<%= render 'items/shelf_picture', item: @item -%>
|
14
|
-
(<%= link_to @item.shelf.library.display_name
|
14
|
+
(<%= link_to @item.shelf.library.display_name, @item.shelf.library -%>)
|
15
15
|
</p>
|
16
16
|
|
17
17
|
<% if defined?(EnjuCirculation) %>
|
18
18
|
<p>
|
19
19
|
<strong><%= t('activerecord.attributes.item.checkout_type') -%>:</strong>
|
20
|
-
<%= @item.checkout_type.display_name
|
20
|
+
<%= @item.checkout_type.display_name -%>
|
21
21
|
</p>
|
22
22
|
|
23
23
|
<p>
|
24
24
|
<strong><%= t('activerecord.models.circulation_status') -%>:</strong>
|
25
|
-
<%= @item.circulation_status.display_name
|
25
|
+
<%= @item.circulation_status.display_name -%>
|
26
26
|
<%- if current_user.try(:has_role?, 'Librarian') -%>
|
27
27
|
<%- unless @item.checkouts.not_returned.blank? -%>
|
28
28
|
(<%= link_to t('item.current_checkout'), checkout_path(@item.checkouts.not_returned.first) -%>)
|
@@ -34,7 +34,7 @@
|
|
34
34
|
<strong><%= t('activerecord.models.use_restriction') -%>:</strong>
|
35
35
|
<% if @item.use_restriction %>
|
36
36
|
<ul>
|
37
|
-
<li><%= @item.use_restriction.display_name
|
37
|
+
<li><%= @item.use_restriction.display_name -%></li>
|
38
38
|
</ul>
|
39
39
|
<% end %>
|
40
40
|
</p>
|
@@ -1,144 +1,129 @@
|
|
1
1
|
<div style="color: red"><%= flash[:message] -%></div>
|
2
2
|
|
3
3
|
<div id="content_detail" class="ui-corner-all ui-widget-content">
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
4
|
+
<h1 class="title"><%= t('page.showing', model: t('activerecord.models.item')) -%></h1>
|
5
|
+
<div id="content_list">
|
6
|
+
<p id="notice"><%= notice %></p>
|
7
|
+
|
8
|
+
<%- if @item.manifestation -%>
|
9
|
+
<%= render 'manifestations/title', manifestation: @item.manifestation -%>
|
10
|
+
<%- end -%>
|
11
|
+
|
12
|
+
<p>
|
13
|
+
<strong><%= t('activerecord.attributes.item.item_identifier') -%>:</strong>
|
14
|
+
<%= @item.item_identifier -%>
|
15
|
+
</p>
|
16
|
+
|
17
|
+
<p>
|
18
|
+
<strong><%= t('activerecord.attributes.item.binding_item_identifier') -%>:</strong>
|
19
|
+
<%= @item.binding_item_identifier -%>
|
20
|
+
</p>
|
21
|
+
|
22
|
+
<p>
|
23
|
+
<strong><%= t('activerecord.models.shelf') -%>:</strong>
|
24
|
+
<%= link_to(@item.shelf_display_name, @item.shelf, id: "shelf_item_#{@item.id}") -%>
|
25
|
+
<%= render 'items/shelf_picture', item: @item -%>
|
26
|
+
(<%= link_to(@item.shelf.library.display_name, @item.shelf.library, id: "library_item_#{@item.id}") -%>)
|
27
|
+
</p>
|
28
|
+
|
29
|
+
<% if defined?(EnjuCirculation) %>
|
30
|
+
<p>
|
31
|
+
<strong><%= t('activerecord.attributes.item.checkout_type') -%>:</strong>
|
32
|
+
<%= link_to @item.checkout_type.display_name, @item.checkout_type -%>
|
33
|
+
</p>
|
34
|
+
|
35
|
+
<p>
|
36
|
+
<strong><%= t('activerecord.models.circulation_status') -%>:</strong>
|
37
|
+
<%= link_to @item.circulation_status.display_name, @item.circulation_status -%>
|
38
|
+
<%- if current_user.try(:has_role?, 'Librarian') -%>
|
39
|
+
<%- unless @item.checkouts.not_returned.blank? -%>
|
40
|
+
(<%= link_to t('item.current_checkout'), @item.checkouts.not_returned.first -%>)
|
41
|
+
<%- end -%>
|
10
42
|
<%- end -%>
|
43
|
+
</p>
|
44
|
+
<% end %>
|
11
45
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
<% if defined?(EnjuCirculation) %>
|
30
|
-
<p>
|
31
|
-
<strong><%= t('activerecord.attributes.item.checkout_type') -%>:</strong>
|
32
|
-
<%= link_to @item.checkout_type.display_name.localize, @item.checkout_type -%>
|
33
|
-
</p>
|
34
|
-
|
35
|
-
<p>
|
36
|
-
<strong><%= t('activerecord.models.circulation_status') -%>:</strong>
|
37
|
-
<%= link_to @item.circulation_status.display_name.localize, @item.circulation_status -%>
|
38
|
-
<%- if current_user.try(:has_role?, 'Librarian') -%>
|
39
|
-
<%- unless @item.checkouts.not_returned.blank? -%>
|
40
|
-
(<%= link_to t('item.current_checkout'), @item.checkouts.not_returned.first -%>)
|
41
|
-
<%- end -%>
|
42
|
-
<%- end -%>
|
43
|
-
</p>
|
44
|
-
<% end %>
|
45
|
-
|
46
|
-
<p>
|
47
|
-
<strong><%= t('activerecord.attributes.item.include_supplements') -%>:</strong>
|
48
|
-
<%= localized_boolean(@item.include_supplements) -%>
|
49
|
-
</p>
|
50
|
-
|
51
|
-
<p>
|
52
|
-
<strong><%= t('activerecord.attributes.item.call_number') -%>:</strong>
|
53
|
-
<%= @item.call_number -%>
|
54
|
-
</p>
|
55
|
-
|
56
|
-
<% if current_user.try(:has_role?, 'Librarian') %>
|
57
|
-
<% if defined?(EnjuCirculation) %>
|
58
|
-
<p>
|
59
|
-
<strong><%= t('activerecord.models.use_restriction') -%>:</strong>
|
60
|
-
<% if @item.use_restriction %>
|
61
|
-
<ul>
|
62
|
-
<li><%= @item.use_restriction.display_name.localize %></li>
|
63
|
-
</ul>
|
64
|
-
<% end %>
|
65
|
-
</p>
|
66
|
-
<% end %>
|
67
|
-
|
68
|
-
<p>
|
69
|
-
<strong><%= t('activerecord.attributes.item.required_role_id') -%>:</strong>
|
70
|
-
<%= @item.required_role.name -%>
|
71
|
-
</p>
|
72
|
-
|
73
|
-
<p>
|
74
|
-
<strong><%= t('activerecord.models.budget_type') -%>:</strong>
|
75
|
-
<%= @item.budget_type.try(:display_name).try(:localize) -%>
|
76
|
-
</p>
|
77
|
-
|
78
|
-
<p>
|
79
|
-
<strong><%= t('activerecord.models.bookstore') -%>:</strong>
|
80
|
-
<%= @item.bookstore.try(:name) -%>
|
81
|
-
</p>
|
82
|
-
|
83
|
-
<p>
|
84
|
-
<strong><%= t('activerecord.attributes.item.price') -%>:</strong>
|
85
|
-
<%= @item.price -%>
|
86
|
-
</p>
|
87
|
-
<% end %>
|
88
|
-
|
89
|
-
<p>
|
90
|
-
<strong><%= t('activerecord.attributes.item.url') -%>:</strong>
|
91
|
-
<%= auto_link(@item.url) -%>
|
92
|
-
</p>
|
93
|
-
|
94
|
-
<p>
|
95
|
-
<strong><%= t('activerecord.attributes.item.acquired_at') -%>:</strong>
|
96
|
-
<%= l(@item.acquired_at, format: :only_date) if @item.acquired_at -%>
|
97
|
-
</p>
|
98
|
-
|
99
|
-
<p>
|
100
|
-
<strong><%= t('activerecord.attributes.item.binding_call_number') -%>:</strong>
|
101
|
-
<%= @item.binding_call_number -%>
|
102
|
-
</p>
|
103
|
-
|
104
|
-
<p>
|
105
|
-
<strong><%= t('activerecord.attributes.item.binded_at') -%>:</strong>
|
106
|
-
<%= l(@item.binded_at, format: :only_date) if @item.binded_at -%>
|
107
|
-
</p>
|
108
|
-
|
109
|
-
<p>
|
110
|
-
<strong><%= t('activerecord.attributes.item.note') -%>:</strong>
|
111
|
-
<%= simple_format(@item.note) %>
|
112
|
-
</p>
|
113
|
-
|
114
|
-
<% if current_user.try(:has_role?, 'Librarian') %>
|
115
|
-
<% @item.item_custom_values.each do |value| %>
|
116
|
-
<p>
|
117
|
-
<strong><%= value.item_custom_property.display_name.localize -%>:</strong>
|
118
|
-
<%= value.value -%>
|
119
|
-
</p>
|
120
|
-
<% end %>
|
121
|
-
<p>
|
122
|
-
<strong><%= t('activerecord.attributes.item.memo') -%>:</strong>
|
123
|
-
<%= simple_format(@item.memo) %>
|
124
|
-
</p>
|
46
|
+
<p>
|
47
|
+
<strong><%= t('activerecord.attributes.item.include_supplements') -%>:</strong>
|
48
|
+
<%= localized_boolean(@item.include_supplements) -%>
|
49
|
+
</p>
|
50
|
+
|
51
|
+
<p>
|
52
|
+
<strong><%= t('activerecord.attributes.item.call_number') -%>:</strong>
|
53
|
+
<%= @item.call_number -%>
|
54
|
+
</p>
|
55
|
+
|
56
|
+
<% if current_user.try(:has_role?, 'Librarian') %>
|
57
|
+
<p>
|
58
|
+
<strong><%= t('activerecord.models.use_restriction') -%>:</strong>
|
59
|
+
<% if @item.use_restriction %>
|
60
|
+
<ul>
|
61
|
+
<li><%= @item.use_restriction.display_name %></li>
|
62
|
+
</ul>
|
125
63
|
<% end %>
|
64
|
+
</p>
|
65
|
+
|
66
|
+
<p>
|
67
|
+
<strong><%= t('activerecord.attributes.item.required_role_id') -%>:</strong>
|
68
|
+
<%= @item.required_role.name -%>
|
69
|
+
</p>
|
70
|
+
|
71
|
+
<p>
|
72
|
+
<strong><%= t('activerecord.models.budget_type') -%>:</strong>
|
73
|
+
<%= @item.budget_type.try(:display_name).try(:localize) -%>
|
74
|
+
</p>
|
75
|
+
|
76
|
+
<p>
|
77
|
+
<strong><%= t('activerecord.models.bookstore') -%>:</strong>
|
78
|
+
<%= @item.bookstore.try(:name) -%>
|
79
|
+
</p>
|
80
|
+
|
81
|
+
<p>
|
82
|
+
<strong><%= t('activerecord.attributes.item.price') -%>:</strong>
|
83
|
+
<%= @item.price -%>
|
84
|
+
</p>
|
85
|
+
<% end %>
|
126
86
|
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
87
|
+
<p>
|
88
|
+
<strong><%= t('activerecord.attributes.item.url') -%>:</strong>
|
89
|
+
<%= @item.url -%>
|
90
|
+
</p>
|
91
|
+
|
92
|
+
<p>
|
93
|
+
<strong><%= t('activerecord.attributes.item.acquired_at') -%>:</strong>
|
94
|
+
<%= l(@item.acquired_at, format: :only_date) if @item.acquired_at -%>
|
95
|
+
</p>
|
96
|
+
|
97
|
+
<p>
|
98
|
+
<strong><%= t('activerecord.attributes.item.binding_call_number') -%>:</strong>
|
99
|
+
<%= @item.binding_call_number -%>
|
100
|
+
</p>
|
101
|
+
|
102
|
+
<p>
|
103
|
+
<strong><%= t('activerecord.attributes.item.binded_at') -%>:</strong>
|
104
|
+
<%= l(@item.binded_at, format: :only_date) if @item.binded_at -%>
|
105
|
+
</p>
|
106
|
+
|
107
|
+
<p>
|
108
|
+
<strong><%= t('activerecord.attributes.item.note') -%>:</strong>
|
109
|
+
<%= simple_format(@item.note) %>
|
110
|
+
</p>
|
111
|
+
|
112
|
+
<p>
|
113
|
+
<strong><%= t('item.accepted_at') -%>:</strong>
|
114
|
+
<%= l(@item.accept.created_at) if @item.accept -%>
|
115
|
+
</p>
|
116
|
+
|
117
|
+
<p>
|
118
|
+
<strong><%= t('page.created_at') -%>:</strong>
|
119
|
+
<%= l(@item.created_at) -%>
|
120
|
+
</p>
|
121
|
+
|
122
|
+
<p>
|
123
|
+
<strong><%= t('page.updated_at') -%>:</strong>
|
124
|
+
<%= l(@item.updated_at) -%>
|
125
|
+
</p>
|
126
|
+
</div>
|
142
127
|
</div>
|
143
128
|
|
144
129
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
@@ -24,7 +24,7 @@
|
|
24
24
|
</td>
|
25
25
|
<td><%= language.name -%></td>
|
26
26
|
<td><%= language.native_name -%></td>
|
27
|
-
<td><%= link_to language.display_name
|
27
|
+
<td><%= link_to language.display_name, language -%></td>
|
28
28
|
<td><%= language.iso_639_1 -%></td>
|
29
29
|
<td><%= language.iso_639_2 -%></td>
|
30
30
|
<td><%= language.iso_639_3 -%></td>
|
@@ -5,8 +5,8 @@
|
|
5
5
|
<title><%= title(controller.controller_name) %></title>
|
6
6
|
<%= render 'page/include' %>
|
7
7
|
<%- if controller.action_name == 'index' -%>
|
8
|
-
<%= auto_discovery_link_tag(:rss, url_for(
|
9
|
-
<%= auto_discovery_link_tag(:atom, url_for(
|
8
|
+
<%= auto_discovery_link_tag(:rss, url_for(filtered_params.merge(format: 'rss', page: nil, commit: nil, only_path: true)), title: (t('agent.library_group_agent', library_group_name: @library_group.display_name) + " (RSS)")) %>
|
9
|
+
<%= auto_discovery_link_tag(:atom, url_for(filtered_params.merge(format: 'atom', page: nil, commit: nil, only_path: true)), title: (t('agent.library_group_agent', library_group_name: @library_group.display_name) + " (Atom)")) %>
|
10
10
|
<%- end -%>
|
11
11
|
</head>
|
12
12
|
<body>
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<meta charset="UTF-8" />
|
5
5
|
<%= render 'page/include' %>
|
6
6
|
<title><%= title(controller.controller_name) %></title>
|
7
|
-
<% if %w(show edit
|
7
|
+
<% if %w(index show new edit).include?(controller.action_name) %>
|
8
8
|
<%= book_jacket_header(@library_group.book_jacket_source) %>
|
9
9
|
<% end %>
|
10
10
|
</head>
|
@@ -5,13 +5,13 @@
|
|
5
5
|
<title><%= resource_title(@manifestation, controller.action_name) %></title>
|
6
6
|
<%= render 'page/include' %>
|
7
7
|
<%- if controller.action_name == 'index' -%>
|
8
|
-
<%= auto_discovery_link_tag(:rss, url_for(
|
9
|
-
<%= auto_discovery_link_tag(:atom, url_for(
|
8
|
+
<%= auto_discovery_link_tag(:rss, url_for(filtered_params.merge(format: :rss, page: nil, commit: nil, only_path: true)), title: (t('manifestation.library_group_manifestation', library_group_name: @library_group.display_name) + " (RSS)")) %>
|
9
|
+
<%= auto_discovery_link_tag(:atom, url_for(filtered_params.merge(format: :atom, page: nil, commit: nil, only_path: true)), title: (t('manifestation.library_group_manifestation', library_group_name: @library_group.display_name) + " (Atom)")) %>
|
10
10
|
<%- end -%>
|
11
|
-
<% if %w(show edit index).include?(controller.action_name)
|
11
|
+
<% if %w(show edit index).include?(controller.action_name) %>
|
12
12
|
<%= book_jacket_header(@library_group.book_jacket_source) %>
|
13
13
|
<% end %>
|
14
|
-
<link rel="search" type="application/opensearchdescription+xml" title="<%= LibraryGroup.site_config.display_name
|
14
|
+
<link rel="search" type="application/opensearchdescription+xml" title="<%= LibraryGroup.site_config.display_name %>" href="<%= page_opensearch_url(format: :xml) %>" />
|
15
15
|
</head>
|
16
16
|
<body>
|
17
17
|
|
@@ -24,7 +24,7 @@
|
|
24
24
|
</td>
|
25
25
|
<td><%= manifestation_relationship_type.name -%></td>
|
26
26
|
<td>
|
27
|
-
<%= link_to manifestation_relationship_type.display_name
|
27
|
+
<%= link_to manifestation_relationship_type.display_name, manifestation_relationship_type -%>
|
28
28
|
<br />
|
29
29
|
<%= manifestation_relationship_type.note %>
|
30
30
|
</td>
|