-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I350 Derivatives & Update IiifPrint (#2210)
* Update IiifPrint * File Set Specs Update specs based on derivative & file migration processing in Hyrax. * Update IiifPrint to released gem * Bring in most recent Hyrax updates * Remove solr_document_behavior_decorator Hyrax now redevines hydra_model so we don't have to.
- Loading branch information
Showing
19 changed files
with
137 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 0 additions & 19 deletions
19
app/models/concerns/hyrax/solr_document_behavior_decorator.rb
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...igrate/20240214005253_add_model_details_to_iiif_print_pending_relationships.iiif_print.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# This migration comes from iiif_print (originally 20231110163052) | ||
class AddModelDetailsToIiifPrintPendingRelationships < ActiveRecord::Migration[5.2] | ||
def change | ||
add_column :iiif_print_pending_relationships, :parent_model, :string | ||
add_column :iiif_print_pending_relationships, :child_model, :string | ||
add_column :iiif_print_pending_relationships, :file_id, :string | ||
add_column :iiif_print_pending_relationships, :parent_model, :string unless column_exists?(:iiif_print_pending_relationships, :parent_model) | ||
add_column :iiif_print_pending_relationships, :child_model, :string unless column_exists?(:iiif_print_pending_relationships, :child_model) | ||
add_column :iiif_print_pending_relationships, :file_id, :string unless column_exists?(:iiif_print_pending_relationships, :file_id) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
version: '3.8' | ||
|
||
services: | ||
solr: | ||
ports: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
version: '3.8' | ||
|
||
x-app: &app | ||
image: ghcr.io/samvera/hyku:${TAG:-latest} | ||
env_file: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
version: '3.8' | ||
x-app: &app | ||
build: | ||
context: . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<alto xmlns="http://www.loc.gov/standards/alto/ns-v2#"> | ||
<Description> | ||
<MeasurementUnit>pixel</MeasurementUnit> | ||
</Description> | ||
<Layout> | ||
<Page ID="ID1" PHYSICAL_IMG_NR="1" HEIGHT="3685" WIDTH="2457"> | ||
<PrintSpace HEIGHT="3685" WIDTH="2457" HPOS="0" VPOS="0"> | ||
<TextBlock ID="ID1a" HEIGHT="3685" WIDTH="2457" HPOS="0" VPOS="0"> | ||
<TextLine HEIGHT="3685" WIDTH="2457" HPOS="0" VPOS="0"> | ||
<String CONTENT=" " WIDTH="1616" HEIGHT="3128" HPOS="466" VPOS="276"></String> | ||
<String CONTENT=" " WIDTH="1616" HEIGHT="3128" HPOS="466" VPOS="276"></String> | ||
<String CONTENT=" " WIDTH="1616" HEIGHT="3128" HPOS="466" VPOS="276"></String> | ||
<String CONTENT=" " WIDTH="1616" HEIGHT="3128" HPOS="466" VPOS="276"></String> | ||
<String CONTENT=" " WIDTH="1616" HEIGHT="3128" HPOS="466" VPOS="276"></String> | ||
<String CONTENT=" " WIDTH="1616" HEIGHT="3128" HPOS="466" VPOS="276"></String> | ||
<String CONTENT=" " WIDTH="1616" HEIGHT="3128" HPOS="466" VPOS="276"></String> | ||
</TextLine> | ||
</TextBlock> | ||
</PrintSpace> | ||
</Page> | ||
</Layout> | ||
</alto> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 0 additions & 71 deletions
71
spec/models/concerns/hyrax/solr_document_behavior_decorator_spec.rb
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.