-
Notifications
You must be signed in to change notification settings - Fork 1
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
Support for Commenting and Tagging Annotations (W3C WebAnnotations) #178
Comments
Good question. Jiiify wasn't really intended to be a full annotation library (its goal was really to hide that aspect behind specific classes). My hope was there would be a core set that could be handled like PaintingAnnotation. The weakness there is, as you note, what if that set grows and grows... in which case a generic web annotation class would be a better option. I have also been thinking of the third option in cases where a particular place wants to use a specific annotation that is not widely used in general in the IIIF community (though how one measures that I'm not sure). You've laid the options out well. The above were my initial thoughts, but I'm open to input. Which would you, as a user of Jiiify Presentation, prefer? Just looking at the "full list" of annotations (https://www.w3.org/TR/annotation-model/#model-12): tagging definitely looks like one I'd want to support. Linking? Commenting? Maybe I'd handle core ones as classes and then have a fallback that's a more general/generic web annotation class for other uses. I don't know if this list is considered static or likely to grow(?) I'm curious which of these you'd see wanting to use? We're not using any of the others at this point (though I'll talk to our metadata folks to see which we might envision using in the future). |
So feedback from our IIIF metadata person:
I'll have to think about this. That's more than I was expecting. I'm curious if your list would overlap or add to this. Thanks for raising the issue, @HenryH09! |
I do think I prefer classes, but I'm wondering what my threshold is for "there are too many and should be handled generically." And, whether it makes sense to handle some as classes (giving them priority) and shuffling everything else off into a generic one (which might be confusing? e.g., "Why are these given preference?") I could start with tagging and commenting and add as requested. If that's a fixed list, then there is a maximum number, and let use drive implementation. Still not decided... I'm just thinking out loud... |
Thank you for the feedback. As a user I think all options are valid. Of course the first one would be more convenient :) Also would help to have consistency while producing IIIF content. The second option might end up confusing because of some W3C Annotation specificities (? maybe not, I am not very familiar with those). The third option should always be available but might also bring some needed modifications to render these as they should/could be within the manifest. I did the third option for now by creating a minimal commentingAnnotation class extending the Annotation class :
This allows me to easily create the content I was looking for. but having :
This is fine according to the documentation and properly supported by Mirador3 :
However, to stick closer to the IIIF cookbook, would it be possible to choose between the 2 formats while targeting a canvas ? |
Okay, thanks. I think I like the first as well. I'll do that. And, yes, my goal is to be able to roundtrip anything that's expressed in the cookbooks (though I'm a bit behind on this), so I'll provide a way to indicate which serialization format should be used. Thanks! |
A first iteration of this is in the |
Hello Kevin,
I couldn't find a way to natively build such (other)annotation as those described in the following cookbooks :
How do you envision such cases with the Jiiify Library ?
Thank you,
Henry
The text was updated successfully, but these errors were encountered: