# HG changeset patch # User casties # Date 1402075151 -7200 # Node ID f2ff7de7b49dea81e05fd838ccf6d2cb9a7242ce # Parent 4e2dc67997a091c81e990ae79cc7581e6e138f16 show more fields in annotations_ui annotation view. diff -r 4e2dc67997a0 -r f2ff7de7b49d .hgignore --- a/.hgignore Fri Jun 06 09:26:21 2014 +0200 +++ b/.hgignore Fri Jun 06 19:19:11 2014 +0200 @@ -15,4 +15,6 @@ syntax: regexp ^src/main/webapp/WEB-INF/serverconfig\.property$ syntax: regexp -^src/main/webapp/WEB-INF/classes$ \ No newline at end of file +^src/main/webapp/WEB-INF/classes$ +syntax: regexp +^src/main/webapp/neo4j-annotation-db$ \ No newline at end of file diff -r 4e2dc67997a0 -r f2ff7de7b49d src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationResource.java --- a/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationResource.java Fri Jun 06 09:26:21 2014 +0200 +++ b/src/main/java/de/mpiwg/itgroup/annotations/restlet/annotations_ui/AnnotationResource.java Fri Jun 06 19:19:11 2014 +0200 @@ -128,6 +128,8 @@ result += String.format("text%s\n", annotation.getBodyText()); result += String.format("target%s\n", annotation.getTargetBaseUri()); result += String.format("fragment%s\n", annotation.getTargetFragment()); + result += String.format("quote%s\n", annotation.getQuote()); + result += String.format("resource%s\n", annotation.getResourceUri()); result += String.format("creator%s\n", annotation.getCreatorName()); result += "\n"; //result += "

Edit annotation

\n";