changeset 132:9f23184acf96

text edit bean had too permissive EditIntent (is_exemplar_of).
author casties
date Thu, 23 Feb 2017 19:03:39 +0100
parents 8ae989269f51
children 5ccd6e709f95
files src/main/java/de/mpiwg/itgroup/ismi/entry/beans/CurrentTextBean.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/java/de/mpiwg/itgroup/ismi/entry/beans/CurrentTextBean.java	Thu Feb 02 17:59:35 2017 +0100
+++ b/src/main/java/de/mpiwg/itgroup/ismi/entry/beans/CurrentTextBean.java	Thu Feb 23 19:03:39 2017 +0100
@@ -109,7 +109,7 @@
 	private transient MisattributionTable misattTable;
 	
 	/** intent to edit all attributes and relations in the form */
-	public static EditIntent editTextIntent = new EditIntent(
+	public static EditIntent editTextIntent = new EditIntent (
 			TEXT,
 			// attributes
 			new String[]{"full_title", "full_title_translit", "incipit", "excplicit", "dedication", "language", 
@@ -119,7 +119,7 @@
 					"was_dedicated_to", "is_commentary_on", "is_translation_of", "is_version_of"},
 			// target relations
 			new String[]{"is_prime_alias_title_of", "is_alias_title_of", "is_alias_incipit_of", "is_alias_explicit_of",
-					"is_reference_of", "is_exemplar_of"});
+					"is_reference_of"});
 	
 	public CurrentTextBean() {
 		this.reset();