esmé cowles

Results 22 comments of esmé cowles

@amberbilley I'm looking at the Bibframe role spec (http://www.loc.gov/bibframe/docs/pdf/bf2-roles-apr2016.pdf), and the first thing it says is that if you have an RDF predicate for a role, you can use it...

The Atlas docs for OpenURL field mapping are here: https://support.atlas-sys.com/hc/en-us/articles/360011919573-Submitting-Requests-via-OpenURL Because this is configurable, it's hard to say what's required here — just that what's configured in ArcLight should match...

@anarchivist Yes, that sounds workable: being able to configure a set of key-value pairs, where the key was the OepnURL parameter name, and the value was either a static value...

@acoburn See https://jira.duraspace.org/browse/FCREPO-1895 for the Fedora ticket related to this. There were a few differences in how Fedora and Hydra Access Controls are creating ACLs, and these two tickets are...

@awead: Looking at the WebAC ontology, I think it's fine to use acl:agent for both users and groups. I think that acl:agentClass is intended for saying things like any user...

The only change to Fedora is making the user/group values into URIs instead of strings -- there's a ticket for doing that https://jira.duraspace.org/browse/FCREPO-1895

It looks like both Memory and Fedora are using the current Time of the object's instantiation to create the lock tokens: * https://github.com/samvera/valkyrie/blob/master/lib/valkyrie/persistence/memory/persister.rb#L88 * https://github.com/samvera/valkyrie/blob/master/lib/valkyrie/persistence/fedora/persister.rb#L138

It's not in the API spec, but it does appear to still be in 5.0: https://wiki.duraspace.org/display/FEDORA50/RESTful+HTTP+API#RESTfulHTTPAPI-Transactions

This ticket is complete when I can download a file that is larger than the memory of the server running the Valkyrie application

`upload` needs to use a block to send chunks of uploads, instead of reading the file into memory with `tempfile.read`: https://github.com/samvera-labs/valkyrie/blob/master/lib/valkyrie/storage/fedora.rb#L39