# HG changeset patch # User casties # Date 1487874337 -3600 # Node ID 5ccd6e709f95962dfab62ccf202bb2931e215f8b # Parent 9f23184acf96f568e1483e15c28badb29617c0a5 fix attribute name in EditIntent. diff -r 9f23184acf96 -r 5ccd6e709f95 src/main/java/de/mpiwg/itgroup/ismi/entry/beans/CurrentWitnessBean.java --- a/src/main/java/de/mpiwg/itgroup/ismi/entry/beans/CurrentWitnessBean.java Thu Feb 23 19:03:39 2017 +0100 +++ b/src/main/java/de/mpiwg/itgroup/ismi/entry/beans/CurrentWitnessBean.java Thu Feb 23 19:25:37 2017 +0100 @@ -101,19 +101,19 @@ private MisidentificationTable misidentTable; /** intent to edit all attributes and relations in the form */ - public static EditIntent editWitnessIntent = new EditIntent( + public static EditIntent editWitnessIntent = new EditIntent ( AbstractISMIBean.WITNESS, // attributes - new String[]{"ahlward_no", "creation_date", "table_of_contents", "incipit", "explicit", "colophon", + new String[] {"ahlwardt_no", "creation_date", "table_of_contents", "incipit", "explicit", "colophon", "folios", "is_autograph", "page_dimensions", "written_area_dimensions", "lines_per_page", "writing_surface", "page_layout", "script", "other_features", "diagrams_and_illustrations", "scans", "notes", "notes_old", "notes_on_title_author", "notes_on_collation_and_corrections", "notes_on_ownership", "source_of_information"}, // source relations - new String[]{"is_exemplar_of", "is_part_of", "has_author_misidentification", "was_copied_by", + new String[] {"is_exemplar_of", "is_part_of", "has_author_misidentification", "was_copied_by", "was_copied_in", "was_copied_in_as", "had_patron", "was_studied_by"}, // target relations - new String[]{"is_reference_of"}); + new String[] {"is_reference_of"}); public CurrentWitnessBean() { super(); @@ -121,7 +121,7 @@ setDefObjectClass(WITNESS); registerChecker(copyistLo.statusImage, "Copyist not valid"); - registerChecker(copyPlaceLo.statusImage, "Copyist not valid"); + registerChecker(copyPlaceLo.statusImage, "Copy place not valid"); registerChecker(patronageLo.statusImage,"Patron not valid"); }