diff --git a/app/controllers/catalog_controller_decorator.rb b/app/controllers/catalog_controller_decorator.rb index 2bb0bdfa..568b6003 100644 --- a/app/controllers/catalog_controller_decorator.rb +++ b/app/controllers/catalog_controller_decorator.rb @@ -43,7 +43,7 @@ # Clobber all existing index and show fields that come from Hyku base but skip # the non-DogBiscuit keys that Adventist had already configured in a pre-Knapsack state - # see: https://github.com/scientist-softserv/adventist-dl/blob/97bd05946345926b2b6c706bd90e183a9d78e8ef/app/controllers/catalog_controller.rb#L38-L40 + # see: https://github.com/notch8/adventist-dl/blob/97bd05946345926b2b6c706bd90e183a9d78e8ef/app/controllers/catalog_controller.rb#L38-L40 config.index_fields.keys.each do |key| next if key == 'all_text_timv' next if key == 'all_text_tsimv' diff --git a/app/forms/hyrax/forms/collection_form_decorator.rb b/app/forms/hyrax/forms/collection_form_decorator.rb index e0f9b692..419540e2 100644 --- a/app/forms/hyrax/forms/collection_form_decorator.rb +++ b/app/forms/hyrax/forms/collection_form_decorator.rb @@ -15,7 +15,7 @@ def secondary_terms ## # What the heck is going on here? # - # As part of https://github.com/scientist-softserv/adventist_knapsack/pull/87 we have + # As part of https://github.com/notch8/adventist_knapsack/pull/87 we have # attempted to rid the collection form of the alternative_title (to deal with the conflicting # predicate for slugs). However, it is declared by way of # `Hyrax::Forms::CollectionForm.delegate(:alternative_title, to: :model)` diff --git a/app/jobs/create_derivatives_job_decorator.rb b/app/jobs/create_derivatives_job_decorator.rb index e05a7e54..e210c79e 100644 --- a/app/jobs/create_derivatives_job_decorator.rb +++ b/app/jobs/create_derivatives_job_decorator.rb @@ -9,7 +9,7 @@ def perform(file_set, file_id, filepath = nil) end ## - # @see https://github.com/scientist-softserv/adventist-dl/issues/311 for discussion on structure + # @see https://github.com/notch8/adventist-dl/issues/311 for discussion on structure # of non-Archival PDF. NON_ARCHIVAL_PDF_SUFFIXES = [".reader.pdf", ".pdf-r.pdf"].freeze diff --git a/app/jobs/iiif_print/child_works_from_pdf_job_decorator.rb b/app/jobs/iiif_print/child_works_from_pdf_job_decorator.rb index b86283f0..e71fa115 100644 --- a/app/jobs/iiif_print/child_works_from_pdf_job_decorator.rb +++ b/app/jobs/iiif_print/child_works_from_pdf_job_decorator.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true # OVERRIDE: Overriding entire job temporarily, pending cleanup via -# https://github.com/scientist-softserv/adventist_knapsack/issues/728 +# https://github.com/notch8/adventist_knapsack/issues/728 # OVERRIDE to end job based on pdfjs/uv flipper before doing anything # so we don't get job errors require 'iiif_print/jobs/application_job' diff --git a/app/models/bulkrax/oai_adventist_qdc_entry.rb b/app/models/bulkrax/oai_adventist_qdc_entry.rb index 654a89e1..60265741 100644 --- a/app/models/bulkrax/oai_adventist_qdc_entry.rb +++ b/app/models/bulkrax/oai_adventist_qdc_entry.rb @@ -18,12 +18,12 @@ def add_thumbnail_url true end - # @see https://github.com/scientist-softserv/adventist-dl/issues/281 + # @see https://github.com/notch8/adventist-dl/issues/281 def collections_created? true end - # @see https://github.com/scientist-softserv/adventist-dl/issues/281 + # @see https://github.com/notch8/adventist-dl/issues/281 def find_collection_ids self.collection_ids = [] end diff --git a/app/services/iiif_print/split_pdfs/adventist_pages_to_jpgs_splitter.rb b/app/services/iiif_print/split_pdfs/adventist_pages_to_jpgs_splitter.rb index c14ff75f..f5174271 100644 --- a/app/services/iiif_print/split_pdfs/adventist_pages_to_jpgs_splitter.rb +++ b/app/services/iiif_print/split_pdfs/adventist_pages_to_jpgs_splitter.rb @@ -26,7 +26,7 @@ def self.split_this?(path:, suffixes: CreateDerivativesJobDecorator::NON_ARCHIVA # an instance of {IiifPrint::SplitPdfs::AdventistPagesToJpgsSplitter}. # @note I am adding a {.new} method to a module to mimic the instantiation of a class. # - # @see https://github.com/scientist-softserv/iiif_print/blob/a23706453f23e0f54c9d50bbf0ddf9311d82a0b9/lib/iiif_print/jobs/child_works_from_pdf_job.rb#L39-L63 + # @see https://github.com/notch8/iiif_print/blob/a23706453f23e0f54c9d50bbf0ddf9311d82a0b9/lib/iiif_print/jobs/child_works_from_pdf_job.rb#L39-L63 def self.call(path, splitter: DerivativeRodeoSplitter, suffixes: CreateDerivativesJobDecorator::NON_ARCHIVAL_PDF_SUFFIXES, diff --git a/config/initializers/hyrax.rb b/config/initializers/hyrax.rb index 96e1b8b7..58354c32 100644 --- a/config/initializers/hyrax.rb +++ b/config/initializers/hyrax.rb @@ -15,7 +15,7 @@ # Injected via `rails g hyrax:work Thesis` config.register_curation_concern :thesis - # See https://github.com/scientist-softserv/adventist-dl/issues/183 + # See https://github.com/notch8/adventist-dl/issues/183 # Also, we will continue to extract txt file's text using Adventist::TextFileTextExtractionService config.extract_full_text = false config.work_requires_files = false diff --git a/config/initializers/iiif_print.rb b/config/initializers/iiif_print.rb index d77af341..cb630ad5 100644 --- a/config/initializers/iiif_print.rb +++ b/config/initializers/iiif_print.rb @@ -96,7 +96,7 @@ } # Override IiifPrint's function to substitute Array.wrap prior to gem cleanup. - # See https://github.com/scientist-softserv/adventist_knapsack/issues/729 + # See https://github.com/notch8/adventist_knapsack/issues/729 config.child_work_attributes_function = lambda do |parent_work:, admin_set_id:| embargo = parent_work.embargo lease = parent_work.lease diff --git a/docker-compose.yml b/docker-compose.yml index 7ebc94c3..ff04993f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ x-app: &app args: BUILDKIT_INLINE_CACHE: 1 APP_PATH: ./hyrax-webapp - image: ghcr.io/scientist-softserv/adventist_knapsack:${TAG:-latest} + image: ghcr.io/notch8/adventist_knapsack:${TAG:-latest} environment: - AUXILIARY_QUEUE_TENANTS="sdapi" # This line is what makes the knapsack include use the local code instead of the remote gem - AWS_REGION=us-east-1 @@ -50,7 +50,7 @@ x-app-worker: &app-worker args: BUILDKIT_INLINE_CACHE: 1 APP_PATH: ./hyrax-webapp - image: ghcr.io/scientist-softserv/adventist_knapsack/worker:${TAG:-latest} + image: ghcr.io/notch8/adventist_knapsack/worker:${TAG:-latest} # Uncomment command to access container with out starting bin/worker. Useful for debugging or updating Gemfile.lock # command: sleep infinity depends_on: diff --git a/hyrax-webapp b/hyrax-webapp index 1efcc991..a42a9630 160000 --- a/hyrax-webapp +++ b/hyrax-webapp @@ -1 +1 @@ -Subproject commit 1efcc99159a049c5604f71ce29d5cf3b096dbe93 +Subproject commit a42a9630cc91079db02d5560d7605ea866fab6cc diff --git a/lib/hyku_knapsack/engine.rb b/lib/hyku_knapsack/engine.rb index 19bed8e4..7fa6091f 100644 --- a/lib/hyku_knapsack/engine.rb +++ b/lib/hyku_knapsack/engine.rb @@ -55,7 +55,7 @@ def self.load_translations! # Adventist::TextFileTextExtractionService to the beginning of the services array we are # enabling text extraction from plain text files. # - # https://github.com/scientist-softserv/adventist-dl/blob/97bd05946345926b2b6c706bd90e183a9d78e8ef/config/application.rb#L68-L73 + # https://github.com/notch8/adventist-dl/blob/97bd05946345926b2b6c706bd90e183a9d78e8ef/config/application.rb#L68-L73 Hyrax::DerivativeService.services = [ Adventist::TextFileTextExtractionService, IiifPrint::DerivativeRodeoService, @@ -91,7 +91,7 @@ def self.load_translations! end DerivativeRodeo::Generators::HocrGenerator.additional_tessearct_options = "-l eng_best" - # See: https://github.com/scientist-softserv/adventist-dl/issues/676 + # See: https://github.com/notch8/adventist-dl/issues/676 IiifPrint::DerivativeRodeoService.named_derivatives_and_generators_filter = lambda do |_file_set:, filename:, named_derivatives_and_generators:| named_derivatives_and_generators.reject do |named_derivative, _generators| diff --git a/lib/oai/client_decorator.rb b/lib/oai/client_decorator.rb index 10a789fd..d6563884 100644 --- a/lib/oai/client_decorator.rb +++ b/lib/oai/client_decorator.rb @@ -9,7 +9,7 @@ module OAI # Typically, the resumption token represents the full context of the previous request. However, # in the Adventist implementation it's operating a bit like a pagination page indicator. # - # @see https://github.com/scientist-softserv/adventist-dl/issues/271 + # @see https://github.com/notch8/adventist-dl/issues/271 module ClientDecorator # @note override def do_resumable(responseClass, verb, opts) diff --git a/sdapi_ingest_scripts/jobs/collection_membership_job.rb b/sdapi_ingest_scripts/jobs/collection_membership_job.rb index 86f3a67c..2d293789 100644 --- a/sdapi_ingest_scripts/jobs/collection_membership_job.rb +++ b/sdapi_ingest_scripts/jobs/collection_membership_job.rb @@ -3,7 +3,7 @@ ## The purpose of this job is to take an array of collection ids and remove the # membership relationshp from every work of a given work type. These are the 20 # collections that we were unable to delete, most likely due to too many members -# causing timeouts. Ref https://github.com/scientist-softserv/adventist-dl/issues/459 +# causing timeouts. Ref https://github.com/notch8/adventist-dl/issues/459 class CollectionMembershipJob < ApplicationJob queue_as :collections diff --git a/sdapi_ingest_scripts/jobs/rerun_errored_entries_for_importer_job.rb b/sdapi_ingest_scripts/jobs/rerun_errored_entries_for_importer_job.rb index b2048694..4e218399 100644 --- a/sdapi_ingest_scripts/jobs/rerun_errored_entries_for_importer_job.rb +++ b/sdapi_ingest_scripts/jobs/rerun_errored_entries_for_importer_job.rb @@ -6,7 +6,7 @@ # @note This class is starting it's life in the Adventist repository but is being designed so that # we could copy it rather easily into Bulkrax. # -# @see https://github.com/scientist-softserv/adventist-dl/issues/430 +# @see https://github.com/notch8/adventist-dl/issues/430 # # @example # switch!('sdapi'); RerunErroredEntriesForImporterJob.perform_later(importer_id: 123, last_run_id: 456) diff --git a/spec/config/initializers/iiif_print_spec.rb b/spec/config/initializers/iiif_print_spec.rb index 0f22e24c..1186a290 100644 --- a/spec/config/initializers/iiif_print_spec.rb +++ b/spec/config/initializers/iiif_print_spec.rb @@ -9,7 +9,7 @@ it 'is defined in HykuKnapsack::Engine' do # Verifying that we're using the configured title generator for PDFs. - # Triage for: https://github.com/scientist-softserv/adventist-dl/issues/628 + # Triage for: https://github.com/notch8/adventist-dl/issues/628 expect(subject.source_location[0]).to( eq(HykuKnapsack::Engine.root.join('config', 'initializers', 'iiif_print.rb').to_s) ) diff --git a/spec/jobs/file_sets_reprocess_job_spec.rb b/spec/jobs/file_sets_reprocess_job_spec.rb index 67fc3e70..9a231086 100644 --- a/spec/jobs/file_sets_reprocess_job_spec.rb +++ b/spec/jobs/file_sets_reprocess_job_spec.rb @@ -9,7 +9,7 @@ describe '#perform' do # TODO: commenting out failing job - loading issue - this work was merged as WIP - # ref: https://github.com/scientist-softserv/adventist-dl/commit/54d7cf8ed278b5fa09ee2cd14ca81f856e660add + # ref: https://github.com/notch8/adventist-dl/commit/54d7cf8ed278b5fa09ee2cd14ca81f856e660add # TODO: Make this job work with valkyrie xit 'submits jobs' do expect(described_class::ConditionallyResplitFileSetJob).to receive(:perform_later).with(file_set_id: file_set.id) @@ -23,7 +23,7 @@ describe 'ConditionallyResplitFileSetJob#perform' do describe '#perform' do # TODO: commenting out failing job - loading issue - this work was merged as WIP - # ref: https://github.com/scientist-softserv/adventist-dl/commit/54d7cf8ed278b5fa09ee2cd14ca81f856e660add + # ref: https://github.com/notch8/adventist-dl/commit/54d7cf8ed278b5fa09ee2cd14ca81f856e660add # TODO: Make this job work with valkyrie xit 'submits IiifPrint::Jobs::RequestSplitPdfJob' do file_set