bulkrax 9.3.2 → 9.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12b212c61299bd31b4cdf78e54895a068097af7f5c5c30d50c495fa81c98583c
|
|
4
|
+
data.tar.gz: 661c7618a2192917b675c07c4313405f68c4c087eec82b3b4acb0be4418a37c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f559bbefefc1b8aed77af9853b7e9cd02fde566614990c05738dc70769ae45d340912fc945dc79eb0ff4a68783867bfda37b75a4cff087511740a0c7e7db7020
|
|
7
|
+
data.tar.gz: a9ed1877ed0aa0e36cedc66bd753126f338b8a21a4e4439ce5cdf3b45ea7c13e9e1d2fd6367796e7f63a8d22d9c088a3f97d0bac5450a2cd8d7914d09c7913e7
|
|
@@ -1,24 +1,28 @@
|
|
|
1
|
-
|
|
1
|
+
<%# Conditionally override Hyrax's partial if we can't use the sidebar insertion of the menu options %>
|
|
2
|
+
<% use_hyrax_partial = defined?(::Hyrax::DashboardController) && ::Hyrax::DashboardController.respond_to?(:sidebar_partials) %>
|
|
3
|
+
<% hyrax_partial_path = use_hyrax_partial ? Hyrax::Engine.root.join('app/views/hyrax/dashboard/sidebar/_repository_content.html.erb') : nil %>
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
<% if use_hyrax_partial && hyrax_partial_path && File.exist?(hyrax_partial_path) %>
|
|
6
|
+
<%= render inline: File.read(hyrax_partial_path), type: :erb, locals: { menu: menu } %>
|
|
7
|
+
<% else %>
|
|
8
|
+
<%# Original Bulkrax partial content below %>
|
|
9
|
+
<li class="h5 nav-item"><%= t('hyrax.admin.sidebar.repository_objects') %></li>
|
|
10
|
+
<%= menu.nav_link(hyrax.my_collections_path,
|
|
11
|
+
class: "nav-link",
|
|
12
|
+
onclick: "dontChangeAccordion(event);",
|
|
13
|
+
also_active_for: hyrax.dashboard_collections_path,
|
|
14
|
+
title: t('hyrax.admin.sidebar.collections')) do %>
|
|
15
|
+
<span class="fa fa-folder-open" aria-hidden="true"></span> <span class="sidebar-action-text"><%= t('hyrax.admin.sidebar.collections') %></span>
|
|
16
|
+
<% end %>
|
|
10
17
|
|
|
11
|
-
<%= menu.nav_link(hyrax.my_works_path,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
<% end %>
|
|
18
|
+
<%= menu.nav_link(hyrax.my_works_path,
|
|
19
|
+
class: "nav-link",
|
|
20
|
+
onclick: "dontChangeAccordion(event);",
|
|
21
|
+
also_active_for: hyrax.dashboard_works_path,
|
|
22
|
+
title: t('hyrax.admin.sidebar.works')) do %>
|
|
23
|
+
<span class="fa fa-file" aria-hidden="true"></span> <span class="sidebar-action-text"><%= t('hyrax.admin.sidebar.works') %></span>
|
|
24
|
+
<% end %>
|
|
18
25
|
|
|
19
|
-
<% if ::Hyrax::DashboardController&.respond_to?(:sidebar_partials) %>
|
|
20
|
-
<%= render 'hyrax/dashboard/sidebar/menu_partials', menu: menu, section: :repository_content %>
|
|
21
|
-
<% else %>
|
|
22
26
|
<% if current_ability.can_import_works? %>
|
|
23
27
|
<%= menu.nav_link(bulkrax.importers_path) do %>
|
|
24
28
|
<span class="fa fa-cloud-upload" aria-hidden="true"></span> <span class="sidebar-action-text"><%= t('bulkrax.admin.sidebar.importers') %></span>
|
data/lib/bulkrax/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bulkrax
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.3.
|
|
4
|
+
version: 9.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rob Kaufman
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2025-11-24 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: rails
|
|
@@ -511,6 +512,7 @@ homepage: https://github.com/samvera-labs/bulkrax
|
|
|
511
512
|
licenses:
|
|
512
513
|
- Apache-2.0
|
|
513
514
|
metadata: {}
|
|
515
|
+
post_install_message:
|
|
514
516
|
rdoc_options: []
|
|
515
517
|
require_paths:
|
|
516
518
|
- lib
|
|
@@ -525,7 +527,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
525
527
|
- !ruby/object:Gem::Version
|
|
526
528
|
version: '0'
|
|
527
529
|
requirements: []
|
|
528
|
-
rubygems_version: 3.
|
|
530
|
+
rubygems_version: 3.5.3
|
|
531
|
+
signing_key:
|
|
529
532
|
specification_version: 4
|
|
530
533
|
summary: Import and export tool for Hyrax and Hyku
|
|
531
534
|
test_files: []
|