This plugin customizes ArchivesSpace to meet the specific needs of the University of Illinois Urbana-Champaign Library.
- University of Illinois Urbana-Champaign branding.
- Automatic EAD ID generation based on resource identifiers.
- Moves the Finding Aid Filing Title field after the Title field in the staff interface and relabels it as "Sort Title".
- Reconfigures "print_to_pdf_job" job types to permit concurrent execution based on the number of threads available to run background jobs (
AppConfig[:job_thread_count]).
- Clone this repository into your ArchivesSpace plugins directory:
cd /path/to/archivesspace/plugins git clone https://github.com/illinois-library/archivesspace-illinois.git - Add
archivesspace-illinoisto thepluginsarray in yourconfig/config.rbfile:AppConfig[:plugins] = ['archivesspace-illinois', ...]
- Set the
illinoistheme for both staff and public interfaces in yourconfig/config.rbfile:AppConfig[:frontend_theme] = 'illinois' AppConfig[:public_theme] = 'illinois'
- Configure the
illinoisbranding image and alt text for both interfaces in yourconfig/config.rbfile:AppConfig[:pui_branding_img] = 'themes/illinois/illinois.png' AppConfig[:pui_branding_img_alt_text] = 'University Library - University of Illinois Urbana-Champaign' AppConfig[:frontend_branding_img] = 'themes/illinois/illinois.png' AppConfig[:frontend_branding_img_alt_text] = 'University Library - University of Illinois Urbana-Champaign'
- Restart ArchivesSpace to apply the changes.