enju_library 0.3.9 → 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/concerns/enju_library/controller.rb +5 -5
- data/app/controllers/libraries_controller.rb +4 -1
- data/app/controllers/library_groups_controller.rb +7 -1
- data/app/controllers/request_status_types_controller.rb +6 -1
- data/app/controllers/request_types_controller.rb +6 -1
- data/app/controllers/shelves_controller.rb +4 -1
- data/app/controllers/user_groups_controller.rb +3 -0
- data/app/helpers/enju_library/application_helper.rb +18 -0
- data/app/models/budget_type.rb +9 -7
- data/app/models/concerns/enju_library/enju_user.rb +10 -0
- data/app/models/library.rb +29 -43
- data/app/models/library_group.rb +10 -11
- data/app/models/request_status_type.rb +9 -7
- data/app/models/request_type.rb +9 -7
- data/app/models/search_engine.rb +14 -18
- data/app/models/shelf.rb +13 -11
- data/app/models/user_export_file.rb +1 -1
- data/app/models/user_export_file_state_machine.rb +1 -1
- data/app/models/user_group.rb +2 -0
- data/app/models/user_import_file.rb +28 -27
- data/app/models/user_import_file_state_machine.rb +1 -1
- data/app/models/withdraw.rb +6 -0
- data/app/policies/shelf_policy.rb +1 -1
- data/app/views/accepts/_list.html.erb +2 -2
- data/app/views/accepts/index.html.erb +2 -2
- data/app/views/budget_types/_form.html.erb +1 -1
- data/app/views/budget_types/index.html.erb +1 -1
- data/app/views/budget_types/show.html.erb +1 -1
- data/app/views/libraries/_calendar.html.erb +1 -1
- data/app/views/libraries/_form.html.erb +2 -12
- data/app/views/libraries/_map.html+phone.erb +2 -2
- data/app/views/libraries/_map.html.erb +23 -10
- data/app/views/libraries/index.html.erb +1 -1
- data/app/views/libraries/show.html+phone.erb +1 -1
- data/app/views/libraries/show.html+phone.slim +1 -1
- data/app/views/libraries/show.html.erb +2 -2
- data/app/views/library_groups/_form.html.erb +14 -13
- data/app/views/library_groups/index.html.erb +1 -1
- data/app/views/library_groups/show.html.erb +2 -2
- data/app/views/picture_files/_index_shelf.html.erb +1 -1
- data/app/views/request_status_types/_form.html.erb +1 -1
- data/app/views/request_status_types/index.html.erb +1 -1
- data/app/views/request_status_types/show.html.erb +1 -1
- data/app/views/request_types/_form.html.erb +1 -1
- data/app/views/request_types/index.html.erb +1 -1
- data/app/views/request_types/show.html.erb +1 -1
- data/app/views/shelves/_form.html.erb +1 -1
- data/app/views/shelves/_select_form.html.erb +1 -1
- data/app/views/shelves/index.html.erb +3 -3
- data/app/views/shelves/show.html+phone.erb +1 -1
- data/app/views/shelves/show.html+phone.slim +1 -1
- data/app/views/shelves/show.html.erb +2 -2
- data/app/views/user_groups/_form.html.erb +1 -1
- data/app/views/user_groups/index.html.erb +1 -1
- data/app/views/user_groups/show.html.erb +2 -2
- data/app/views/user_import_files/_results.html.erb +0 -5
- data/app/views/user_import_files/new.html.erb +2 -2
- data/app/views/user_import_files/show.html.erb +2 -2
- data/app/views/user_import_results/index.html.erb +11 -0
- data/app/views/withdraws/_list.html.erb +2 -2
- data/app/views/withdraws/index.html.erb +3 -3
- data/app/views/withdraws/new.html.erb +1 -1
- data/config/locales/translation_en.yml +2 -4
- data/config/locales/translation_ja.yml +2 -4
- data/db/migrate/20160813191647_add_max_number_of_results_to_library_group.rb +1 -1
- data/db/migrate/20190630113817_add_display_name_translations_to_library_group.rb +12 -0
- data/db/migrate/20190630115523_add_login_banner_translations_to_library_group.rb +6 -0
- data/lib/enju_library/version.rb +1 -1
- data/lib/generators/enju_library/setup/setup_generator.rb +2 -7
- data/lib/generators/enju_library/setup/templates/db/fixtures/budget_types.yml +4 -0
- data/lib/generators/enju_library/setup/templates/db/fixtures/libraries.yml +2 -2
- data/lib/generators/enju_library/setup/templates/db/fixtures/library_groups.yml +11 -5
- data/lib/generators/enju_library/setup/templates/db/fixtures/user_groups.yml +1 -2
- data/spec/controllers/budget_types_controller_spec.rb +1 -1
- data/spec/controllers/items_controller_spec.rb +35 -0
- data/spec/dummy/app/helpers/application_helper.rb +1 -0
- data/spec/dummy/app/models/user.rb +1 -2
- 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 -0
- data/spec/dummy/config/database.yml +70 -9
- data/spec/dummy/config/initializers/assets.rb +1 -1
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/113_create_events.rb +2 -4
- 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/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/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/20160319144230_create_issn_records.rb +11 -0
- data/spec/dummy/db/migrate/20160506144040_create_isbn_records.rb +11 -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/20170116134107_create_issn_record_and_manifestations.rb +11 -0
- data/spec/dummy/db/migrate/20170116134120_create_isbn_record_and_manifestations.rb +11 -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/20181030072731_add_not_null_to_position_on_carrier_type.rb +14 -0
- data/spec/dummy/db/migrate/20181119170645_add_foreign_key_to_events_referencing_event_categories.rb +5 -0
- data/spec/dummy/db/migrate/20190102034126_create_doi_records.rb +13 -0
- data/spec/dummy/db/migrate/20190208135957_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20190311154610_create_periodicals.rb +10 -0
- data/spec/dummy/db/migrate/20190312033839_create_periodical_and_manifestations.rb +11 -0
- data/spec/dummy/db/migrate/20190314151124_add_full_name_translations_to_create.rb +7 -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/20190512133459_upgrade_enju_event_to_enju_leaf20.rb +115 -0
- data/spec/dummy/db/migrate/20190629134017_rename_user_group_has_checkout_type_due_date_before_to_due_date_after.rb +5 -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/migrate/20190712163038_add_display_name_translations_to_carrier_type.rb +21 -0
- data/spec/dummy/db/migrate/20190713114724_add_checkout_id_to_checkin.rb +6 -0
- data/spec/dummy/db/migrate/20190713114940_add_profile_id_to_user.rb +5 -0
- data/spec/dummy/db/migrate/20190713115451_add_full_name_translations_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20190814120827_add_display_name_translations_to_checkout_type.rb +5 -0
- data/spec/dummy/db/schema.rb +402 -204
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/factories/budget_types.rb +8 -7
- data/spec/factories/profile.rb +9 -2
- data/spec/factories/user.rb +25 -31
- data/spec/factories/user_export_file.rb +5 -0
- data/spec/factories/user_import_file.rb +7 -0
- data/spec/factories/user_import_result.rb +6 -0
- data/spec/fixtures/agent_relationship_types.yml +34 -0
- data/spec/fixtures/agent_types.yml +11 -11
- data/spec/fixtures/agents.yml +27 -27
- data/spec/fixtures/baskets.yml +1 -0
- data/spec/fixtures/bookstores.yml +1 -0
- data/spec/fixtures/budget_types.yml +9 -7
- data/spec/fixtures/carrier_type_has_checkout_types.yml +5 -5
- data/spec/fixtures/carrier_types.yml +28 -24
- data/spec/fixtures/checked_items.yml +6 -6
- data/spec/fixtures/checkins.yml +4 -11
- data/spec/fixtures/checkout_stat_has_manifestations.yml +5 -5
- data/spec/fixtures/checkout_stat_has_users.yml +6 -6
- data/spec/fixtures/checkout_types.yml +11 -11
- data/spec/fixtures/checkouts.yml +16 -17
- data/spec/fixtures/circulation_statuses.yml +29 -38
- data/spec/fixtures/classification_types.yml +63 -0
- data/spec/fixtures/content_types.yml +20 -31
- data/spec/fixtures/create_types.yml +43 -0
- data/spec/fixtures/event_categories.yml +23 -23
- data/spec/fixtures/frequencies.yml +17 -25
- data/spec/fixtures/identifier_types.yml +42 -0
- data/spec/fixtures/item_has_use_restrictions.yml +11 -11
- data/spec/fixtures/items.yml +28 -17
- data/spec/fixtures/languages.yml +12 -13
- data/spec/fixtures/lending_policies.yml +8 -15
- data/spec/fixtures/libraries.yml +30 -29
- data/spec/fixtures/library_groups.yml +12 -9
- data/spec/fixtures/manifestation_checkout_stats.yml +4 -3
- data/spec/fixtures/manifestation_relationship_types.yml +29 -0
- data/spec/fixtures/manifestation_reserve_stats.yml +4 -3
- data/spec/fixtures/manifestations.yml +60 -50
- data/spec/fixtures/message_requests.yml +3 -3
- data/spec/fixtures/produce_types.yml +29 -0
- data/spec/fixtures/profiles.yml +11 -6
- data/spec/fixtures/realize_types.yml +36 -0
- data/spec/fixtures/request_status_types.yml +14 -13
- data/spec/fixtures/request_types.yml +13 -12
- data/spec/fixtures/reserve_stat_has_manifestations.yml +5 -5
- data/spec/fixtures/reserve_stat_has_users.yml +5 -5
- data/spec/fixtures/reserve_transitions.yml +8 -7
- data/spec/fixtures/reserves.yml +44 -64
- data/spec/fixtures/roles.yml +22 -5
- data/spec/fixtures/search_engines.yml +13 -12
- data/spec/fixtures/shelves.yml +16 -15
- data/spec/fixtures/subject_heading_types.yml +39 -0
- data/spec/fixtures/subject_types.yml +28 -0
- data/spec/fixtures/use_restrictions.yml +4 -4
- data/spec/fixtures/user_checkout_stats.yml +4 -4
- data/spec/fixtures/user_export_files.yml +1 -1
- data/spec/fixtures/user_group_has_checkout_types.yml +19 -19
- data/spec/fixtures/user_groups.yml +4 -3
- data/spec/fixtures/user_has_roles.yml +3 -4
- data/spec/fixtures/user_reserve_stats.yml +5 -4
- data/spec/models/budget_type_spec.rb +8 -7
- data/spec/models/library_group_spec.rb +5 -14
- data/spec/models/library_spec.rb +26 -25
- data/spec/models/request_status_type_spec.rb +8 -7
- data/spec/models/request_type_spec.rb +8 -7
- data/spec/models/search_engine_spec.rb +13 -12
- data/spec/models/shelf_spec.rb +12 -11
- data/spec/models/user_export_file_spec.rb +2 -2
- data/spec/models/user_group_spec.rb +1 -6
- data/spec/models/user_import_file_spec.rb +23 -23
- data/spec/rails_helper.rb +10 -2
- data/spec/system/libraries_spec.rb +5 -5
- metadata +476 -493
- data/app/helpers/shelves_helper.rb +0 -16
- data/app/views/layouts/libraries.html.erb +0 -31
- data/app/views/libraries/_map_header.html.erb +0 -6
- data/db/migrate/20151213070943_add_translation_table_to_library_group.rb +0 -18
- data/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +0 -22
- data/lib/generators/enju_library/setup/templates/db/fixtures/library_group/translations.yml +0 -12
- data/spec/dummy/app/assets/config/manifest.js +0 -5
- data/spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb +0 -5
- data/spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb +0 -5
- data/spec/dummy/db/migrate/20200425072340_create_manifestation_custom_properties.rb +0 -12
- data/spec/dummy/db/migrate/20200425072349_create_item_custom_properties.rb +0 -12
- data/spec/dummy/db/migrate/20200425074758_create_manifestation_custom_values.rb +0 -12
- data/spec/dummy/db/migrate/20200425074822_create_item_custom_values.rb +0 -12
- data/spec/dummy/yarn.lock +0 -7535
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
<%- @library_groups.each do |library_group| -%>
|
14
14
|
<tr class="line<%= cycle("0", "1") -%>">
|
15
|
-
<td><%= link_to h(library_group.display_name
|
15
|
+
<td><%= link_to h(library_group.display_name), library_group -%></td>
|
16
16
|
<td><%= library_group.name -%></td>
|
17
17
|
<td><%= library_group.user.email -%></td>
|
18
18
|
<td>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
<p>
|
12
12
|
<strong><%= t('activerecord.attributes.library_group.display_name') -%>:</strong>
|
13
|
-
<%= @library_group.display_name
|
13
|
+
<%= @library_group.display_name -%>
|
14
14
|
</p>
|
15
15
|
|
16
16
|
<p>
|
@@ -92,7 +92,7 @@
|
|
92
92
|
|
93
93
|
<ul>
|
94
94
|
<%- @library_group.real_libraries.each do |library| -%>
|
95
|
-
<li><%= link_to library.display_name
|
95
|
+
<li><%= link_to library.display_name, library -%></li>
|
96
96
|
<%- end -%>
|
97
97
|
</ul>
|
98
98
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<div id="content_list">
|
4
4
|
<p id="notice"><%= notice %></p>
|
5
5
|
|
6
|
-
<h2 class="resource_title"><%= link_to shelf.display_name
|
6
|
+
<h2 class="resource_title"><%= link_to shelf.display_name, shelf -%></h2>
|
7
7
|
|
8
8
|
<table class="table table-striped index">
|
9
9
|
<tr>
|
@@ -18,7 +18,7 @@
|
|
18
18
|
<%- end -%>
|
19
19
|
</td>
|
20
20
|
<td><%= link_to request_status_type.name, request_status_type -%></td>
|
21
|
-
<td><%= link_to request_status_type.display_name
|
21
|
+
<td><%= link_to request_status_type.display_name, request_status_type -%></td>
|
22
22
|
<td>
|
23
23
|
<%- if policy(request_status_type).update? -%>
|
24
24
|
<%= link_to t('page.edit'), edit_request_status_type_path(request_status_type) -%>
|
@@ -18,7 +18,7 @@
|
|
18
18
|
<%- end -%>
|
19
19
|
</td>
|
20
20
|
<td><%= link_to request_type.name, request_type -%></td>
|
21
|
-
<td><%= link_to request_type.display_name
|
21
|
+
<td><%= link_to request_type.display_name, request_type -%></td>
|
22
22
|
<td>
|
23
23
|
<%- if policy(request_type).update? -%>
|
24
24
|
<%= link_to t('page.edit'), edit_request_type_path(request_type) -%>
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<%= f.label t('activerecord.models.library') -%><br />
|
27
27
|
<select id="library_id" name="library_id">
|
28
28
|
<%- @libraries.each do |library| -%>
|
29
|
-
<option value="<%= library.name -%>"<%= " selected='selected'" if @shelf.library == library -%>><%= library.display_name
|
29
|
+
<option value="<%= library.name -%>"<%= " selected='selected'" if @shelf.library == library -%>><%= library.display_name -%></option>
|
30
30
|
<%- end -%>
|
31
31
|
</select>
|
32
32
|
</div>
|
@@ -1 +1 @@
|
|
1
|
-
<%= options_for_select @shelves.collect{|s| [s.display_name
|
1
|
+
<%= options_for_select @shelves.collect{|s| [s.display_name, s.id]} %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<div id="content_list">
|
4
4
|
<% if @library %>
|
5
5
|
<h2 class="resource_title">
|
6
|
-
<%= link_to @library.display_name
|
6
|
+
<%= link_to @library.display_name, @library -%>
|
7
7
|
</h2>
|
8
8
|
<% end %>
|
9
9
|
|
@@ -35,12 +35,12 @@
|
|
35
35
|
<% end %>
|
36
36
|
</td>
|
37
37
|
<td>
|
38
|
-
<%= link_to shelf.display_name
|
38
|
+
<%= link_to shelf.display_name, shelf -%>
|
39
39
|
<br />
|
40
40
|
<%= shelf.name if current_user.try(:has_role?, 'Librarian') %>
|
41
41
|
</td>
|
42
42
|
<td>
|
43
|
-
<%= link_to shelf.library.display_name
|
43
|
+
<%= link_to shelf.library.display_name, library_path(shelf.library) -%>
|
44
44
|
<% if shelf.closed? %>
|
45
45
|
<%= t('activerecord.attributes.shelf.closed') %>
|
46
46
|
<% end %>
|
@@ -1,6 +1,6 @@
|
|
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"><%= @shelf.display_name
|
3
|
+
<h1 class="title"><%= @shelf.display_name -%></h1>
|
4
4
|
</div>
|
5
5
|
<div data-role="content">
|
6
6
|
<div id="detail">
|
@@ -2,7 +2,7 @@ div[data-role="header"]
|
|
2
2
|
a.ui-btn-left[href="javascript:history.back()" data-icon="back" data-iconpos="notext"]
|
3
3
|
= t('page.back')
|
4
4
|
.panel-heading
|
5
|
-
= @shelf.display_name
|
5
|
+
= @shelf.display_name
|
6
6
|
div[data-role="content"]
|
7
7
|
#detail
|
8
8
|
- if current_user.try(:has_role?, 'Librarian')
|
@@ -4,8 +4,8 @@
|
|
4
4
|
<p id="notice"><%= notice %></p>
|
5
5
|
|
6
6
|
<h2 class="resource_title">
|
7
|
-
<%= link_to @shelf.library.display_name
|
8
|
-
<%= @shelf.display_name
|
7
|
+
<%= link_to @shelf.library.display_name, @shelf.library -%>
|
8
|
+
<%= @shelf.display_name -%>
|
9
9
|
</h2>
|
10
10
|
|
11
11
|
<% if current_user.try(:has_role?, 'Librarian') %>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
<p>
|
12
12
|
<strong><%= t('activerecord.attributes.user_group.display_name') -%>:</strong>
|
13
|
-
<%= @user_group.display_name
|
13
|
+
<%= @user_group.display_name -%>
|
14
14
|
</p>
|
15
15
|
|
16
16
|
<p>
|
@@ -40,7 +40,7 @@
|
|
40
40
|
<ul>
|
41
41
|
<%- @user_group.user_group_has_checkout_types.each do |available_checkout_type| -%>
|
42
42
|
<li>
|
43
|
-
<%= link_to available_checkout_type.checkout_type.display_name
|
43
|
+
<%= link_to available_checkout_type.checkout_type.display_name, available_checkout_type.checkout_type -%>
|
44
44
|
(<%= link_to t('page.number_of_days', count: available_checkout_type.checkout_period), edit_user_group_user_group_has_checkout_type_path(@user_group, available_checkout_type) -%>)
|
45
45
|
</li>
|
46
46
|
<%- end -%>
|
@@ -1,9 +1,4 @@
|
|
1
1
|
<h2><%= t('activerecord.models.user_import_result') %></h2>
|
2
|
-
<p>
|
3
|
-
<%= link_to((image_tag 'icons/page_white_excel.png', size: '16x16', class: 'enju_icon', alt: 'TSV'), user_import_results_path(user_import_file_id: @user_import_file.id, format: :txt, locale: @locale.to_s)) -%>
|
4
|
-
(<%= link_to 'TSV', user_import_results_path(user_import_file_id: @user_import_file.id, format: :txt, locale: @locale.to_s) -%>)
|
5
|
-
</p>
|
6
|
-
|
7
2
|
<table class="table table-striped index">
|
8
3
|
<tr>
|
9
4
|
<th><%= t('activerecord.attributes.user_import_result.lineno') %></th>
|
@@ -34,13 +34,13 @@
|
|
34
34
|
|
35
35
|
<div class="field">
|
36
36
|
<%= f.label :default_user_group_id -%>
|
37
|
-
<%= f.select(:default_user_group_id, @user_groups.collect{|u| [u.display_name
|
37
|
+
<%= f.select(:default_user_group_id, @user_groups.collect{|u| [u.display_name, u.id]}) -%><br />
|
38
38
|
<%= t('user_import_file.default_user_group') %>
|
39
39
|
</div>
|
40
40
|
|
41
41
|
<div class="field">
|
42
42
|
<%= f.label :default_library_id -%>
|
43
|
-
<%= f.select(:default_library_id, @libraries.collect{|l| [l.display_name
|
43
|
+
<%= f.select(:default_library_id, @libraries.collect{|l| [l.display_name, l.id]}) -%><br />
|
44
44
|
<%= t('user_import_file.default_library') %>
|
45
45
|
</div>
|
46
46
|
|
@@ -43,12 +43,12 @@
|
|
43
43
|
|
44
44
|
<p>
|
45
45
|
<strong><%= t('activerecord.attributes.user_import_file.default_user_group_id') -%>:</strong>
|
46
|
-
<%= link_to @user_import_file.default_user_group.display_name
|
46
|
+
<%= link_to @user_import_file.default_user_group.display_name, @user_import_file.default_user_group if @user_import_file.default_user_group.try(:display_name) -%>
|
47
47
|
</p>
|
48
48
|
|
49
49
|
<p>
|
50
50
|
<strong><%= t('activerecord.attributes.user_import_file.default_library_id') -%>:</strong>
|
51
|
-
<%= link_to @user_import_file.default_library.display_name
|
51
|
+
<%= link_to @user_import_file.default_library.display_name, @user_import_file.default_library if @user_import_file.default_library.try(:display_name) -%>
|
52
52
|
</p>
|
53
53
|
|
54
54
|
<p>
|
@@ -11,4 +11,15 @@
|
|
11
11
|
</div>
|
12
12
|
|
13
13
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
14
|
+
<ul>
|
15
|
+
<li>
|
16
|
+
<% if @user_import_file %>
|
17
|
+
<%= link_to((image_tag 'icons/page_white_excel.png', size: '16x16', class: 'enju_icon', alt: 'TSV'), user_import_results_path(user_import_file_id: @user_import_file.id, format: :txt, locale: @locale.to_s)) -%>
|
18
|
+
(<%= link_to 'TSV', user_import_results_path(user_import_file_id: @user_import_file.id, format: :txt, locale: @locale.to_s) -%>)
|
19
|
+
<% else %>
|
20
|
+
<%= link_to((image_tag 'icons/page_white_excel.png', size: '16x16', class: 'enju_icon', alt: 'TSV'), user_import_results_path(format: :txt, locale: @locale.to_s)) -%>
|
21
|
+
(<%= link_to 'TSV', user_import_results_path(format: :txt, locale: @locale.to_s) -%>)
|
22
|
+
<% end %>
|
23
|
+
</li>
|
24
|
+
</ul>
|
14
25
|
</div>
|
@@ -20,8 +20,8 @@
|
|
20
20
|
<td>
|
21
21
|
<%= render 'manifestations/show_index', manifestation: withdraw.item.manifestation %>
|
22
22
|
<%= link_to withdraw.item.item_identifier, withdraw.item -%> / <%= withdraw.item.call_number %>
|
23
|
-
(<%= link_to withdraw.item.shelf.library.display_name
|
24
|
-
<%= link_to withdraw.item.shelf.display_name
|
23
|
+
(<%= link_to withdraw.item.shelf.library.display_name, withdraw.item.shelf.library %> /
|
24
|
+
<%= link_to withdraw.item.shelf.display_name, withdraw.item.shelf %>)<br />
|
25
25
|
<%=l withdraw.created_at %>
|
26
26
|
</td>
|
27
27
|
</tr>
|
@@ -23,8 +23,8 @@
|
|
23
23
|
<% if withdraw.item %>
|
24
24
|
<%= render 'manifestations/show_index', manifestation: withdraw.item.manifestation %>
|
25
25
|
<%= link_to withdraw.item.item_identifier, withdraw.item -%> / <%= withdraw.item.call_number %>
|
26
|
-
(<%= link_to withdraw.item.shelf.library.display_name
|
27
|
-
<%= link_to withdraw.item.shelf.display_name
|
26
|
+
(<%= link_to withdraw.item.shelf.library.display_name, withdraw.item.shelf.library %> /
|
27
|
+
<%= link_to withdraw.item.shelf.display_name, withdraw.item.shelf %>)<br />
|
28
28
|
<%=l withdraw.created_at %>
|
29
29
|
<% end %>
|
30
30
|
</td>
|
@@ -45,6 +45,6 @@
|
|
45
45
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
46
46
|
<ul>
|
47
47
|
<li><%= link_to t('page.new', model: t('activerecord.models.withdraw')), new_withdraw_path -%></li>
|
48
|
-
<li><%= link_to t('page.listing', model: t('activerecord.attributes.withdraw.removed_items', status: CirculationStatus.where(name: 'Removed').first.display_name
|
48
|
+
<li><%= link_to t('page.listing', model: t('activerecord.attributes.withdraw.removed_items', status: CirculationStatus.where(name: 'Removed').first.display_name) + t('activerecord.models.item')), items_path(circulation_status: 'Removed') -%></li>
|
49
49
|
</ul>
|
50
50
|
</div>
|
@@ -10,6 +10,6 @@
|
|
10
10
|
<div id="submenu" class="ui-corner-all ui-widget-content">
|
11
11
|
<ul>
|
12
12
|
<li><%= link_to t('page.listing', model: t('activerecord.models.withdraw')), withdraws_path -%></li>
|
13
|
-
<li><%= link_to t('page.listing', model: t('activerecord.attributes.withdraw.removed_items', status: CirculationStatus.where(name: 'Removed').first.display_name
|
13
|
+
<li><%= link_to t('page.listing', model: t('activerecord.attributes.withdraw.removed_items', status: CirculationStatus.where(name: 'Removed').first.display_name) + t('activerecord.models.item')), items_path(circulation_status: 'Removed') -%></li>
|
14
14
|
</ul>
|
15
15
|
</div>
|
@@ -26,8 +26,8 @@ en:
|
|
26
26
|
telephone_number_1: Telephone number 1
|
27
27
|
telephone_number_2: Telephone number 2
|
28
28
|
fax_number: Fax number
|
29
|
-
|
30
|
-
|
29
|
+
lat: Lat
|
30
|
+
lng: Lng
|
31
31
|
note: Note
|
32
32
|
call_number_rows: Call number rows
|
33
33
|
call_number_delimiter: Call number delimiter
|
@@ -59,8 +59,6 @@ en:
|
|
59
59
|
max_number_of_results: Max number of results
|
60
60
|
book_jacket_source: Book jacket source
|
61
61
|
header_logo: Header logo
|
62
|
-
default_custom_manifestation_label: Default custom properties (Manifestation)
|
63
|
-
default_custom_item_label: Default custom properties (Item)
|
64
62
|
bookstore:
|
65
63
|
name: Name
|
66
64
|
zip_code: Zip code
|
@@ -26,8 +26,8 @@ ja:
|
|
26
26
|
telephone_number_1: 電話番号1
|
27
27
|
telephone_number_2: 電話番号2
|
28
28
|
fax_number: ファックス番号
|
29
|
-
|
30
|
-
|
29
|
+
lat: 緯度
|
30
|
+
lng: 経度
|
31
31
|
note: 注記
|
32
32
|
call_number_rows: 請求記号の列数
|
33
33
|
call_number_delimiter: 請求番号の区切り文字
|
@@ -59,8 +59,6 @@ ja:
|
|
59
59
|
max_number_of_results: 検索結果の最大件数
|
60
60
|
book_jacket_source: 書影の取得元
|
61
61
|
header_logo: ヘッダーのロゴ
|
62
|
-
default_custom_manifestation_label: 既定のカスタム項目(書誌)
|
63
|
-
default_custom_item_label: 既定のカスタム項目(所蔵)
|
64
62
|
bookstore:
|
65
63
|
name: 名前
|
66
64
|
zip_code: 郵便番号
|
@@ -0,0 +1,12 @@
|
|
1
|
+
class AddDisplayNameTranslationsToLibraryGroup < ActiveRecord::Migration[5.2]
|
2
|
+
def change
|
3
|
+
add_column :budget_types, :display_name_translations, :jsonb, default: {}, null: false
|
4
|
+
add_column :libraries, :display_name_translations, :jsonb, default: {}, null: false
|
5
|
+
add_column :library_groups, :display_name_translations, :jsonb, default: {}, null: false
|
6
|
+
add_column :request_status_types, :display_name_translations, :jsonb, default: {}, null: false
|
7
|
+
add_column :request_types, :display_name_translations, :jsonb, default: {}, null: false
|
8
|
+
add_column :search_engines, :display_name_translations, :jsonb, default: {}, null: false
|
9
|
+
add_column :shelves, :display_name_translations, :jsonb, default: {}, null: false
|
10
|
+
add_column :user_groups, :display_name_translations, :jsonb, default: {}, null: false
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,6 @@
|
|
1
|
+
class AddLoginBannerTranslationsToLibraryGroup < ActiveRecord::Migration[5.2]
|
2
|
+
def change
|
3
|
+
add_column :library_groups, :login_banner_translations, :jsonb, default: {}, null: false
|
4
|
+
add_column :library_groups, :footer_banner_translations, :jsonb, default: {}, null: false
|
5
|
+
end
|
6
|
+
end
|
data/lib/enju_library/version.rb
CHANGED
@@ -5,13 +5,8 @@ class EnjuLibrary::SetupGenerator < Rails::Generators::Base
|
|
5
5
|
def copy_setup_files
|
6
6
|
directory("db/fixtures", "db/fixtures/enju_library")
|
7
7
|
return if file == 'fixture'
|
8
|
-
|
9
|
-
" include EnjuLibrary::Controller\n"
|
8
|
+
inject_into_file 'app/controllers/application_controller.rb',
|
9
|
+
" include EnjuLibrary::Controller\n", after: "include EnjuLeaf::Controller\n"
|
10
10
|
append_to_file("app/models/user.rb", "Item.include(EnjuLibrary::EnjuItem)\n")
|
11
|
-
gsub_file 'app/models/user.rb', /, :validatable$/, <<EOS
|
12
|
-
, # :validatable,
|
13
|
-
:lockable, lock_strategy: :none, unlock_strategy: :none
|
14
|
-
include EnjuSeed::EnjuUser
|
15
|
-
EOS
|
16
11
|
end
|
17
12
|
end
|
@@ -2,7 +2,7 @@
|
|
2
2
|
library_00001:
|
3
3
|
name: web
|
4
4
|
short_display_name: Web
|
5
|
-
|
5
|
+
display_name_translations: {"en": "World Wide Web", "ja": "ウェブ"}
|
6
6
|
fax_number:
|
7
7
|
telephone_number_1:
|
8
8
|
telephone_number_2:
|
@@ -14,7 +14,7 @@ library_00001:
|
|
14
14
|
library_00002:
|
15
15
|
name: yours
|
16
16
|
short_display_name: your_library
|
17
|
-
|
17
|
+
display_name_translations: {"en": "Your Library", "ja": "自分の図書館"}
|
18
18
|
fax_number:
|
19
19
|
telephone_number_1:
|
20
20
|
telephone_number_2:
|
@@ -1,12 +1,18 @@
|
|
1
|
-
|
1
|
+
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
|
2
|
+
one:
|
2
3
|
id: 1
|
3
4
|
name: enju_library
|
4
|
-
|
5
|
-
|
6
|
-
short_name: enju
|
5
|
+
display_name_translations: {"en": "Enju Library", "ja": "えんじゅ図書館"}
|
6
|
+
short_name: enju_library
|
7
7
|
note:
|
8
8
|
my_networks: "0.0.0.0/0\r\n\
|
9
9
|
::/0"
|
10
|
+
url: "http://localhost:3000/"
|
11
|
+
position: 1
|
12
|
+
login_banner_translations: {"ja": "オープンソース図書館システム Next-L Enju です。このメッセージは管理者としてログインした後に変更することができます。",
|
13
|
+
"en": "Next-L Enju, an open-source integrated library system. You can edit this message after logging in as Administrator."}
|
14
|
+
footer_banner_translations: {"en":"[Next-L Enju Leaf __VERSION__](https://github.com/next-l/enju_leaf), an open source integrated library system | [About this system](/page/about) | [Report bugs](https://github.com/next-l/enju_leaf/issues) | [Manual](https://next-l.github.io/manual/)",
|
15
|
+
"ja":"[Next-L Enju Leaf __VERSION__](https://github.com/next-l/enju_leaf), オープンソース統合図書館システム | [このシステムについて](/page/about) | [不具合を報告する](https://github.com/next-l/enju_leaf/issues) | [マニュアル](https://next-l.github.io/manual/)"}
|
10
16
|
admin_networks: "0.0.0.0/0\r\n\
|
11
17
|
::/0"
|
12
|
-
|
18
|
+
pub_year_facet_range_interval: 10
|