Export author afilliation as objects in rdf
This commit is contained in:
parent
d9653ccd37
commit
52eaffca86
4 changed files with 13 additions and 6 deletions
|
@ -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) }
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
<identifier value="pro.litvinovg.writer2paginatedhtml"/>
|
||||
|
||||
<version value="0.7.4"/>
|
||||
<version value="0.9.0"/>
|
||||
|
||||
<dependencies>
|
||||
<OpenOffice.org-minimal-version d:name="OpenOffice.org 3.0" value="3.0"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue