diff --git a/build.gradle b/build.gradle
index 5cdd62e..f551d18 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'java'
repositories{
mavenCentral()
}
-def releaseVersion = "0.8.6"
+def releaseVersion = "0.9.0"
def propertyFile = file "src/main/java/w2phtml/project.properties"
Properties properties = new Properties()
propertyFile.withReader { properties.load(it) }
diff --git a/src/main/java/w2phtml/project.properties b/src/main/java/w2phtml/project.properties
index 9823439..5ec6c7d 100644
--- a/src/main/java/w2phtml/project.properties
+++ b/src/main/java/w2phtml/project.properties
@@ -1,3 +1,3 @@
-#Fri Aug 14 13:02:57 CEST 2020
-releaseVersion=0.7.4
-releaseDate=13\:02\:57 14-08-2020
+#Tue Nov 24 22:59:31 CET 2020
+releaseVersion=0.9.0
+releaseDate=22\:59\:31 24-11-2020
diff --git a/src/main/java/w2phtml/rdf/DocumentStructure.java b/src/main/java/w2phtml/rdf/DocumentStructure.java
index 7a3e1f3..15ee1df 100644
--- a/src/main/java/w2phtml/rdf/DocumentStructure.java
+++ b/src/main/java/w2phtml/rdf/DocumentStructure.java
@@ -224,6 +224,13 @@ public class DocumentStructure {
Property familyProperty = m.createProperty(TS + "participantFamily");
participant.addProperty( familyProperty, family.trim());
}
+ if (givenName != null ) {
+ String labelName = givenName.trim();
+ if (family != null ) {
+ labelName += " " + family;
+ }
+ participant.addProperty(RDFS.label, labelName);
+ }
String email = map.get("author email");
if (email != null) {
Property emailProperty = m.createProperty(TS + "participantEmail");
@@ -246,7 +253,7 @@ public class DocumentStructure {
String organizationUri = TS + ORGANIZATION + "/" + PARSERNAME + "_" + docID + order;
Resource organization = m.createResource(organizationUri, organizationClass);
Property affiliatedWith = m.createProperty(TS + "affiliatedWith");
- participant.addProperty(affiliatedWith, participant);
+ participant.addProperty(affiliatedWith, organization);
organization.addProperty(RDFS.label, orgName);
diff --git a/src/main/oxt/description.xml b/src/main/oxt/description.xml
index 71889de..768edc5 100644
--- a/src/main/oxt/description.xml
+++ b/src/main/oxt/description.xml
@@ -3,7 +3,7 @@
-
+