Export author afilliation as objects in rdf

This commit is contained in:
Georgy Litvinov 2020-11-24 23:01:57 +01:00
parent d9653ccd37
commit 52eaffca86
4 changed files with 13 additions and 6 deletions

View file

@ -2,7 +2,7 @@ apply plugin: 'java'
repositories{ repositories{
mavenCentral() mavenCentral()
} }
def releaseVersion = "0.8.6" def releaseVersion = "0.9.0"
def propertyFile = file "src/main/java/w2phtml/project.properties" def propertyFile = file "src/main/java/w2phtml/project.properties"
Properties properties = new Properties() Properties properties = new Properties()
propertyFile.withReader { properties.load(it) } propertyFile.withReader { properties.load(it) }

View file

@ -1,3 +1,3 @@
#Fri Aug 14 13:02:57 CEST 2020 #Tue Nov 24 22:59:31 CET 2020
releaseVersion=0.7.4 releaseVersion=0.9.0
releaseDate=13\:02\:57 14-08-2020 releaseDate=22\:59\:31 24-11-2020

View file

@ -224,6 +224,13 @@ public class DocumentStructure {
Property familyProperty = m.createProperty(TS + "participantFamily"); Property familyProperty = m.createProperty(TS + "participantFamily");
participant.addProperty( familyProperty, family.trim()); 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"); String email = map.get("author email");
if (email != null) { if (email != null) {
Property emailProperty = m.createProperty(TS + "participantEmail"); Property emailProperty = m.createProperty(TS + "participantEmail");
@ -246,7 +253,7 @@ public class DocumentStructure {
String organizationUri = TS + ORGANIZATION + "/" + PARSERNAME + "_" + docID + order; String organizationUri = TS + ORGANIZATION + "/" + PARSERNAME + "_" + docID + order;
Resource organization = m.createResource(organizationUri, organizationClass); Resource organization = m.createResource(organizationUri, organizationClass);
Property affiliatedWith = m.createProperty(TS + "affiliatedWith"); Property affiliatedWith = m.createProperty(TS + "affiliatedWith");
participant.addProperty(affiliatedWith, participant); participant.addProperty(affiliatedWith, organization);
organization.addProperty(RDFS.label, orgName); organization.addProperty(RDFS.label, orgName);

View file

@ -3,7 +3,7 @@
<identifier value="pro.litvinovg.writer2paginatedhtml"/> <identifier value="pro.litvinovg.writer2paginatedhtml"/>
<version value="0.7.4"/> <version value="0.9.0"/>
<dependencies> <dependencies>
<OpenOffice.org-minimal-version d:name="OpenOffice.org 3.0" value="3.0"/> <OpenOffice.org-minimal-version d:name="OpenOffice.org 3.0" value="3.0"/>