-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Site fcrepo backed site config #60
Comments
Proposal: Create a new (public readable) root endpoint For the current spec, we need admins to be able to define, Featured Images and Featured Collections. Featured images will have a pointer the feature image container, name, (description?) and link to collection item (CreativeWork). Featured Collections can be a direct links to a collection, where to collection title and image are reused or similar to Featured images, a custom featured container may be specified. Structure
Featured Container
Alternatively |
Overall, I think the general idea is great. I'm a bit confused on the two important predicates. And when would a collection not be an existing one? @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix fedora: <http://fedora.info/definitions/v4/repository#> .
@prefix ldp: <http://www.w3.org/ns/ldp#> .
@prefix fin: <http://digital.ucdavis.edu/#schema> .
<http://localhost:8666/fcrepo/rest/applications/ucd-lib-client>
rdf:type fin:ApplicationContainer ;
rdf:type fedora:Container;
ldp:contains <http://localhost:8666/fcrepo/rest/applications/ucd-lib-client/specialImages>;
fin:featuredImages <http://localhost:8666/fcrepo/rest/applications/ucd-lib-client/specialImages/foo.pgn>;
fin:featuredCollections <http://localhost:8666/fcrepo/rest/applications/ucd-lib-client/exampleCollections>;
fin:featuredCollections <http://localhost:8666/fcrepo/rest/collections/henry-dart-green>; And then individual featuredImages @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix fedora: <http://fedora.info/definitions/v4/repository#> .
@prefix ldp: <http://www.w3.org/ns/ldp#> .
@prefix fin: <http://digital.ucdavis.edu/#schema> .
<http://localhost:8666/fcrepo/rest/applications/ucd-lib-client/specialImages>
rdf:type fin:FeaturedContainer ;
rdf:type fedora:Container;
schema.name "Special Image";
ldp:contains <http://localhost:8666/fcrepo/rest/applications/ucd-lib-client/specialImage/foo.png>
ldp:contains <http://localhost:8666/fcrepo/rest/applications/ucd-lib-client/specialImage/bar.png> http://localhost:8666/fcrepo/rest/applications/ucd-lib-client/specialImage/foo
|
This should be an editable config, stored in fedora, that is always sent on page loaded.
Things to include:
The text was updated successfully, but these errors were encountered: