DARIAH-DE Annotation Sandbox

Disclaimer

The DARIAH-DE Annotation Sandbox is work in progress. Users are enabled to annotate texts and images hosted by the TextGridRep as well as websites provided with the DARIAH-DE Annotation proxy. During the Beta phase however we can not gurantee the long term archiving of the annotations stored in the DARIAH-DE storage.

Links

  • AnnotationViewer
    • View annotations in the store
  • The TextGrid Repository offerst the possibility to annotate TEI text
    • Find the link to "Annotate" below "Tools" on the left bar on any TEI document, like for example on "Alice im Wunderland".
  • DARIAH-DE Annotation Service
    • Annotate a Website
URL:

Embedding DARIAH-DE annotation service in your website

Add the follwing lines of code to the header of your website:

Start with jquery, if its not already included in in your website:

<script src="https://annotation.de.dariah.eu/annotatorjs/jquery-1.10.2.js"></script>

Afterwards add the following lines:

<link rel="stylesheet" type="text/css" href="https://annotation.de.dariah.eu/annotatorjs/annotator.min.css" />
<link rel="stylesheet" type="text/css" href="https://annotation.de.dariah.eu/annotatorjs/dariah-annotation.css" />
<script type="text/javascript" src="https://annotation.de.dariah.eu/annotatorjs/annotator-full.min.js"></script>
<script type="text/javascript" src="https://annotation.de.dariah.eu/annotatorjs/dariah-annotation.js"></script>
<script>
  DariahAnnotation.setupAnnotator();
  DariahAnnotation.addSidebar();
</script>
If you would like to have Annotations only visible to logged in users, add the following line of javscript before DariahAnnotation.setupAnnotator();
  DariahAnnotation.anonymousViewing(false);

About

We combined a set of existing tools and integrated them with the DARIAH-AAI for demonstration purpose.