Setting default EAD Download options?

58 views
Skip to first unread message

Matthew Adair

unread,
Aug 26, 2025, 2:56:03 PM (13 days ago) Aug 26
to Archivesspace_Users_Group
Is there a way to set the default options for downloading an EAD through the staff interface? ie, Include DAOs, Number C tags, etc.
I looked through documentation and the config file but did see anything. Just want to make sure I'm not missing something.

I'd also be interested in hearing if there is a way to achieve it programmatically. We're already customizing the EAD exporter, so that would be something we are open to.

Matt

----
Matt Adair

Archivist for Digital Imaging and Infrastructure

Bentley Historical Library
1150 Beal Avenue
Ann Arbor, Michigan 48109-2113
734-647-3537

Valerie Addonizio

unread,
Aug 26, 2025, 3:07:52 PM (13 days ago) Aug 26
to Matthew Adair, Archivesspace_Users_Group

Matt,

 

I am aware of this plugin that matches your use case: https://github.com/duke-libraries/archivesspace-duke-export-option-defaults

--
You received this message because you are subscribed to the Google Groups "Archivesspace_Users_Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to Archivesspace_User...@lyrasislists.org.
To view this discussion visit https://groups.google.com/a/lyrasislists.org/d/msgid/Archivesspace_Users_Group/CA%2BTambcKzDj_awVdK1cDgMe9Rxe%2BnvTERD%2BhCtsbzU%3DMmi4Grg%40mail.gmail.com.

Schmidt, Corey

unread,
Aug 26, 2025, 3:50:15 PM (13 days ago) Aug 26
to Valerie Addonizio, Matthew Adair, Archivesspace_Users_Group

Hey Matt,

 

+1 for Valerie’s suggestion and a plug for Awesome-ArchivesSpace if you want to look up other plugins, features, resources that the ArchivesSpace community has created and shared. It’s open for contributions too.

 

Corey

 

From: 'Valerie Addonizio' via Archivesspace_Users_Group <Archivesspac...@lyrasislists.org>
Sent: Tuesday, August 26, 2025 3:08 PM
To: Matthew Adair <mla...@umich.edu>; Archivesspace_Users_Group <archivesspac...@lyrasislists.org>
Subject: RE: [ArchivesSpace Users Group] Setting default EAD Download options?

 

External Email - Exercise Caution

Matthew Adair

unread,
Aug 28, 2025, 10:00:19 AM (11 days ago) Aug 28
to Schmidt, Corey, Valerie Addonizio, Archivesspace_Users_Group
I appreciate the suggestions! I always forget about the Awesome-ArchivesSpace resource. 🤦

I looked at the Duke plugin and that wasn't quite the route I wanted to go. I'm hesitant about overriding the interface. We've been bitten by that before - the plugin ends up not being updated, and then new features don't appear after upgrades.

We have a plugin that does some interface styling and I was able to figure out a bit of Javascript to add to it that sets the default values after the page loads. It's not up on github yet, but this is the relevant block of code:

$( document ).ready(function() {
    try {
        // need to wait until this section has loaded in the document
        $(document).on("loadedrecordform.aspace", function(event) {

            $( "input#include-daos" ).prop("checked", true);
            $( "input#include-uris" ).prop("checked", false);
            $( "input#numbered-cs" ).prop("checked", true);
            $( "input#ead3" ).prop("checked", false);
            $( "input#include-unpublished" ).prop("checked", false);

        });
    } catch (error) {
        console.log (error);
    }
});

Matt

----
Matt Adair

Archivist for Digital Imaging and Infrastructure

Bentley Historical Library
1150 Beal Avenue
Ann Arbor, Michigan 48109-2113
734-647-3537

Reply all
Reply to author
Forward
0 new messages